:root {
  --bg: #fbfaf6;
  --paper: #fffdfa;
  --paper-2: #f4f1ea;
  --ink: #242321;
  --muted: #68645f;
  --gold: #bd8a43;
  --gold-dark: #9b6f33;
  --sage: #74846f;
  --sage-dark: #60705b;
  --line: #ded8cc;
  --shadow: 0 18px 45px rgba(47, 38, 30, .10);
  --shadow-soft: 0 10px 26px rgba(47, 38, 30, .08);
  --radius: 14px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --script: "Great Vibes", cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(189, 138, 67, .08), transparent 32rem),
    linear-gradient(180deg, #fffaf3 0%, var(--bg) 34rem, #fff 100%);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

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

.card-soft {
  background: rgba(255, 253, 250, .9);
  border: 1px solid rgba(170, 156, 137, .25);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 253, 250, .92);
  border-bottom: 1px solid rgba(185, 168, 143, .38);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-dark);
  text-decoration: none;
}

.brand-text {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 2vw, 2.35rem);
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1;
}
.brand-text span { color: var(--gold); }
.brand-leaf { color: var(--sage); margin-top: -5px; }

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.7vw, 28px);
  flex: 1;
}

.main-nav a {
  position: relative;
  display: inline-block;
  padding: 22px 0 18px;
  color: #3c3a38;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 9px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--gold);
  transition: transform .2s ease;
}
.main-nav a:hover::after,
.main-nav a.is-active::after { transform: scaleX(1); }
.main-nav a.is-active { color: var(--gold-dark); }

.header-heart {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--sage-dark);
  border-radius: 99px;
}

.hero {
  min-height: clamp(390px, 39vw, 500px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,253,250,.7) 0%, rgba(255,253,250,.36) 22%, rgba(255,253,250,.68) 45%, rgba(255,253,250,.68) 55%, rgba(255,253,250,.34) 78%, rgba(255,253,250,.62) 100%),
    linear-gradient(180deg, rgba(255,253,250,.06), rgba(255,253,250,.24)),
    url("assets/hero-watercolor-mediterranean.webp") center 33% / cover no-repeat,
    #f4eee4;
  border-bottom: 1px solid rgba(185, 168, 143, .28);
}

.hero-content {
  padding: 44px 20px 54px;
  text-align: center;
  text-shadow: 0 1px 18px rgba(255, 253, 250, .82);
}

.ornament {
  width: 94px;
  height: 28px;
  margin: 0 auto 16px;
  position: relative;
  color: var(--gold);
}
.ornament span {
  position: absolute;
  top: 14px;
  width: 38px;
  height: 1px;
  background: currentColor;
  opacity: .8;
}
.ornament span:nth-child(1) { left: 0; transform: rotate(25deg); }
.ornament span:nth-child(2) { left: 31px; transform: rotate(-22deg); }
.ornament span:nth-child(3) { right: 0; transform: rotate(24deg); }
.ornament.small {
  width: 58px;
  height: 15px;
  margin-top: 14px;
  opacity: .75;
}
.ornament.small span { width: 22px; top: 8px; }
.ornament.small span:nth-child(2) { left: 19px; }

.hero-art-button {
  min-height: 34px;
  margin-top: 18px;
  padding: 0 16px;
  color: var(--sage-dark);
  background: rgba(255, 253, 250, .68);
  border: 1px solid rgba(116, 132, 111, .34);
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(47, 38, 30, .08);
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}
.hero-art-button:hover {
  background: rgba(255, 253, 250, .9);
  border-color: rgba(116, 132, 111, .52);
  transform: translateY(-1px);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: #111;
  font-family: var(--serif);
  font-size: clamp(4.2rem, 7.4vw, 6.9rem);
  font-weight: 500;
  letter-spacing: .012em;
  line-height: .9;
}
.hero h1 span { color: var(--gold); }

.hero-divider,
.mini-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--gold);
}
.hero-divider { margin: 22px auto 14px; }
.hero-divider span,
.mini-divider span {
  width: 84px;
  height: 1px;
  background: currentColor;
  opacity: .55;
}
.hero-divider b {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1;
}
.hero-date {
  margin: 0;
  color: var(--sage-dark);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.3vw, 2.15rem);
  font-weight: 500;
}
.hero-place {
  margin: 6px 0 0;
  color: #4c4742;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.countdown-shell {
  margin-top: -42px;
  position: relative;
  z-index: 4;
}

