/* ─── Design tokens ─────────────────────────────────────────────────────── */
:root {
  --sand:      #e6d3c7;
  --pearl:     #f7eee6;
  --foam:      #dde3e7;
  --sea:       #7f97a8;
  --deep-sea:  #34495a;
  --shell:     #efc8b4;
  --text:      #2f2b34;
  --muted:     #5b5662;
  --accent:    #b98875;
  --coral:     #b13b2b;
  --coral-soft:#c75a3c;
  --haldi-orange: #ff9100;
  --haldi-yellow: #ffc900;
  --haldi-ochre: #e7ae00;
  --haldi-brown: #f4a6a4;
  --haldi-olive: #97c4de;
  --sangeet-forest: #0b3b7e;
  --sangeet-olive: #752170;
  --sangeet-lime: #51504e;
  --sangeet-mustard: #ad061c;
  --sangeet-navy-blue: #005424;
  --hindu-pink: #cf185f;
  --hindu-coral: #d84f46;
  --hindu-marigold: #dc8f25;
  --hindu-lime: #91a13f;
  --hindu-teal: #378f8b;
  --christian-dusty-blue: #a9bdd1;
  --christian-olive: #7a8864;
  --christian-stone: #c8c0b5;
  --christian-champagne: #e5d5bc;
  --christian-bisque: #e5bca9;
  --line: rgba(127, 151, 168, 0.18);
  --line-strong: rgba(127, 151, 168, 0.22);
  --shadow:    0 24px 60px rgba(52, 73, 90, 0.12);
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("assets/fonts/inter.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/cormorant-garamond-roman.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 400 600;
  font-display: swap;
  src: url("assets/fonts/cormorant-garamond-italic.woff2") format("woff2");
}

@font-face {
  font-family: "DM Serif Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/dm-serif-display-regular.woff2") format("woff2");
}

@font-face {
  font-family: "DM Serif Display";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/dm-serif-display-italic.woff2") format("woff2");
}

@font-face {
  font-family: "Handlee";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/handlee-regular.woff2") format("woff2");
}

/* ─── Reset ──────────────────────────────────────────────────────────────── */
html {
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ─── Base ───────────────────────────────────────────────────────────────── */
body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-synthesis: none;
  color: var(--text);
  line-height: 1.65;
  background:
    radial-gradient(circle at 12% 8%,  rgba(255, 220, 197, 0.55), transparent 38%),
    radial-gradient(circle at 88% 14%, rgba(255, 232, 214, 0.45), transparent 42%),
    radial-gradient(circle at 50% 100%, rgba(127, 151, 168, 0.18), transparent 55%),
    linear-gradient(180deg, #f6e6da 0%, #f1dfd1 30%, #efd9c8 65%, #f3e0d2 100%);
  background-attachment: fixed;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ─── Typography ─────────────────────────────────────────────────────────── */
h1,
h2,
blockquote {
  font-family: "Cormorant Garamond", serif;
  color: var(--deep-sea);
}

h1,
h2 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.eyebrow {
  margin: 0 0 14px;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
}

.eyebrow--center {
  text-align: center;
}

.section-label {
  margin: 0 0 6px;
  color: var(--muted);
}

.section-label,
.hero-meta__label,
.countdown-item__label,
.schedule-day__month {
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lead {
  width: min(640px, 100%);
  margin: 0 0 22px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}

.lead--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

blockquote {
  margin: 18px 0;
  font-size: 2rem;
  line-height: 1.2;
}

/* ─── Navigation ─────────────────────────────────────────────────────────── */
.top-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 20px 36px 18px;
  background: rgba(246, 230, 218, 0.78);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(230, 211, 199, 0.6);
}

.top-nav__brand {
  justify-self: start;
  font-family: "Handlee", cursive;
  font-size: 1.9rem;
  line-height: 0.9;
  color: var(--coral);
  letter-spacing: 0.01em;
  padding: 4px 6px 0;
  transition: transform 200ms ease, color 200ms ease;
}

.top-nav__brand span {
  color: var(--coral-soft);
  margin: 0 0.04em;
}

.top-nav__brand:hover {
  color: var(--deep-sea);
}

.top-nav__brand:hover span {
  color: var(--accent);
}

.top-nav__toggle {
  display: none;
}

.top-nav__links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 34px;
}

.top-nav__link {
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.78;
  position: relative;
  padding: 6px 2px;
  transition: opacity 150ms ease, color 150ms ease;
}

.top-nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--coral);
  transform: translateX(-50%);
  transition: width 220ms ease;
}

