/* ============================================================
   Custom Properties
   ============================================================ */
:root {
  --sage:    #B2C2AF;
  --stone:   #CBC7B7;
  --brown:   #473C38;
  --white:   #FFFFFF;
  --sky:     #C3D0E2;
  --cream:   #F9F6F2;
  --text:    #2C2420;
  --muted:   #7A6E6A;
  --sage-dim: rgba(178,194,175,0.18);

  --font-display: 'Tahan-Thin', serif;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  --max-w:  1160px;
  --pad-x:  clamp(1.25rem, 5vw, 3rem);
  --pad-y:  clamp(5rem, 9vw, 8.5rem);
  --radius: 3px;

  /* Spring-like cubic-bezier used everywhere */
  --spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ============================================================
   Grain overlay — Editorial Luxury texture
   ============================================================ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ============================================================
   Custom Font
   ============================================================ */
@font-face {
  font-family: 'Tahan-Thin';
  src: url('/fonts/Tahan-Thin.woff2') format('woff2'),
       url('/fonts/Tahan-Thin.woff')  format('woff'),
       url('/fonts/Tahan-Thin.ttf')   format('truetype');
  font-weight: normal;
  font-style:  normal;
  font-display: swap;
}


/* ============================================================
   Utility
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.container--narrow { max-width: 680px; }
.section { padding: var(--pad-y) var(--pad-x); }

/* Watercolor section icon */
.section-icon {
  display: block;
  width: 116px;
  height: 116px;
  object-fit: contain;
  margin: 0 auto 1.2rem;
}
.section-icon--left {
  margin: 0 0 1.2rem;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400;
  color: var(--brown);
  line-height: 1.15;
  text-wrap: balance;
}
.section-desc {
  max-width: 520px;
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
  text-wrap: pretty;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 1.85rem;
  border-radius: 12px;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.4s var(--spring), box-shadow 0.4s var(--spring), background 0.28s var(--ease), border-color 0.28s var(--ease), color 0.28s var(--ease);
  will-change: transform;
}
.btn:hover    { transform: translateY(-2px); }
.btn:active   { transform: scale(0.97) translateY(0); }
.btn:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
}
.btn--primary:hover {
  background: #5d4e49;
  border-color: #5d4e49;
  box-shadow: 0 10px 32px -4px rgba(71,60,56,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--brown);
  border-color: var(--brown);
}
.btn--outline:hover {
  background: var(--brown);
  color: var(--white);
  box-shadow: 0 10px 32px -4px rgba(71,60,56,0.28);
}

.btn--ghost {
  background: transparent;
  color: var(--muted);
  border-color: var(--stone);
}
.btn--ghost:hover {
  border-color: var(--brown);
  color: var(--brown);
}

.btn--sm { font-size: 0.68rem; padding: 0.6rem 1.35rem; }

