/* ============================================================
   Kylie's Sweet 16 — Design Tokens & Base
   Palette pulled from the resort photography itself.
   ============================================================ */

:root{
  --lagoon-deep:   #0E5A73; /* deep ocean — nav, primary buttons, dark text accents */
  --lagoon-darker: #093F50; /* hover / pressed state */
  --horizon-blue:  #4A7FB5; /* mid sky/sea — links, secondary accents */
  --aqua-mist:     #DCEFF0; /* shallow water — light section washes */
  --shell-sand:    #FAF1E4; /* sand — base page background */
  --shell-sand-2:  #F3E6D2; /* slightly deeper sand for cards/borders */
  --coral-shell:   #C97A57; /* seashell coral — CTA accent, headline flourish */
  --coral-shell-d: #B05F3E; /* hover state for coral */
  --starfish-gold: #D9A467; /* starfish — small accents, dividers, icons */
  --ink:           #20302F; /* body text — warm charcoal, not pure black */
  --ink-soft:      #4D5E5C; /* secondary text */
  --white:         #FFFFFF;

  --font-script: 'Pinyon Script', cursive;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Jost', sans-serif;

  --container: 1120px;
  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 18px 40px -18px rgba(14,90,115,0.35);
  --shadow-card: 0 10px 30px -12px rgba(14,90,115,0.22);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--shell-sand);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ margin:0; padding:0; }
h1,h2,h3,h4{ margin:0; font-family: var(--font-display); font-weight:600; }
p{ margin:0; }
button{ font-family: var(--font-body); cursor:pointer; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

:focus-visible{
  outline: 3px solid var(--coral-shell);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ---------- eyebrow / labels ---------- */
.eyebrow{
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--coral-shell-d);
}
.eyebrow.on-dark{ color: var(--starfish-gold); }

/* ---------- the "16" medallion (signature element) ---------- */
.medallion{
  --m-size: 56px;
  width: var(--m-size);
  height: var(--m-size);
  border-radius: 50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  position: relative;
  flex-shrink:0;
}
.medallion svg{ width:100%; height:100%; display:block; }
.medallion .num{
  position:absolute;
  font-family: var(--font-display);
  font-weight:700;
  color: var(--lagoon-deep);
  font-size: calc(var(--m-size) * 0.40);
  letter-spacing: -0.02em;
}

/* ============================================================
   NAV
   ============================================================ */
.site-nav{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 500;
  padding: 18px 0;
  background: rgba(250,241,228,0.78);
  backdrop-filter: blur(8px);
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}
.site-nav .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 24px;
}
.site-nav.is-solid{
  background: rgba(250,241,228,0.94);
  padding: 12px 0;
  box-shadow: 0 4px 24px -8px rgba(14,90,115,0.18);
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand-name{
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--lagoon-deep);
  line-height:1.1;
}
.brand-name small{
  display:block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight:500;
  letter-spacing: 0.16em;
  text-transform:uppercase;
  color: var(--coral-shell-d);
  margin-top:2px;
}
.nav-links{
  display:flex;
  align-items:center;
  gap: 30px;
  list-style:none;
}
.nav-links a{
  font-size: 0.86rem;
  font-weight:500;
  color: var(--lagoon-deep);
  position:relative;
  padding: 4px 0;
}
.nav-links a::after{
  content:'';
  position:absolute;
  left:0; bottom:-2px;
  width:0; height:2px;
  background: var(--coral-shell);
  transition: width .25s ease;
}
.nav-links a:hover::after,
.nav-links a.is-active::after{ width:100%; }
.nav-links a.is-active{ color: var(--coral-shell-d); }
.nav-cta{
  background: var(--coral-shell);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 999px;
  font-weight:600 !important;
}
.nav-cta::after{ display:none; }
.nav-cta:hover{ background: var(--coral-shell-d); }

.nav-toggle{
  display:none;
  width:40px; height:40px;
  border:none;
  background:transparent;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  align-items:flex-end;
}
.nav-toggle span{
  display:block; height:2px; width:26px;
  background: var(--lagoon-deep);
  border-radius:2px;
  transition: all .25s ease;
}
.nav-toggle span:nth-child(2){ width:18px; }

