:root {
  /* Christmas palette: deep evergreen, cranberry, antique gold, warm parchment */
  --bg: #f4ede0;          /* warm parchment */
  --bg-soft: #ebe2d0;     /* aged paper */
  --bg-alt: #ddd0b6;      /* deeper cream */
  --ink: #1f2e23;         /* deep forest ink */
  --muted: #5a6a5c;       /* sage muted */
  --line: rgba(31, 46, 35, 0.32);
  --line-soft: rgba(31, 46, 35, 0.18);
  --accent: #8a1f1f;      /* cranberry red */
  --accent-deep: #5e1414; /* mulled wine */
  --accent-soft: #b84545;
  --evergreen: #1f3a2a;   /* spruce */
  --evergreen-deep: #15281d;
  --gold: #b08840;        /* antique gold */
  --gold-soft: #d6ae64;
  --tone-rose: rgba(138, 31, 31, 0.07);
  --tone-sage: rgba(31, 58, 42, 0.09);
  --tone-sky: rgba(244, 237, 224, 0.22);
  --tone-lilac: rgba(176, 136, 64, 0.12);
  --tone-gold: rgba(176, 136, 64, 0.18);
  --xmas-dark-green: #1f3a2a;
  --xmas-mid-green: #3d7040;
  --xmas-red-deep: #5e1414;
  --xmas-red: #8a1f1f;
  --xmas-silver: #e5e5e3;
  --xmas-gold: #b08840;
  --display: "Cormorant Garamond", serif;
  --body: "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--body);
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(31, 58, 42, 0.10), rgba(31, 58, 42, 0) 44%),
    radial-gradient(circle at 88% 24%, rgba(138, 31, 31, 0.07), rgba(138, 31, 31, 0) 42%),
    radial-gradient(circle at 22% 80%, rgba(176, 136, 64, 0.10), rgba(176, 136, 64, 0) 44%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 50%, var(--bg-alt) 100%);
}

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

.ambient-one {
  width: 380px;
  height: 380px;
  top: -100px;
  left: -90px;
  background: radial-gradient(circle, rgba(31, 58, 42, 0.20), rgba(31, 58, 42, 0));
  animation: drift 14s ease-in-out infinite alternate;
}

.ambient-two {
  width: 320px;
  height: 320px;
  bottom: 8%;
  right: -90px;
  background: radial-gradient(circle, rgba(138, 31, 31, 0.16), rgba(138, 31, 31, 0));
  animation: drift 17s ease-in-out infinite alternate-reverse;
}

.site {
  width: min(1180px, calc(100% - 54px));
  margin: 94px auto 18px;
}

.topbar {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 30px));
  padding: 11px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 18px;
  background: rgba(244, 237, 224, 0.86);
  border: 1px solid rgba(31, 46, 35, 0.16);
  backdrop-filter: blur(8px);
  z-index: 20;
  transition: box-shadow 240ms ease, background-color 240ms ease, border-color 240ms ease;
}

.topbar.scrolled {
  box-shadow: 0 8px 20px rgba(20, 30, 22, 0.12);
  background: rgba(244, 237, 224, 0.94);
}

.brand {
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.08em;
  font-size: 0.94rem;
  font-family: var(--display);
  font-weight: 600;
}

.menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu a,
.menu-cta {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.79rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 8px 11px;
  border-radius: 10px;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
}

.menu a:hover {
  color: var(--ink);
  background: rgba(31, 58, 42, 0.08);
}

.menu-cta {
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--evergreen-deep);
  padding: 10px 18px;
  border-radius: 10px;
}
.menu-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff8e7;
}
.menu-cta + .menu-cta {
  margin-left: 4px;
}

.menu-cta-sub {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: 1px;
  font-family: var(--body);
  font-weight: 400;
}

/* ── Language toggle ───────────────────────────────────────────────── */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--gold);
  border-radius: 10px;
  overflow: hidden;
  margin-right: 8px;
  background: transparent;
}
.lang-toggle button {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 8px 12px;
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--evergreen-deep);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
  line-height: 1;
}
.lang-toggle button:hover:not(.is-active) {
  background: rgba(202, 146, 103, 0.12);
}
.lang-toggle button.is-active {
  background: var(--accent);
  color: #fff8e7;
}
.lang-toggle button + button {
  border-left: 1px solid var(--gold);
}

/* Mobile variant — full-width row in the slide-out nav */
.lang-toggle--mobile {
  margin: 14px 0;
  align-self: stretch;
  justify-content: center;
}
.lang-toggle--mobile button {
  flex: 1;
  padding: 12px 16px;
  font-size: 0.85rem;
}


.hero {
  position: relative;
  display: grid;
  gap: clamp(14px, 2.2vw, 22px);
  padding-top: clamp(4px, 1vw, 12px);
}