/* ============================================================
   Navigation — Floating Glass Pill
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  justify-content: center;
  padding: 1.25rem 1.25rem 0;
  pointer-events: none;
}
.nav-inner {
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 2.5vw, 2rem);
  padding: 0.65rem 1rem 0.65rem 1.5rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow:
    0 2px 20px rgba(71,60,56,0.06),
    inset 0 1px 0 rgba(255,255,255,0.18);
  max-width: 820px;
  width: 100%;
  transition:
    background 0.5s var(--spring),
    box-shadow 0.5s var(--spring),
    border-color 0.5s var(--spring);
}
.nav.scrolled .nav-inner {
  background: rgba(253,251,247,0.96);
  border-color: rgba(71,60,56,0.08);
  box-shadow:
    0 8px 32px -4px rgba(71,60,56,0.12),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.nav-logo { flex-shrink: 0; }
.nav-logo img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  transition: opacity 0.3s var(--ease), transform 0.4s var(--spring);
}
.nav-logo:hover img { opacity: 0.7; transform: scale(1.06); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 2vw, 1.9rem);
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  transition: opacity 0.25s var(--ease);
}
.nav-links a:hover { opacity: 0.6; }
.nav.scrolled .nav-links a { color: var(--brown); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 160vh;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('/images/Wedding-Photo.jpeg');
  background-size: cover;
  background-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(71, 60, 56, 0.4);
}
.hero-content {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  color: var(--white);
  padding: clamp(9rem, 17vh, 12rem) var(--pad-x) 2rem;
  width: 100%;
}
.hero-pretitle {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 1.75rem;
}
.hero-logo {
  max-width: min(840px, 92vw);
  margin: 0 auto 0.4rem;
  filter: drop-shadow(0 4px 32px rgba(0,0,0,0.18));
}
.hero-date {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-style: italic;
  opacity: 0.88;
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

/* Countdown */
.countdown {
  display: inline-flex;
  align-items: flex-start;
  gap: clamp(0.2rem, 1vw, 0.65rem);
}
.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: clamp(2.75rem, 5.5vw, 4.25rem);
}
.cd-num {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 5vw, 3.6rem);
  font-weight: 300;
  line-height: 1;
}
.cd-label {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-top: 0.2rem;
}
.cd-sep {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3.5vw, 2.6rem);
  font-weight: 300;
  opacity: 0.45;
  padding-top: 0.05em;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 1.3rem;
  line-height: 1;
  animation: heroScroll 2.4s var(--spring) infinite;
}
@keyframes heroScroll {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50%      { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ============================================================
   Our Story
   ============================================================ */
.story { background: var(--white); }
.story .section-header { margin-bottom: clamp(3rem, 6vw, 5.5rem); }
.story .section-header h2 { font-style: italic; max-width: 580px; margin: 0 auto; font-size: clamp(1.4rem, 2.8vw, 2.2rem); }

/* Story accordion */
.tl-label { margin-bottom: 0.75rem; }
.tl-place {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: var(--brown);
  line-height: 1.2;
  margin-bottom: 0.3rem;
}
.tl-time {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.story-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.story-acc-item {
  background: var(--cream);
  border-radius: 14px;
  border: 1px solid rgba(71,60,56,0.07);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease);
}
.story-acc-item.is-open {
  box-shadow: 0 4px 24px -6px rgba(71,60,56,0.1);
}
.story-acc-tab {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  width: 100%;
  padding: 1.1rem 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-style: italic;
  color: var(--brown);
  text-align: left;
}
.story-acc-heart {
  font-size: 1.05rem;
  line-height: 1;
  color: var(--brown);
  transition: color 0.2s ease;
  flex-shrink: 0;
  user-select: none;
}
.story-acc-heart::before { content: '\2665'; }
.story-acc-tab:hover .story-acc-heart { color: var(--sage); }
.story-acc-item.is-open .story-acc-heart::before { content: '\2661'; }

.story-acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.42s var(--spring);
}
.story-acc-item.is-open .story-acc-panel {
  grid-template-rows: 1fr;
}
.story-acc-panel-inner {
  overflow: hidden;
  min-height: 0;
}
.story-acc-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: 0.5rem 1.4rem clamp(1.5rem, 4vw, 2.5rem);
}
.story-acc-text p {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.82;
  text-wrap: pretty;
  margin-top: 0.75rem;
}
.story-acc-img {
  border-radius: 10px;
  overflow: hidden;
}
.story-acc-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

/* ============================================================
   Schedule
   ============================================================ */
.schedule { background: var(--sage); }
.schedule .section-header h2 { color: var(--brown); }

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
  max-width: 900px;
  margin: 0 auto;
}