.countdown-card {
  display: grid;
  grid-template-columns: minmax(210px, 310px) 1fr 46px;
  align-items: center;
  gap: 24px;
  min-height: 88px;
  padding: 16px 28px;
  background: rgba(255, 253, 250, .92);
  border: 1px solid rgba(164, 148, 126, .28);
  border-radius: 12px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.countdown-title {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--sage);
}
.countdown-title strong {
  display: block;
  color: #34302d;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  line-height: 1.1;
}
.countdown-title span {
  display: block;
  margin-top: 6px;
  color: #57524e;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}
.time-grid div {
  min-height: 56px;
  display: grid;
  align-content: center;
  text-align: center;
  border-left: 1px solid rgba(143, 129, 110, .35);
}
.time-grid div:first-child { border-left: 0; }
.time-grid strong {
  color: var(--sage-dark);
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3vw, 2.45rem);
  font-weight: 500;
  line-height: 1;
}
.time-grid span {
  margin-top: 6px;
  color: #55504b;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.countdown-heart {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.1rem;
  text-align: center;
  text-decoration: none;
}

.events-section,
.lodging,
.gift-section,
.gallery-wrap,
.rsvp-section,
.faq {
  position: relative;
  margin-top: clamp(26px, 4vw, 48px);
}
.events-section::before,
.lodging::before,
.gift-section::before,
.gallery-wrap::before,
.rsvp-section::before,
.faq::before {
  content: "";
  display: block;
  grid-column: 1 / -1;
  width: min(160px, 42vw);
  height: 1px;
  margin: 0 auto clamp(24px, 3vw, 34px);
  background: linear-gradient(90deg, transparent, rgba(189, 138, 67, .42), transparent);
}

.story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 1.05fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
  padding-top: 26px;
  padding-bottom: 14px;
}

.story-photo {
  overflow: hidden;
}
.story-photo img {
  width: 100%;
  min-height: 150px;
  object-fit: cover;
}

.story-copy {
  position: relative;
  z-index: 1;
  padding-right: min(14vw, 140px);
}
.story h2,
.lodging h2,
.rsvp-band h2,
.gallery-wrap h2,
.section-heading h2,
.faq h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1.1;
  text-transform: uppercase;
}
.story h2 {
  font-size: clamp(1.75rem, 2vw, 2.05rem);
}
.story .mini-divider {
  justify-content: flex-start;
  gap: 12px;
  margin: 8px 0 16px;
}
.story .mini-divider span { width: 52px; }
.story p {
  max-width: 520px;
  margin: 0 0 14px;
  color: #3f3b38;
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.28;
}
.script-text {
  color: #4f4a45 !important;
  font-family: var(--script) !important;
  font-size: clamp(1.45rem, 2.3vw, 1.9rem) !important;
  line-height: 1.1 !important;
}
.story-leaf {
  position: absolute;
  right: 34px;
  top: 36px;
  color: rgba(116, 132, 111, .35);
  pointer-events: none;
}

.events-section {
  padding: 0 0 14px;
}

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

.event-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px;
  min-height: 310px;
}
.event-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--sage);
  border-radius: 50%;
}
.event-body h3 {
  margin: 0 0 4px;
  font-family: var(--serif);
  font-size: clamp(1.18rem, 1.65vw, 1.42rem);
  font-weight: 700;
  letter-spacing: .07em;
  line-height: 1.05;
  text-transform: uppercase;
}
.event-body time,
.event-body p,
.event-body a {
  font-size: .78rem;
}
.event-body time {
  display: block;
  margin-bottom: 3px;
  color: #453f3a;
  font-weight: 700;
  text-transform: uppercase;
}
.event-body strong {
  display: block;
  color: #242321;
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.1;
}
.event-body p {
  margin: 4px 0 8px;
  color: #4d4944;
  line-height: 1.35;
}
.event-body a,
.hotel-card a {
  color: #3e4f3a;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.event-body a span { color: var(--sage-dark); font-size: .6rem; }
.map-preview {
  overflow: hidden;
  border-radius: 10px;
  opacity: .9;
  border: 1px solid rgba(150, 139, 124, .18);
  margin: 0;
}
.map-preview img {
  width: 100%;
  height: 92px;
  object-fit: cover;
}
.event-card-photo {
  grid-template-columns: 48px minmax(0, 1fr);
}
.event-card-photo .venue-photo { grid-column: 1 / -1; }
.event-card-photo .venue-photo img {
  height: 146px;
  object-position: center 55%;
}
.party-photo {
  position: relative;
}
.event-card-party .venue-photo img {
  object-position: center 30%;
}
.photo-expand-button {
  position: absolute;
  right: 10px;
  bottom: 10px;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 253, 250, .62);
  border-radius: 999px;
  color: #fff;
  background: rgba(36, 35, 33, .58);
  backdrop-filter: blur(8px);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .18);
  transition: transform .18s ease, background-color .18s ease;
}
.photo-expand-button:hover {
  background: rgba(36, 35, 33, .74);
  transform: translateY(-1px);
}