.top-nav__link:hover {
  opacity: 1;
  color: var(--coral);
}

.top-nav__link:hover::after,
.top-nav__link:focus-visible::after {
  width: 100%;
}

.top-nav__rsvp {
  justify-self: end;
  padding: 13px 30px;
  box-shadow: 0 8px 22px rgba(177, 59, 43, 0.28);
}

.top-nav__rsvp,
.rsvp-button {
  display: inline-block;
  background: var(--coral);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.top-nav__rsvp:hover,
.rsvp-button:hover {
  background: var(--coral-soft);
  transform: translateY(-1px);
}

.top-nav__rsvp:hover {
  box-shadow: 0 10px 26px rgba(177, 59, 43, 0.36);
}

/* ─── Layout ─────────────────────────────────────────────────────────────── */
main {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100% - 72px));
  margin: 0 auto;
  padding: 56px 0 24px;
}

.section {
  padding: 72px 0 24px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 104px;
}

.section + .section {
  margin-top: 32px;
}

.section:first-of-type {
  border-top: none;
  padding-top: 32px;
}

.section--rsvp {
  padding: 136px 0 176px;
  text-align: center;
  border: none;
}

.section--rsvp .eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.section--rsvp .eyebrow::before,
.section--rsvp .eyebrow::after {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: 1.1;
  margin: 0 0 28px;
}

.section-title--center {
  text-align: center;
}

/* ─── Story ────────────────────────────────────────────────────────────────── */
.story-layout,
.venue-layout {
  display: grid;
  gap: 64px;
  align-items: center;
}

.story-layout {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.68fr);
}

.story-copy .lead:last-child,
.venue-copy .lead:last-child {
  margin-bottom: 0;
}

.story-photo {
  margin: 0;
  transform: rotate(-2deg);
}

.story-photo img {
  aspect-ratio: 3 / 4;
}

/* ─── Venue ───────────────────────────────────────────────────────────────── */
.venue-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.venue-map {
  position: relative;
  overflow: hidden;
  padding: 12px;
  background: var(--pearl);
  box-shadow: var(--shadow);
}

.venue-map::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(185, 136, 117, 0.3);
  pointer-events: none;
}

.venue-map__image {
  display: block;
  width: 100%;
  height: auto;
}

.venue-map__link {
  display: block;
  padding: 14px 18px;
  background: var(--coral);
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  transition: background 180ms ease, color 180ms ease;
}

.venue-map__link:hover {
  background: var(--pearl);
  color: var(--coral);
}

/* ─── Hero (home) ─────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  grid-template-areas:
    "headline headline"
    "copy photo";
  column-gap: clamp(48px, 6vw, 72px);
  row-gap: 48px;
  align-items: start;
  padding: 56px 0 80px;
}

.hero-copy {
  grid-area: copy;
  min-width: 0;
  padding-top: 28px;
}

.hero-headline {
  grid-area: headline;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-size: clamp(3.8rem, 9vw, 6.8rem);
  line-height: 0.95;
  color: var(--deep-sea);
  letter-spacing: -0.02em;
  margin: 0;
}

.hero-headline em {
  font-style: italic;
  color: var(--coral);
}

.hero-headline span {
  color: var(--coral-soft);
}

.hero-sub {
  margin: 0 0 48px;
}

.hero-sub__intro {
  display: block;
  margin-bottom: 6px;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.hero-sub__names {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.35rem, 4.5vw, 3.35rem);
  font-style: italic;
  font-weight: 600;
  line-height: 0.95;
  color: var(--coral);
  letter-spacing: -0.02em;
}

.hero-meta {
  display: grid;
  gap: 28px;
  margin-top: 0;
}

.hero-meta__col--right {
  text-align: left;
}

.hero-meta__label {
  margin: 0 0 6px;
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
}

.hero-meta__value {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  font-weight: 600;
  color: var(--deep-sea);
  line-height: 1.45;
}

.hero > .couple-photo {
  grid-area: photo;
}

.couple-photo {
  position: relative;
  margin: 0 -8px 0 0;
  padding: 12px 12px 16px;
  background: var(--pearl);
  box-shadow: var(--shadow);
  transform: rotate(2.2deg);
  z-index: 1;
}

.couple-photo::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(185, 136, 117, 0.3);
  pointer-events: none;
}

.couple-photo__pin {
  position: absolute;
  top: -9px;
  left: 50%;
  width: 18px;
  height: 18px;
  background: radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.7) 0 8%, rgba(255, 255, 255, 0.18) 9% 20%, transparent 21%),
    radial-gradient(circle at 62% 70%, var(--coral-soft) 0 35%, var(--coral) 70%, rgba(112, 32, 25, 0.9) 100%);
  border: 1px solid rgba(112, 32, 25, 0.42);
  border-radius: 50%;
  box-shadow: inset -2px -2px 3px rgba(112, 32, 25, 0.35), 0 3px 7px rgba(52, 73, 90, 0.28);
  transform: translateX(-50%);
  z-index: 1;
}

.couple-photo__pin::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 3px;
  width: 5px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.36);
  transform: rotate(-32deg);
}

.couple-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.couple-photo figcaption {
  margin: 10px 4px 0;
  font-family: "Handlee", cursive;
  font-size: 0.95rem;
  color: var(--muted);
  text-align: center;
}

.hero-shoreline {
  position: absolute;
  z-index: -1;
  left: 50%;
  bottom: 0;
  width: 100vw;
  height: 230px;
  overflow: visible;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-shoreline path {
  fill: none;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-shoreline__sand-lines {
  stroke: var(--shell);
  stroke-width: 1.15;
  opacity: 0.78;
  animation: shoreline-swell 8s ease-in-out infinite alternate;
}

.hero-shoreline__sea-lines {
  stroke: var(--sea);
  stroke-width: 1.2;
  opacity: 0.38;
  animation: shoreline-swell 6s ease-in-out -2s infinite alternate-reverse;
}

@keyframes shoreline-swell {
  from {
    transform: translateY(-6px) scaleY(0.95);
  }

  to {
    transform: translateY(8px) scaleY(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-shoreline__sand-lines,
  .hero-shoreline__sea-lines {
    animation: none;
  }
}

/* ─── Countdown ──────────────────────────────────────────────────────────── */
.countdown {
  padding: 128px 0;
  border-top: none;
}

