/* ================================================================
   Munhamo & Emmaculate — Wedding Site  |  nubuilt.co.zw
   Palette: Ivory White · Warm Gold · Soft Baby Blue
   Fonts: Playfair Display · Cinzel · DM Sans
   ================================================================ */

/* ── Variables ───────────────────────────────────────────────── */
:root {
  --gold:        #a67c20;
  --gold-lt:     #d4a843;
  --gold-hi:     #f0d080;
  --gold-pale:   #f6edda;
  --gold-dim:    rgba(184,144,42,.28);
  --gold-shim:   linear-gradient(135deg, #a67c20 0%, #f0d080 45%, #c89030 65%, #f0d080 100%);
  --blue:        #5ba3c9;
  --blue-lt:     #89c4e1;
  --blue-pale:   #dff0f9;
  --blue-dim:    rgba(91,163,201,.22);
  --ivory:       #fdfcf9;
  --ink:         #1c1c22;
  --ink-mid:     #4a4a55;
  --ink-lt:      #8a8a96;
  --border:      rgba(184,144,42,.3);

  --ff-display:  'Playfair Display', Georgia, serif;
  --ff-script:   'Great Vibes', cursive;
  --ff-caps:     'Cinzel', serif;
  --ff-body:     'DM Sans', system-ui, sans-serif;

  --ease-out:    cubic-bezier(.22,1,.36,1);
}

/* ── Reset ───────────────────────────────────────────────────── */
@font-face {
  font-family:'icomoon';
  src:url('../fonts/icomoon/icomoon.eot?srf3rx');
  src:url('../fonts/icomoon/icomoon.eot?srf3rx#iefix') format('embedded-opentype'),
      url('../fonts/icomoon/icomoon.ttf?srf3rx')       format('truetype'),
      url('../fonts/icomoon/icomoon.woff?srf3rx')      format('woff'),
      url('../fonts/icomoon/icomoon.svg?srf3rx#icomoon') format('svg');
  font-weight:normal; font-style:normal;
}

*,*::before,*::after{ box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-mid);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--gold); transition: color .3s; text-decoration: none; }
a:hover { color: var(--gold-lt); }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--ff-display);
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 16px;
}

p em, li em, blockquote em { font-style: italic; }

img { max-width: 100%; }

::selection { background: var(--gold); color: #fff; }

.js .animate-box { opacity: 0; }

/* ── Page wrapper ─────────────────────────────────────────────── */
#page { position: relative; overflow-x: hidden; }

/* ── Loader ──────────────────────────────────────────────────── */
.fh5co-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--ivory) url('../images/loader.gif') center no-repeat;
}

/* ── Floating NAV ────────────────────────────────────────────── */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 40px;
  transition: background .4s var(--ease-out), padding .4s var(--ease-out),
              box-shadow .4s;
}
#site-nav.nav-scrolled {
  background: rgba(253,252,249,.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 40px;
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--ff-script);
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--gold) !important;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-links {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; gap: 8px;
}
.nav-links li a {
  font-family: var(--ff-caps);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  padding: 8px 14px;
  border-radius: 2px;
  transition: color .3s, background .3s;
}
#site-nav.nav-scrolled .nav-links li a { color: var(--ink-mid); }
.nav-links li a:hover { color: var(--gold) !important; }

.nav-links li a.nav-rsvp {
  border: 1px solid rgba(255,255,255,.4);
  color: rgba(255,255,255,.9) !important;
}
#site-nav.nav-scrolled .nav-links li a.nav-rsvp {
  border-color: var(--gold);
  color: var(--gold) !important;
}
.nav-links li a.nav-rsvp:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff !important;
}

.nav-burger {
  display: none;
  background: none;
  border: none; cursor: pointer;
  padding: 4px; gap: 5px;
  flex-direction: column;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
  transition: .3s;
}
#site-nav.nav-scrolled .nav-burger span { background: var(--ink); }
.nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  #site-nav { padding: 16px 24px; }
  #site-nav.nav-scrolled { padding: 10px 24px; }
  .nav-links  { display: none; }
  .nav-burger { display: flex; }
}

/* ── Offcanvas drawer ────────────────────────────────────────── */
#fh5co-offcanvas {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 280px;
  background: var(--ink);
  z-index: 1901;
  padding: 56px 36px 40px;
  transform: translateX(280px);
  transition: transform .4s var(--ease-out);
  overflow-y: auto;
}
body.offcanvas #fh5co-offcanvas { transform: translateX(0); }
body.offcanvas #page::after {
  content: '';
  position: fixed; inset: 0; z-index: 1900;
  background: rgba(0,0,0,.5);
}
.offcanvas-brand {
  font-family: var(--ff-script);
  font-size: 32px; letter-spacing: 1px;
  color: var(--gold);
  margin: 0 0 32px;
}
#fh5co-offcanvas ul { list-style: none; margin: 0; padding: 0; }
#fh5co-offcanvas ul li { margin-bottom: 4px; }
#fh5co-offcanvas ul li a {
  font-family: var(--ff-caps);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .3s;
}
#fh5co-offcanvas ul li a:hover { color: var(--gold-lt); }