@media (max-width: 880px){
  .nav-links{
    position:fixed;
    top:0; right:0;
    height:100vh;
    width:min(78vw, 320px);
    background: var(--shell-sand);
    flex-direction:column;
    align-items:flex-start;
    justify-content:flex-start;
    padding: 100px 36px 40px;
    gap: 26px;
    transform: translateX(100%);
    transition: transform .35s ease;
    box-shadow: -10px 0 40px -10px rgba(14,90,115,0.25);
  }
  .nav-links.is-open{ transform: translateX(0); }
  .nav-links a{ font-size:1.05rem; }
  .nav-toggle{ display:flex; }
  body.nav-open{ overflow:hidden; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight:600;
  border: 2px solid transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn-primary{
  background: var(--coral-shell);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover{ background: var(--coral-shell-d); }
.btn-outline{
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover{ background: rgba(255,255,255,0.16); }
.btn-outline-dark{
  background:transparent;
  border-color: var(--lagoon-deep);
  color: var(--lagoon-deep);
}
.btn-outline-dark:hover{ background: var(--lagoon-deep); color:var(--white); }
.btn-block{ width:100%; }

/* ============================================================
   HERO (shared structure across pages)
   ============================================================ */
.hero{
  position:relative;
  min-height: 100vh;
  display:flex;
  align-items:center;
  background-size: cover;
  background-position: center;
  overflow:hidden;
}
.hero-veil{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(9,40,52,0.18) 0%, rgba(9,40,52,0.08) 38%, rgba(250,241,228,0.94) 100%);
}
.hero-inner{
  position:relative;
  z-index:2;
  width:100%;
  padding-top: 120px;
  text-align:center;
}
.hero .medallion{ margin: 0 auto 22px; --m-size: 84px; }

.hero-title{
  font-family: var(--font-script);
  font-weight:400;
  font-size: clamp(3.6rem, 10vw, 7.5rem);
  color: var(--lagoon-deep);
  line-height: 1;
  text-shadow: 0 2px 24px rgba(255,255,255,0.55);
}
.hero-sub{
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  font-style: italic;
  color: var(--ink);
}
.hero-meta{
  margin-top: 22px;
  display:flex;
  flex-wrap:wrap;
  gap: 14px 28px;
  justify-content:center;
  font-size: 0.95rem;
  color: var(--lagoon-deep);
  font-weight:600;
}
.hero-meta span{ display:inline-flex; align-items:center; gap:8px; }

.hero-actions{
  margin-top: 34px;
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
}

/* countdown */
.countdown{
  margin: 38px auto 0;
  display:flex;
  gap: 14px;
  justify-content:center;
  flex-wrap:wrap;
}
.countdown .unit{
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(14,90,115,0.12);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-md);
  padding: 14px 8px;
  width: 84px;
  text-align:center;
  box-shadow: var(--shadow-card);
}
.countdown .num{
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight:700;
  color: var(--lagoon-deep);
  display:block;
}
.countdown .label{
  font-size: 0.62rem;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color: var(--ink-soft);
  font-weight:600;
}

.scroll-cue{
  position:absolute;
  bottom: 26px; left:50%;
  transform: translateX(-50%);
  z-index:2;
  width: 22px; height:36px;
  border: 2px solid rgba(14,90,115,0.55);
  border-radius: 14px;
}
.scroll-cue::after{
  content:'';
  position:absolute;
  top:6px; left:50%;
  width:4px; height:8px;
  margin-left:-2px;
  background: var(--lagoon-deep);
  border-radius:2px;
  animation: scrollcue 1.6s ease infinite;
}
@keyframes scrollcue{ 0%{ opacity:1; transform:translateY(0); } 70%{ opacity:0; transform:translateY(10px); } 100%{opacity:0;} }

/* page hero (smaller, for inner pages) */
.page-hero{
  min-height: 56vh;
  background-size: cover;
  background-position: center;
}
.page-hero .hero-inner{ padding-top: 150px; padding-bottom: 70px; }
.page-hero .hero-title{ font-size: clamp(2.8rem, 7vw, 4.6rem); }

/* banner variant: show a provided graphic in full (no cropping) on a brand-colored field */
.hero-banner{
  background: linear-gradient(160deg, var(--lagoon-deep), var(--lagoon-darker));
  padding: 120px 24px 56px;
  text-align:center;
}
.hero-banner img{
  max-width: min(360px, 86vw);
  width:100%;
  margin: 0 auto;
  border-radius: var(--radius-md);
  box-shadow: 0 26px 60px -18px rgba(0,0,0,0.45);
}
.hero-banner .caption{
  margin-top: 28px;
  color: var(--shell-sand);
  font-family: var(--font-display);
  font-style:italic;
  font-size: 1.1rem;
  opacity:0.9;
}
.hero-banner .eyebrow{ display:block; margin-bottom:14px; }

/* ============================================================
   WAVE DIVIDER — signature ripple motif
   ============================================================ */
.wave-divider{
  display:block;
  width:100%;
  height: 64px;
  margin-top: -63px;
  position: relative;
  z-index: 3;
  pointer-events: none;
}
.wave-divider path{ fill: var(--shell-sand); }
.wave-divider.flip path{ fill: var(--aqua-mist); }

/* ============================================================
   SECTIONS
   ============================================================ */
section{ position:relative; }
.section{ padding: 90px 0; }
.section-tight{ padding: 64px 0; }
.section-aqua{ background: var(--aqua-mist); }
.section-deep{ background: var(--lagoon-deep); color: var(--shell-sand); }
.section-deep .eyebrow{ color: var(--starfish-gold); }
.section-deep h2{ color: var(--white); }

.section-head{
  max-width: 640px;
  margin: 0 auto 48px;
  text-align:center;
}
.section-head h2{
  font-size: clamp(2rem, 4vw, 2.7rem);
  margin-top:10px;
  color: var(--lagoon-deep);
}
.section-head p{
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height:1.6;
}
.section-deep .section-head p{ color: rgba(250,241,228,0.78); }

/* ---------- quick link cards (landing) ---------- */
.quick-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.quick-card{
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 26px;
  text-align:center;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(14,90,115,0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.quick-card:hover{ transform: translateY(-6px); box-shadow: 0 22px 40px -16px rgba(14,90,115,0.3); }
.quick-card .icon{
  width:56px; height:56px;
  margin: 0 auto 18px;
  color: var(--coral-shell);
}
.quick-card .icon svg{ width:100%; height:100%; }
.quick-card h3{ font-size: 1.18rem; color: var(--lagoon-deep); }
.quick-card p{ margin-top:10px; font-size: 0.92rem; color: var(--ink-soft); line-height:1.55; }
.quick-card .go{
  margin-top:16px;
  display:inline-flex; align-items:center; gap:6px;
  font-size:0.82rem; font-weight:600; color: var(--coral-shell-d);
}

@media (max-width: 980px){ .quick-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .quick-grid{ grid-template-columns: 1fr; } }

/* ---------- welcome note ---------- */
.welcome-note{
  max-width: 680px;
  margin: 0 auto;
  text-align:center;
}
.welcome-note p{
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--ink-soft);
}
.welcome-note .sign{
  margin-top: 24px;
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: var(--coral-shell);
}

/* ============================================================
   HOTEL PAGE
   ============================================================ */
.info-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items:start;
}
@media (max-width: 880px){ .info-grid{ grid-template-columns: 1fr; } }

.panel{
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-card);
}
.panel + .panel{ margin-top: 24px; }

.code-badge{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  background: var(--lagoon-deep);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  margin-top: 18px;
}
.code-badge .code{
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.08em;
  color: var(--white);
  font-weight:700;
}
.code-badge .copy-btn{
  background: var(--coral-shell);
  color: var(--white);
  border:none;
  padding: 10px 18px;
  border-radius: 999px;
  font-size:0.82rem;
  font-weight:600;
  flex-shrink:0;
}
.code-badge .copy-btn:hover{ background: var(--coral-shell-d); }
.code-hint{ margin-top:10px; font-size:0.85rem; color: var(--ink-soft); }

.steps{ list-style:none; counter-reset: step; margin-top: 6px; }
.steps li{
  position:relative;
  counter-increment: step;
  padding-left: 52px;
  margin-bottom: 22px;
  font-size: 1rem;
  line-height:1.6;
  color: var(--ink);
}
.steps li:last-child{ margin-bottom:0; }
.steps li::before{
  content: counter(step);
  position:absolute;
  left:0; top:-2px;
  width:36px; height:36px;
  border-radius:50%;
  background: var(--aqua-mist);
  color: var(--lagoon-deep);
  font-family: var(--font-display);
  font-weight:700;
  display:flex; align-items:center; justify-content:center;
}
.steps a{ color: var(--horizon-blue); font-weight:600; text-decoration: underline; text-decoration-color: rgba(74,127,181,0.35); }

.detail-row{
  display:flex;
  gap:16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--shell-sand-2);
}
.detail-row:last-child{ border-bottom:none; }
.detail-row .ico{ width:22px; height:22px; color: var(--coral-shell); flex-shrink:0; margin-top:2px; }
.detail-row .lbl{ font-size:0.74rem; text-transform:uppercase; letter-spacing:0.1em; color: var(--ink-soft); font-weight:600; }
.detail-row .val{ font-size:1rem; margin-top:3px; }
.detail-row .val a{ color: var(--horizon-blue); font-weight:600; }

