:root {
  --sage: #c3d4ad;
  --sage-deep: #9fb88a;
  --coral: #e07a5f;
  --mango: #f4d58d;
  --night: #0f2f2a;
  --night-soft: #1a4d45;
  --cream: #fff8ec;
  --sand: #f2e6d8;
  --ink: #1a1f1c;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(15, 47, 42, 0.18);
  --radius: 18px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  min-width: 320px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--night-soft);
}

a:hover {
  color: var(--coral);
}

.disclaimer-bar {
  background: var(--night);
  color: var(--cream);
  font-size: 0.78rem;
  line-height: 1.5;
  padding: 0.65rem 1rem;
  text-align: center;
  max-width: 100%;
}

.disclaimer-bar a {
  color: var(--mango);
  text-decoration: underline;
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 248, 236, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 47, 42, 0.08);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--night);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand img {
  width: 48px;
  height: 48px;
}

.brand span {
  font-size: 0.95rem;
  max-width: min(52vw, 220px);
  line-height: 1.2;
}

.nav-desktop {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  align-items: center;
}

.nav-desktop a {
  text-decoration: none;
  color: var(--night);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-desktop a[aria-current="page"] {
  color: var(--coral);
}

.menu-toggle {
  display: none;
  border: 2px solid var(--night);
  background: var(--white);
  color: var(--night);
  border-radius: 12px;
  padding: 0.45rem 0.6rem;
  cursor: pointer;
}

.menu-toggle i {
  font-size: 1.5rem;
  vertical-align: middle;
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(15, 47, 42, 0.1);
  background: var(--cream);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.85rem 1.25rem;
  text-decoration: none;
  color: var(--night);
  font-weight: 600;
  border-bottom: 1px solid rgba(15, 47, 42, 0.06);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.25rem 4rem;
  background: var(--night) url("../image/picture.jpg") center/cover no-repeat;
  color: var(--cream);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(15, 47, 42, 0.92) 0%,
    rgba(15, 47, 42, 0.55) 45%,
    rgba(224, 122, 95, 0.35) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  text-align: center;
  padding: 1.75rem 1.5rem;
  border-radius: 22px;
  background: rgba(15, 47, 42, 0.35);
  border: 1px solid rgba(255, 248, 236, 0.18);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.hero h1 {
  font-size: clamp(1.85rem, 5vw, 2.85rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.hero-lead {
  font-size: 1.05rem;
  margin: 0 0 2rem;
  opacity: 0.95;
}

.hero-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  align-items: stretch;
}

.hero-form input[type="email"] {
  flex: 1 1 220px;
  min-width: 200px;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: none;
  font: inherit;
}

.hero-form .btn-link {
  flex: 0 0 auto;
}

.hero-inner .fine {
  margin-top: 1rem;
  font-size: 0.78rem;
  opacity: 0.85;
}

.hero-compact {
  min-height: 42vh;
  padding: 6rem 1.25rem 3rem;
}

.section {
  padding: 3.5rem 1.25rem;
}

.section--sage {
  background: var(--sage);
  color: var(--night);
}

.section--night {
  background: var(--night);
  color: var(--cream);
}

.section--night a {
  color: var(--mango);
}

.section--sand {
  background: var(--sand);
  color: var(--ink);
}

.section--cream {
  background: var(--cream);
}

.section--coral {
  background: var(--coral);
  color: var(--night);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  margin: 0 0 0.35rem;
  line-height: 1.2;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--coral);
  margin-bottom: 0.5rem;
}

.section--night .section-kicker,
.section--sage .section-kicker {
  color: var(--night-soft);
}

.section--coral .section-kicker {
  color: var(--night);
}

.section-intro {
  max-width: 70ch;
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
}

.grid-2 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid-3 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow);
}

