:root {
  --ink: #17251f;
  --muted: #5d6a63;
  --paper: #f5f1e8;
  --white: #fffdf8;
  --forest: #214b3a;
  --forest-dark: #143126;
  --forest-light: #3f715c;
  --sand: #d2a15c;
  --sand-light: #f0dbb6;
  --sage: #dce7dd;
  --line: #d8d4ca;
  --shadow: 0 24px 70px rgba(30, 57, 46, .13);
  --radius-lg: 34px;
  --radius-md: 22px;
  --shell: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 0;
  color: var(--ink);
  background: var(--paper);
  font: 16px/1.58 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
button { font: inherit; }

.shell {
  width: min(var(--shell), calc(100% - 40px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--forest-dark);
}

.skip-link:focus { transform: translateY(0); }

.prototype-note {
  color: #3d362b;
  background: var(--sand-light);
  font-size: .83rem;
}

.prototype-note .shell {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding-block: 8px;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(33, 75, 58, .10);
  background: rgba(245, 241, 232, .92);
  backdrop-filter: blur(18px);
}

.header-inner {
  position: relative;
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--forest);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .05em;
}

.brand-copy { display: grid; line-height: 1.08; }
.brand-copy strong { font-size: 1rem; }
.brand-copy small { margin-top: 4px; color: var(--muted); font-size: .69rem; letter-spacing: .12em; text-transform: uppercase; }

.site-menu {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
}

.site-menu a {
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}

.site-menu a:not(.nav-cta):hover { color: var(--forest-light); }

.nav-cta {
  padding: 11px 17px;
  border-radius: 999px;
  color: #fff;
  background: var(--forest);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  gap: 4px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: var(--sage);
  cursor: pointer;
}

.menu-button span:not(.sr-only) { display: block; width: 19px; height: 2px; border-radius: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }

.hero {
  position: relative;
  overflow: clip;
  padding: 62px 0 80px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -180px;
  left: -200px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(210, 161, 92, .12);
  filter: blur(3px);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .76fr);
  align-items: center;
  gap: clamp(44px, 7vw, 96px);
}

.eyebrow, .section-label {
  margin: 0 0 16px;
  color: var(--forest-light);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

h1, h2, h3 { margin-top: 0; line-height: 1.08; letter-spacing: -.035em; }

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.4vw, 5.25rem);
  font-weight: 500;
}

h2 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 500;
}

h3 { margin-bottom: 12px; font-size: 1.25rem; }
p { margin-top: 0; }

.hero-lead {
  max-width: 690px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.hero-actions, .contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--forest); box-shadow: 0 12px 28px rgba(33, 75, 58, .24); }