.lodging {
  display: grid;
  grid-template-columns: minmax(210px, 280px) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid rgba(170, 156, 137, .18);
  border-radius: 12px;
  background: rgba(255, 253, 250, .68);
  box-shadow: 0 14px 34px rgba(47, 38, 30, .06);
}
.lodging-intro {
  padding: 10px 0 10px 2px;
}
.lodging h2 {
  font-size: 1.55rem;
}
.mini-divider.left {
  justify-content: flex-start;
  gap: 10px;
  margin: 6px 0 12px;
}
.mini-divider.left span { width: 58px; }
.lodging p {
  margin: 0 0 16px;
  color: #4d4944;
  font-size: .86rem;
}
.hotel-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.hotel-nav,
.hotel-toggle {
  min-height: 40px;
  border: 1px solid rgba(116, 132, 111, .3);
  box-shadow: 0 10px 22px rgba(47, 38, 30, .12);
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.hotel-nav {
  width: 40px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, var(--sage), var(--sage-dark));
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1;
}
.hotel-toggle {
  padding: 0 15px;
  border-radius: 6px;
  color: #3e4f3a;
  background: rgba(255, 253, 250, .94);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.hotel-nav:hover {
  background: linear-gradient(180deg, var(--sage-dark), #31442f);
  border-color: rgba(116, 132, 111, .52);
  box-shadow: 0 12px 24px rgba(47, 38, 30, .15);
  transform: translateY(-1px);
}
.hotel-toggle:hover {
  background: #fff;
  border-color: rgba(116, 132, 111, .48);
  box-shadow: 0 12px 24px rgba(47, 38, 30, .15);
  transform: translateY(-1px);
}
.hotel-nav:disabled {
  opacity: .38;
  pointer-events: none;
}
.hotel-nav:active,
.hotel-toggle:active {
  transform: scale(.96);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 28px;
  border: 0;
  border-radius: 5px;
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 7px 18px rgba(67, 73, 54, .15);
  transition: transform .18s ease, filter .18s ease;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.03); }
.btn-sage { background: linear-gradient(180deg, var(--sage), var(--sage-dark)); }
.btn-gold { background: linear-gradient(180deg, var(--gold), var(--gold-dark)); }

.hotel-rail {
  position: relative;
  min-width: 0;
}
.hotel-rail::after {
  content: "";
  position: absolute;
  top: 34px;
  right: -2px;
  bottom: 15px;
  width: 68px;
  background: linear-gradient(90deg, rgba(255, 253, 250, 0), var(--cream) 76%);
  pointer-events: none;
  transition: opacity .18s ease;
}
.hotel-rail.is-at-end::after,
.hotel-rail.is-expanded::after {
  opacity: 0;
}
.hotel-rail-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 2px 10px;
  color: #6c655d;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hotel-rail-meta [data-hotel-cue] {
  color: var(--gold-dark);
  white-space: nowrap;
}
.hotel-list {
  display: flex;
  gap: 14px;
  min-width: 0;
  overflow-x: auto;
  padding: 2px 2px 10px;
  scroll-padding: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.hotel-list::-webkit-scrollbar {
  display: none;
}
.hotel-list.is-expanded {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: visible;
  padding-bottom: 2px;
  scroll-snap-type: none;
}
.hotel-progress {
  height: 3px;
  margin: 5px 2px 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(116, 132, 111, .18);
}
.hotel-progress span {
  display: block;
  width: 34%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--sage), var(--gold));
  transform-origin: left center;
  transition: width .2s ease;
}
.hotel-rail.is-expanded .hotel-progress {
  display: none;
}
.hotel-card {
  flex: 0 0 calc((100% - 28px) / 3);
  display: grid;
  grid-template-rows: 128px 1fr;
  overflow: hidden;
  min-width: 0;
  min-height: 330px;
  background: var(--paper);
  box-shadow: none;
  scroll-snap-align: start;
}
.hotel-card img {
  width: 100%;
  height: 128px;
  object-fit: cover;
  outline: 1px solid rgba(0, 0, 0, .1);
}
.hotel-card div {
  display: grid;
  align-content: start;
  padding: 14px;
}
.hotel-card h3 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 1.06rem;
  line-height: 1.15;
}
.hotel-card p {
  margin: 0 0 8px;
  font-size: .75rem;
  line-height: 1.38;
}
.hotel-card .hotel-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  align-content: start;
  padding: 0;
}
.stars {
  color: var(--gold);
  font-size: .86rem;
  letter-spacing: .05em;
  line-height: 1;
  margin-bottom: 7px;
}

