/* ============================================================
   Taylor & Benjamin — Western Elegance
   Palette: burgundy, sage/olive, ivory, brown
   ============================================================ */

:root {
  --burgundy: #5e1f2b;
  --burgundy-deep: #47121c;
  --burgundy-soft: #7a3542;
  --sage: #7d8b6a;
  --sage-deep: #5f6d4e;
  --sage-soft: #a9b494;
  --ivory: #f6f1e6;
  --ivory-warm: #fbf7ee;
  --ivory-deep: #ece4d2;
  --brown: #6e4b32;
  --brown-deep: #4a3221;
  --brown-soft: #96775c;
  --gold: #b08d4f;
  --ink: #33241c;

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "EB Garamond", Georgia, serif;
  --font-script: "Pinyon Script", cursive;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html {
  scroll-behavior: auto;
  background-color: var(--brown-deep);
}

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Solid band behind iOS status bar / notch (reliable vs. photo bleed) */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: env(safe-area-inset-top, 0px);
  background: var(--brown-deep);
  z-index: 101;
  pointer-events: none;
}

img { max-width: 100%; display: block; }

::selection { background: var(--burgundy); color: var(--ivory); }

/* ---- textured grain overlay ---- */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 9s steps(6) infinite;
}
@keyframes grain-shift {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(3%, 3%); }
}
@media (max-width: 720px), (prefers-reduced-motion: reduce) {
  .grain { animation: none; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: calc(1.1rem + env(safe-area-inset-top, 0px));
  padding-bottom: 1.1rem;
  padding-left: max(clamp(1.25rem, 4vw, 3rem), env(safe-area-inset-left, 0px));
  padding-right: max(clamp(1.25rem, 4vw, 3rem), env(safe-area-inset-right, 0px));
  transition: transform 0.45s var(--ease-soft), background-color 0.45s var(--ease-soft), box-shadow 0.45s var(--ease-soft), padding 0.45s var(--ease-soft);
}
.nav--hidden {
  transform: translateY(calc(-100% - 0.5rem));
  pointer-events: none;
}
.nav--solid {
  background: rgba(246, 241, 230, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(51, 36, 28, 0.08);
  padding-top: calc(0.7rem + env(safe-area-inset-top, 0px));
  padding-bottom: 0.7rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2.5vw, 2rem);
}
.nav__links a {
  position: relative;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
  text-decoration: none;
  padding: 0.25rem 0;
  transition: color 0.45s var(--ease-soft);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.nav--solid .nav__links a { color: var(--ink); text-shadow: none; }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.nav__links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

@media (max-width: 720px) {
  .nav {
    padding-top: calc(0.75rem + env(safe-area-inset-top, 0px));
    padding-bottom: 0.65rem;
  }
  .nav--solid {
    padding-top: calc(0.55rem + env(safe-area-inset-top, 0px));
    padding-bottom: 0.55rem;
  }
  .nav__links {
    gap: clamp(0.6rem, 3.4vw, 1.05rem);
    justify-content: center;
    width: 100%;
    max-width: 100%;
  }
  .nav__links a {
    font-size: clamp(0.62rem, 2.9vw, 0.78rem);
    letter-spacing: 0.1em;
    padding: 0.1rem 0;
    white-space: nowrap;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding:
    calc(7rem + env(safe-area-inset-top, 0px))
    max(1.5rem, env(safe-area-inset-right, 0px))
    calc(5rem + env(safe-area-inset-bottom, 0px))
    max(1.5rem, env(safe-area-inset-left, 0px));
  background: var(--brown-deep);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  contain: layout paint;
}
.hero__bg .embla {
  height: 100%;
  cursor: default;
  overflow: hidden;
}
.hero__bg .embla__container {
  height: 100%;
  display: flex;
  gap: 0;
  will-change: transform;
  backface-visibility: hidden;
}
.hero__bg .embla__slide {
  flex: 0 0 auto;
  height: 100%;
  aspect-ratio: 2 / 3;
  contain: layout paint;
}
.hero__bg .embla__slide--wide { aspect-ratio: 3 / 2; }
@media (max-width: 640px) {
  .hero__bg .embla__slide { aspect-ratio: 3 / 5; }
  .hero__bg .embla__slide--wide { aspect-ratio: 1 / 1; }
}
.hero__bg .embla__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.hero__veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(26, 15, 10, 0.42) 0%, rgba(26, 15, 10, 0.28) 30%, rgba(26, 15, 10, 0.34) 70%, rgba(38, 20, 14, 0.62) 100%),
    radial-gradient(ellipse 90% 70% at 50% 50%, rgba(26, 15, 10, 0.18), rgba(26, 15, 10, 0.42) 100%);
}

.hero__inner { max-width: 66rem; position: relative; z-index: 1; }

.hero__names {
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  align-items: center;
  justify-items: center;
  min-height: clamp(14rem, 38vh, 22rem);
}
.hero__person {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.hero__person:first-child {
  align-self: end;
  padding-bottom: clamp(0.5rem, 1.5vh, 0.9rem);
}
.hero__person:last-child {
  align-self: start;
  padding-top: clamp(0.5rem, 1.5vh, 0.9rem);
}
.hero__first {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.8rem, 9.5vw, 6.2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ivory);
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.55);
}
.hero__last {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.15rem, 2.6vw, 1.55rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-indent: 0.12em;
  color: var(--ivory);
  margin-top: 0.35em;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.55);
}
.hero__amp {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--ivory);
  line-height: 1;
  margin: 0;
  padding-top: 0.35em;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.55);
  align-self: center;
}
.hero__scrollcue {
  position: absolute;
  bottom: calc(1.8rem + env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(246, 241, 230, 0.8);
  z-index: 1;
}
.hero__scrollcue span {
  font-size: 0.65rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}
.hero__scrollline {
  width: 1px;
  height: 44px;
  background: rgba(246, 241, 230, 0.4);
  overflow: hidden;
  position: relative;
}
.hero__scrollline::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--ivory);
  animation: scroll-drip 2.2s var(--ease-soft) infinite;
}
@keyframes scroll-drip {
  0% { top: -100%; }
  55%, 100% { top: 100%; }
}

