/* ============================================================
   Jess & Luke — Wedding Site
   styles.css
   ------------------------------------------------------------
   Editorial, mobile-first. Cormorant Garamond for display,
   Inter for body. Pure white, near-black ink, one warm accent.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Color */
  --ink: #111111;
  --ink-soft: #2a2a2a;
  --ink-muted: #6a6a6a;
  --rule: #d9d6d1;
  --rule-soft: #ececea;
  --paper: #ffffff;
  --paper-alt: #faf8f4;       /* warm off-white */
  --accent: #8c6a3a;           /* muted tobacco — used very sparingly */

  /* Type */
  --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  /* Layout */
  --maxw: 1180px;
  --maxw-narrow: 720px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

/* Prevent horizontal scroll on mobile while preserving sticky nav (clip, not hidden). */
html, body { overflow-x: clip; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1;
}

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

a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 240ms var(--ease), color 240ms var(--ease);
}
a:hover { border-bottom-color: var(--ink); }

/* Selection */
::selection { background: var(--ink); color: var(--paper); }

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

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 var(--space-5);
}

.section__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0 0 var(--space-7);
  color: var(--ink);
}

.section__lede {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 0 var(--space-8);
  font-style: italic;
  font-weight: 300;
}
.section__lede--wide {
  max-width: none;
}

.sub {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.2;
  margin: var(--space-7) 0 var(--space-4);
  letter-spacing: -0.005em;
}
.sub:first-of-type { margin-top: 0; }
.sub--notes {
  text-align: center;
  padding-top: var(--space-7);
}

.prose p {
  margin: 0 0 var(--space-5);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.prose p:last-child { margin-bottom: 0; }

.muted { color: var(--ink-muted); }

.tbd {
  font-style: italic;
  color: var(--ink-muted);
  font-weight: 400;
}

.signoff {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--ink);
  margin-top: var(--space-7);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 1.75rem;
  border: 1px solid var(--ink);
  border-radius: 0;
  cursor: pointer;
  transition: background 240ms var(--ease), color 240ms var(--ease), transform 240ms var(--ease);
}
.btn:hover { border-bottom-color: var(--ink); }

.btn--primary {
  background: var(--ink);
  color: var(--paper);
}
.btn--primary:hover {
  background: var(--paper);
  color: var(--ink);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn--large {
  padding: 1.25rem 2.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
}
.btn--sm {
  padding: 0.6rem 1.1rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
}
.included-list__cta {
  margin-top: var(--space-4);
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule-soft);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  position: relative;
}
.nav__mark {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  border-bottom: none;
}
.nav__monogram { display: inline-block; }

/* Header CTAs — always visible, both desktop and mobile */
.nav__actions {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1.6vw, 0.75rem);
}
.btn--nav {
  padding: 0.55rem clamp(0.55rem, 2vw, 0.9rem);
  font-size: clamp(0.6rem, 1.6vw, 0.7rem);
  letter-spacing: 0.1em;
  white-space: nowrap;
}