/* ════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
#fh5co-header {
  position: relative;
  width: 100%; height: 100vh;
  min-height: 680px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0;
}
#hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,12,28,.72) 0%,
    rgba(10,12,28,.48) 50%,
    rgba(10,12,28,.72) 100%
  );
  pointer-events: none;
}

.hero-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(184,144,42,.2);
  pointer-events: none; z-index: 1;
  top: 50%; left: 50%;
}
.hero-ring.r1 {
  width: 520px; height: 520px;
  margin: -260px 0 0 -260px;
  animation: ringBreath 5s ease-in-out infinite;
}
.hero-ring.r2 {
  width: 760px; height: 760px;
  margin: -380px 0 0 -380px;
  animation: ringBreath 5s ease-in-out infinite 1.4s;
}
@keyframes ringBreath {
  0%,100% { opacity:.25; transform: scale(1); }
  50%      { opacity:.55; transform: scale(1.025); }
}
@media (max-width: 600px) {
  .hero-ring.r1 { width:300px; height:300px; margin:-150px 0 0 -150px; }
  .hero-ring.r2 { width:460px; height:460px; margin:-230px 0 0 -230px; }
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--ff-caps);
  font-size: 11px; letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--blue-lt);
  margin: 0 0 28px;
  display: block;
}

.hero-names-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 20px;
}
.hero-name {
  font-family: var(--ff-script);
  font-size: clamp(60px, 11vw, 116px);
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  letter-spacing: 0;
  display: block;
}
.hero-ampersand {
  width: clamp(36px, 6vw, 64px);
  height: clamp(36px, 6vw, 64px);
  display: block;
  margin: -6px 0;
  line-height: 1;
  filter: drop-shadow(0 2px 8px rgba(166,124,32,.7));
}
.hero-ampersand svg text {
  fill: url(#goldGrad);
}
.hero-ampersand svg { width: 100%; height: 100%; overflow: visible; }

.hero-venue {
  font-family: var(--ff-caps);
  font-size: 10px; letter-spacing: 3px;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  margin: 0 0 28px;
}
.hero-venue i { color: var(--gold-lt); margin-right: 4px; }

.hero-divider {
  display: flex; align-items: center;
  justify-content: center; gap: 16px;
  margin-bottom: 32px;
}
.hd-line {
  display: block; width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-hi));
}
.hero-divider .hd-line:last-child {
  background: linear-gradient(90deg, var(--gold-hi), transparent);
}
.hd-heart {
  color: var(--gold-lt);
  font-size: 13px;
  animation: pulse 1.6s ease-in-out infinite;
}

.simply-countdown { margin-bottom: 36px; }
.simply-countdown > .simply-section {
  display: inline-block;
  width: 76px; height: 76px;
  margin: 0 5px;
  border: 1px solid rgba(184,144,42,.4);
  border-radius: 4px;
  position: relative;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(8px);
  transition: border-color .3s;
}
.simply-countdown > .simply-section:hover { border-color: var(--gold-lt); }
.simply-countdown > .simply-section > div {
  display: table-cell;
  vertical-align: middle;
  width: 76px; height: 76px;
}
.simply-countdown .simply-amount {
  display: block; color: #fff;
  font-family: var(--ff-display);
  font-size: 28px; font-weight: 400; line-height: 1;
}
.simply-countdown .simply-word {
  display: block; color: var(--gold-hi);
  font-family: var(--ff-caps);
  font-size: 8px; letter-spacing: 2px;
  text-transform: uppercase; margin-top: 5px;
}
@media (max-width: 480px) {
  .simply-countdown > .simply-section { width: 60px; height: 60px; margin: 0 3px; }
  .simply-countdown > .simply-section > div { width: 60px; height: 60px; }
  .simply-countdown .simply-amount { font-size: 22px; }
}

.btn-hero {
  display: inline-block;
  font-family: var(--ff-caps);
  font-size: 10px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: #1c1c22 !important;
  background: linear-gradient(110deg, #a67c20 0%, #e8c96a 25%, #f5e4a0 40%, #d4a843 55%, #a67c20 75%, #e8c96a 100%);
  background-size: 250% 100%;
  animation: goldShimmer 6s ease-in-out infinite;
  padding: 16px 48px;
  border-radius: 2px;
  border: none;
  text-decoration: none;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 8px 32px rgba(166,124,32,.5);
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.btn-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.7), transparent);
  pointer-events: none;
}
.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(166,124,32,.7);
  animation-play-state: paused;
}

.hero-scroll-hint {
  display: flex; justify-content: center;
}
.hero-scroll-hint span {
  display: block;
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollDrop 1.8s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  40%  { opacity: 1; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: top; }
}


/* ════════════════════════════════════════════════════
   COUPLE
═══════════════════════════════════════════════════════ */
#fh5co-couple {
  display: flex;
  min-height: 100vh;
  position: relative;
}

