:root {
  color-scheme: light;
  --ink: #251812;
  --muted: #6f5d54;
  --soft: #f8f1eb;
  --paper: #fffaf6;
  --rose: #9b3f43;
  --rose-dark: #632529;
  --gold: #bb8f52;
  --line: rgba(55, 34, 25, .16);
  --shadow: 0 24px 70px rgba(54, 31, 24, .16);
  --radius: 28px;
  --font-serif: Georgia, "Times New Roman", serif;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: radial-gradient(circle at 10% 0%, #fff3ea 0, transparent 38rem), var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
::selection { background: #f2c5b8; color: var(--ink); }

.skip-link {
  position: fixed;
  left: 1rem;
  top: .75rem;
  z-index: 1000;
  transform: translateY(-160%);
  padding: .75rem 1rem;
  background: var(--ink);
  color: white;
  border-radius: 999px;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #111; outline-offset: 4px; }

.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;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(31, 19, 16, .76);
  backdrop-filter: blur(18px);
}
.age-gate[hidden] { display: none; }
.age-gate__panel {
  width: min(100%, 520px);
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #fffaf6, #f7e8de);
  box-shadow: var(--shadow);
}
.age-gate h1 { margin: .25rem 0 .75rem; font-family: var(--font-serif); font-size: clamp(2.2rem, 7vw, 4rem); line-height: .95; }
.age-gate__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.25rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 246, .82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(37, 24, 18, .06); }
.nav {
  max-width: 1180px;
  margin: 0 auto;
  min-height: 74px;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand { display: inline-flex; align-items: center; gap: .75rem; text-decoration: none; min-height: 44px; }
.brand__mark { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: #fff; font-family: var(--font-serif); letter-spacing: .04em; }
.brand__text { font-weight: 750; letter-spacing: -.02em; }
.nav__menu { display: flex; align-items: center; gap: .35rem; }
.nav__menu a { min-height: 44px; display: inline-flex; align-items: center; padding: 0 .85rem; border-radius: 999px; text-decoration: none; color: var(--muted); font-size: .95rem; }
.nav__menu a:hover, .nav__menu a:focus-visible { background: #f1e2d7; color: var(--ink); }
.nav__toggle { display: none; width: 48px; height: 48px; border: 0; background: transparent; border-radius: 50%; }
.nav__toggle span:not(.sr-only) { display: block; width: 22px; height: 2px; margin: 5px auto; background: var(--ink); }

.section { padding: clamp(4.5rem, 9vw, 8rem) 1.25rem; }
.section__kicker, .eyebrow { margin: 0 0 .9rem; color: var(--rose); font-weight: 800; font-size: .77rem; text-transform: uppercase; letter-spacing: .18em; }
.section__heading { max-width: 780px; margin: 0 auto 2.5rem; text-align: center; }
h1, h2, h3 { text-wrap: balance; }
h1, h2 { font-family: var(--font-serif); font-weight: 500; letter-spacing: -.045em; }
h2 { margin: 0; font-size: clamp(2.4rem, 5.5vw, 5.2rem); line-height: .96; }
h3 { margin: 0 0 .7rem; font-size: 1.15rem; line-height: 1.2; }
p { margin-top: 0; color: var(--muted); }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: 999px;
  padding: .85rem 1.15rem;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button--primary { background: var(--ink); color: #fff; box-shadow: 0 16px 36px rgba(37,24,18,.20); }
.button--secondary { background: rgba(255,255,255,.68); color: var(--ink); border-color: var(--line); }
.button--ghost { background: transparent; color: var(--ink); border-color: var(--line); }

.hero {
  min-height: calc(100svh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  max-width: 1220px;
  margin: 0 auto;
  position: relative;
}
.hero__bg {
  position: absolute;
  inset: 6% 0 auto 46%;
  height: 66%;
  z-index: -1;
  background: linear-gradient(145deg, rgba(155,63,67,.18), rgba(187,143,82,.14));
  border-radius: 999px;
  filter: blur(10px);
}
.hero h1 { margin: 0; font-size: clamp(3.4rem, 8vw, 7.8rem); line-height: .86; max-width: 850px; }
.hero__lede { max-width: 650px; margin: 1.4rem 0 0; font-size: clamp(1.1rem, 2vw, 1.35rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 2rem 0; }
.hero__facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .8rem; margin: 0; }
.hero__facts div { padding: 1rem; border: 1px solid var(--line); background: rgba(255,255,255,.56); border-radius: 20px; }
.hero__facts dt { color: var(--rose); font-weight: 800; font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; }
.hero__facts dd { margin: .25rem 0 0; font-weight: 700; line-height: 1.35; }
.hero__portrait { position: relative; align-self: stretch; min-height: 640px; border-radius: 42px; overflow: hidden; box-shadow: var(--shadow); background: #ead8cd; }
.hero__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.portrait-card { position: absolute; left: 1rem; right: 1rem; bottom: 1rem; display: flex; flex-wrap: wrap; gap: .5rem; padding: .7rem; border-radius: 999px; background: rgba(255,250,246,.84); backdrop-filter: blur(12px); }
.portrait-card span { padding: .45rem .7rem; border-radius: 999px; background: #fff; font-size: .82rem; font-weight: 800; }

.intro { max-width: 1180px; margin: 0 auto; }
.intro__grid { display: grid; grid-template-columns: .95fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.intro__copy { font-size: 1.15rem; }

.experience { background: #1f1411; color: #fff; }
.experience .section__heading p, .experience p { color: rgba(255,255,255,.68); }
.experience .section__kicker { color: #e9b68f; }
.experience__cards { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.experience-card { min-height: 310px; padding: 1.35rem; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.14); background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.045)); }
.experience-card__number { display: block; margin-bottom: 5rem; color: #e9b68f; font-family: var(--font-serif); font-size: 2rem; }
.experience-card h3 { color: #fff; font-size: 1.4rem; }

.rates__panel, .policy-card, .booking__panel { max-width: 1180px; margin: 0 auto; border-radius: 42px; padding: clamp(1.25rem, 5vw, 3.5rem); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.rates__panel { display: grid; grid-template-columns: .9fr 1fr; gap: 2rem; align-items: start; }
.rate-list { display: grid; gap: .75rem; }
.rate-row { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
.rate-row strong { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 500; white-space: nowrap; }

.gallery__grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 260px; gap: .8rem; }
.gallery-item { border: 0; padding: 0; border-radius: 26px; overflow: hidden; background: #ead8cd; cursor: zoom-in; box-shadow: 0 12px 32px rgba(37,24,18,.10); }
.gallery-item--large { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, filter .45s ease; }
.gallery-item:hover img { transform: scale(1.035); filter: saturate(1.04); }

.etiquette { background: var(--soft); }
.guide-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .9rem; }
.guide-card { padding: 1.1rem; border-radius: 24px; background: #fffaf6; border: 1px solid var(--line); }
.guide-card h3 { font-size: 1.08rem; }

.policy-card { display: grid; grid-template-columns: .75fr 1fr; gap: 2rem; }
.accordion__trigger { width: 100%; min-height: 56px; display: flex; justify-content: space-between; align-items: center; border: 0; border-top: 1px solid var(--line); background: transparent; font-weight: 850; cursor: pointer; text-align: left; }
.accordion__panel { padding: 0 0 1rem; }
.accordion__panel p { margin: 0; }

.booking { padding-top: 2rem; }
.booking__panel { display: grid; grid-template-columns: .8fr 1fr; gap: 2rem; background: linear-gradient(145deg, #2a1915, #4b2025); color: #fff; }
.booking__panel p { color: rgba(255,255,255,.74); }
.booking__panel .section__kicker { color: #eec49e; }
.booking-form { display: grid; gap: 1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { display: block; margin-bottom: .35rem; color: rgba(255,255,255,.82); font-weight: 800; font-size: .9rem; }
.field input, .field select, .field textarea, .copy-output { width: 100%; border: 1px solid rgba(255,255,255,.22); border-radius: 16px; background: rgba(255,255,255,.1); color: #fff; padding: .9rem 1rem; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.48); }
.field select option { color: #111; }
.copy-output { resize: vertical; background: rgba(255,255,255,.14); }
.form-status { min-height: 1.5rem; margin: 0; font-weight: 800; color: #fff; }

.site-footer { max-width: 1180px; margin: 0 auto; padding: 2rem 1.25rem 3rem; display: flex; justify-content: space-between; gap: 1rem; border-top: 1px solid var(--line); }
.site-footer p { margin: .25rem 0 0; }
.footer-links { display: flex; gap: .8rem; flex-wrap: wrap; }
.footer-links a { min-height: 44px; display: inline-flex; align-items: center; }

.lightbox { position: fixed; inset: 0; z-index: 500; display: grid; place-items: center; padding: 5rem 1rem 1rem; background: rgba(20, 12, 10, .86); }
.lightbox[hidden] { display: none; }
.lightbox img { max-height: calc(100svh - 7rem); width: auto; border-radius: 24px; box-shadow: var(--shadow); }
.lightbox__close { position: fixed; top: 1rem; right: 1rem; min-height: 48px; padding: .75rem 1rem; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; background: #fff; color: var(--ink); font-weight: 800; cursor: pointer; }

.reveal { opacity: 1; transform: none; }
.has-motion .reveal { opacity: 1; transform: translateY(14px); transition: transform .7s ease; }
.has-motion .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 920px) {
  .nav__toggle { display: inline-block; }
  .nav__menu { position: fixed; inset: 74px 1rem auto 1rem; display: none; flex-direction: column; align-items: stretch; padding: .8rem; border: 1px solid var(--line); border-radius: 24px; background: #fffaf6; box-shadow: var(--shadow); }
  .nav__menu.is-open { display: flex; }
  .nav__menu a { justify-content: center; }
  .hero { grid-template-columns: 1fr; padding-top: 3rem; }
  .hero__portrait { min-height: 520px; order: -1; }
  .hero__facts, .experience__cards, .guide-grid, .rates__panel, .policy-card, .booking__panel, .intro__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 210px; }
}

@media (max-width: 560px) {
  .section { padding-left: 1rem; padding-right: 1rem; }
  .hero h1 { font-size: clamp(3rem, 17vw, 4.4rem); }
  .hero__portrait { min-height: 430px; border-radius: 30px; }
  .hero__facts { gap: .6rem; }
  .hero__facts div { padding: .85rem; }
  .field-row { grid-template-columns: 1fr; }
  .gallery__grid { grid-auto-rows: 170px; }
  .gallery-item--large { grid-column: span 2; grid-row: span 2; }
  .site-footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .has-motion .reveal { opacity: 1; transform: none; }
}