/* Everything else lives behind the hamburger — desktop and mobile alike */
.nav__toggle {
  display: block;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
  width: 44px; height: 44px;
  position: relative;
  flex-shrink: 0;
}
.nav__toggle-bar {
  display: block;
  width: 24px; height: 1px;
  background: var(--ink);
  margin: 6px auto;
  transition: transform 240ms var(--ease), opacity 200ms var(--ease);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
  transform: translateY(3px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

.nav__menu {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--rule-soft);
  max-height: 0;
  overflow: hidden;
  transition: max-height 360ms var(--ease);
}
.nav__menu[data-open="true"] { max-height: 80vh; }
.nav__menu ul {
  list-style: none;
  margin: 0;
  padding: var(--space-4) 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.nav__menu li { border-top: 1px solid var(--rule-soft); }
.nav__menu li:first-child { border-top: 0; }
.nav__menu a {
  display: block;
  padding: 1rem var(--gutter);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nav__menu a:hover { color: var(--ink); }

/* ---------- Section base ---------- */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7rem) var(--gutter);
}
.section--narrow {
  max-width: var(--maxw-narrow);
}
.section--alt {
  background: var(--paper-alt);
  max-width: none;
}
.section--alt > * {
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}
.section--alt > .eyebrow,
.section--alt > .section__title,
.section--alt > .section__lede,
.section--alt > .timeline,
.section--alt > .schedule,
.section--alt > .faq,
.section--alt > .grid-2 {
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
}

/* Divider where two off-white sections meet (e.g. Schedule + Resort) */
.section--alt + .section--alt {
  border-top: 1px solid var(--rule);
}

/* ---------- Hero ---------- */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 12vw, 9rem) var(--gutter) clamp(4rem, 8vw, 6rem);
}
.hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Hero collage backdrop — 3x3 rotating photo grid */
.hero__collage {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 3px;
  background: var(--paper);
}
.collage__tile {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}
.collage__cell {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 900ms var(--ease);
}
.collage__cell.is-active { opacity: 1; }
.collage__cell--placeholder {
  background-color: var(--paper);
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(140, 106, 58, 0.22) 0,
    rgba(140, 106, 58, 0.22) 1.5px,
    transparent 1.5px,
    transparent 14px
  );
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(255, 255, 255, 0.99) 0%,
      rgba(255, 255, 255, 0.965) 34%,
      rgba(255, 255, 255, 0.91) 66%,
      rgba(255, 255, 255, 0.88) 100%),
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.7) 0%,
      rgba(255, 255, 255, 0) 24%,
      rgba(255, 255, 255, 0) 76%,
      rgba(255, 255, 255, 0.85) 100%);
}
.hero__scroll { z-index: 2; }
.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(4rem, 16vw, 11rem);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin: 0 0 var(--space-6);
  color: var(--ink);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: clamp(0.75rem, 2vw, 1.75rem);
}
.hero__name { display: inline-block; }
.hero__amp {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
  font-size: 0.9em;
  transform: translateY(-0.05em);
}

.hero__meta {
  margin: 0 0 var(--space-6);
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero__date {
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
  margin: 0 0 var(--space-2);
}
.hero__rule {
  width: 2rem;
  height: 1px;
  background: var(--ink-muted);
}
.hero__place {
  margin: 0;
  color: var(--ink-muted);
}

.hero__lede {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 38ch;
  margin: 0 0 var(--space-7);
}
.hero__lede strong {
  font-weight: 600;
  color: var(--ink);
}

.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin: 0;
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-7);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}
.hero__scroll-line {
  width: 1px;
  height: 32px;
  background: var(--ink-muted);
  animation: scrollPulse 2.6s var(--ease) infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---------- Grid-2 layout ---------- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (min-width: 880px) {
  .grid-2 { grid-template-columns: 1.1fr 1fr; }
}
.grid-2__text { min-width: 0; }

/* ---------- Summary two-card grid ---------- */
.summary-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
  margin-top: var(--space-7);
}
@media (min-width: 880px) {
  .summary-grid { grid-template-columns: 1fr 1fr; }
}
/* Both cards read as a matched pair on the off-white band */
.summary-grid > .card,
.summary-grid > .included-col {
  background: var(--paper);
  margin: 0;
}

/* ---------- Key facts (dl) ---------- */
.key-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin: var(--space-6) 0 var(--space-7);
  padding: var(--space-6) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 540px) {
  .key-facts { grid-template-columns: repeat(2, 1fr); column-gap: var(--space-7); }
}
.key-facts > div {
  display: grid;
  grid-template-columns: auto;
  gap: var(--space-1);
}
.key-facts dt {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.key-facts dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.35;
  color: var(--ink);
}

/* ---------- Photo placeholder ---------- */
.photo-placeholder {
  margin: 0;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--rule);
  background:
    linear-gradient(135deg, var(--paper-alt) 0%, var(--paper) 60%, var(--paper-alt) 100%);
  position: relative;
}
.photo-placeholder--tall { aspect-ratio: 3 / 4; }
.photo-placeholder__inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  color: var(--ink-muted);
}
.photo-placeholder__label {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.photo-placeholder__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-muted);
}

/* Real photo — same box as the placeholder, image filled to cover */
.photo {
  margin: 0;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--rule);
  overflow: hidden;
}
.photo--tall { aspect-ratio: 3 / 4; }
.photo--wide { aspect-ratio: 3 / 2; }
.photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Two landscape photos stacked in one column */
.photo-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
}