.phone-row{ display:flex; gap:14px; flex-wrap:wrap; margin-top:14px; }
.phone-row a{
  background: var(--aqua-mist);
  padding: 10px 18px;
  border-radius:999px;
  font-weight:600;
  font-size:0.9rem;
  color: var(--lagoon-deep);
}

/* ============================================================
   SCHEDULE / TIMELINE
   ============================================================ */
.day-tabs{
  display:flex;
  justify-content:center;
  gap:12px;
  margin-bottom: 50px;
  flex-wrap:wrap;
}
.day-tabs button{
  border: 2px solid var(--aqua-mist);
  background: var(--white);
  color: var(--lagoon-deep);
  padding: 10px 22px;
  border-radius:999px;
  font-weight:600;
  font-size:0.9rem;
}
.day-tabs button.is-active{
  background: var(--lagoon-deep);
  border-color: var(--lagoon-deep);
  color: var(--white);
}

.timeline{ max-width: 720px; margin: 0 auto; }
.day-panel{ display:none; }
.day-panel.is-active{ display:block; }

.t-item{
  display:grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px dashed var(--shell-sand-2);
}
.t-item:first-child{ padding-top:0; }
.t-item:last-child{ border-bottom:none; }
.t-time{
  font-family: var(--font-display);
  font-weight:700;
  color: var(--coral-shell-d);
  font-size:1rem;
  padding-top:2px;
}
.t-body h4{ font-size: 1.12rem; color: var(--lagoon-deep); }
.t-body p{ margin-top:6px; color: var(--ink-soft); font-size:0.94rem; line-height:1.6; }
.t-tag{
  display:inline-block;
  margin-top:8px;
  font-size:0.7rem;
  text-transform:uppercase;
  letter-spacing:0.08em;
  font-weight:700;
  color: var(--horizon-blue);
  background: var(--aqua-mist);
  padding:4px 10px;
  border-radius:999px;
}