.sched-card-outer {
  display: flex;
  flex-direction: column;
}
.sched-card {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 18px;
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.25rem, 2.5vw, 2rem);
  text-align: center;
  box-shadow: 0 4px 24px rgba(71,60,56,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sched-icon { width: 74px; height: 74px; margin: 0 auto 1.5rem; }
.sched-icon img { width: 100%; height: 100%; object-fit: contain; }
.sched-title {
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  color: var(--brown);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}
.sched-time {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.sched-list li {
  font-size: 0.9rem;
  color: var(--muted);
  padding: 0.48rem 0;
  border-top: 1px solid rgba(71,60,56,0.09);
  text-align: left;
  line-height: 1.55;
}
.sched-list li:last-child { border-bottom: 1px solid rgba(71,60,56,0.09); }
.sched-list li em { font-size: 0.84rem; }

/* ============================================================
   Dress Code
   ============================================================ */
.dress { background: var(--cream); }
.dress-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3.5rem, 7vw, 7rem);
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.dress-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 0.65rem;
  text-wrap: balance;
}
.dress-vibe {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
}
.dress-rules { display: flex; flex-direction: column; gap: 0.65rem; }
.dress-rules li {
  font-size: 0.95rem;
  color: var(--muted);
  padding: 0.6rem 0.9rem;
  border-left: 2px solid var(--sage);
  line-height: 1.68;
  text-wrap: pretty;
}
.dress-rules li strong { color: var(--brown); }

.swatches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.swatch {
  aspect-ratio: 1;
  border-radius: 10px;
  display: flex;
  align-items: flex-end;
  padding: 0.8rem 0.9rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 2px 12px rgba(71,60,56,0.08);
}
.swatch span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--brown);
}
.swatch--dark span { color: rgba(255,255,255,0.82); }

/* ============================================================
   RSVP
   ============================================================ */
.rsvp { background: var(--white); }
.rsvp-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: flex; gap: 1.1rem; }
.form-row--2 > * { flex: 1; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid rgba(71,60,56,0.14);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition:
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(178,194,175,0.22);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-msg {
  padding: 1.1rem 1.4rem;
  border-radius: 10px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.05rem;
}
.form-msg--success {
  background: rgba(178,194,175,0.16);
  border: 1px solid rgba(178,194,175,0.5);
  color: var(--brown);
}
.form-msg--error {
  background: rgba(200,50,50,0.05);
  border: 1px solid rgba(200,50,50,0.25);
  color: #a83030;
  font-family: var(--font-body);
  font-size: 0.88rem;
}
.form-msg--error a { text-decoration: underline; }

/* ============================================================
   Location
   ============================================================ */
.location { background: var(--cream); padding: 0; }
.location-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}
.location-image img { width: 100%; height: 100%; object-fit: cover; }
.location-content {
  padding: clamp(3.5rem, 7vw, 6rem) clamp(2.5rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 0.75rem;
  text-wrap: balance;
}
.location-content p {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.82;
  margin-bottom: 1.1rem;
  text-wrap: pretty;
}
.location-address {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 2rem;
}
.location-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.location-map { height: 380px; }
.location-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============================================================
   Where to Stay — Double-bezel cards
   ============================================================ */
.stay { background: var(--white); }
.hotels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3.5vw, 2.5rem);
}

