:root {
  --sand: #d7cfc0;
  --sand-deep: #c4b8a4;
  --jungle: #1a3d2f;
  --jungle-soft: #234d3d;
  --terracotta: #c45c3a;
  --terracotta-dark: #9a4326;
  --cream: #f7f2ea;
  --ink: #141814;
  --mint: #7dd4a0;
  --shadow: rgba(10, 24, 18, 0.18);
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --max: 1120px;
  --header-h: 4.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--sand);
  min-width: 320px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--terracotta-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--jungle);
}

:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 2px;
}

.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--sand-deep);
  position: sticky;
  top: 0;
  z-index: 40;
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--jungle);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo span {
  font-size: 0.95rem;
}

.nav-primary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
}

.nav-primary a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-primary a:hover {
  color: var(--terracotta);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 2px solid var(--jungle);
  background: var(--cream);
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--jungle);
  flex-shrink: 0;
}

.nav-toggle i {
  font-size: 1.5rem;
}

.site-disclaimer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.5rem 1rem 0.75rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #2a2f2c;
  background: linear-gradient(90deg, rgba(125, 212, 160, 0.25), transparent);
  border-top: 1px solid var(--sand-deep);
}

main {
  overflow-x: hidden;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1rem 4rem;
  background-color: var(--jungle);
  background-image: linear-gradient(
      165deg,
      rgba(12, 32, 24, 0.82) 0%,
      rgba(26, 61, 47, 0.55) 45%,
      rgba(12, 28, 22, 0.88) 100%
    ),
    url("../image/picture.jpg");
  background-size: cover;
  background-position: center;
  color: var(--cream);
}

.hero-inner {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(1.85rem, 5vw, 3rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.hero-lead {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-form-block {
  width: 100%;
  max-width: 38rem;
  margin: 1.5rem auto 0;
}

.hero-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: stretch;
  margin-top: 0;
}

.hero-consent-row {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  text-align: left;
  margin-top: 0.85rem;
  font-size: 0.82rem;
  line-height: 1.45;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.95);
}

.hero-consent-row a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero-consent-row input[type="checkbox"] {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.hero-form input[type="email"] {
  flex: 1 1 220px;
  max-width: 320px;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: rgba(247, 242, 234, 0.95);
  color: var(--ink);
  font-size: 1rem;
}

.hero-form input::placeholder {
  color: #555;
}

.hero-form-note {
  width: 100%;
  margin-top: 0.65rem;
  font-size: 0.85rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.92;
  line-height: 1.4;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px var(--shadow);
}

.btn-primary {
  background: var(--terracotta);
  color: var(--cream);
  border-color: var(--terracotta-dark);
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  color: var(--cream);
}

.btn-ghost {
  background: rgba(247, 242, 234, 0.12);
  color: var(--cream);
  border-color: rgba(247, 242, 234, 0.55);
}

.btn-ghost:hover {
  background: rgba(247, 242, 234, 0.22);
  color: var(--cream);
}

.btn-dark {
  background: var(--jungle);
  color: var(--cream);
  border-color: #0f241c;
}

.btn-dark:hover {
  background: var(--jungle-soft);
  color: var(--cream);
}

.section {
  padding: 3.5rem 1rem;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--terracotta-dark);
  margin-bottom: 0.5rem;
}

.section-kicker i {
  font-size: 1.1rem;
  color: var(--jungle);
}

.section h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  margin: 0 0 1rem;
  color: var(--jungle);
}

.section-alt {
  background: var(--jungle);
  color: var(--cream);
}

.section-alt h2,
.section-alt .section-kicker {
  color: var(--mint);
}

.section-alt .section-kicker i {
  color: var(--cream);
}

.section-alt a {
  color: #ffd8a8;
}

.section-warm {
  background: #e8dcc8;
  color: var(--ink);
}

.section-warm h2 {
  color: var(--terracotta-dark);
}

.section-deep {
  background: #123428;
  color: #ffffff;
}

.section-deep h2 {
  color: var(--mint);
}

.section-deep a {
  color: #ffd8a8;
}

.section-deep .section-kicker {
  color: #b8e6cc;
}

.section-deep .section-kicker i {
  color: #ffffff;
}

.section-deep .icon-list i {
  color: var(--mint);
}

.section-deep .faq-item {
  border-color: rgba(255, 255, 255, 0.22);
}

.section-deep .faq-item button {
  color: #ffffff;
}

.section-deep .faq-item button i {
  color: #ffb4a1;
}

.section-deep .faq-panel {
  color: rgba(255, 255, 255, 0.94);
}

.section-deep .pull-quote {
  border-color: var(--mint);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.contrast-card {
  background: var(--cream);
  color: var(--ink);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 12px 40px var(--shadow);
}

.grid-2 {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.grid-3 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--cream);
  border-radius: 14px;
  padding: 1.35rem;
  border: 1px solid rgba(26, 61, 47, 0.12);
  color: var(--ink);
  height: 100%;
}

.card h3 {
  margin-top: 0;
  color: var(--jungle);
}

.pill-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill-list li {
  background: rgba(196, 184, 164, 0.55);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}