.hero-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.hero-bow {
  display: block;
  margin: 10px auto 0;
  opacity: 0.85;
}

.eyebrow,
.kicker {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
}

h1 {
  margin-top: 10px;
  line-height: 0.88;
  font-size: clamp(3.3rem, 10vw, 7.6rem);
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}

h2 {
  margin-top: 6px;
  font-size: clamp(2.25rem, 5.9vw, 3.7rem);
  line-height: 0.92;
  letter-spacing: -0.015em;
}

.lede {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.55;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}

.lede span {
  display: block;
}

.hero-stage {
  position: relative;
  display: grid;
  place-items: center;
  overflow: visible;
}

.hero-stage::before,
.hero-stage::after {
  display: none;
}

.hero-overlay {
  position: absolute;
  left: 50%;
  top: 84%;
  transform: translate(-50%, -50%);
  width: min(760px, 92vw);
  z-index: 5;
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

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

/* Two-layer hero name effect:
   .hero-name-solid (z-index 1) – dark amber, sits BEHIND the arch photo, visible on cream bg.
   .hero-name-clip-wrap clips .hero-name-light to the arch shape so it shows INSIDE the photo. */
.hero-name {
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  width: max-content;
  text-align: center;
  font-size: clamp(5.6rem, 15.6vw, 13.8rem);
  line-height: 0.86;
  letter-spacing: -0.024em;
  white-space: nowrap;
  margin: 0;
}

.hero-name-solid {
  z-index: 1; /* behind hero-photo (z-index 2) → hidden inside arch, visible outside */
  color: #15281d;
  text-shadow: 0 1px 3px rgba(244, 237, 224, 0.4);
}

.hero-name-clip-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(520px, 82vw);
  aspect-ratio: 3/4;
  border-radius: 999px 999px 24px 24px;
  overflow: hidden;
  z-index: 4; /* above hero-photo (z-index 2) */
  pointer-events: none;
}

.hero-name-light {
  color: rgba(245, 235, 215, 0.96);
  text-shadow: 0 1px 2px rgba(20, 14, 8, 0.55);
  z-index: 4;
}

.hero-undername {
  width: min(760px, 96%);
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}

.hero-countdown {
  margin: 0;
  color: rgba(255, 250, 240, 1);
  font-size: 1.18rem;
  line-height: 1.35;
  font-weight: 600;
  font-family: var(--display);
  letter-spacing: 0.02em;
  font-style: italic;
  text-transform: none;
  white-space: nowrap;
  text-align: center;
  text-shadow:
    0 1px 2px rgba(20, 14, 8, 0.7),
    0 2px 11px rgba(20, 14, 8, 0.55);
}

.hero-photo {
  position: relative;
  z-index: 2;
  margin: 0;
  width: min(520px, 82vw);
  max-width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 999px 999px 24px 24px;
  overflow: hidden;
  border: 2px solid #b08840;
  box-shadow:
    0 18px 34px rgba(20, 30, 22, 0.22),
    0 0 0 6px rgba(244, 237, 224, 0.6),
    0 0 0 7px rgba(176, 136, 64, 0.4);
  background: #2c3a2e;
}

.hero-photo::before,
.hero-photo::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: inherit;
}

.hero-photo::before {
  inset: 10px;
  border: 1px solid rgba(245, 236, 224, 0.52);
}

.hero-photo::after {
  inset: 22px;
  border: 1px solid rgba(245, 236, 224, 0.28);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 38% 65%;
  position: absolute;
  inset: 0;
  transform: scale(1.4);
  transform-origin: 38% 65%;
}

.hero-foot {
  display: grid;
  gap: clamp(10px, 1.6vw, 16px);
  justify-items: center;
  text-align: center;
  margin-top: 0;
}

.hero-foot .hero-primary {
  margin-top: 0;
}

.hero-meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.chip {
  padding: 8px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 250, 240, 0.4);
  background: rgba(31, 58, 42, 0.55);
  color: rgba(255, 250, 240, 0.95);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}
.chip.chip-red {
  background: rgba(138, 31, 31, 0.7);
  border-color: rgba(255, 230, 200, 0.4);
}

.hero-rsvp-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}

.hero-coming-soon {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.7;
  font-family: var(--body);
}

.hero-primary {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 13px 26px;
  background: var(--accent);
  transition: transform 180ms ease, background-color 180ms ease;
}

.hero-primary:hover {
  transform: translateY(-2px);
  background: var(--accent-deep);
}