/* ---------- Schedule ---------- */
.schedule {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
}
.schedule__day {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  padding: var(--space-7) 0;
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 720px) {
  .schedule__day {
    grid-template-columns: 220px 1fr;
    gap: var(--space-7);
  }
}
.schedule__date {
  font-family: var(--serif);
  line-height: 1;
}
.schedule__dow {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: var(--space-2);
}
.schedule__num {
  display: block;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.schedule__body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.2;
  margin: 0 0 var(--space-3);
  letter-spacing: -0.005em;
}
.schedule__time {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 var(--space-4);
}
.schedule__body p:last-child {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}
.schedule__day--feature .schedule__num {
  color: var(--accent);
}
.schedule__day--feature .schedule__body h3 {
  font-style: italic;
  font-weight: 400;
}
.schedule__extend {
  padding: var(--space-7) 0 0;
}
.schedule__extend .callout {
  margin: 0 auto;
}
.extend-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: stretch;
}
@media (min-width: 720px) {
  .extend-row { grid-template-columns: 1fr 1fr; }
}
.extend-row .callout--couple {
  max-width: none;
  margin: 0;
}

/* ---------- Stay timeline ---------- */
.timeline {
  margin: var(--space-7) 0 var(--space-8);
}
.timeline__caption {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 var(--space-5);
  text-align: center;
}
.timeline__track {
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  position: relative;
}
.timeline__track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 6px;
  height: 1px;
  background: var(--rule);
}
.timeline__day {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  flex: 1;
}
.timeline__dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--ink-muted);
  position: relative;
  z-index: 1;
}
.timeline__num {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--ink-muted);
}
.timeline__day--highlight .timeline__dot {
  background: var(--accent);
  border-color: var(--accent);
  width: 16px;
  height: 16px;
}
.timeline__day--highlight .timeline__num {
  color: var(--accent);
  font-weight: 600;
}

/* ---------- Welcome note card ---------- */
.note-card {
  background: var(--paper-alt);
  border-radius: 18px;
  box-shadow: 0 18px 45px -20px rgba(20, 18, 14, 0.28);
  padding: clamp(2rem, 5vw, var(--space-8));
}

/* ---------- Cards / aside ---------- */
.card {
  border: 1px solid var(--rule);
  padding: var(--space-7);
  background: var(--paper);
}
.card__eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 var(--space-5);
}
.card__eyebrow--center {
  text-align: center;
}
.card__dl {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
.card__dl > div {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-1);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--rule-soft);
}
.card__dl > div:last-child { border-bottom: 0; padding-bottom: 0; }
.card__dl dt {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.card__dl dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.3;
  color: var(--ink);
}
.pill {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.28em 0.7em;
  border-radius: 999px;
  vertical-align: middle;
  margin-left: var(--space-3);
}
.pill--included {
  background: #eaf3ea;
  color: #3f7a4e;
}

/* ---------- Included / notes lists ---------- */
.included, .notes {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-6);
}
.included li, .notes li {
  font-family: var(--sans);
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink-soft);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--rule-soft);
  position: relative;
  padding-left: 1.5rem;
}
.included li::before, .notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 8px;
  height: 1px;
  background: var(--ink);
}
.included li:last-child, .notes li:last-child { border-bottom: 0; }