/* Pre-hide hero entrance targets so they never flash before GSAP runs */
@media (prefers-reduced-motion: no-preference) {
  .hero__bg {
    opacity: 0;
    transform: scale(1.05);
    transform-origin: center center;
  }
  .hero__person {
    opacity: 0;
    transform: translateY(36px);
  }
  .hero__amp {
    opacity: 0;
    transform: scale(0.88);
  }
  .hero__scrollcue {
    opacity: 0;
  }
  .nav__links a {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
  }
}

/* ============================================================
   EMBLA BASE
   ============================================================ */
.embla { overflow: hidden; }
.embla__container {
  display: flex;
  touch-action: pan-y pinch-zoom;
}

/* ============================================================
   GENERIC SECTION SCAFFOLD
   ============================================================ */
.section { padding: clamp(4.5rem, 9vw, 8rem) 1.5rem; }
.section__inner {
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
}
.section__inner--wide { max-width: 72rem; }
.section__inner--narrow { max-width: 44rem; }

.section__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 0.9rem;
}
.section__eyebrow--light { color: var(--sage-soft); }
.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  color: var(--burgundy);
  margin: 0 0 1.1rem;
  letter-spacing: 0.03em;
}
.section__title--light { color: var(--ivory); }

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  width: min(16rem, 55%);
  margin: 0 auto 2.6rem;
}
.divider span { flex: 1; height: 1px; background: linear-gradient(to var(--dir, right), transparent, var(--gold)); }
.divider span:last-child { --dir: left; }
.divider svg { width: 10px; height: 10px; fill: var(--gold); flex: none; }
.divider--light svg { fill: var(--sage-soft); }
.divider--light span { background: linear-gradient(to var(--dir, right), transparent, var(--sage-soft)); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  border-radius: 1px;
  transition: color 0.4s var(--ease-soft), border-color 0.4s var(--ease-soft), transform 0.25s var(--ease-out), box-shadow 0.35s var(--ease-soft);
  isolation: isolate;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.45s var(--ease-out);
}
.btn:hover::before { transform: scaleY(1); }
.btn:active { transform: scale(0.97); }
.btn__label { position: relative; }