.couple-panel {
  width: 50%; position: relative;
  overflow: hidden;
  display: flex; align-items: flex-end;
  min-height: 600px;
}
@media (max-width: 768px) {
  #fh5co-couple { flex-direction: column; }
  .couple-panel  { width: 100%; min-height: 70vh; }
}

.cpp-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center top;
  transition: transform 6s var(--ease-out);
}
.couple-panel:hover .cpp-img { transform: scale(1.04); }

.couple-panel--groom .cpp-veil {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(12,12,24,.78) 0%, rgba(12,12,24,.15) 100%);
}
.couple-panel--bride .cpp-veil {
  position: absolute; inset: 0;
  background: linear-gradient(to left, rgba(12,12,24,.78) 0%, rgba(12,12,24,.15) 100%);
}
@media (max-width: 768px) {
  .couple-panel--groom .cpp-veil,
  .couple-panel--bride .cpp-veil {
    background: linear-gradient(to top, rgba(12,12,24,.82) 0%, rgba(12,12,24,.1) 60%);
  }
}

.cpp-text {
  position: relative; z-index: 2;
  padding: 48px;
  max-width: 400px;
}
.couple-panel--bride .cpp-text {
  margin-left: auto;
  text-align: right;
}
@media (max-width: 768px) {
  .cpp-text { padding: 32px 24px; text-align: center !important; max-width: 100%; }
}

.cpp-role {
  font-family: var(--ff-caps);
  font-size: 9px; letter-spacing: 5px;
  text-transform: uppercase; color: var(--blue-lt);
  display: block; margin-bottom: 14px;
}
.cpp-name {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400; line-height: 1.15;
  color: #fff; margin-bottom: 14px;
}
.cpp-rule {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, #a67c20, #f5e4a0, #a67c20);
  margin: 0 0 18px;
  border-radius: 1px;
}
.couple-panel--bride .cpp-rule { margin-left: auto; }
@media (max-width: 768px) { .cpp-rule { margin: 0 auto 20px; } }
.cpp-text p { color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.75; }

.couple-heart-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 60px; height: 60px;
  background: var(--ivory);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 6px rgba(240,208,128,.2), 0 0 0 12px rgba(166,124,32,.1);
  animation: pulse 1.8s ease-in-out infinite;
}
.couple-heart-badge i { font-size: 20px; color: var(--gold); line-height: 1; }
.heart-svg {
  width: 22px; height: 22px;
  color: var(--gold);
  display: block;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .couple-heart-badge {
    top: auto; left: 50%;
    transform: translateX(-50%);
    position: relative; margin: -30px auto;
    z-index: 20;
  }
}


/* ════════════════════════════════════════════════════
   EVENTS
═══════════════════════════════════════════════════════ */
#fh5co-event {
  position: relative;
  overflow: hidden;
}
.events-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  filter: saturate(.6);
}
.events-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,12,30,.88) 0%, rgba(20,30,55,.78) 100%);
}
.events-inner {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto;
  padding: 100px 40px;
}
@media (max-width: 768px) { .events-inner { padding: 60px 24px; } }