.gift-section {
  display: grid;
  grid-template-columns: minmax(230px, 310px) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding: 0 0 16px;
}
.gift-copy {
  position: sticky;
  top: 96px;
}
.gift-copy h2 {
  margin: 0;
  color: #2c2926;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.35vw, 2.35rem);
  font-weight: 700;
  letter-spacing: .09em;
  line-height: 1.05;
  text-transform: uppercase;
}
.gift-copy p:not(.eyebrow) {
  margin: 0;
  color: #4d4944;
  font-size: .94rem;
}
.gift-card {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 253, 250, .96), rgba(244, 241, 234, .84)),
    var(--paper);
}
.gift-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-bottom: 1px solid rgba(170, 156, 137, .25);
}
.gift-option {
  min-width: 0;
  min-height: 116px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 20px;
  border: 0;
  border-right: 1px solid rgba(170, 156, 137, .25);
  color: #3b3733;
  background: rgba(255, 253, 250, .46);
  text-align: left;
  transition: background-color .18s ease, box-shadow .18s ease, color .18s ease;
}
.gift-option:last-child { border-right: 0; }
.gift-option:hover,
.gift-option.is-active {
  color: #253220;
  background: rgba(255, 253, 250, .96);
  box-shadow: inset 0 -3px 0 var(--gold);
}
.gift-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--gold-dark);
  background: rgba(189, 138, 67, .1);
  border: 1px solid rgba(189, 138, 67, .22);
  border-radius: 50%;
}
.gift-option strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: .06em;
  line-height: 1.1;
  text-transform: uppercase;
}
.gift-option small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 600;
  line-height: 1.35;
}
.gift-panels {
  padding: 24px;
}
.gift-panel[hidden] { display: none; }
.gift-note {
  max-width: 560px;
  margin: 0;
  color: #3f3b38;
  font-family: var(--serif);
  font-size: 1.28rem;
  line-height: 1.35;
}
.gift-script {
  display: block;
  margin-top: 16px;
  color: var(--sage-dark);
  font-family: var(--script);
  font-size: clamp(1.8rem, 3.2vw, 2.55rem);
  line-height: 1;
}
.bank-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}
.bank-details > div {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(170, 156, 137, .24);
  border-radius: 8px;
  background: rgba(255, 253, 250, .7);
}
.bank-details dt {
  margin: 0 0 5px;
  color: var(--sage-dark);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.bank-details dd {
  margin: 0;
  color: #2f2b28;
  font-size: .88rem;
  line-height: 1.35;
}
.bank-details code {
  white-space: normal;
  overflow-wrap: anywhere;
  color: #242321;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: .02em;
}
.bank-copy-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  align-items: center;
}
.bank-copy-row dt { grid-column: 1 / -1; }
.bank-copy-row button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(116, 132, 111, .3);
  border-radius: 5px;
  color: #3e4f3a;
  background: rgba(255, 253, 250, .95);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.bank-copy-row button:hover {
  border-color: rgba(116, 132, 111, .52);
  background: #fff;
}
.copy-status {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--sage-dark);
  font-size: .82rem;
  font-weight: 700;
  text-align: right;
}

.rsvp-band {
  display: grid;
  grid-template-columns: 80px 1fr minmax(210px, 300px) 42px;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  margin-top: clamp(28px, 4vw, 46px);
  padding: 14px 28px;
  border-radius: 10px;
  background: rgba(244, 241, 234, .82);
  box-shadow: var(--shadow-soft);
}
.envelope { color: rgba(116, 132, 111, .55); }
.rsvp-band h2 {
  margin-bottom: 4px;
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  letter-spacing: .11em;
}
.rsvp-band p {
  margin: 0;
  color: #514c47;
  font-size: .9rem;
}
.rsvp-main-button { width: 100%; }
.band-heart {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2rem;
  text-align: right;
}