.btn--primary {
  background: var(--burgundy);
  color: var(--ivory);
  border: 1px solid var(--burgundy);
  box-shadow: 0 10px 24px -12px rgba(94, 31, 43, 0.55);
}
.btn--primary::before { background: var(--burgundy-deep); }
.btn--primary:hover { box-shadow: 0 14px 30px -12px rgba(94, 31, 43, 0.65); }

.btn--ghost {
  background: transparent;
  color: var(--brown);
  border: 1px solid var(--brown-soft);
}
.btn--ghost::before { background: var(--brown); }
.btn--ghost:hover { color: var(--ivory); border-color: var(--brown); }

.btn--full { width: 100%; }

/* ============================================================
   DETAILS + TIMELINE
   ============================================================ */
.section--details {
  background: var(--ivory-warm);
}
.venue-card {
  margin: 0 auto 4rem;
  padding: 2.4rem 2rem 2.6rem;
  border: 1px solid rgba(176, 141, 79, 0.35);
  position: relative;
  max-width: 34rem;
  background: var(--ivory);
}
.venue-card::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(176, 141, 79, 0.25);
  pointer-events: none;
}
.venue-card__name {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--brown-deep);
  margin: 0 0 0.3rem;
}
.venue-card__addr { color: var(--brown); margin: 0 0 1.5rem; font-style: italic; }

.timeline {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 36rem;
  text-align: left;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 7.2rem;
  width: 1px;
  background: rgba(176, 141, 79, 0.35);
}
.timeline::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 7.2rem;
  width: 1px;
  height: var(--tl-progress, 0%);
  max-height: calc(100% - 12px);
  background: var(--burgundy);
  transition: none;
}
.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 5.6rem 1fr;
  gap: 3.2rem;
  padding: 1.4rem 0;
}
.timeline__dot {
  position: absolute;
  left: 7.2rem;
  top: 2.1rem;
  width: 9px;
  height: 9px;
  transform: translateX(-4.5px) rotate(45deg);
  background: var(--ivory);
  border: 1px solid var(--gold);
  z-index: 1;
  transition: background-color 0.5s var(--ease-soft);
}
.timeline__item.is-passed .timeline__dot { background: var(--burgundy); border-color: var(--burgundy); }
.timeline__time {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--burgundy);
  text-align: right;
  margin: 0;
  padding-top: 0.15rem;
  letter-spacing: 0.03em;
  line-height: 1.35;
}
.timeline__time small { font-size: 0.75em; }
.timeline__body h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  margin: 0 0 0.3rem;
  color: var(--ink);
}
.timeline__body p { margin: 0; color: var(--brown); font-size: 1.02rem; }

@media (max-width: 560px) {
  .timeline::before, .timeline::after { left: 4.9rem; }
  .timeline__dot { left: 4.9rem; }
  .timeline__item { grid-template-columns: 3.6rem 1fr; gap: 2.4rem; }
  .timeline__time { font-size: 0.98rem; }
}

.song-request {
  margin-top: 4.5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(176, 141, 79, 0.3);
}
.song-request__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--brown);
  margin: 0 0 1.4rem;
}

/* ============================================================
   DRESS CODE
   ============================================================ */
.section--dress {
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(125, 139, 106, 0.14), transparent 65%),
    var(--ivory);
}
.dress__lede {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  color: var(--ink);
  margin: 0.4rem 0 0.8rem;
}
.dress__copy {
  max-width: 38rem;
  margin: 0 auto 1.6rem;
  color: var(--brown);
}
.dress__no-denim {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--burgundy);
  border: 1px solid rgba(94, 31, 43, 0.45);
  padding: 0.6rem 1.5rem;
  margin: 0 0 3rem;
}
.dress__group-label {
  font-family: var(--font-script);
  font-size: 1.9rem;
  color: var(--sage-deep);
  margin: 0 0 1.6rem;
}