.countdown-frame {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 56px 52px;
  background: color-mix(in srgb, var(--pearl) 62%, transparent);
  border: 1px solid color-mix(in srgb, var(--line) 62%, transparent);
}

.countdown-frame::before,
.countdown-frame::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 7px;
  height: 7px;
  background: var(--accent);
  transform: translateX(-50%) rotate(45deg);
}

.countdown-frame::before {
  top: -4px;
}

.countdown-frame::after {
  bottom: -4px;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 640px;
  margin: 8px auto 0;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 24px 12px;
  background: var(--pearl);
  border-radius: 4px;
  border-color: color-mix(in srgb, var(--line) 62%, transparent);
}

.countdown-item__value {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(2.1rem, 4.4vw, 2.8rem);
  line-height: 1;
  color: var(--coral);
  font-variant-numeric: tabular-nums;
}

.countdown-item__label {
  color: var(--muted);
}

/* ─── Schedule ────────────────────────────────────────────────────────────── */
.schedule-days {
  display: grid;
  gap: 24px;
  margin-top: 12px;
}

.schedule-day {
  padding: 24px;
  background: var(--pearl);
  border-radius: 4px;
}

.schedule-events {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 0 -24px;
}

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

.schedule-event {
  min-width: 0;
  padding: 22px 24px 0;
}

.countdown-item,
.schedule-day,
.outfit-card,
.footer-photo {
  border: 1px solid var(--line);
}

.schedule-day__header {
  padding-bottom: 18px;
  border-bottom: 2px solid var(--line-strong);
}

.schedule-day__month {
  margin: 0 0 2px;
  color: var(--muted);
}

.schedule-day__date {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  color: var(--deep-sea);
}

.schedule-event + .schedule-event {
  border-left: 1px solid var(--line-strong);
}

.schedule-event__time {
  margin: 0 0 8px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--coral);
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.schedule-event__title {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  font-weight: 600;
  line-height: 1;
  color: var(--deep-sea);
}

.schedule-event__subtitle {
  margin: -4px 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.2;
  color: var(--accent);
}

.schedule-event__description {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text);
}

/* ─── Accommodation table ────────────────────────────────────────────────── */
.table-wrap {
  overflow-x: auto;
  margin-top: 8px;
  -webkit-overflow-scrolling: touch;
}

.table-scroll-hint {
  display: none;
}

.stay-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.stay-table th,
.stay-table td {
  padding: 16px 20px 16px 0;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.stay-table th {
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom-width: 2px;
  border-bottom-color: rgba(127, 151, 168, 0.32);
  padding-bottom: 14px;
}

.stay-table tbody tr {
  transition: background 140ms ease;
}

.stay-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.32);
}

.stay-table tbody tr:last-child td {
  border-bottom: none;
}