.icon-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.icon-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.icon-list i {
  color: var(--terracotta);
  font-size: 1.25rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.section-alt .icon-list i {
  color: var(--mint);
}

.split-feature {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .split-feature {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }

  .split-feature.reverse .feature-visual {
    order: -1;
  }
}

.feature-visual img {
  border-radius: 18px;
  width: 100%;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}

.pull-quote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--terracotta);
  background: rgba(196, 92, 58, 0.08);
  font-style: italic;
  color: var(--ink);
}

.section-alt .pull-quote {
  border-color: var(--mint);
  background: rgba(125, 212, 160, 0.12);
  color: var(--cream);
}

.num-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.num-steps li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1rem;
}

.num-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--cream);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-alt .num-steps li::before {
  background: var(--mint);
  color: var(--jungle);
}

.dl-grid {
  display: grid;
  gap: 1rem;
}

.dl-grid div {
  padding: 1rem;
  border-radius: 12px;
  background: rgba(247, 242, 234, 0.65);
  border: 1px solid rgba(26, 61, 47, 0.1);
}

.section-alt .dl-grid div {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.dl-grid dt {
  font-weight: 800;
  color: var(--jungle);
  margin-bottom: 0.25rem;
}

.section-alt .dl-grid dt {
  color: var(--mint);
}

.dl-grid dd {
  margin: 0;
}

.calendar-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--ink);
  border-radius: 12px;
  overflow: hidden;
}

.calendar-table th,
.calendar-table td {
  padding: 0.75rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid rgba(26, 61, 47, 0.1);
}

.calendar-table th {
  background: var(--jungle);
  color: var(--cream);
}

.faq-item {
  border-bottom: 1px solid rgba(26, 61, 47, 0.15);
  padding: 1rem 0;
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  font: inherit;
  font-weight: 700;
  color: var(--jungle);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0;
}

.faq-item button i {
  transition: transform 0.2s ease;
  color: var(--terracotta);
}

.faq-item.is-open button i {
  transform: rotate(180deg);
}

.faq-panel {
  display: none;
  padding-top: 0.5rem;
  color: var(--ink);
}

.faq-item.is-open .faq-panel {
  display: block;
}

.section-alt .faq-item {
  border-color: rgba(255, 255, 255, 0.2);
}

.section-alt .faq-item button {
  color: var(--cream);
}

.section-alt .faq-panel {
  color: rgba(247, 242, 234, 0.92);
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--jungle);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  border: 2px solid rgba(26, 61, 47, 0.2);
  font: inherit;
  margin-bottom: 1rem;
  background: #fff;
  color: var(--ink);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.check-row {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin: 0.5rem 0 1.25rem;
  font-size: 0.92rem;
}

.check-row input {
  margin-top: 0.25rem;
  width: auto;
}

.map-wrap {
  margin-top: 1.5rem;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid rgba(26, 61, 47, 0.15);
  box-shadow: 0 12px 36px var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: min(50vh, 420px);
  display: block;
  border: 0;
}

.site-footer {
  background: #0f241c;
  color: #dfe8e3;
  padding: 2rem 1rem;
  font-size: 0.92rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer-links a {
  color: #ffd8a8;
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover {
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: #0f1f18;
  color: #e8f0ec;
  padding: 1rem;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.35);
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cookie-actions .btn {
  font-size: 0.92rem;
  padding: 0.65rem 1rem;
}

.cookie-settings-panel {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

.cookie-settings-panel.is-open {
  display: block;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.switch {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #3a5246;
  border-radius: 999px;
  transition: background 0.2s;
}

.slider::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
}

.switch input:checked + .slider {
  background: var(--terracotta);
}

.switch input:checked + .slider::before {
  transform: translateX(22px);
}

.switch input:disabled + .slider {
  opacity: 0.55;
  cursor: not-allowed;
}

.mobile-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 16, 0.55);
  z-index: 35;
}

body.nav-open .mobile-backdrop {
  display: block;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-primary {
    position: fixed;
    top: 0;
    right: 0;
    width: min(100%, 320px);
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 1.25rem 2rem;
    box-shadow: -8px 0 30px var(--shadow);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 50;
    overflow-y: auto;
  }

  body.nav-open .nav-primary {
    transform: translateX(0);
  }

  .nav-primary a {
    font-size: 1.05rem;
    width: 100%;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(26, 61, 47, 0.08);
  }
}

@media (min-width: 901px) {
  .nav-primary {
    display: flex !important;
  }
}

.legal-page h2 {
  margin-top: 2.25rem;
}

.legal-page h1 {
  color: var(--jungle);
}

.page-hero {
  padding: 2.5rem 1rem 1rem;
  background: linear-gradient(120deg, #e8dcc8, var(--sand));
}

.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.page-hero h1 {
  margin: 0 0 0.5rem;
  color: var(--jungle);
}

.lead {
  font-size: 1.15rem;
  color: #2a322e;
  max-width: 65ch;
}

.success-panel {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background: linear-gradient(160deg, var(--sand), #c4b8a4);
}

.success-card {
  max-width: 520px;
  background: var(--cream);
  padding: 2rem;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 20px 60px var(--shadow);
  color: var(--ink);
}

.success-icon {
  margin-bottom: 0.5rem;
}

.success-icon i {
  font-size: 3rem;
  color: var(--terracotta);
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
  justify-content: center;
}

.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;
}

button.btn {
  font: inherit;
  appearance: none;
}