.outfit-strip {
  /* break out of the section's horizontal padding to run edge-to-edge */
  margin: 1rem calc(50% - 50vw) 0;
  overflow: hidden;
}
.embla--outfits {
  padding: 1.5rem 0 0.5rem;
}
.embla--outfits .embla__container {
  gap: clamp(2.6rem, 7vw, 5.5rem);
  align-items: flex-end;
  touch-action: pan-x pinch-zoom;
}
.outfit-figure {
  flex: 0 0 auto;
  margin: 0;
}
.outfit-figure img {
  height: clamp(380px, 58vw, 620px);
  width: auto;
}

/* ============================================================
   RSVP
   ============================================================ */
.section--rsvp {
  background:
    radial-gradient(ellipse 80% 60% at 50% 110%, rgba(0, 0, 0, 0.25), transparent 65%),
    linear-gradient(170deg, var(--burgundy) 0%, var(--burgundy-deep) 100%);
  color: var(--ivory);
}
.rsvp__lede {
  color: rgba(246, 241, 230, 0.8);
  font-style: italic;
  margin: 0 auto 2.4rem;
  max-width: none;
  white-space: nowrap;
}
@media (max-width: 700px) {
  .rsvp__lede { white-space: normal; max-width: 30rem; }
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; gap: 0; }
}
.rsvp-card {
  background: var(--ivory-warm);
  color: var(--ink);
  padding: clamp(1.8rem, 5vw, 3rem);
  text-align: left;
  border-radius: 2px;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.55);
  position: relative;
  overflow: hidden;
}
.rsvp-card::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(176, 141, 79, 0.3);
  pointer-events: none;
}

.rsvp-step { position: relative; }

.field { margin-bottom: 1.3rem; }
.field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.45rem;
}
.field input[type="text"] {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid rgba(110, 75, 50, 0.35);
  border-radius: 1px;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color 0.35s var(--ease-soft), box-shadow 0.35s var(--ease-soft), background-color 0.35s var(--ease-soft);
}
.field input[type="text"]:focus {
  border-color: var(--burgundy);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(94, 31, 43, 0.12);
}

.rsvp-error {
  color: var(--burgundy);
  font-style: italic;
  margin: 0 0 1.1rem;
}

.rsvp-party__greeting {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--burgundy);
  margin: 0 0 1.6rem;
  text-align: center;
}

.rsvp-guest {
  padding: 1.4rem 0;
  border-top: 1px solid rgba(176, 141, 79, 0.3);
}
.rsvp-guest:last-of-type { border-bottom: 1px solid rgba(176, 141, 79, 0.3); margin-bottom: 1.6rem; }
.rsvp-guest__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin: 0 0 0.8rem;
}
.rsvp-guest__choices {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-bottom: 0.9rem;
}
.rsvp-choice { position: relative; }
.rsvp-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.rsvp-choice span {
  display: inline-block;
  padding: 0.55rem 1.25rem;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid rgba(110, 75, 50, 0.4);
  color: var(--brown);
  cursor: pointer;
  transition: all 0.3s var(--ease-soft);
  user-select: none;
}
.rsvp-choice input:checked + span {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--ivory);
  box-shadow: 0 8px 18px -10px rgba(94, 31, 43, 0.6);
}
.rsvp-choice--decline input:checked + span {
  background: var(--brown);
  border-color: var(--brown);
}
.rsvp-choice input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }
.rsvp-choice:hover span { border-color: var(--burgundy); }