.hero-venue {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.hero-venue-link {
  color: rgba(255, 247, 238, 0.98);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25em;
  border-bottom: 1px solid rgba(255, 247, 238, 0.5);
  padding-bottom: 1px;
  font-weight: 500;
  text-shadow:
    0 1px 2px rgba(34, 20, 12, 0.65),
    0 3px 10px rgba(34, 20, 12, 0.45);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    text-shadow 180ms ease;
}

.hero-venue-link::after {
  content: "↗";
  font-size: 0.82em;
  opacity: 0.72;
  transition: opacity 180ms ease, transform 180ms ease;
}

.hero-venue-link:hover,
.hero-venue-link:focus-visible {
  color: #fff;
  border-color: rgba(255, 247, 238, 0.92);
  text-shadow:
    0 1px 2px rgba(34, 20, 12, 0.72),
    0 3px 12px rgba(34, 20, 12, 0.5);
}

.hero-venue-link:hover::after,
.hero-venue-link:focus-visible::after {
  opacity: 0.96;
  transform: translate(1px, -1px);
}

/* Shared amp base */
.hero-name .amp {
  display: inline-block;
  font-size: 0.6em;
  line-height: 1;
  margin: 0 0.07em;
  vertical-align: baseline;
  position: static;
  top: auto;
  transform: translateY(-0.02em);
}

/* Amp inside dark solid layer — matches warm dark amber */
.hero-name-solid .amp {
  font-style: italic;
  color: #8a1f1f;
  font-size: 0.7em;
  margin: 0 0.04em;
  vertical-align: baseline;
  -webkit-text-fill-color: currentColor;
  -webkit-text-stroke: none;
  text-shadow: none;
}

/* Amp inside light clipped layer — antique gold italic */
.hero-name-light .amp {
  font-style: italic;
  color: #d6ae64;
  font-size: 0.7em;
  margin: 0 0.04em;
  -webkit-text-fill-color: currentColor;
  -webkit-text-stroke: none;
  text-shadow: 0 1px 8px rgba(30, 20, 14, 0.16);
}

@supports not (-webkit-background-clip: text) {
  .hero-name-solid { color: rgba(30, 61, 32, 0.62); }
  .hero-name-light  { color: rgba(245, 235, 215, 0.85); }
}

.scroll-hint {
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: color 180ms ease, transform 180ms ease;
}

.scroll-hint::after {
  content: "↓";
  display: inline-block;
  font-size: 1rem;
  animation: scroll-hint-bob 1.5s ease-in-out infinite;
}

.scroll-hint:hover,
.scroll-hint:focus-visible {
  color: var(--ink);
  transform: translateY(-1px);
}

.section {
  position: relative;
  margin-top: clamp(60px, 7vw, 96px);
  padding: 0;
  isolation: isolate;
}

.section::before {
  content: "";
  position: absolute;
  top: -34px;
  left: 0;
  width: min(220px, 32vw);
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
  opacity: 0.7;
  z-index: 1;
}

.section-head {
  max-width: 54ch;
}

.section-head .kicker {
  color: var(--accent);
}

.moments .section-head h2 {
  white-space: nowrap;
  font-size: clamp(2rem, 4.9vw, 3.3rem);
}

.details-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.detail-card {
  padding: 2px 18px 2px 0;
  border-right: 1px solid var(--line-soft);
}

.detail-card:last-child {
  border-right: 0;
}

h3 {
  font-size: 1.92rem;
  line-height: 0.96;
  letter-spacing: -0.01em;
}

.detail-label {
  margin: 10px 0 0;
  color: #725f52;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.detail-value {
  margin: 6px 0 0;
  font-size: 1.03rem;
  font-weight: 600;
}

.detail-note {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.event-maps {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.event-map-card {
  display: grid;
  gap: 8px;
}

.event-map-label {
  margin: 0;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
}

.location-map {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line-soft);
  background: #d9d7d6;
  aspect-ratio: 16 / 6.4;
  box-shadow: 0 14px 30px rgba(47, 29, 18, 0.1);
}

.location-map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.28));
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(1) contrast(0.88) brightness(1.08);
}

.location-map-marker {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  user-select: none;
}

.location-map-marker.hand-marker {
  width: clamp(88px, 11vw, 138px);
  top: 50.6%;
  left: 50.7%;
  transform: translate(-43%, -92%) rotate(-8deg);
}

.location-map-marker.church-marker {
  width: clamp(62px, 7.8vw, 90px);
  top: 56.5%;
  left: 49.9%;
  transform: translate(-50%, -84%);
}

.location-map-directions {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  min-width: 292px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #613b23;
  background: rgba(255, 251, 245, 0.96);
  border: 2px solid #7d5133;
  border-radius: 10px;
  padding: 11px 16px;
  font-size: 0.93rem;
  font-weight: 700;
  box-shadow: inset 0 0 0 2px rgba(125, 81, 51, 0.25);
}

.location-map-directions:hover {
  background: #fff;
}

a {
  color: var(--accent);
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
}

.story {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(22px, 3vw, 34px);
  align-items: center;
}