.stay-table td a {
  color: var(--deep-sea);
  font-weight: 500;
  transition: color 140ms ease;
  border-bottom: 1px solid transparent;
}

.stay-table td a:hover {
  color: var(--coral);
  border-bottom-color: var(--coral);
}

.table-note {
  font-size: inherit;
  font-weight: 600;
  color: var(--coral);
  border-bottom: 1px solid currentColor;
  transition: color 150ms ease, border-color 150ms ease;
}

.table-note:hover {
  color: var(--coral-soft);
}

/* ─── Outfit cards ───────────────────────────────────────────────────────── */
.outfit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.outfit-card {
  display: block;
  padding: 28px 24px;
  background: var(--pearl);
  border-radius: 4px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.outfit-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(177, 59, 43, 0.32);
}

.outfit-card__label {
  display: inline-block;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--deep-sea);
  letter-spacing: 0.005em;
}

.outfit-card__subtitle {
  display: inline-block;
  margin: 0 0 0 12px;
  padding-left: 12px;
  border-left: 1px solid var(--sand);
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.2;
  color: var(--accent);
}

.outfit-card__note {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}

.outfit-card__swatches {
  display: flex;
  gap: 7px;
  margin: 18px 0 14px;
}

.swatch {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(52, 73, 90, 0.12);
  border-radius: 50%;
}

.swatch--haldi-orange { background: var(--haldi-orange); }
.swatch--haldi-yellow { background: var(--haldi-yellow); }
.swatch--haldi-ochre { background: var(--haldi-ochre); }
.swatch--haldi-brown { background: var(--haldi-brown); }
.swatch--haldi-olive { background: var(--haldi-olive); }
.swatch--sangeet-forest { background: var(--sangeet-forest); }
.swatch--sangeet-olive { background: var(--sangeet-olive); }
.swatch--sangeet-lime { background: var(--sangeet-lime); }
.swatch--sangeet-mustard { background: var(--sangeet-mustard); }
.swatch--sangeet-navy-blue { background: var(--sangeet-navy-blue); }
.swatch--hindu-pink { background: var(--hindu-pink); }
.swatch--hindu-coral { background: var(--hindu-coral); }
.swatch--hindu-marigold { background: var(--hindu-marigold); }
.swatch--hindu-lime { background: var(--hindu-lime); }
.swatch--hindu-teal { background: var(--hindu-teal); }
.swatch--christian-dusty-blue { background: var(--christian-dusty-blue); }
.swatch--christian-olive { background: var(--christian-olive); }
.swatch--christian-stone { background: var(--christian-stone); }
.swatch--christian-champagne { background: var(--christian-champagne); }
.swatch--christian-bisque { background: var(--christian-bisque); }

.outfit-note {
  margin: 24px 0 0;
  font-size: 0.86rem;
  font-style: italic;
  color: var(--muted);
}

/* ─── FAQ (details/summary) ──────────────────────────────────────────────── */
.faq-list {
  display: grid;
  gap: 0;
  margin-top: 4px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 6px 0;
}

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

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--deep-sea);
  letter-spacing: 0.005em;
  transition: color 150ms ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--coral);
  line-height: 1;
  transition: transform 200ms ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item summary:hover {
  color: var(--coral);
}

.faq-item p {
  margin: 0 0 18px;
  max-width: 60ch;
  color: var(--text);
  line-height: 1.7;
}

.faq-item p a {
  color: var(--coral);
  font-weight: 500;
  border-bottom: 1px solid var(--coral);
  transition: color 150ms ease, border-color 150ms ease;
}

.faq-item p a:hover {
  color: var(--coral-soft);
  border-bottom-color: var(--coral-soft);
}

/* ─── RSVP section ───────────────────────────────────────────────────────── */
.rsvp-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

.rsvp-button {
  padding: 16px 36px;
  font-size: 0.8rem;
  box-shadow: 0 10px 28px rgba(177, 59, 43, 0.32);
}

.rsvp-button:hover {
  box-shadow: 0 14px 34px rgba(177, 59, 43, 0.4);
}

.rsvp-button--ghost {
  background: transparent;
  color: var(--coral);
  border: 1.5px solid var(--coral);
  box-shadow: none;
}