.section--night .card {
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.card h3 {
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 1.1rem;
}

.card h3 i {
  color: var(--coral);
  font-size: 1.35rem;
}

.section--night .card h3 i {
  color: var(--mango);
}

.pill-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill-list li {
  background: rgba(15, 47, 42, 0.08);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.section--night .pill-list li {
  background: rgba(255, 255, 255, 0.1);
}

.split-visual {
  display: grid;
  gap: 1.75rem;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.visual-frame {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid rgba(255, 255, 255, 0.35);
}

.visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.note-block {
  border-left: 4px solid var(--coral);
  padding: 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 0 14px 14px 0;
}

.section--night .note-block {
  background: rgba(0, 0, 0, 0.2);
  border-left-color: var(--mango);
}

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding: 1rem 1rem 1rem 3.25rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--sage);
  color: var(--night);
  font-weight: 800;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
}

.section--night .steps li {
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
}

.section--night .steps li::before {
  background: var(--mango);
  color: var(--night);
}

.faq {
  display: grid;
  gap: 0.75rem;
}

.faq details {
  background: var(--white);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  box-shadow: 0 8px 22px rgba(15, 47, 42, 0.08);
}

.section--night .faq details {
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.calendar-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.calendar-table th,
.calendar-table td {
  padding: 0.75rem 0.65rem;
  text-align: left;
  border-bottom: 1px solid rgba(15, 47, 42, 0.08);
  font-size: 0.92rem;
}

.calendar-table th {
  background: var(--night);
  color: var(--cream);
}

.section--night .calendar-table {
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
}

.section--night .calendar-table th {
  background: rgba(0, 0, 0, 0.35);
}

.section--night .calendar-table td {
  border-color: rgba(255, 255, 255, 0.1);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  display: flex;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
  align-items: flex-start;
}

.checklist i {
  color: var(--night-soft);
  margin-top: 0.15rem;
}

.section--coral .checklist i {
  color: var(--night);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font: inherit;
}

.btn-primary {
  background: var(--coral);
  color: var(--night);
}

.btn-primary:hover {
  background: #f28b6f;
  color: var(--night);
}

.btn-ghost {
  background: transparent;
  border-color: var(--cream);
  color: var(--cream);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--cream);
}

.btn-dark {
  background: var(--night);
  color: var(--cream);
}

.btn-dark:hover {
  background: var(--night-soft);
  color: var(--cream);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.5rem;
}

.site-footer {
  background: var(--night);
  color: #ffffff;
  padding: 2.5rem 1.25rem;
  font-size: 0.92rem;
}

.site-footer p,
.site-footer strong,
.site-footer a {
  color: #ffffff;
}

.site-footer p a {
  color: #ffffff;
  text-decoration: underline;
}

.site-footer p a:hover {
  color: rgba(255, 255, 255, 0.88);
}

.site-footer a:hover {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: underline;
}

.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: #ffffff;
  text-decoration: none;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: underline;
}

.policy-page .section-inner {
  max-width: 860px;
}

.policy-page h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.policy-page h2 {
  margin-top: 2rem;
  font-size: 1.25rem;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: rgba(15, 47, 42, 0.97);
  color: var(--cream);
  padding: 1rem 1rem 1.25rem;
  box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.25);
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

/* “Details: Cookie policy” — avoid same-as-body cream/white on dark; keep contrast */
.cookie-banner .cookie-detail-line {
  margin: 0;
  font-size: 0.85rem;
  color: var(--mango);
}

.cookie-banner .cookie-detail-line a {
  color: var(--coral);
  font-weight: 700;
  text-decoration: underline;
}

.cookie-banner .cookie-detail-line a:hover {
  color: #f28b6f;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-panel {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 1rem;
  margin-top: 0.5rem;
}

.cookie-panel.open {
  display: block;
}

.switch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.65rem;
}

.switch {
  position: relative;
  width: 46px;
  height: 26px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  transition: 0.2s;
}

.slider::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.2s;
}

.switch input:checked + .slider {
  background: var(--sage);
}

.switch input:checked + .slider::before {
  transform: translateX(20px);
}

.switch input:disabled + .slider {
  opacity: 0.55;
  cursor: not-allowed;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(15, 47, 42, 0.15);
  font: inherit;
  margin-bottom: 1rem;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid rgba(195, 212, 173, 0.6);
}

.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

.success-hero {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 3rem 1.25rem;
  background: linear-gradient(160deg, var(--sage), var(--sand));
}

@media (max-width: 900px) {
  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    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;
}

.policy-page code {
  background: rgba(15, 47, 42, 0.08);
  padding: 0.1rem 0.35rem;
  border-radius: 6px;
  font-size: 0.9em;
}

@media (max-width: 480px) {
  .hero {
    padding-top: 4.5rem;
  }

  .section {
    padding: 2.75rem 1rem;
  }

  .calendar-table th,
  .calendar-table td {
    font-size: 0.82rem;
  }
}