.button-primary:hover { background: var(--forest-dark); }
.button-ghost { border-color: var(--line); background: rgba(255,255,255,.5); }
.button-ghost:hover { background: #fff; }
.button-light { color: var(--forest-dark); background: #fff; }
.button-outline-light { border-color: rgba(255,255,255,.38); color: #fff; background: transparent; }

.microcopy { margin: 14px 0 0; color: var(--muted); font-size: .85rem; }

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 690px;
  margin-top: 44px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-row div { padding: 17px 14px 17px 0; }
.trust-row div + div { padding-left: 20px; border-left: 1px solid var(--line); }
.trust-row strong { display: block; font-size: 1.12rem; }
.trust-row span { display: block; margin-top: 3px; color: var(--muted); font-size: .76rem; }

.hero-visual { position: relative; min-width: 0; }
.hero-photo {
  display: block;
  width: 100%;
  height: clamp(480px, 56vw, 650px);
  aspect-ratio: 8 / 9;
  object-fit: cover;
  object-position: 58% 70%;
  border: 9px solid rgba(255,255,255,.62);
  border-radius: 48px;
  box-shadow: var(--shadow);
}

.visual-card {
  position: absolute;
  right: -28px;
  bottom: 34px;
  display: grid;
  width: min(280px, 82%);
  padding: 19px 20px;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 20px;
  background: rgba(255, 253, 248, .94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.visual-card span { color: var(--forest-light); font-size: .76rem; font-weight: 850; text-transform: uppercase; }
.visual-card strong { margin: 3px 0; font-size: 1.07rem; }
.visual-card small { color: var(--muted); }

.section { padding: 96px 0; }
.intro { padding-bottom: 40px; }
.intro-grid { display: grid; grid-template-columns: .35fr 1fr .75fr; gap: 36px; align-items: start; }
.intro h2 { font-size: clamp(2.15rem, 4vw, 3.7rem); }
.section-lead { color: var(--muted); font-size: 1.07rem; }

.formats { padding-top: 46px; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 34px; }
.section-head h2 { margin-bottom: 0; }
.section-head > p { max-width: 360px; margin-bottom: 8px; color: var(--muted); font-size: .9rem; }

.format-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }

.format-card {
  display: flex;
  min-width: 0;
  min-height: 390px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 10px 35px rgba(30, 57, 46, .05);
  transition: transform .2s ease, box-shadow .2s ease;
}

.format-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.format-card.featured { border-color: #9eb8a9; background: var(--sage); }
.dark-card { color: #fff; background: var(--forest-dark); border-color: var(--forest-dark); }
.dark-card p, .dark-card .price span { color: #c7d8cf; }
.dark-card .chip { color: var(--forest-dark); background: #fff; }

.card-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 26px; }
.chip { padding: 6px 9px; border-radius: 999px; color: var(--forest); background: var(--sage); font-size: .71rem; font-weight: 900; }
.featured .chip { background: #fff; }
.duration { color: var(--muted); font-size: .78rem; }
.dark-card .duration { color: #c7d8cf; }
.format-card h3 { font-size: 1.45rem; }
.format-card > p { color: var(--muted); }
.price { display: grid; margin-top: auto; margin-bottom: 20px; }
.price strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.75rem; font-weight: 500; }
.price span { color: var(--muted); font-size: .8rem; }

.text-button {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0 0;
  border: 0;
  border-top: 1px solid currentColor;
  color: var(--forest);
  background: transparent;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.dark-card .text-button { color: #f2d59f; }
.text-button span { transition: transform .2s ease; }
.text-button:hover span { transform: translateX(5px); }

.visit { background: var(--sage); }
.visit-grid { display: grid; grid-template-columns: .72fr 1fr; gap: clamp(48px, 8vw, 110px); }
.visit-copy { position: sticky; top: 120px; align-self: start; }
.visit-copy h2 { font-size: clamp(2.4rem, 4.5vw, 4rem); }
.visit-copy > p:not(.section-label) { max-width: 470px; color: var(--muted); }
.inline-link { display: inline-flex; gap: 8px; margin-top: 12px; color: var(--forest); font-weight: 850; text-underline-offset: 4px; }

.timeline { margin: 0; padding: 0; list-style: none; }
.timeline li { display: grid; grid-template-columns: 68px 1fr; gap: 22px; padding: 28px 0; border-bottom: 1px solid rgba(33,75,58,.2); }
.timeline li:first-child { padding-top: 0; }
.timeline li:last-child { border-bottom: 0; }
.timeline li > span { display: grid; width: 52px; height: 52px; place-items: center; border: 1px solid rgba(33,75,58,.28); border-radius: 50%; color: var(--forest); font-weight: 900; }
.timeline p { margin-bottom: 0; color: var(--muted); }

.proof-card { padding: clamp(34px, 6vw, 68px); border-radius: var(--radius-lg); color: #fff; background: var(--forest-dark); box-shadow: var(--shadow); }
.section-label.light { color: #e8c78f; }
.proof-card h2 { max-width: 760px; }
.rating-block { display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center; margin: 48px 0; padding: 26px 0; border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.rating-block > strong { font-family: Georgia, "Times New Roman", serif; font-size: clamp(4rem, 8vw, 7rem); font-weight: 500; line-height: .9; }
.stars { color: #f0c477; font-size: 1.35rem; letter-spacing: .12em; }
.rating-block p { max-width: 380px; margin: 6px 0 0; color: #c8d8cf; }
.review-themes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.review-themes article > span { color: #e8c78f; font-size: .8rem; font-weight: 900; }
.review-themes h3 { margin-top: 10px; }
.review-themes p { margin-bottom: 0; color: #c8d8cf; }
.source-link { display: inline-flex; gap: 8px; margin-top: 40px; color: #fff; text-underline-offset: 4px; }

.faq-grid { display: grid; grid-template-columns: .7fr 1fr; gap: clamp(46px, 8vw, 110px); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 23px 0; font-weight: 850; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: grid; flex: 0 0 auto; width: 30px; height: 30px; place-items: center; border: 1px solid var(--line); border-radius: 50%; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { padding: 0 52px 22px 0; color: var(--muted); }

.booking { padding-top: 38px; }
.booking-card { padding: clamp(34px, 7vw, 78px); border-radius: var(--radius-lg); color: #fff; background: var(--forest); box-shadow: var(--shadow); }
.booking-card > div:first-child { max-width: 820px; }
.booking-card h2 { font-size: clamp(2.45rem, 5vw, 4.6rem); }
.booking-card > div:first-child > p:last-child { max-width: 650px; color: #d1ded6; }
.message-box { max-width: 780px; margin: 38px 0 28px; padding: 20px; border: 1px solid rgba(255,255,255,.2); border-radius: 18px; background: rgba(255,255,255,.08); }
.message-box > span { color: #e8c78f; font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.message-box p { margin: 7px 0 14px; }
.message-box button { padding: 7px 0; border: 0; color: #fff; background: transparent; font-weight: 850; text-decoration: underline; text-underline-offset: 4px; cursor: pointer; }
.phone-link { margin-left: 6px; color: #fff; font-weight: 850; text-underline-offset: 4px; }
.booking-note { margin: 22px 0 0; color: #cbdad2; font-size: .86rem; }
.booking-note a { color: #fff; text-underline-offset: 3px; }

.site-footer { padding: 42px 0 104px; }
.footer-grid { display: grid; grid-template-columns: .6fr 1fr .8fr; gap: 40px; align-items: start; }
.footer-grid > p { color: var(--muted); font-size: .8rem; }
.footer-grid a { text-underline-offset: 3px; }
.footer-brand .brand-mark { color: var(--forest); background: var(--sage); }

.mobile-cta { display: none; }

:focus-visible { outline: 3px solid var(--sand); outline-offset: 4px; }

@media (max-width: 980px) {
  .menu-button { display: grid; }
  .site-menu {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px 20px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
  }
  .site-menu.is-open { display: flex; }
  .site-menu a { padding: 13px 0; }
  .site-menu .nav-cta { margin-top: 8px; padding: 13px 18px; text-align: center; }
  .menu-button[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(6px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-6px) rotate(-45deg); }

  .hero-grid { grid-template-columns: 1fr .72fr; gap: 34px; }
  h1 { font-size: clamp(3rem, 8vw, 5.4rem); }
  .trust-row { grid-template-columns: 1fr; border-bottom: 0; }
  .trust-row div { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .trust-row div + div { padding-left: 0; border-left: 0; }
  .visual-card { right: -12px; }
  .intro-grid { grid-template-columns: 1fr 1.4fr; }
  .intro-grid .section-lead { grid-column: 2; }
  .format-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .review-themes { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > p:last-child { grid-column: 2; }
}

@media (max-width: 720px) {
  .shell { width: min(var(--shell), calc(100% - 28px)); }
  .prototype-note .shell { display: block; }
  .prototype-note strong { display: block; }
  .header-inner { min-height: 70px; }
  .hero { padding: 44px 0 62px; }
  .hero-grid { grid-template-columns: 1fr; }
  h1 { font-size: clamp(2.75rem, 14vw, 4.8rem); }
  .hero-lead { font-size: 1rem; }
  .trust-row { grid-template-columns: repeat(3, 1fr); }
  .trust-row div { padding: 13px 8px 13px 0; border-bottom: 0; }
  .trust-row div + div { padding-left: 12px; border-left: 1px solid var(--line); }
  .hero-visual { width: min(480px, 92%); margin: 10px auto 0; }
  .visual-card { right: -7%; bottom: 24px; }

  .section { padding: 70px 0; }
  .intro { padding-bottom: 22px; }
  .intro-grid { grid-template-columns: 1fr; gap: 8px; }
  .intro-grid .section-lead { grid-column: auto; }
  .section-head { display: block; }
  .section-head > p { margin-top: 12px; }
  .format-grid { grid-template-columns: 1fr; }
  .format-card { min-height: 350px; }
  .visit-grid { grid-template-columns: 1fr; gap: 42px; }
  .visit-copy { position: static; }
  .rating-block { grid-template-columns: 1fr; gap: 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .footer-grid > p:last-child { grid-column: auto; }
  .mobile-cta {
    position: fixed;
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    left: 14px;
    z-index: 35;
    display: grid;
    min-height: 52px;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: var(--forest-dark);
    box-shadow: 0 14px 35px rgba(16, 42, 32, .35);
    font-weight: 900;
    text-decoration: none;
  }
}

@media (max-width: 430px) {
  .brand-mark { width: 40px; height: 40px; }
  .brand-copy small { font-size: .61rem; }
  .hero-actions .button { width: 100%; }
  .trust-row { grid-template-columns: 1fr; margin-top: 32px; }
  .trust-row div { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .trust-row div + div { padding-left: 0; border-left: 0; }
  .hero-visual { width: 100%; }
  .hero-photo { height: 440px; }
  .visual-card { right: 8px; bottom: 12px; }
  .format-card { min-height: 0; }
  .proof-card, .booking-card { border-radius: 24px; }
  .rating-block > strong { font-size: 4.7rem; }
  .timeline li { grid-template-columns: 50px 1fr; gap: 16px; }
  .timeline li > span { width: 44px; height: 44px; }
  .contact-actions .button { width: 100%; }
  .phone-link { width: 100%; margin: 6px 0 0; text-align: center; }
  .faq-list details p { padding-right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