.events-header { text-align: center; margin-bottom: 60px; }
.section-heading {
  font-family: var(--ff-display);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 400; line-height: 1.1;
  color: #fff;
  margin: 8px 0 0;
}
.section-heading em {
  font-family: var(--ff-script);
  font-style: normal;
  font-weight: 400;
  font-size: 1.25em;
  line-height: 1.2;
  display: inline-block;
  background: linear-gradient(160deg, #f5e4a0 0%, #d4a843 28%, #a67c20 52%, #e8c96a 72%, #f0d080 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  padding: 0.15em 0.08em 0.15em;
  vertical-align: baseline;
  text-shadow: none;
  filter: drop-shadow(0 2px 8px rgba(166,124,32,.5));
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}
@media (max-width: 960px) { .events-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .events-grid { grid-template-columns: 1fr; } }

.event-card {
  display: flex; gap: 0;
  border: 1px solid rgba(184,144,42,.3);
  border-radius: 6px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(10px);
  transition: border-color .3s, transform .4s var(--ease-out), background .3s;
}
.event-card:hover {
  border-color: var(--gold-lt);
  transform: translateY(-6px);
  background: rgba(255,255,255,.07);
}

.ec-number-wrap {
  background: var(--gold-dim);
  border-right: 1px solid rgba(184,144,42,.25);
  display: flex; align-items: center; justify-content: center;
  padding: 0 24px;
  flex-shrink: 0;
}
.ec-number {
  font-family: var(--ff-display);
  font-size: 52px; font-weight: 700; font-style: italic;
  color: rgba(184,144,42,.25);
  line-height: 1; display: block;
}
.ec-body { padding: 32px 28px; }

.ec-tag {
  font-family: var(--ff-caps);
  font-size: 8px; letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blue-lt);
  display: block; margin-bottom: 10px;
}
.ec-body h3 {
  font-family: var(--ff-display);
  font-size: 22px; font-weight: 400;
  color: #fff; margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(184,144,42,.2);
}
.ec-meta {
  list-style: none; margin: 0 0 16px; padding: 0;
}
.ec-meta li {
  font-family: var(--ff-caps);
  font-size: 9px; letter-spacing: 1.5px;
  color: rgba(255,255,255,.55);
  margin-bottom: 7px;
}
.ec-meta li i { color: var(--gold); margin-right: 7px; }
.ec-body p { color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.75; margin: 0; }


/* ════════════════════════════════════════════════════
   OUR STORY
═══════════════════════════════════════════════════════ */
#fh5co-couple-story {
  background: var(--ivory);
  padding: 100px 0 0;
  overflow: hidden;
}
@media (max-width: 768px) { #fh5co-couple-story { padding: 60px 0 0; } }

.story-heading-block {
  text-align: center;
  padding: 0 24px 60px;
}
.story-heading-block .section-heading { color: var(--ink); }
.story-heading-block .section-heading em { font-style: normal; }
.story-sub {
  color: var(--ink-lt);
  font-size: 15px;
  font-style: italic;
  margin: 0;
}

.story-track-wrap {
  position: relative;
  padding-bottom: 50px;
}
.story-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 0;
  /* Centre cards on wide screens; they naturally overflow and scroll when too wide */
  justify-content: center;
}
/* On mobile, left-align so snap scrolling works correctly */
@media (max-width: 600px) {
  .story-track {
    padding: 0 4vw;
    justify-content: flex-start;
  }
}
.story-track::-webkit-scrollbar { display: none; }

.story-chapter {
  flex: 0 0 380px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex; flex-direction: column;
  border-right: 1px solid var(--border);
}
.story-chapter:last-child { border-right: none; }
@media (max-width: 600px) { .story-chapter { flex: 0 0 92vw; scroll-snap-align: center; } }

.sc-img {
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: filter .5s;
}
.story-chapter:hover .sc-img { filter: brightness(1.06) saturate(1.1); }
.sc-img::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--ivory));
}

.sc-body {
  padding: 28px 36px 40px;
  position: relative;
  flex: 1;
  background: var(--ivory);
}

.sc-num {
  position: absolute;
  top: -28px; right: 30px;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 72px; font-weight: 700;
  background: linear-gradient(160deg, rgba(245,228,160,.5) 0%, rgba(212,168,67,.3) 45%, rgba(166,124,32,.15) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  pointer-events: none;
  display: block;
}
.sc-body h3 {
  font-family: var(--ff-display);
  font-size: 22px; font-weight: 400;
  color: var(--ink); margin-bottom: 12px;
  padding-top: 8px;
}
.sc-body p { font-size: 14px; color: var(--ink-mid); line-height: 1.8; }

.story-scroll-hint {
  text-align: center;
  padding: 20px 0 50px;
  font-family: var(--ff-caps);
  font-size: 9px; letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ink-lt);
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.ssh-line { display: block; width: 40px; height: 1px; background: var(--border); }


/* ════════════════════════════════════════════════════
   QUOTE BAND
═══════════════════════════════════════════════════════ */
.quote-band {
  background: var(--ink);
  padding: 70px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-band::before {
  content: '\201C';
  position: absolute; top: -40px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-display);
  font-size: 220px; line-height: 1;
  color: rgba(184,144,42,.07);
  pointer-events: none;
}
.quote-band blockquote {
  border: none; margin: 0; padding: 0;
  max-width: 640px; margin: 0 auto;
}
.quote-band blockquote p, .quote-band blockquote {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(22px, 3vw, 32px);
  color: rgba(255,255,255,.88);
  line-height: 1.5;
  margin: 0 0 20px;
}
.quote-band cite {
  font-family: var(--ff-caps);
  font-size: 10px; letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-lt);
  font-style: normal;
}