.gallery-wrap {
  padding: 0 0 32px;
  text-align: center;
}
.gallery-wrap h2 {
  font-size: 1.35rem;
  letter-spacing: .15em;
}
.gallery-wrap .mini-divider {
  gap: 8px;
  margin: 4px 0 12px;
}
.gallery-wrap .mini-divider span { width: 32px; }
.gallery-row {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: center;
  overflow-x: auto;
  padding: 0 2px 12px;
  scroll-padding: 46px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(116, 132, 111, .45) rgba(116, 132, 111, .12);
}
.gallery-thumb {
  flex: 0 0 clamp(126px, 13vw, 158px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  background: transparent;
  box-shadow: 0 10px 22px rgba(47, 38, 30, .1);
  scroll-snap-align: center;
}
.gallery-thumb img {
  width: 100%;
  height: 84px;
  object-fit: cover;
  transition: transform .22s ease;
}
.gallery-thumb:hover img { transform: scale(1.04); }
.gallery-arrow {
  position: sticky;
  z-index: 2;
  flex: 0 0 36px;
  width: 36px;
  min-height: 84px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: rgba(67, 73, 54, .78);
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1;
}
.gallery-arrow.prev { left: 0; }
.gallery-arrow.next { right: 0; }

.rsvp-section,
.faq {
  padding: 0 0 20px;
}
.section-heading {
  max-width: 690px;
  margin: 0 auto 24px;
  text-align: center;
}
.section-heading .eyebrow {
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-size: .85rem;
}
.section-heading h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  letter-spacing: .1em;
}
.section-heading p {
  margin: 12px 0 0;
  color: var(--muted);
}
.section-heading code {
  padding: 2px 5px;
  background: #eee8dc;
  border-radius: 4px;
}
.rsvp-form {
  width: min(760px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 26px;
}
.rsvp-form label {
  display: grid;
  gap: 7px;
  color: #373330;
  font-size: .86rem;
  font-weight: 700;
}
.rsvp-form label:nth-child(4),
.rsvp-form button,
.form-status { grid-column: 1 / -1; }
.rsvp-form input,
.rsvp-form select,
.rsvp-form textarea {
  width: 100%;
  border: 1px solid rgba(150, 139, 124, .35);
  border-radius: 8px;
  background: rgba(255,255,255,.78);
  padding: 12px 13px;
  color: var(--ink);
  outline: none;
}
.rsvp-form textarea {
  display: block;
  max-width: 100%;
  min-height: 120px;
  resize: vertical;
}
.rsvp-form input:focus,
.rsvp-form select:focus,
.rsvp-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(189, 138, 67, .14);
}
.rsvp-form button { justify-self: center; min-width: 240px; }
.form-status {
  margin: 0;
  color: var(--sage-dark);
  text-align: center;
  font-size: .9rem;
}