.notes--grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2) var(--space-7);
  margin: var(--space-5) auto var(--space-6);
}
.notes--grid li {
  border-bottom: 0;
  border-top: 1px solid var(--rule-soft);
  padding-top: var(--space-4);
}
@media (min-width: 720px) {
  .notes--grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cta-inline { margin-top: var(--space-6); }

/* ---------- Cards grid (Things to Do) ---------- */
.cards {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 720px) {
  .cards { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
}
@media (min-width: 1024px) {
  .cards { grid-template-columns: repeat(4, 1fr); }
}
.cards__item {
  border: 1px solid var(--rule);
  padding: var(--space-6);
  background: var(--paper);
  transition: transform 320ms var(--ease), border-color 320ms var(--ease);
}
.cards__item:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
}
.cards__item h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  margin: 0 0 var(--space-2);
  letter-spacing: -0.005em;
}
.cards__meta {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 var(--space-4);
}
.cards__item p:last-child {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ---------- FAQ ---------- */
.faq {
  border-top: 1px solid var(--rule);
}
.faq__item {
  border-bottom: 1px solid var(--rule);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-6) 0;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
  position: relative;
  padding-right: 3rem;
  letter-spacing: -0.005em;
  transition: color 240ms var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--ink-muted);
  transition: transform 320ms var(--ease), color 240ms var(--ease);
  line-height: 1;
}
.faq__item[open] summary::after {
  content: "–";
  color: var(--ink);
}
.faq__item summary:hover { color: var(--accent); }
.faq__item > div {
  padding: 0 0 var(--space-7);
  max-width: 64ch;
}
.faq__item > div p {
  margin: 0 0 var(--space-4);
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.faq__item > div p:last-child { margin-bottom: 0; }
.faq__item > div a {
  border-bottom: 1px solid var(--rule);
}
.faq__item > div a:hover {
  border-bottom-color: var(--ink);
}

/* ---------- RSVP section ---------- */
.section--rsvp {
  background: var(--ink);
  color: var(--paper);
  max-width: none;
  padding: clamp(5rem, 11vw, 8rem) var(--gutter);
}
.rsvp {
  max-width: var(--maxw-narrow);
  margin: 0 auto;
  text-align: center;
}
.section--rsvp .eyebrow { color: rgba(255, 255, 255, 0.6); }
.section--rsvp .section__title {
  color: var(--paper);
  margin-bottom: var(--space-6);
}
.rsvp__lede {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 auto var(--space-8);
  max-width: 48ch;
}
.section--rsvp .rsvp__lede strong {
  color: var(--paper);
  font-style: normal;
  font-weight: 500;
}
.rsvp__cta { margin: 0 0 var(--space-7); }
.section--rsvp .btn--primary {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.section--rsvp .btn--primary:hover {
  background: transparent;
  color: var(--paper);
}
.rsvp__note {
  font-family: var(--sans);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  line-height: 1.6;
}
.section--rsvp .tbd { color: rgba(255, 255, 255, 0.55); }

/* "How to RSVP" card sitting on the black RSVP section */
.rsvp--card {
  max-width: 34rem;
  text-align: left;
}
.section--rsvp .included-col { color: var(--ink); }
.section--rsvp .included-col .btn--primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.section--rsvp .included-col .btn--primary:hover {
  background: transparent;
  color: var(--ink);
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--rule-soft);
  padding: var(--space-8) var(--gutter);
  text-align: center;
}
.footer__inner { max-width: var(--maxw); margin: 0 auto; }
.footer__monogram {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  margin: 0 0 var(--space-3);
  color: var(--ink);
}
.footer__date {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 var(--space-4);
}
.footer__small {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ---------- Callouts (pull quotes / featured boxes) ---------- */
.callout {
  border: 1px solid var(--ink);
  background: var(--paper);
  padding: var(--space-6);
  margin: var(--space-6) 0;
  position: relative;
}
.callout__label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 var(--space-3);
}
.callout__body {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.45;
  color: var(--ink);
  margin: 0;
}
.callout__body strong {
  font-weight: 600;
}
.callout--couple {
  background: var(--paper);
  border-left: 4px solid var(--accent);
  margin: var(--space-7) auto var(--space-8);
  max-width: 56ch;
}
.callout--code {
  background: var(--paper-alt);
  border: 1px solid var(--ink);
  margin-top: 0;
  margin-bottom: var(--space-7);
}
.callout--code .callout__code {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--space-3);
  margin: 0;
}
.callout__code-label {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.callout__code-value {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
}

/* ---------- Included grid ---------- */
.included-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: stretch;
  margin-top: var(--space-7);
}
@media (min-width: 880px) {
  .included-grid { grid-template-columns: 0.85fr 1.15fr; }
}
.included-col {
  border: 1px solid var(--rule);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--paper);
}
.included-col--pay {
  background: var(--paper-alt);
}
.included-col__eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 var(--space-3);
}
.included-col__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 var(--space-6);
}
.included-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.included-list > li {
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--rule-soft);
}
.included-list > li:first-child { padding-top: 0; }
.included-list > li:last-child { border-bottom: 0; padding-bottom: 0; }
.included-list h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.3;
  margin: 0 0 var(--space-2);
  letter-spacing: -0.005em;
  color: var(--ink);
}
.included-list p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.included-list--pay > li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-5);
  align-items: start;
}
.included-list__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--accent);
}
.included-list--inc .included-list__featured {
  background: var(--ink);
  color: var(--paper);
  padding: var(--space-5) var(--space-5);
  margin-bottom: var(--space-2);
  border-bottom: 0;
}
.included-list--inc .included-list__featured h4 {
  color: var(--paper);
  font-weight: 500;
}
.included-list--inc .included-list__featured p {
  color: rgba(255, 255, 255, 0.85);
}
.included-list--inc .included-list__featured strong {
  color: var(--paper);
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.included-footnote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 60ch;
  margin: var(--space-7) 0 0;
}

