:root {
  --cream: #f8f3ea;
  --paper: #fffdf9;
  --ink: #121212;
  --muted: #625e58;
  --gold: #a7782b;
  --gold-soft: #c9ab73;
  --line: rgba(167, 120, 43, 0.5);
  --dark: #11100f;
  --max: 760px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--cream); }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.section-shell {
  width: min(100% - 36px, var(--max));
  margin-inline: auto;
}

.site-header {
  padding: 28px 18px 8px;
  text-align: center;
}
.wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
}
.wordmark-the {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 14px;
  letter-spacing: .38em;
  margin-left: .38em;
  position: relative;
}
.wordmark-the::before,
.wordmark-the::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 56px;
  height: 1px;
  background: var(--gold);
}
.wordmark-the::before { right: calc(100% + 16px); }
.wordmark-the::after { left: calc(100% + 16px); }
.wordmark-main {
  margin-top: 6px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(48px, 15vw, 82px);
  line-height: .9;
  letter-spacing: -.055em;
  white-space: nowrap;
}
.wordmark-main em {
  font-family: 'Brush Script MT', 'Segoe Script', cursive;
  font-weight: 400;
  color: var(--gold);
  font-size: .58em;
  letter-spacing: -.05em;
  margin-inline: .05em;
}
.wordmark-sub {
  margin-top: 14px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .24em;
}

.hero {
  padding: 54px 0 66px;
  text-align: center;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  text-transform: uppercase;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 12px;
  letter-spacing: .17em;
  font-weight: 700;
}
.hero h1,
.section-intro h2,
.series-block h2,
.reservation-card h2 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: -.025em;
}
.hero h1 { font-size: clamp(36px, 10vw, 58px); line-height: 1.03; }
.hero-copy {
  margin: 22px auto 0;
  max-width: 590px;
  color: #393633;
  font-size: 17px;
  line-height: 1.62;
}
.hero-actions {
  display: grid;
  gap: 11px;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 700;
  transition: transform .12s ease, opacity .12s ease, background .12s ease;
}
.button:active { transform: scale(.985); }
.button-primary { background: var(--ink); color: white; }
.button-secondary { background: transparent; color: var(--ink); }
.button-wide { width: 100%; }
.microcopy {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .03em;
  line-height: 1.6;
}
.microcopy span { color: var(--gold); margin-inline: 4px; }

.experience-section { padding: 24px 0 70px; }
.section-intro { text-align: center; margin-bottom: 30px; }
.section-intro.compact { margin-bottom: 22px; }
.section-intro h2,
.series-block h2 { font-size: clamp(30px, 8vw, 45px); line-height: 1.08; }
.section-intro > p:last-child,
.series-block > p:last-child {
  margin: 15px auto 0;
  max-width: 590px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 16px;
}
.feature-grid {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.feature { padding: 28px 4px; }
.feature + .feature { border-top: 1px solid var(--line); }
.feature-kicker {
  margin: 0 0 9px;
  color: var(--gold);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 12px;
  letter-spacing: .14em;
}
.feature h3,
.steps-list h3 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 24px;
  font-weight: 400;
}
.feature p:last-child,
.steps-list p {
  margin: 9px 0 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 15px;
}

.dark-section { background: var(--dark); color: white; }
.series-block { padding: 58px 0 62px; text-align: center; }
.eyebrow.light { color: var(--gold-soft); }
.series-block > p:last-child { color: #d7d0c6; }

.steps-section { padding: 68px 0 72px; }
.steps-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.steps-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.step-number {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 15px;
}
.steps-list h3 { font-size: 22px; }

.reservation-card {
  margin-top: 36px;
  padding: 30px 22px 28px;
  border: 1px solid var(--gold);
  background: rgba(255,255,255,.35);
  text-align: center;
}
.reservation-card h2 { font-size: 34px; }
.reservation-card > p:not(.eyebrow) { color: var(--muted); line-height: 1.55; }
.phone-link {
  display: inline-block;
  margin-top: 18px;
  font-family: Georgia, 'Times New Roman', serif;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.faq-section { padding: 0 0 90px; }
details { border-top: 1px solid var(--line); }
details:last-child { border-bottom: 1px solid var(--line); }
summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 34px 22px 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 20px;
  position: relative;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 19px;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 300;
}
details[open] summary::after { content: "–"; }
details p {
  margin: -5px 0 22px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

.site-footer { background: #efe7da; border-top: 1px solid var(--line); }
.footer-inner { padding: 36px 0 calc(98px + var(--safe-bottom)); text-align: center; }
.footer-line {
  color: var(--gold);
  font-family: Georgia, 'Times New Roman', serif;
  letter-spacing: .18em;
  font-size: 13px;
  font-weight: 700;
}
.footer-contact { margin: 18px 0 0; font-size: 14px; }
.footer-note { margin: 14px auto 0; max-width: 520px; color: var(--muted); font-size: 11px; line-height: 1.5; }

.mobile-reserve {
  position: fixed;
  z-index: 30;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: calc(68px + var(--safe-bottom));
  padding: 10px 14px calc(10px + var(--safe-bottom));
  background: rgba(17,16,15,.97);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--gold);
}
.mobile-reserve div { display: flex; flex-direction: column; gap: 3px; }
.mobile-reserve span { font-family: Georgia, 'Times New Roman', serif; font-size: 13px; letter-spacing: .12em; }
.mobile-reserve small { color: #c7beb1; font-size: 11px; }
.mobile-reserve a {
  min-width: 112px;
  padding: 12px 16px;
  background: var(--cream);
  color: var(--ink);
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 11px;
  font-weight: 700;
}

@media (min-width: 640px) {
  .site-header { padding-top: 42px; }
  .hero { padding-top: 74px; }
  .hero-actions { display: flex; justify-content: center; }
  .button { min-width: 220px; }
  .feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
  .feature { padding: 30px 22px; }
  .feature + .feature { border-top: 0; border-left: 1px solid var(--line); }
  .reservation-card { padding-inline: 46px; }
  .mobile-reserve { display: none; }
  .footer-inner { padding-bottom: 42px; }
}

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