.faq { padding-bottom: 66px; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
details {
  padding: 18px 20px;
}
summary {
  cursor: pointer;
  color: #2e2a27;
  font-family: var(--serif);
  font-size: 1.24rem;
  font-weight: 700;
}
details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(28, 25, 22, .82);
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: min(920px, 82vw);
  max-height: 78vh;
  border-radius: 14px;
  box-shadow: 0 28px 70px rgba(0,0,0,.4);
}
.lightbox.is-single .lightbox-arrow {
  display: none;
}
.lightbox-close,
.lightbox-arrow {
  position: fixed;
  border: 0;
  color: #fff;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
}
.lightbox-close {
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 2rem;
}
.lightbox-arrow {
  top: 50%;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: 2.5rem;
  line-height: 1;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.site-footer {
  border-top: 1px solid rgba(185, 168, 143, .26);
  background: #fffaf3;
}
.site-footer .container {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #5c5650;
  font-size: .9rem;
}
.site-footer p { margin: 0; }
.site-footer a {
  color: var(--gold-dark);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

@media (max-width: 1050px) {
  .main-nav { gap: 13px; }
  .main-nav a { font-size: .67rem; }
  .event-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .event-card { grid-template-columns: 50px 1fr; }
  .event-card-photo { grid-template-columns: 50px 1fr; }
  .map-preview { grid-column: 1 / -1; }
  .map-preview img { height: 104px; }
  .event-card-photo .venue-photo img { height: 150px; }
  .hotel-list.is-expanded { grid-template-columns: repeat(2, 1fr); }
  .hotel-card {
    flex-basis: calc((100% - 14px) / 2);
    grid-template-rows: 132px 1fr;
    min-height: 322px;
  }
  .hotel-card img { height: 132px; }
}

@media (max-width: 860px) {
  .container { width: min(100% - 28px, 1120px); }
  .header-inner { min-height: 64px; }
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 64px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 0;
    padding: 10px 18px;
    background: rgba(255,253,250,.98);
    border: 1px solid rgba(185, 168, 143, .36);
    border-radius: 14px;
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .main-nav a { padding: 13px 0; }
  .main-nav a::after { bottom: 7px; transform-origin: left; }
  .header-heart { display: none; }
  .hero {
    background-position: center, center, center 33%;
    background-size: cover, cover, auto 112%;
  }
  .hero h1 { font-size: clamp(3.3rem, 13vw, 5rem); }
  .countdown-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 14px;
  }
  .countdown-title { justify-content: center; }
  .countdown-heart { display: none; }
  .story { grid-template-columns: 1fr; gap: 24px; }
  .story-copy { padding-right: 0; }
  .story-leaf { opacity: .45; right: 0; top: auto; bottom: 20px; }
  .event-grid { grid-template-columns: 1fr; }
  .event-card { min-height: auto; }
  .lodging { grid-template-columns: 1fr; }
  .gift-section { grid-template-columns: 1fr; }
  .gift-copy { position: static; }
  .hotel-controls { margin-top: 12px; }
  .hotel-rail::after {
    top: 32px;
    width: 54px;
  }
  .rsvp-band { grid-template-columns: 56px 1fr; }
  .rsvp-main-button { grid-column: 1 / -1; justify-self: stretch; }
  .band-heart { display: none; }
  .gallery-row {
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x proximity;
  }
  .gallery-thumb {
    flex-basis: 136px;
    scroll-snap-align: center;
  }
  .gallery-arrow { position: sticky; z-index: 2; }
  .gallery-arrow.prev { left: 0; }
  .gallery-arrow.next { right: 0; }
  .rsvp-form,
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 15px; }
  .brand-text { font-size: 1.75rem; }
  .brand-leaf { width: 42px; }
  .hero {
    min-height: 380px;
    background-position: center, center, 52% 33%;
    background-size: cover, cover, auto 116%;
  }
  .hero-content { padding-top: 42px; }
  .hero h1 {
    font-size: clamp(2.45rem, 10.5vw, 4.7rem);
    letter-spacing: 0;
  }
  .hero-divider span { width: 54px; }
  .countdown-shell { margin-top: -34px; }
  .countdown-card { padding: 18px 16px; }
  .time-grid { grid-template-columns: repeat(2, 1fr); gap: 10px 0; }
  .time-grid div:nth-child(3) { border-left: 0; }
  .story { padding-top: 22px; }
  .event-card { grid-template-columns: 44px 1fr; padding: 14px; }
  .event-icon { width: 42px; height: 42px; }
  .hotel-nav {
    width: 44px;
    min-height: 44px;
  }
  .hotel-rail-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    font-size: .68rem;
  }
  .hotel-list.is-expanded { grid-template-columns: 1fr; }
  .hotel-card {
    flex-basis: min(86%, 320px);
    grid-template-rows: 132px 1fr;
    min-height: 318px;
  }
  .hotel-card img { height: 132px; }
  .events-section::before,
  .lodging::before,
  .gift-section::before,
  .gallery-wrap::before,
  .rsvp-section::before,
  .faq::before {
    width: 108px;
    margin-bottom: 22px;
  }
  .gift-section { padding-top: 0; }
  .gift-tabs { grid-template-columns: 1fr; }
  .gift-option {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid rgba(170, 156, 137, .25);
  }
  .gift-option:last-child { border-bottom: 0; }
  .bank-details { grid-template-columns: 1fr; }
  .gift-panels { padding: 18px; }
  .rsvp-band { grid-template-columns: 1fr; text-align: center; }
  .envelope { margin-inline: auto; }
  .gallery-row { gap: 14px; }
  .gallery-thumb { flex-basis: 132px; }
  .rsvp-form { padding: 20px; }
  .site-footer .container { flex-direction: column; justify-content: center; text-align: center; }
}