/* ════════════════════════════════════════════════════
   DRESS CODE
═══════════════════════════════════════════════════════ */
#fh5co-dresscode { position: relative; overflow: hidden; }

.dresscode-wrap { position: relative; }
.dc-img {
  width: 100%; display: block;
  max-height: none; object-fit: cover;
  filter: saturate(.8) brightness(.85);
}
.dc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,12,30,.2) 0%, rgba(10,12,30,.7) 100%);
  display: flex; align-items: center; justify-content: center;
}
.dc-text { text-align: center; padding: 24px; }
.dc-eyebrow {
  font-family: var(--ff-caps);
  font-size: 10px; letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--blue-lt);
  display: block; margin-bottom: 18px;
}
.dc-title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 7vw, 80px);
  font-weight: 700;
  color: #fff; margin: 0 0 16px;
  letter-spacing: -1px;
  text-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.dc-white { color: #f5f5f0; text-shadow: 0 0 24px rgba(255,255,255,.55), 0 4px 30px rgba(0,0,0,.4); }
.dc-gold  {
  background: linear-gradient(160deg, #f5e4a0 0%, #d4a843 28%, #a67c20 52%, #e8c96a 72%, #f0d080 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  padding: 0.15em 0.06em 0.12em;
  text-shadow: none;
  filter: drop-shadow(0 0 18px rgba(240,208,128,.75)) drop-shadow(0 4px 20px rgba(0,0,0,.5));
}
.dc-blue  { color: #4a93b8; text-shadow: 0 0 24px rgba(90,154,181,.45), 0 4px 30px rgba(0,0,0,.4); }
.dc-dot { color: var(--gold-lt); font-style: normal; }
.dc-sub {
  font-family: var(--ff-caps);
  font-size: 10px; letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin: 0;
}


/* ════════════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════════════ */
#fh5co-gallery {
  background: var(--gold-pale);
  padding: 80px 0;
}
.gallery-header {
  text-align: center;
  padding: 0 24px 52px;
}
.gallery-header .section-heading { color: var(--ink); }
.gallery-header .section-heading em { font-style: normal; }
.gallery-header p { color: var(--ink-lt); font-size: 15px; font-style: italic; margin: 0; }

#fh5co-gallery-list {
  list-style: none;
  margin: 0; padding: 0 8px;
  display: flex; flex-wrap: wrap;
  width: 100%;
}
#fh5co-gallery-list li {
  width: 32.5%; margin: 0 0 8px 0.6%;
  min-height: 340px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: transform .5s var(--ease-out);
}
#fh5co-gallery-list li:hover { transform: scale(1.02); z-index: 2; }
#fh5co-gallery-list li a {
  display: block; width: 100%; min-height: 340px;
  position: relative;
}
#fh5co-gallery-list li a::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(10,12,30,.1);
  transition: background .4s;
}
#fh5co-gallery-list li a:hover::before { background: rgba(10,12,30,.42); }