.story-copy p {
  margin: 16px 0 0;
  max-width: 41ch;
  color: #604f43;
  line-height: 1.72;
}

.story-collage {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 12px;
}

.collage-item {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(52, 33, 23, 0.14);
  transform: translateY(0);
  transition: transform 260ms ease;
}

.collage-item:hover {
  transform: translateY(-5px);
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.collage-item.large,
.collage-item.tall {
  min-height: 440px;
}

.timeline {
  margin-top: 22px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 8px;
  right: 8px;
  height: 1px;
  background: var(--line-soft);
}

.timeline-item {
  position: relative;
  padding-top: 16px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(125, 21, 21, 0.12);
}

.timeline-time {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.timeline-tbd {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 18px;
  background: rgba(30, 61, 32, 0.10);
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.timeline-item h3 {
  font-size: 1.64rem;
}

.timeline-item p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.moments-shell {
  margin-top: 16px;
}

.moments-rail-wrap {
  position: relative;
  overflow: visible;
}

.moments-rail {
  --moment-gap: 16px;
  --moment-edge-fade: 6.5%;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--moment-gap) * 2) - 18px) / 3);
  gap: var(--moment-gap);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: auto;
  scroll-snap-type: none;
  padding: 4px 0 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 var(--moment-edge-fade),
    #000 calc(100% - var(--moment-edge-fade)),
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 var(--moment-edge-fade),
    #000 calc(100% - var(--moment-edge-fade)),
    transparent 100%
  );
}

.moments-rail:focus-visible {
  outline: 2px solid rgba(125, 21, 21, 0.32);
  outline-offset: 8px;
  border-radius: 18px;
}

.moments-rail::-webkit-scrollbar {
  display: none;
}

.moment-card {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  scroll-snap-align: none;
  border: 1px solid rgba(120, 96, 79, 0.18);
  box-shadow: none;
  transform: none;
  opacity: 1;
  filter: none;
  transition: border-color 220ms ease;
}

.moment-card.is-active {
  border-color: rgba(120, 96, 79, 0.3);
}

.moment-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  transform: none;
  transition: none;
}

.moment-card.is-active img {
  filter: none;
}

.moments-controls {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: 4;
}

.moments-nav {
  --nav-shift: 0px;
  position: absolute;
  top: 50%;
  transform: translate(var(--nav-shift), -50%);
  width: 42px;
  height: 42px;
  border: 1px solid rgba(124, 94, 71, 0.28);
  border-radius: 18px;
  background: rgba(255, 252, 246, 0.82);
  backdrop-filter: blur(5px);
  color: #4b3528;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 5;
  opacity: 0;
  pointer-events: auto;
  transition: opacity 260ms ease, transform 260ms ease, background-color 220ms ease;
}

.moments-nav-prev {
  left: 12px;
  --nav-shift: -6px;
}

.moments-nav-next {
  right: 12px;
  --nav-shift: 6px;
}

.moments-nav.prev {
  left: 12px;
  --nav-shift: -6px;
}

.moments-nav.next {
  right: 12px;
  --nav-shift: 6px;
}

.moments-shell:hover .moments-nav,
.moments-shell:focus-within .moments-nav {
  --nav-shift: 0px;
  opacity: 1;
  pointer-events: auto;
}

.moments-nav:hover,
.moments-nav:focus-visible {
  background: rgba(255, 255, 255, 0.98);
  transform: translate(var(--nav-shift), -50%) scale(1.03);
}

.moments-nav:focus-visible {
  outline: 2px solid rgba(125, 21, 21, 0.35);
  outline-offset: 2px;
}

.moments-nav[disabled] {
  opacity: 0.35;
  pointer-events: none;
}

.moments-progress {
  margin-top: 10px;
  height: 2px;
  width: min(440px, 100%);
  border-radius: 999px;
  background: rgba(114, 89, 71, 0.2);
  overflow: hidden;
}

.moments-progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7d1515, #a83535);
  transition: width 180ms linear;
}

.arcade-copy {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.64;
}

.game-shell {
  margin-top: 22px;
  outline: none;
}

.game-shell:focus-visible {
  box-shadow: 0 0 0 2px rgba(125, 21, 21, 0.35);
  border-radius: 18px;
}

.game-canvas-wrap {
  position: relative;
}

#runner-game {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, #dfeaf2 0%, #d2e2ed 55%, #c4d4df 100%);
  box-shadow: 0 10px 28px rgba(43, 29, 19, 0.12);
}

.game-tryagain-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 32px;
  border-radius: 10px;
  border: 2px solid #7d5133;
  background: rgba(255, 251, 245, 0.96);
  color: #3a281d;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(47, 29, 18, 0.22);
  font-family: inherit;
  z-index: 5;
  animation: gameTryagainIn 200ms ease-out;
}

.game-tryagain-btn[hidden] {
  display: none;
}