.hotel-card {
  border: 1px solid rgba(71,60,56,0.07);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hotel-card-inner {
  background: var(--white);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hotel-img { aspect-ratio: 16/9; overflow: hidden; }
.hotel-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.hotel-body {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.hotel-body h3 {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 0.3rem;
}
.hotel-tag {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.85rem;
}
.hotel-desc {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: auto;
  padding-bottom: 1.25rem;
  text-wrap: pretty;
}

/* ============================================================
   Getting There — Double-bezel travel cards
   ============================================================ */
.travel { background: var(--stone); }
.travel .section-header h2 { color: var(--brown); }
.travel .section-desc { color: var(--muted); }

.travel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.travel-card {
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.travel-card-inner {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.travel-card-img { aspect-ratio: 4/3; overflow: hidden; }
.travel-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.travel-card-body { padding: 1.5rem 1.6rem; }
.travel-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 0.65rem;
}
.travel-card-body p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.78;
  margin-bottom: 0.5rem;
  text-wrap: pretty;
}
.travel-card-body p:last-child { margin-bottom: 0; }
.travel-card-body strong { color: var(--brown); }

/* ============================================================
   Support Us
   ============================================================ */
.support { background: var(--cream); }
.support .section-header h2 { color: var(--brown); }
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  max-width: 720px;
  margin: 0 auto;
}

.support-card {
  border: 1px solid rgba(71,60,56,0.07);
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.support-card-inner {
  background: var(--white);
  border-radius: 18px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.support-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 1rem;
}
.support-card-img {
  width: 100%;
  max-width: 200px;
  margin: 0 auto 1rem;
  border-radius: 8px;
  overflow: hidden;
}
.support-card-img img { width: 100%; height: auto; }
.support-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 0.3rem;
}
.support-card a { color: var(--brown); text-decoration: underline; }

/* ============================================================
   Hashtag + Slider Gallery
   ============================================================ */
.hashtag-section {
  background: var(--sage);
  text-align: center;
  padding: var(--pad-y) 0;
}
.hashtag-section .section-icon { margin-bottom: 0.85rem; }
.hashtag-text {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-style: italic;
  color: var(--brown);
  margin-bottom: 1.75rem;
  padding: 0 var(--pad-x);
}
.hashtag-sub {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(71,60,56,0.5);
  margin-top: 1.5rem;
  padding: 0 var(--pad-x);
}

/* Slider */
.hashtag-slider {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.slider-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 8px 40px -8px rgba(71,60,56,0.18);
}
.slider-track {
  display: flex;
  transition: transform 0.65s var(--spring);
}
.slide {
  flex-shrink: 0;
  width: 100%;
}
.slide img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.28);
  border: 1px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--brown);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease), transform 0.4s var(--spring);
}
.slider-btn--prev { left: 1rem; }
.slider-btn--next { right: 1rem; }
.slider-btn:hover {
  background: rgba(255,255,255,0.55);
  transform: translateY(-50%) scale(1.1);
}

/* ============================================================
   Video Countdown
   ============================================================ */
.video-countdown {
  position: relative;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vc-bg {
  position: absolute;
  inset: 0;
}
.vc-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(3px);
  transform: scale(1.04);
}
.vc-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(44,36,32,0.35) 0%, rgba(44,36,32,0.72) 100%),
    linear-gradient(to bottom, rgba(44,36,32,0.45) 0%, rgba(44,36,32,0.25) 50%, rgba(44,36,32,0.55) 100%);
}
.vc-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  text-align: center;
}

/* ============================================================
   Bottom Gallery
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
}
.gallery-item { aspect-ratio: 3/4; overflow: hidden; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--spring);
}
.gallery-item:hover img { transform: scale(1.06); }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--brown);
  color: var(--white);
  padding: clamp(3.5rem, 6vw, 5rem) var(--pad-x) clamp(1.75rem, 3vw, 2.5rem);
  text-align: center;
}
.footer-logo {
  width: 50px; height: 50px;
  object-fit: contain;
  margin: 0 auto 1.25rem;
  opacity: 0.9;
  transition: opacity 0.3s var(--ease), transform 0.4s var(--spring);
}
.footer-logo:hover { opacity: 1; transform: scale(1.05); }
.footer-date {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 2rem;
}
.footer-divider {
  width: 36px; height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 0 auto 1.5rem;
}
.footer-credit { font-size: 0.75rem; opacity: 0.3; }
.footer-credit a { text-decoration: underline; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .story-acc-content { grid-template-columns: 1fr; }
  .story-acc-content .story-acc-img { order: -1; }
  .schedule-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .dress-inner  { grid-template-columns: 1fr; gap: 2.5rem; }
  .location-split { grid-template-columns: 1fr; }
  .location-image { aspect-ratio: 16/9; height: auto; }
  .location-image img { aspect-ratio: 16/9; height: auto; }
  .hotels-grid  { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .travel-grid  { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; max-width: 380px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-inner { padding: 0.6rem 1rem; }
  .form-row--2 { flex-direction: column; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .swatches { grid-template-columns: repeat(2, 1fr); }
  .location-actions { flex-direction: column; }
  .location-actions .btn { text-align: center; }
}