@media (max-width: 768px) { #fh5co-gallery-list li { width: 49%; } }
@media (max-width: 480px)  { #fh5co-gallery-list li { width: 100%; margin-left: 0; } }


/* ════════════════════════════════════════════════════
   RSVP
═══════════════════════════════════════════════════════ */
#fh5co-started {
  position: relative;
  background-size: cover;
  background-position: center;
}
.rsvp-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,12,30,.88) 0%, rgba(10,12,30,.72) 100%);
  pointer-events: none;
}
.rsvp-split {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
@media (max-width: 860px) { .rsvp-split { grid-template-columns: 1fr; } }

.rsvp-left {
  padding: 80px 60px 80px 40px;
  border-right: 1px solid rgba(184,144,42,.2);
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 3;
}
@media (max-width: 860px) {
  .rsvp-left { border-right: none; border-bottom: 1px solid rgba(184,144,42,.2); padding: 60px 24px 40px; }
}
.rsvp-heading {
  font-family: var(--ff-display);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 400; line-height: 1.05;
  color: #fff; margin: 12px 0 20px;
}
.rsvp-blurb {
  color: rgba(255,255,255,.55);
  font-size: 14px; line-height: 1.8;
  max-width: 360px; margin-bottom: 36px;
}
@media (max-width: 860px) { .rsvp-blurb { max-width: 100%; } }

.rsvp-date-badge {
  display: inline-flex;
  align-items: center; gap: 16px;
  border: 1px solid rgba(184,144,42,.35);
  border-radius: 4px;
  padding: 16px 28px;
  background: rgba(184,144,42,.08);
}
.rdb-day {
  font-family: var(--ff-display);
  font-size: 52px; font-weight: 700; font-style: italic;
  display: inline-block;
  background: linear-gradient(160deg, #f5e4a0 0%, #d4a843 28%, #a67c20 52%, #e8c96a 72%, #f0d080 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  padding: 0.15em 0.05em 0.12em;
  line-height: 1;
  text-shadow: none;
  filter: drop-shadow(0 2px 10px rgba(166,124,32,.55));
}
.rdb-detail {
  display: flex; flex-direction: column;
  gap: 2px;
}
.rdb-detail span {
  font-family: var(--ff-caps);
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

.rsvp-right {
  padding: 80px 40px 80px 60px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 3;
}
@media (max-width: 860px) { .rsvp-right { padding: 40px 24px 60px; } }

.rsvp-field { margin-bottom: 20px; }
.rsvp-field label {
  display: block;
  font-family: var(--ff-caps);
  font-size: 9px; letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 8px;
}
.rsvp-right .form-control {
  width: 100%; height: 50px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(184,144,42,.3) !important;
  border-radius: 3px;
  color: #fff;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 300;
  padding: 0 16px;
  transition: border-color .3s, background .3s;
  box-shadow: none !important;
}
.rsvp-right .form-control::placeholder { color: rgba(255,255,255,.28); }
.rsvp-right .form-control:focus {
  outline: none;
  border-color: var(--gold) !important;
  background: rgba(255,255,255,.12);
}

.btn-rsvp {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-caps);
  font-size: 10px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: #1c1c22;
  background: linear-gradient(110deg, #a67c20 0%, #e8c96a 25%, #f5e4a0 40%, #d4a843 55%, #a67c20 75%, #e8c96a 100%);
  background-size: 250% 100%;
  animation: goldShimmer 6s ease-in-out infinite;
  border: none;
  box-shadow: 0 6px 24px rgba(166,124,32,.45);
  padding: 16px 36px;
  border-radius: 3px;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.btn-rsvp::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.7), transparent);
  pointer-events: none;
}
@media (min-width: 540px) { .btn-rsvp { width: auto; } }
.btn-rsvp:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(166,124,32,.65);
  animation-play-state: paused;
}

.rsvp-success-wrap {
  position: relative; z-index: 2;
  text-align: center;
  padding: 100px 24px;
}
.rsvp-success-heart {
  display: block; font-size: 48px;
  color: var(--gold-lt); margin-bottom: 20px;
}
.rsvp-success-title {
  font-family: var(--ff-display);
  font-size: 48px; color: #fff; margin-bottom: 14px;
}
.rsvp-success-msg { color: rgba(255,255,255,.7); font-size: 16px; }

.phone-input-wrap {
  display: flex; align-items: flex-start; width: 100%;
}
.country-code-wrap {
  display: flex; flex-direction: column;
  flex-shrink: 0; width: 90px;
}
.cc-input-row {
  display: flex; align-items: center;
  height: 50px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(184,144,42,.3);
  border-radius: 3px 0 0 3px;
  padding: 0 10px 0 12px;
  transition: border-color .3s;
}
.cc-input-row:focus-within { border-color: var(--gold); }
.cc-plus { color: rgba(255,255,255,.6); font-size: 15px; margin-right: 3px; }
.cc-input {
  background: transparent !important;
  border: none !important; box-shadow: none !important;
  padding: 0 !important; height: auto !important; width: 100% !important;
  color: #fff !important; font-size: 14px !important;
  font-family: var(--ff-body) !important; outline: none !important;
  -moz-appearance: textfield !important;
}
.cc-input::-webkit-outer-spin-button,
.cc-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.cc-input::placeholder { color: rgba(255,255,255,.3) !important; }
.cc-identity {
  display: flex; align-items: center; gap: 4px;
  margin-top: 4px; padding-left: 8px;
}
#cc-flag { font-size: 12px; }
.country-name-label {
  font-size: 9px; color: rgba(255,255,255,.5);
  letter-spacing: 0.5px; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis; max-width: 70px;
}
.phone-number-input {
  flex: 1; border-radius: 0 3px 3px 0 !important;
  border-left: none !important; min-width: 0;
}


/* ════════════════════════════════════════════════════
   VENUE
═══════════════════════════════════════════════════════ */
#fh5co-venue {
  background: #0a0c1c;
  overflow: hidden;
}
.venue-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 100px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) { .venue-inner { padding: 70px 24px; } }

.venue-eyebrow { color: var(--gold); }

.venue-heading {
  color: #fff;
  margin-bottom: 32px;
}
.venue-heading em { font-style: normal; padding: 0.15em 0.08em 0.15em; filter: drop-shadow(0 2px 8px rgba(166,124,32,.5)); }

.venue-divider {
  display: flex; align-items: center;
  gap: 16px; margin-bottom: 32px;
}
.vd-line {
  display: block; width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,144,42,.5));
}
.venue-divider .vd-line:last-child {
  background: linear-gradient(90deg, rgba(184,144,42,.5), transparent);
}
.vd-icon { font-size: 16px; color: var(--gold); }