.rsvp-guest__dietary {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s var(--ease-out), opacity 0.45s var(--ease-soft), margin 0.5s var(--ease-out);
  margin-top: 0;
}
.rsvp-guest__dietary.is-open { max-height: 120px; opacity: 1; margin-top: 0.4rem; }
.rsvp-guest__dietary label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown-soft);
  margin-bottom: 0.35rem;
}
.rsvp-guest__dietary input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(110, 75, 50, 0.3);
  background: var(--ivory);
  outline: none;
  transition: border-color 0.3s;
}
.rsvp-guest__dietary input:focus { border-color: var(--burgundy); }

.rsvp-party__actions {
  display: flex;
  gap: 0.9rem;
  justify-content: space-between;
}

.rsvp-step--done { text-align: center; padding: 1.5rem 0; }
.rsvp-done__flourish {
  width: 30px;
  height: 30px;
  fill: var(--gold);
  margin-bottom: 1rem;
}
.rsvp-done__title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--burgundy);
  margin: 0 0 0.6rem;
}
.rsvp-done__text { color: var(--brown); font-style: italic; margin: 0; }

.btn.is-loading .btn__label { opacity: 0.45; }
.btn.is-loading { pointer-events: none; }

/* ============================================================
   STAY
   ============================================================ */
.section--stay { background: var(--ivory-warm); }
.stay__copy { max-width: 36rem; margin: 0 auto 2.6rem; color: var(--brown); }
.stay-card {
  border: 1px solid rgba(125, 139, 106, 0.45);
  background: var(--ivory);
  padding: 2.6rem 2rem;
  position: relative;
}
.stay-card::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(125, 139, 106, 0.3);
  pointer-events: none;
}
.stay-card__label {
  font-size: 0.75rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 0.8rem;
}
.stay-card__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.8rem;
  color: var(--brown-deep);
  margin: 0 0 0.4rem;
}
.stay-card__addr { margin: 0 0 0.2rem; font-style: italic; color: var(--brown); }
.stay-card__phone { margin: 0 0 1.8rem; }
.stay-card__phone a { color: var(--brown); text-decoration: none; border-bottom: 1px solid rgba(110, 75, 50, 0.4); transition: color 0.3s, border-color 0.3s; }
.stay-card__phone a:hover { color: var(--burgundy); border-color: var(--burgundy); }
.stay-card__actions {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
@media (max-width: 720px) {
  .stay-card__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .stay-card__actions .btn {
    width: 100%;
  }
}

/* ============================================================
   Q&A
   ============================================================ */
.section--qa { background: var(--ivory); }
.qa { text-align: left; }
.qa__item {
  border-bottom: 1px solid rgba(176, 141, 79, 0.35);
}
.qa__item:first-child { border-top: 1px solid rgba(176, 141, 79, 0.35); }
.qa__item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  padding: 1.35rem 0.4rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.3s var(--ease-soft);
}
.qa__item summary::-webkit-details-marker { display: none; }
.qa__item summary:hover { color: var(--burgundy); }
.qa__chev {
  width: 19px;
  height: 19px;
  flex: none;
  color: var(--gold);
  transition: transform 0.45s var(--ease-out);
}
.qa__item.is-open .qa__chev { transform: rotate(180deg); }
.qa__answer {
  overflow: hidden;
}
.qa__answer p {
  margin: 0;
  padding: 0 0.4rem 1.5rem;
  color: var(--brown);
  max-width: 40rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  text-align: center;
  padding: 4.5rem 1.5rem 3.5rem;
  background: linear-gradient(var(--ivory), var(--ivory-deep));
}
.footer__names {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  color: var(--burgundy);
  margin: 1.6rem 0 0.4rem;
}
.footer__amp {
  font: inherit;
  color: inherit;
}
.footer__date {
  letter-spacing: 0.4em;
  color: var(--brown-soft);
  font-size: 0.9rem;
  margin: 0 0 1rem;
}
.footer__note { font-style: italic; color: var(--brown); margin: 0; }

/* ============================================================
   REVEAL DEFAULTS (JS sets initial states; this is no-JS fallback safety)
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .grain { animation: none; }
}