.note-card{
  margin-top: 50px;
  text-align:center;
  background: var(--aqua-mist);
  border-radius: var(--radius-lg);
  padding: 30px;
}
.note-card p{ color: var(--ink-soft); font-size:0.95rem; }
.note-card strong{ color: var(--lagoon-deep); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-empty{
  max-width: 560px;
  margin: 0 auto;
  text-align:center;
  padding: 70px 36px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.gallery-empty .medallion{ margin:0 auto 22px; --m-size:72px; }
.gallery-empty h3{ font-size:1.5rem; color: var(--lagoon-deep); }
.gallery-empty p{ margin-top:12px; color: var(--ink-soft); line-height:1.7; }
.gallery-empty .btn{ margin-top: 26px; }

.gallery-strip{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:16px;
  margin-top: 56px;
}
.gallery-strip div{
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--aqua-mist), var(--shell-sand-2));
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--coral-shell);
  opacity:0.8;
}
.gallery-strip svg{ width:30%; height:30%; }
@media (max-width: 760px){ .gallery-strip{ grid-template-columns: repeat(2,1fr); } }

/* ---------- guest photo upload ---------- */
.upload-card{
  max-width: 720px;
  margin: 0 auto 56px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.upload-card h3{ font-size: 1.4rem; color: var(--lagoon-deep); text-align:center; }
.upload-card > p{ text-align:center; color: var(--ink-soft); margin-top:10px; line-height:1.65; }
.upload-form{ margin-top: 28px; }
.upload-form .field input[type="file"]{
  padding: 11px 14px;
  font-size: 0.9rem;
}
.upload-fallback{ text-align:center; margin-top:16px; font-size: 0.82rem; color: var(--ink-soft); }
.upload-fallback a{ color: var(--horizon-blue); font-weight:600; }
.upload-hint{ font-size: 0.78rem; color: var(--ink-soft); margin-top:6px; }

.upload-status{
  margin-top: 18px;
  padding: 13px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display:none;
}
.upload-status.is-shown{ display:block; }
.upload-status.is-success{ background: var(--aqua-mist); color: var(--lagoon-deep); }
.upload-status.is-error{ background: #FBE3DA; color: var(--coral-shell-d); }

/* ---------- live photo grid ---------- */
.photo-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 880px){ .photo-grid{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px){ .photo-grid{ grid-template-columns: repeat(2, 1fr); } }

.photo-card{
  position:relative;
  border-radius: var(--radius-md);
  overflow:hidden;
  aspect-ratio: 1;
  background: var(--shell-sand-2);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  border:none;
  padding:0;
}
.photo-card img{
  width:100%; height:100%;
  object-fit: cover;
  display:block;
  transition: transform .35s ease;
}
.photo-card:hover img{ transform: scale(1.06); }
.photo-card .cap{
  position:absolute;
  left:0; right:0; bottom:0;
  padding: 18px 12px 10px;
  background: linear-gradient(180deg, rgba(9,40,52,0) 0%, rgba(9,40,52,0.72) 100%);
  color: var(--white);
  font-size: 0.78rem;
  text-align:left;
  opacity:0;
  transition: opacity .25s ease;
}
.photo-card:hover .cap{ opacity:1; }
.photo-card .cap strong{ display:block; font-size:0.82rem; }

.photo-grid-empty{
  grid-column: 1 / -1;
  text-align:center;
  padding: 50px 20px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.lightbox{
  position:fixed;
  inset:0;
  z-index: 1000;
  background: rgba(9,40,52,0.88);
  display:none;
  align-items:center;
  justify-content:center;
  padding: 40px 20px;
  cursor: zoom-out;
}
.lightbox.is-open{ display:flex; }
.lightbox img{
  max-width: min(820px, 92vw);
  max-height: 84vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 30px 70px -20px rgba(0,0,0,0.6);
}
.lightbox .lb-cap{
  position:absolute;
  bottom: 28px; left:0; right:0;
  text-align:center;
  color: var(--shell-sand);
  font-size:0.9rem;
}
.lightbox .lb-close{
  position:absolute;
  top: 22px; right: 28px;
  width:40px; height:40px;
  border-radius:50%;
  background: rgba(255,255,255,0.12);
  border:none;
  color:var(--white);
  font-size:1.3rem;
  cursor:pointer;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.accordion{ max-width: 760px; margin: 0 auto; }
.acc-item{
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  box-shadow: var(--shadow-card);
  overflow:hidden;
}
.acc-q{
  width:100%;
  text-align:left;
  background:none;
  border:none;
  padding: 22px 26px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight:600;
  color: var(--lagoon-deep);
}
.acc-q .plus{
  flex-shrink:0;
  width:24px; height:24px;
  position:relative;
}
.acc-q .plus::before, .acc-q .plus::after{
  content:'';
  position:absolute;
  background: var(--coral-shell);
  border-radius:2px;
  transition: transform .25s ease;
}
.acc-q .plus::before{ left:0; top:50%; width:100%; height:2px; transform: translateY(-50%); }
.acc-q .plus::after{ top:0; left:50%; width:2px; height:100%; transform: translateX(-50%); }
.acc-item.is-open .acc-q .plus::after{ transform: translateX(-50%) scaleY(0); }
.acc-a{
  max-height:0;
  overflow:hidden;
  transition: max-height .3s ease;
}
.acc-a-inner{ padding: 0 26px 24px; color: var(--ink-soft); line-height:1.7; font-size:0.96rem; }
.acc-a-inner a{ color: var(--horizon-blue); font-weight:600; text-decoration:underline; }
.acc-a-inner ul{ padding-left:20px; margin-top:10px; list-style: disc; }
.acc-a-inner li{ margin-bottom:6px; }

.faq-group-title{
  text-align:center;
  font-family: var(--font-display);
  color: var(--coral-shell-d);
  font-size:1.1rem;
  margin: 46px 0 22px;
}
.faq-group-title:first-of-type{ margin-top:0; }

/* ============================================================
   RSVP FORM
   ============================================================ */
.rsvp-wrap{
  display:grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items:flex-start;
}
@media (max-width: 880px){ .rsvp-wrap{ grid-template-columns: 1fr; } }

.rsvp-side h2{ font-size: clamp(1.8rem,3.4vw,2.4rem); color: var(--lagoon-deep); }
.rsvp-side p{ margin-top:16px; color: var(--ink-soft); line-height:1.75; }
.rsvp-side .detail-row{ border-bottom:1px solid var(--shell-sand-2); }

.form-card{
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.field{ margin-bottom: 22px; }
.field label{
  display:block;
  font-size: 0.8rem;
  font-weight:600;
  letter-spacing:0.04em;
  color: var(--lagoon-deep);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea{
  width:100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--shell-sand-2);
  background: var(--shell-sand);
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--ink);
  transition: border-color .2s ease, background .2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color: var(--horizon-blue);
  background: var(--white);
  outline:none;
}
.field textarea{ resize:vertical; min-height:96px; }
.field-row{ display:grid; grid-template-columns: 1fr 1fr; gap:18px; }
@media (max-width:520px){ .field-row{ grid-template-columns:1fr; } }

.attend-toggle{ display:flex; gap:12px; }
.attend-toggle input{ display:none; }
.attend-toggle label{
  flex:1;
  text-align:center;
  padding: 13px 10px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--shell-sand-2);
  background: var(--shell-sand);
  font-weight:600;
  font-size:0.9rem;
  color: var(--ink-soft);
  cursor:pointer;
  transition: all .2s ease;
}
.attend-toggle input:checked + label{
  background: var(--lagoon-deep);
  border-color: var(--lagoon-deep);
  color: var(--white);
}

.form-foot{
  margin-top: 26px;
  font-size: 0.8rem;
  color: var(--ink-soft);
  text-align:center;
}
.form-success{
  display:none;
  text-align:center;
  padding: 40px 10px;
}
.form-success.is-shown{ display:block; }
.form-success .medallion{ margin:0 auto 18px; }
.form-success h3{ color: var(--lagoon-deep); font-size:1.4rem; }
.form-success p{ margin-top:10px; color: var(--ink-soft); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{
  background: var(--lagoon-deep);
  color: rgba(250,241,228,0.85);
  padding: 60px 0 30px;
}
.footer-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  flex-wrap:wrap;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(250,241,228,0.16);
}
.footer-brand{ display:flex; align-items:center; gap:12px; }
.footer-brand .brand-name{ color: var(--shell-sand); }
.footer-brand .brand-name small{ color: var(--starfish-gold); }
.footer-nav{ display:flex; gap: 28px; flex-wrap:wrap; }
.footer-nav a{ font-size:0.88rem; opacity:0.85; }
.footer-nav a:hover{ opacity:1; }
.footer-meta{ font-size:0.85rem; line-height:1.8; opacity:0.85; }
.footer-bottom{
  margin-top: 26px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap: 10px;
  font-size: 0.78rem;
  opacity: 0.6;
}

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal{ opacity:0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible{ opacity:1; transform: translateY(0); }