.venue-name {
  font-family: var(--ff-display);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 400;
  color: rgba(255,255,255,.85);
  margin-bottom: 12px; line-height: 1.4;
}
.venue-address {
  font-family: var(--ff-caps);
  font-size: 10px; letter-spacing: 3px;
  color: rgba(255,255,255,.4);
  text-transform: uppercase; margin-bottom: 36px;
}

.btn-venue {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-caps);
  font-size: 9px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: #1c1c22;
  background: linear-gradient(110deg, #a67c20 0%, #e8c96a 25%, #f5e4a0 40%, #d4a843 55%, #a67c20 75%, #e8c96a 100%);
  background-size: 250% 100%;
  animation: goldShimmer 6s ease-in-out infinite;
  box-shadow: 0 4px 18px rgba(166,124,32,.4);
  padding: 14px 36px;
  border-radius: 3px;
  text-decoration: none;
  position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.btn-venue::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.7), transparent);
  pointer-events: none;
}
.btn-venue:hover {
  color: #1c1c22;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(166,124,32,.6);
  animation-play-state: paused;
}


/* ════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
#fh5co-footer {
  background: #0a0c1c;
  text-align: center;
  padding: 60px 24px 40px;
}
.footer-top-ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-bottom: 28px;
}
.footer-top-ornament span {
  display: block; width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-hi));
}
.footer-top-ornament span:last-child {
  background: linear-gradient(90deg, var(--gold-hi), transparent);
}
.footer-top-ornament i { color: var(--gold-hi); font-size: 14px; }

.footer-brand {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 44px; font-weight: 400;
  display: block;
  background: linear-gradient(160deg, #f5e4a0 0%, #d4a843 28%, #a67c20 52%, #e8c96a 72%, #f0d080 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  padding: 0.15em 0.05em 0.15em;
  text-shadow: none;
  filter: drop-shadow(0 2px 12px rgba(166,124,32,.5));
  margin-bottom: 8px;
}
.footer-datestr {
  font-family: var(--ff-caps);
  font-size: 10px; letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 28px;
}
.fh5co-social-icons {
  list-style: none; margin: 0 0 28px; padding: 0;
  display: flex; justify-content: center; gap: 4px;
}
.fh5co-social-icons li a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid rgba(184,144,42,.2);
  border-radius: 50%;
  color: rgba(255,255,255,.35);
  transition: color .3s, border-color .3s;
}
.fh5co-social-icons li a:hover {
  color: var(--gold-lt);
  border-color: var(--gold-lt);
}
.fh5co-social-icons li a i { font-size: 16px; }
.footer-copy {
  font-family: var(--ff-caps);
  font-size: 9px; letter-spacing: 2px;
  color: rgba(255,255,255,.2); margin: 0;
}
.footer-copy a { color: rgba(255,255,255,.35); }
.footer-copy a:hover { color: var(--gold-lt); }


/* ════════════════════════════════════════════════════
   SECTION EYEBROW
═══════════════════════════════════════════════════════ */
.section-eyebrow {
  font-family: var(--ff-caps);
  font-size: 9px; letter-spacing: 5px;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 10px;
}


/* ════════════════════════════════════════════════════
   GO TO TOP
═══════════════════════════════════════════════════════ */
.gototop {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 999; opacity: 0; visibility: hidden;
  transition: opacity .4s, visibility .4s;
}
.gototop.active { opacity: 1; visibility: visible; }
.gototop a {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(110deg, #a67c20 0%, #e8c96a 25%, #f5e4a0 40%, #d4a843 55%, #a67c20 75%, #e8c96a 100%);
  background-size: 250% 100%;
  animation: goldShimmer 6s ease-in-out infinite;
  color: #1c1c22;
  border-radius: 3px;
  box-shadow: 0 4px 18px rgba(166,124,32,.5);
  transition: transform .3s, box-shadow .3s;
}
.gototop a:hover { animation-play-state: paused; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(166,124,32,.65); }
.gototop a i { font-size: 15px; }


/* ════════════════════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════════════════════ */
#gallery-lightbox {
  position: fixed; inset: 0;
  background: rgba(8,10,20,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: none; align-items: center; justify-content: center;
  z-index: 9999; opacity: 0;
  transition: opacity .35s;
}
#gallery-lightbox.active { opacity: 1; }
.lb-close {
  position: absolute; top: 20px; right: 28px;
  font-size: 30px; color: rgba(255,255,255,.5);
  cursor: pointer; transition: color .2s;
}
.lb-close:hover { color: var(--gold-lt); }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 28px; color: rgba(255,255,255,.4);
  cursor: pointer; padding: 20px; transition: color .2s;
}
.lb-nav:hover { color: var(--gold-lt); }
.lb-prev { left: 10px; }
.lb-next { right: 10px; }
.lb-share {
  position: absolute; bottom: 20px;
  color: rgba(255,255,255,.4); cursor: pointer;
  font-family: var(--ff-caps); font-size: 9px;
  letter-spacing: 3px; text-transform: uppercase;
  transition: color .2s;
}
.lb-share:hover { color: var(--gold-lt); }
.lb-thumbs {
  position: absolute; bottom: 55px;
  display: flex; gap: 8px; width: 90%;
  overflow-x: auto; padding: 6px;
  scrollbar-width: none; scroll-behavior: smooth;
}
.lb-thumbs::-webkit-scrollbar { display: none; }
.lb-thumbs img {
  width: 52px; height: 52px;
  object-fit: cover; border-radius: 3px;
  cursor: pointer; opacity: .45;
  transition: opacity .2s, transform .2s;
  transform: scale(.9);
  border: 1.5px solid transparent;
}
.lb-thumbs img:hover { opacity: .75; transform: scale(.95); }
.lb-thumbs img.active { opacity: 1; transform: scale(1); border-color: var(--gold-lt); }
#lb-image {
  max-width: 90%; max-height: 62vh;
  border-radius: 4px; display: block; opacity: 0;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
