:root {
  --accent: #499bed;
  --accent-dark: #2f78c9;
  --ink: #0f1f16;
  --ink-soft: #1c2e24;
  --paper: #f6fbf7;
  --paper-2: #eaf4ee;
  --forest: #1f4d33;
  --forest-2: #2a6b45;
  --shadow: 0 18px 40px rgba(15, 31, 22, 0.14);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1120px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  min-width: 320px;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-dark);
}

a:focus-visible,
.btn:focus-visible,
.menu-toggle:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

a:hover {
  color: var(--forest-2);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--ink);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  z-index: 9999;
}

.skip-link:focus {
  left: 8px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 251, 247, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(31, 77, 51, 0.12);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand img {
  width: 58px;
  height: 58px;
  display: block;
  object-fit: contain;
}

.nav-plain {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
}

.nav-plain a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-plain a[aria-current="page"] {
  color: var(--accent-dark);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(31, 77, 51, 0.25);
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  font: inherit;
}

.disclaimer-bar {
  background: #102018;
  color: #e9f6ee;
  font-size: 0.85rem;
}

.disclaimer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 18px;
}

main {
  overflow-x: hidden;
}

.section {
  padding: clamp(48px, 6vw, 88px) 18px;
}

.section--tight {
  padding-block: clamp(40px, 5vw, 64px);
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: min(78vh, 760px);
  display: grid;
  align-items: end;
  color: #f4fbff;
}

.hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(10, 28, 18, 0.75), rgba(73, 155, 237, 0.45)),
    url("../image/picture.jpg") center / cover no-repeat;
  transform: scale(1.02);
  transition: transform 900ms ease, filter 900ms ease;
}

.hero:hover .hero__media {
  transform: scale(1.06);
  filter: saturate(1.06) brightness(1.03);
}

.hero__content {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 56px) 18px 48px;
  width: 100%;
}

.hero__card {
  max-width: 640px;
  background: rgba(7, 22, 14, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 28px);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.hero:hover .hero__card {
  transform: translateY(-4px);
  border-color: rgba(126, 192, 255, 0.55);
  background: rgba(7, 22, 14, 0.62);
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: #cfe8ff;
}

.hero h1 {
  margin: 10px 0 12px;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1.1;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
}

.btn--primary {
  background: var(--accent);
  color: #04120a;
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--primary:hover {
  background: #7ec0ff;
  color: #04120a;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #f4fbff;
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn--dark {
  background: var(--forest);
  color: #f4fff8;
}

.btn--dark:hover {
  background: var(--forest-2);
  color: #f4fff8;
}

.btn--outline {
  background: #fff;
  color: var(--forest);
  border-color: rgba(31, 77, 51, 0.35);
}

.btn--outline:hover {
  background: var(--paper-2);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.85rem;
}

.panel {
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 32px);
  box-shadow: var(--shadow);
}

.panel--paper {
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(31, 77, 51, 0.12);
}

.panel--forest {
  background: linear-gradient(145deg, #1f4d33, #17402b);
  color: #ecf8f1;
}

.panel--sky {
  background: linear-gradient(145deg, #d9efff, #eef9f3);
  color: var(--ink);
  border: 1px solid rgba(73, 155, 237, 0.25);
}

.panel--night {
  background: linear-gradient(155deg, #0d1a13, #13251c);
  color: #e9fff3;
}

.panel--accent {
  background: linear-gradient(135deg, #499bed, #2f78c9);
  color: #04120a;
}

.panel--accent a {
  color: #04120a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.panel--accent a.btn {
  text-decoration: none;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 22px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.lede {
  max-width: 72ch;
  font-size: 1.05rem;
  color: rgba(16, 32, 24, 0.85);
}

.panel--forest .lede,
.panel--night .lede {
  color: rgba(236, 248, 241, 0.92);
}

.grid-2 {
  display: grid;
  gap: 22px;
}

@media (min-width: 880px) {
  .grid-2 {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }
}

.grid-3 {
  display: grid;
  gap: 16px;
}

@media (min-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.feature-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.panel--paper .feature-list li {
  background: rgba(234, 244, 238, 0.55);
  border-color: rgba(31, 77, 51, 0.14);
}

.icon {
  font-size: 1.35rem;
  line-height: 1;
  color: #ffefcf;
}

.panel--paper .icon,
.panel--sky .icon {
  color: #b01010;
}

.icon--accent {
  color: #102018;
}

.steps {
  counter-reset: step;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.steps li {
  position: relative;
  padding: 14px 14px 14px 52px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(31, 77, 51, 0.14);
  background: #fff;
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 14px;
  top: 14px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #04120a;
  background: var(--accent);
}

.quote-band {
  border-left: 5px solid var(--accent);
  padding: 12px 16px;
  background: rgba(73, 155, 237, 0.12);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.split-cards {
  display: grid;
  gap: 14px;
}

@media (min-width: 760px) {
  .split-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.micro {
  font-size: 0.92rem;
  opacity: 0.92;
}

.tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.12);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.panel--paper .tag {
  background: rgba(73, 155, 237, 0.18);
  color: var(--ink);
}

.footer {
  background: #0b1510;
  color: #dff3e7;
  padding: 34px 18px 44px;
}

.footer a {
  color: #cfe8ff;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

@media (min-width: 880px) {
  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}

.cookie-banner {
  position: fixed;
  inset: auto 12px 12px 12px;
  z-index: 100;
  max-width: 520px;
  margin-left: auto;
  background: #0f1f16;
  color: #eaf7ef;
  border: 1px solid rgba(126, 192, 255, 0.25);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.cookie-panel {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: none;
}

.cookie-panel.is-open {
  display: block;
}

.switch-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.switch {
  position: relative;
  width: 46px;
  height: 26px;
  flex: 0 0 auto;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch span {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  transition: background 200ms ease;
}

.switch span::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 4px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 200ms ease;
}

.switch input:checked + span {
  background: rgba(73, 155, 237, 0.85);
}

.switch input:checked + span::after {
  transform: translateX(18px);
}

.switch input:disabled + span {
  opacity: 0.55;
}

.form {
  display: grid;
  gap: 14px;
}

.form label {
  font-weight: 700;
  display: grid;
  gap: 6px;
}

.form input,
.form textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(31, 77, 51, 0.25);
  font: inherit;
  background: #fff;
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.check input {
  width: auto;
  margin-top: 4px;
}

.map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(31, 77, 51, 0.16);
  box-shadow: var(--shadow);
}

.map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.calendar-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.calendar-table th,
.calendar-table td {
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 10px 10px;
  vertical-align: top;
  font-size: 0.95rem;
}

.panel--paper .calendar-table th,
.panel--paper .calendar-table td {
  border-color: rgba(31, 77, 51, 0.14);
}

.faq details {
  border: 1px solid rgba(31, 77, 51, 0.16);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  background: #fff;
}

.faq details + details {
  margin-top: 10px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.hero--sub {
  min-height: min(42vh, 420px);
}

.hero--sub .hero__media {
  background:
    linear-gradient(120deg, rgba(10, 28, 18, 0.78), rgba(73, 155, 237, 0.42)),
    url("../image/picture.jpg") center / cover no-repeat;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(246, 251, 247, 0.98);
    border-bottom: 1px solid rgba(31, 77, 51, 0.12);
    display: none;
  }

  .site-nav.is-open {
    display: block;
  }

  .nav-plain {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 18px 18px;
  }
}

@media (max-width: 360px) {
  .header-inner {
    padding-inline: 14px;
  }

  .cookie-banner {
    inset: auto 8px 8px 8px;
  }
}