/* ---------- FAQ groups ---------- */
.faq__group {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: var(--space-8) 0 var(--space-2);
  padding-top: var(--space-6);
  border-top: 1px solid var(--rule);
}
.faq__group:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.faq .faq__group + .faq__item {
  border-top: 1px solid var(--rule);
}

/* ---------- Schedule highlights (couple's days) ---------- */
.schedule__day--couple {
  background: var(--paper);
  margin: 0 calc(-1 * var(--space-5));
  padding-left: var(--space-5);
  padding-right: var(--space-5);
  border-left: 3px solid var(--accent);
}
.schedule__day--couple .schedule__num {
  color: var(--accent);
}
.schedule__day--couple .schedule__body h3 {
  font-style: italic;
  font-weight: 400;
}

/* ---------- RSVP promo code block ---------- */
.rsvp__code {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-5) var(--space-7);
  margin: 0 auto var(--space-6);
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.rsvp__code-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.rsvp__code-value {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--paper);
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Modals ---------- */
.modal[hidden] { display: none; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gutter);
  animation: modalFade 180ms var(--ease);
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 14, 0.45);
  backdrop-filter: saturate(120%) blur(6px);
  -webkit-backdrop-filter: saturate(120%) blur(6px);
}
.modal__card {
  position: relative;
  z-index: 1;
  width: min(30rem, 100%);
  max-height: calc(100dvh - 2 * var(--gutter));
  overflow-y: auto;
  background: var(--paper);
  border: 2px solid var(--accent);
  border-radius: 14px;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  box-shadow: 0 30px 60px -20px rgba(20, 18, 14, 0.45);
  animation: modalPop 220ms var(--ease);
}
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalPop {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .modal, .modal__card { animation: none; }
}
.modal__close {
  position: absolute;
  top: 0.6rem;
  right: 0.8rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--ink-muted);
  cursor: pointer;
}
.modal__close:hover { color: var(--ink); }
.modal__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 5vw, 2.3rem);
  line-height: 1.1;
  margin: 0 0 var(--space-3);
  padding-right: 1.5rem;
}
.modal__lede {
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 var(--space-5);
}

/* RSVP form */
.modal__form { display: grid; gap: var(--space-4); }
.modal__field { display: grid; gap: var(--space-2); }
.modal__label {
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.modal__field input {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
}
.modal__field input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(140, 106, 58, 0.18);
}
.modal__submit {
  margin-top: var(--space-2);
  width: 100%;
  text-align: center;
}
.modal__error {
  font-family: var(--sans);
  font-size: 0.9rem;
  line-height: 1.5;
  color: #9b2c2c;
  background: rgba(155, 44, 44, 0.06);
  border: 1px solid rgba(155, 44, 44, 0.28);
  border-radius: 8px;
  padding: 0.7rem 0.85rem;
  margin: 0;
}

/* Booking steps */
.modal__steps {
  list-style: none;
  margin: var(--space-5) 0 0;
  padding: 0;
  display: grid;
  gap: var(--space-6);
}
.modal__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-4);
  align-items: start;
}
.modal__step-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 2rem;
  line-height: 1;
  color: var(--accent);
}
.modal__step-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.25rem;
  margin: 0 0 var(--space-2);
}
.modal__step-text {
  font-family: var(--sans);
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 var(--space-3);
}

/* Copy-code box */
.copy-code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 0.45rem 0.45rem 0.45rem 1rem;
  transition: border-color 200ms var(--ease);
}
.copy-code__value {
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.copy-code__btn {
  flex-shrink: 0;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.55rem 0.9rem;
  background: var(--ink);
  color: var(--paper);
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 200ms var(--ease);
}
.copy-code.is-copied {
  border-color: #3f7a4e;
}
.copy-code.is-copied .copy-code__btn {
  background: #3f7a4e;
}

/* Lock background scroll while a modal is open */
body.modal-open { overflow: hidden; }

/* ---------- Print ---------- */
@media print {
  .nav, .hero__scroll, .section--rsvp .btn { display: none; }
  body { color: #000; background: #fff; }
  .reveal { opacity: 1; transform: none; }
}