.rsvp-button--ghost:hover {
  background: rgba(177, 59, 43, 0.08);
  box-shadow: none;
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.footer-photo {
  margin: 0;
  overflow: hidden;
}

.footer-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.site-foot {
  margin-top: 32px;
  padding: 56px 0 24px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.site-foot__brand {
  font-family: "Handlee", cursive;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--coral);
  margin: 0 0 12px;
}

.site-foot__brand span {
  color: var(--coral-soft);
  margin: 0 0.04em;
}

.site-foot__meta {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  color: var(--deep-sea);
  margin: 0 0 6px;
  letter-spacing: 0.02em;
}

.site-foot__love {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  font-style: italic;
}

/* ─── Responsive — tablet ────────────────────────────────────────────────── */
@media (max-width: 880px) {
  .top-nav {
    grid-template-columns: auto 1fr auto;
    padding: 16px 22px 14px;
    gap: 14px;
  }

  .top-nav__links {
    justify-self: end;
    gap: 18px;
    flex-wrap: wrap;
  }

  .top-nav__brand {
    font-size: 1.65rem;
  }

  .top-nav__rsvp {
    padding: 11px 22px;
    font-size: 0.74rem;
    letter-spacing: 0.14em;
  }
}

@media (max-width: 760px) {
  body {
    background-attachment: scroll;
  }

  .top-nav {
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "brand toggle rsvp"
      "links links links";
    align-items: center;
    padding: 12px 16px;
    row-gap: 0;
  }

  .top-nav__brand {
    grid-area: brand;
    justify-self: start;
  }

  .top-nav__rsvp {
    grid-area: rsvp;
    justify-self: end;
  }

  .nav-enhanced .top-nav__toggle {
    grid-area: toggle;
    justify-self: center;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 8px 10px;
    border: 0;
    background: transparent;
    font-family: "Inter", sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--deep-sea);
    cursor: pointer;
  }

  .top-nav__toggle:focus-visible {
    outline: 2px solid var(--coral);
    outline-offset: 2px;
  }

  .top-nav__toggle-icon,
  .top-nav__toggle-icon::before,
  .top-nav__toggle-icon::after {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--coral);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .top-nav__toggle-icon {
    position: relative;
  }

  .top-nav__toggle-icon::before,
  .top-nav__toggle-icon::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .top-nav__toggle-icon::before {
    top: -6px;
  }

  .top-nav__toggle-icon::after {
    top: 6px;
  }

  .top-nav__toggle[aria-expanded="true"] .top-nav__toggle-icon {
    background: transparent;
  }

  .top-nav__toggle[aria-expanded="true"] .top-nav__toggle-icon::before {
    transform: translateY(6px) rotate(45deg);
  }

  .top-nav__toggle[aria-expanded="true"] .top-nav__toggle-icon::after {
    transform: translateY(-6px) rotate(-45deg);
  }

  .top-nav__links {
    grid-area: links;
    justify-self: start;
    gap: 14px 20px;
    padding-top: 12px;
  }

  .nav-enhanced .top-nav__links {
    display: none;
  }

  .nav-enhanced .top-nav--open .top-nav__links {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "headline"
      "copy"
      "photo";
    gap: 40px;
    padding-bottom: 170px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .section {
    scroll-margin-top: 88px;
  }

}

@media (max-width: 560px) {
  main {
    width: calc(100% - 32px);
    padding-top: 40px;
  }

  .section {
    padding: 56px 0 20px;
  }

  .section--rsvp {
    padding: 96px 0 128px;
  }

  .countdown {
    padding: 72px 0;
  }

  .countdown-frame {
    padding: 40px 16px;
  }

  .hero {
    padding-top: 24px;
    padding-bottom: 130px;
  }

  .hero-shoreline {
    height: 150px;
  }

  .hero-meta {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-meta__col--right {
    text-align: left;
  }

  .couple-photo {
    margin-right: 0;
    padding: 8px 8px 12px;
  }

  .couple-photo::after {
    inset: 5px;
  }

  .countdown-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .countdown-item {
    padding: 18px 10px;
  }

  .schedule-day {
    padding: 20px 18px;
  }

  .schedule-events {
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0 -18px;
  }

  .schedule-event {
    padding: 20px 18px 28px;
  }

  .schedule-event + .schedule-event {
    padding-top: 24px;
    border-top: 1px solid var(--line-strong);
    border-left: none;
  }

  .story-layout,
  .venue-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .story-photo {
    width: min(100%, 360px);
    margin: 0 auto;
  }

  .stay-table {
    min-width: 620px;
  }

  .table-scroll-hint {
    display: block;
    margin: 0 0 8px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--coral);
  }

  .outfit-list {
    grid-template-columns: 1fr;
  }

  .lead {
    font-size: 1rem;
    margin-bottom: 18px;
  }

  .rsvp-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .rsvp-button {
    width: 100%;
    text-align: center;
  }
}