.game-tryagain-headline {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.game-tryagain-cta {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.game-tryagain-btn:hover,
.game-tryagain-btn:focus-visible {
  background: #fff;
  outline: none;
  box-shadow: 0 16px 34px rgba(47, 29, 18, 0.28);
  transform: translate(-50%, -52%);
}

@keyframes gameTryagainIn {
  from { opacity: 0; transform: translate(-50%, -42%); }
  to   { opacity: 1; transform: translate(-50%, -50%); }
}

.game-hud {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.game-stat,
.game-status {
  margin: 0;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5e4b3f;
}

.game-status {
  color: #775e4f;
}

.game-route {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: #6b5344;
}

.game-btn {
  padding: 8px 13px;
  font-size: 0.72rem;
}

.game-btn[disabled] {
  opacity: 0.58;
  cursor: not-allowed;
}

.game-now-playing {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 10px 12px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: rgba(255, 250, 240, 0.6);
}

.game-now-playing-label {
  margin: 0;
  color: #7c6452;
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.game-now-playing-track {
  margin: 0;
  color: #4f3b2f;
  font-size: 0.83rem;
  letter-spacing: 0.01em;
}

.game-now-playing-state {
  margin: 0;
  padding: 4px 8px;
  border-radius: 10px;
  border: 1px solid rgba(30, 61, 32, 0.20);
  background: rgba(255, 255, 255, 0.52);
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.game-now-playing-link {
  margin-left: auto;
  color: #6f4a30;
  text-decoration: none;
  border-bottom: 1px solid rgba(111, 74, 48, 0.45);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.game-now-playing-link:hover {
  color: #4f3523;
  border-color: rgba(79, 53, 35, 0.75);
}

.game-initials-wrap {
  margin-top: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: rgba(255, 250, 240, 0.7);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.game-initials-prompt {
  margin: 0;
  font-size: 0.72rem;
  color: #5a4436;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.game-initials-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.game-initials-input {
  width: 58px;
  padding: 6px 10px;
  border-radius: 18px;
  border: 1px solid rgba(30, 61, 32, 0.24);
  background: rgba(255, 255, 255, 0.7);
  color: #3a281d;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-family: var(--body);
  outline: none;
}

.game-initials-input:focus {
  border-color: rgba(138, 87, 42, 0.6);
  background: #fff;
}

.game-leaderboard {
  margin-top: 10px;
  padding: 10px 16px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: rgba(255, 250, 240, 0.5);
}

.game-leaderboard-title {
  margin: 0 0 8px;
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #7c6452;
  font-weight: 600;
}

.game-leaderboard-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.game-leaderboard-entry {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
}

.game-leaderboard-rank {
  color: #8a572a;
  font-weight: 700;
  font-size: 0.7rem;
  width: 14px;
}

.game-leaderboard-initials {
  font-weight: 700;
  color: #3a281d;
  letter-spacing: 0.12em;
  width: 30px;
}

.game-leaderboard-score {
  color: #5a4436;
  flex: 1;
}

.game-leaderboard-flag {
  color: #8a572a;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.game-music-player {
  border: 0;
  overflow: hidden;
}

.game-music-player-hidden {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 280px;
  height: 158px;
  opacity: 0.01;
  pointer-events: none;
}

.faq-list {
  margin-top: 22px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.faq-item {
  border-top: 1px solid var(--line-soft);
}

.faq-item:first-child {
  border-top: 0;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 17px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
}

.faq-icon {
  color: var(--accent);
  font-size: 1.2rem;
  transition: transform 220ms ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 0 17px;
  color: var(--muted);
  line-height: 1.62;
}

.rsvp {
  text-align: center;
  padding-bottom: clamp(10px, 2vw, 18px);
}

.rsvp::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  width: min(760px, 92vw);
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(202, 146, 103, 0.2), rgba(202, 146, 103, 0));
  z-index: -1;
}

.rsvp h2 {
  margin-top: 8px;
}

.rsvp p {
  margin: 14px auto 0;
  max-width: 56ch;
  color: var(--muted);
  line-height: 1.66;
}

.rsvp-actions {
  margin-top: 20px;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.btn {
  text-decoration: none;
  border-radius: 10px;
  padding: 11px 18px;
  font-size: 0.81rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: #9b1818;
}

.btn-ghost {
  border: 1px solid var(--line-soft);
  color: var(--ink);
}

.footer {
  padding: 56px 40px 36px;
  border-top: 1px solid rgba(90,106,92,0.18);
}
.footer p { margin: 0; }

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.footer-brand {
  flex-shrink: 0;
}
.footer-couple {
  font-family: var(--display);
  font-size: 1.45rem;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-bottom: 6px !important;
}
.footer-date {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  gap: 48px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  opacity: 0.6;
  margin-bottom: 2px !important;
}
.footer-col a {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-decoration: none;
  transition: color 200ms;
}
.footer-col a:hover {
  color: var(--accent);
}

.footer-ps {
  text-align: center;
  max-width: 900px;
  margin: 0 auto !important;
  padding-top: 28px;
  border-top: 1px solid rgba(90,106,92,0.12);
  font-family: var(--display);
  font-style: italic;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  color: var(--accent);
  opacity: 0.85;
}
.footer-ps-sub {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  opacity: 0.85;
  margin-top: 2px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px) scale(0.995);
  transition:
    opacity 720ms cubic-bezier(0.19, 0.8, 0.19, 1),
    transform 720ms cubic-bezier(0.19, 0.8, 0.19, 1);
  transition-delay: var(--delay, 0ms);
}

[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ambient {
    animation: none;
  }

  .hero-photo img {
    transition: none;
    transform: none;
  }

  .hero-name {
    animation: none;
    transform: none;
    transition: none;
    opacity: 1;
  }

  .scroll-hint::after {
    animation: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .moments-rail {
    scroll-behavior: auto;
  }

  .moment-card,
  .moment-card img,
  .moments-nav,
  .moments-progress-fill {
    transition: none;
  }
}

@keyframes drift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(24px, 16px, 0);
  }
}

@keyframes hero-name-shimmer {
  0% {
    background-position: 24% 50%;
  }
  50% {
    background-position: 74% 50%;
  }
  100% {
    background-position: 24% 50%;
  }
}

@keyframes scroll-hint-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(3px);
  }
}

@media (max-width: 1040px) {
  .site {
    width: min(1180px, calc(100% - 30px));
  }

  .details-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-card {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
    padding: 0 0 16px;
  }

  .detail-card:last-child {
    border-bottom: 0;
  }

  .timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site {
    margin-top: 82px;
  }

  .hero {
    gap: 16px;
  }

  .hero-stage {
    min-height: auto;
  }

  h1 {
    font-size: clamp(2.8rem, 12vw, 5.6rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .moments .section-head h2 {
    font-size: clamp(1.9rem, 6.6vw, 2.7rem);
  }

  .hero-name {
    font-size: clamp(4.9rem, 17vw, 10.4rem);
  }

  .hero-name-clip-wrap {
    width: min(500px, 74vw);
  }

  .hero-overlay {
    top: 84%;
  }

  .hero-photo {
    width: min(500px, 74vw);
  }

  .story {
    grid-template-columns: 1fr;
  }

  .story-collage {
    grid-template-columns: 1fr;
  }

  .collage-item.large,
  .collage-item.tall {
    min-height: 320px;
  }

}

@media (max-width: 740px) {
  .footer {
    padding: 40px 24px 28px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 28px;
    margin-bottom: 28px;
  }
  .footer-nav {
    gap: 32px;
    flex-wrap: wrap;
  }

  .topbar {
    border-radius: 18px;
  }

  .menu {
    display: none;
  }

  .hero {
    gap: 12px;
  }

  .hero-intro {
    padding-inline: 6px;
  }

  .hero-stage {
    min-height: auto;
  }

  .hero-name {
    width: 100%;
    white-space: normal;
    font-size: clamp(2.6rem, 11.5vw, 4.4rem);
    line-height: 0.9;
  }

  .hero-name-clip-wrap {
    width: min(360px, 86vw);
    border-radius: 999px 999px 20px 20px;
  }

  .hero-overlay {
    top: 87%;
    gap: 7px;
  }

  .hero-undername {
    width: min(680px, 94%);
    gap: 10px;
  }

  .hero-countdown {
    font-size: 0.92rem;
    letter-spacing: 0.008em;
  }

  .chip {
    padding: 6px 11px;
    font-size: 0.66rem;
  }

  .moments .section-head h2 {
    white-space: nowrap;
    font-size: clamp(1.55rem, 7vw, 2.1rem);
  }

  .hero-photo {
    width: min(360px, 86vw);
    border-radius: 999px 999px 20px 20px;
  }

  .lede span {
    display: inline;
  }

  .lede span:first-child::after {
    content: " ";
  }

  .scroll-hint {
    font-size: 0.71rem;
  }

  .game-now-playing {
    border-radius: 18px;
    gap: 8px;
  }

  .game-now-playing-link {
    margin-left: 0;
  }

  .details-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .event-maps {
    grid-template-columns: 1fr;
  }

  .location-map {
    aspect-ratio: 1.28 / 1;
  }

  .location-map-marker.hand-marker {
    width: clamp(74px, 24vw, 116px);
    top: 51.2%;
    left: 50.5%;
  }

  .location-map-marker.church-marker {
    width: clamp(56px, 16vw, 78px);
    top: 57.5%;
    left: 50%;
  }

  .location-map-directions {
    min-width: min(280px, calc(100% - 24px));
    bottom: 14px;
    font-size: 0.82rem;
    padding: 10px 14px;
  }

  .timeline::before {
    left: 3px;
    right: auto;
    width: 1px;
    height: 100%;
    top: 3px;
  }

  .timeline-item {
    padding-left: 16px;
  }

  .timeline-item::before {
    top: 18px;
    left: 0;
  }

  .moments-shell {
    margin-top: 12px;
  }

  .moments-rail {
    --moment-gap: 12px;
    --moment-edge-fade: 3%;
    grid-auto-columns: 86%;
    padding-right: 13%;
  }

  .moments-nav {
    opacity: 0.9;
    width: 36px;
    height: 36px;
  }

  .moments-controls {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .moments-nav-prev {
    left: 5px;
    --nav-shift: 0px;
  }

  .moments-nav-next {
    right: 5px;
    --nav-shift: 0px;
  }

  .moments-nav.prev {
    left: 5px;
    --nav-shift: 0px;
  }

  .moments-nav.next {
    right: 5px;
    --nav-shift: 0px;
  }

  .moment-card,
  .moment-card.is-active {
    border-radius: 18px;
    transform: scale(1);
  }

  .moment-card img {
    aspect-ratio: 4 / 5;
  }

  .rsvp-actions {
    width: 100%;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .game-hud {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ── Hamburger / mobile nav ────────────────────────────────────────── */

.topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 9px 8px;
  border-radius: 18px;
  transition: background-color 180ms ease;
}

.menu-toggle:hover {
  background: rgba(31, 58, 42, 0.08);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 260ms ease, opacity 260ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 18;
  background: rgba(244, 237, 224, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  padding: 76px 28px 28px;
  transform: translateY(-110%);
  transition: transform 320ms cubic-bezier(0.19, 0.8, 0.19, 1);
  pointer-events: none;
}

.mobile-nav.open {
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
}

.mobile-nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  letter-spacing: -0.01em;
  transition: color 180ms ease;
}

.mobile-nav-links a:last-child {
  border-bottom: 0;
}

.mobile-nav-links a:hover {
  color: var(--accent);
}

.mobile-nav-links .mobile-nav-cta {
  margin-top: 12px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-family: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  padding: 14px 28px;
  border-bottom: 0;
  line-height: 1.15;
}
.mobile-nav-links .mobile-nav-cta .menu-cta-sub {
  display: block;
  font-size: 0.62rem;
  opacity: 0.85;
  margin-top: 3px;
}

.mobile-nav-links .mobile-nav-cta:hover {
  background: var(--accent-deep);
  color: #fff;
}

@media (max-width: 740px) {
  .menu-toggle {
    display: flex;
  }

  .menu-cta {
    display: none;
  }
}

/* ── Details calendar button ────────────────────────────────────────── */

.details-calendar {
  margin-top: 16px;
}

.btn-sm {
  font-size: 0.72rem;
  padding: 8px 14px;
}

/* ── Accommodations ─────────────────────────────────────────────────── */

.accommodations-note {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 52ch;
}

.schedule-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-style: italic;
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.01em;
  max-width: 52ch;
  opacity: 0.85;
}

.hotel-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hotel-card {
  padding: 24px 22px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: rgba(255, 250, 240, 0.5);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 220ms ease, transform 220ms ease, border-color 220ms ease;
  position: relative;
  overflow: hidden;
}
.hotel-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--gold) 50%, var(--evergreen) 100%);
}

.hotel-card:hover {
  box-shadow: 0 10px 24px rgba(20, 30, 22, 0.10);
  transform: translateY(-2px);
  border-color: var(--gold);
}

.hotel-card h3 {
  font-size: 1.36rem;
  margin: 0;
}

.hotel-distance {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hotel-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
  font-size: 0.93rem;
  flex: 1;
}

.hotel-link {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--accent);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  text-decoration: none;
  border-bottom: 1px solid rgba(138, 87, 42, 0.32);
  width: fit-content;
  padding-bottom: 1px;
  transition: color 180ms ease, border-color 180ms ease;
}

.hotel-link::after {
  content: "↗";
  font-size: 0.82em;
  opacity: 0.78;
}

.hotel-link:hover {
  color: #784a25;
  border-color: rgba(120, 74, 37, 0.55);
}

@media (max-width: 1040px) {
  .hotel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 740px) {
  .hotel-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Map info grid ──────────────────────────────────────────────────── */

.map-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 4px;
}

.map-info-item {
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(244, 237, 224, 0.85);
  border: 1px solid var(--line-soft);
}

.map-info-label {
  margin: 0;
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 600;
}

.map-info-value {
  margin: 4px 0 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}

@media (max-width: 740px) {
  .map-info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Registry note ──────────────────────────────────────────────────── */

.registry-note {
  margin: 16px auto 0;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* ── Section progress dots ──────────────────────────────────────────── */

.section-dots {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 16;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 6px;
}

.section-dot {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(30, 61, 32, 0.22);
  transition: background 220ms ease, height 220ms ease;
  text-indent: -9999px;
  overflow: hidden;
}

.section-dot.active {
  background: var(--accent);
  height: 16px;
}

@media (max-width: 740px) {
  .section-dots {
    display: none;
  }
}

/* ── Lightbox ───────────────────────────────────────────────────────── */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(22, 13, 7, 0.9);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  display: grid;
  place-items: center;
  padding: 20px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-img-wrap {
  max-width: min(92vw, 860px);
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lightbox-in 200ms ease;
}

@keyframes lightbox-in {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox-img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: 18px;
  object-fit: contain;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  display: block;
}

.lightbox-close {
  position: fixed;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.92);
  width: 42px;
  height: 42px;
  border-radius: 18px;
  font-size: 1.3rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 180ms ease;
  line-height: 1;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  width: 48px;
  height: 48px;
  border-radius: 18px;
  font-size: 1.7rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 180ms ease;
  line-height: 1;
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-counter {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
  white-space: nowrap;
}

.moment-card {
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  .lightbox-img-wrap {
    animation: none;
  }

  .mobile-nav {
    transition: none;
  }

  .menu-toggle span {
    transition: none;
  }

  .hotel-card {
    transition: none;
  }

  .section-dot {
    transition: none;
  }
}

/* ── Christmas handoff decorations ── */
.snow {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.snow span {
  position: absolute;
  top: -8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  line-height: 1;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.6);
  animation: snowfall linear infinite;
  will-change: transform, opacity;
  /* Force text presentation so iOS doesn't render snowflakes as blue emoji */
  font-variant-emoji: text;
  font-family: "Helvetica Neue", Arial, sans-serif;
}
@keyframes snowfall {
  0%   { transform: translate3d(0, -10vh, 0) rotate(0deg); opacity: 0; }
  12%  { opacity: 0.95; }
  100% { transform: translate3d(var(--drift, 30px), 110vh, 0) rotate(360deg); opacity: 0.6; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #a23030;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 6px;
}
.hero-eyebrow .star { font-size: 1rem; color: #b08840; }

.hero-float {
  position: absolute;
  z-index: 7;
  pointer-events: none;
  filter: drop-shadow(0 6px 10px rgba(20, 30, 22, 0.18));
  animation: floatDrift 6s ease-in-out infinite;
}
.hero-float img { width: 100%; height: 100%; object-fit: contain; display: block; }
.hero-float--bell {
  width: clamp(80px, 11vw, 130px);
  height: clamp(80px, 11vw, 130px);
  top: -40px;
  right: -30px;
  transform: rotate(14deg);
  animation-delay: 0s;
}
.hero-float--cane {
  width: clamp(70px, 10vw, 110px);
  height: clamp(85px, 12vw, 140px);
  bottom: 10px;
  left: -36px;
  transform: rotate(-18deg);
  animation-delay: -2s;
}
.hero-float--ornament {
  width: clamp(60px, 8vw, 90px);
  height: clamp(60px, 8vw, 90px);
  top: 38%;
  right: -50px;
  transform: rotate(8deg);
  animation-delay: -4s;
}
@keyframes floatDrift {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-6px) rotate(var(--r, 0deg)); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-float, .snow span { animation: none !important; }
}

.lights {
  position: relative;
  margin: 4px auto 0;
  height: 10px;
  width: min(540px, 86vw);
}
.lights span {
  position: absolute;
  top: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: twinkle 2.4s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.35; box-shadow: 0 0 4px currentColor; }
  50% { opacity: 1; box-shadow: 0 0 14px currentColor, 0 0 22px currentColor; }
}
@media (prefers-reduced-motion: reduce) {
  .lights span { animation: none !important; }
}

.kicker-icon {
  display: inline-block;
  width: 28px;
  height: 28px;
  vertical-align: -8px;
  margin-right: 8px;
  object-fit: contain;
}

.detail-card { position: relative; }
.detail-card h3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.detail-card .ornament {
  display: inline-block;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
  vertical-align: middle;
}
.detail-card .ornament img { width: 100%; height: 100%; object-fit: contain; display: block; }

.section-bow {
  display: block;
  margin: 0 auto -18px;
  width: clamp(80px, 9vw, 120px);
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 6px 12px rgba(122, 28, 30, 0.18));
  transform: rotate(-2deg);
}

.brand-sprig {
  display: inline-block;
  width: 22px;
  height: 26px;
  flex-shrink: 0;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 4px;
}
.brand { display: inline-flex; align-items: center; gap: 8px; }