@keyframes imgEnter {
  from { opacity:0; transform:scale(.93); }
  to   { opacity:1; transform:scale(1); }
}
@keyframes imgExitLeft {
  from { opacity:1; transform:translateX(0); }
  to   { opacity:0; transform:translateX(-140px); }
}
@keyframes imgExitRight {
  from { opacity:1; transform:translateX(0); }
  to   { opacity:0; transform:translateX(140px); }
}


/* ════════════════════════════════════════════════════
   TOAST
═══════════════════════════════════════════════════════ */
#toast-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.55); z-index: 9999;
  justify-content: center; align-items: center;
}
#toast-box {
  background: #fff; padding: 44px;
  border-radius: 6px; text-align: center;
  max-width: 360px; width: 90%;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  border-top: 3px solid var(--gold);
}
#toast-box p { font-size: 16px; margin-bottom: 24px; color: var(--ink); }
#toast-close {
  background: var(--gold); color: var(--ink);
  border: none; padding: 12px 36px;
  border-radius: 3px;
  font-family: var(--ff-caps);
  font-size: 9px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  cursor: pointer; transition: background .3s;
}
#toast-close:hover { background: var(--gold-lt); }


/* ════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════ */
@keyframes goldShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes pulse {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.1); }
}

.fh5co-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--gold-lt); border-radius: 3px; }


/* ════════════════════════════════════════════════════
   RSVP APP
═══════════════════════════════════════════════════════ */
#app {
  width: 100%;
  position: relative;
  z-index: 3;
}
#app form { width: 100%; }
#app .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 768px) { #app .form-grid { grid-template-columns: 1fr; } }
#app .field { display: flex; flex-direction: column; }
#app .field.full { grid-column: 1 / -1; }
#app label {
  display: block;
  font-family: var(--ff-caps);
  font-size: 9px; letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 8px;
}
#app input,
#app select,
#app textarea {
  width: 100%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(184,144,42,.3);
  border-radius: 3px;
  color: #fff;
  font-family: var(--ff-body);
  font-size: 14px; font-weight: 300;
  padding: 14px 16px;
  transition: border-color .3s, background .3s;
  outline: none;
}
#app textarea { min-height: 120px; resize: vertical; }
#app input:focus,
#app select:focus,
#app textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,.12);
}
#app select option { color: #000; }
#app .button-group {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 20px;
}

.btn-rsvp-secondary {
  background: transparent;
  border: 1px solid rgba(184,144,42,.35);
  color: #fff;
  animation: none;
  box-shadow: none;
}
.btn-rsvp-secondary::before { display: none; }
.btn-rsvp-secondary:hover {
  background: rgba(255,255,255,.08);
  border-color: var(--gold);
  box-shadow: none;
  animation: none;
}

.rsvp-error {
  background: rgba(255,0,0,.08);
  border: 1px solid rgba(255,0,0,.18);
  color: #ffb3b3;
  padding: 14px 16px;
  border-radius: 3px;
  margin-bottom: 20px;
  font-size: 14px;
}
.rsvp-form-wrap { width: 100%; }
.field-help { display: block; margin-top: 6px; font-size: 12px; opacity: .7; }
.field-invalid {
  border: 1px solid #d62828 !important;
  box-shadow: 0 0 0 2px rgba(214,40,40,.15);
}