/* ============================================================
   TAINÁ & RAFAEL — WEDDING SITE
   Estúdio Pixel · 2026
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --cream:    #faf8f3;
  --cream-dk: #f0ebe0;
  --gold:     #b8933c;
  --gold-lt:  #d4aa5a;
  --dark:     #1a1a18;
  --mid:      #3d3d38;
  --muted:    #7a7a72;
  --white:    #ffffff;

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Montserrat', system-ui, sans-serif;
  --script: 'Great Vibes', cursive;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --max-w: 1200px;
  --nav-h: 72px;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--cream);
  color: var(--dark);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── CUSTOM CURSOR ──────────────────────────────────────── */
#cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, background 0.2s, width 0.3s var(--ease-out), height 0.3s var(--ease-out);
}

#cursor-follower {
  width: 36px; height: 36px;
  border: 1px solid rgba(184,147,60,0.5);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.4s var(--ease-out), opacity 0.3s, width 0.3s var(--ease-out), height 0.3s var(--ease-out);
}

body.cursor-hover #cursor { width: 4px; height: 4px; background: var(--gold-lt); }
body.cursor-hover #cursor-follower { width: 56px; height: 56px; opacity: 0.6; }

/* ── LOADER ──────────────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  text-align: center;
}

.loader-monogram {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--white);
  opacity: 0;
  transform: translateY(16px);
  animation: loaderFadeUp 0.9s var(--ease-out) 0.2s forwards;
}

.loader-monogram span { color: var(--gold); }

.loader-bar {
  margin-top: 2.5rem;
  width: 180px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  overflow: hidden;
  opacity: 0;
  animation: loaderFadeUp 0.5s var(--ease-out) 0.6s forwards;
}

.loader-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-lt) 100%);
  width: 0;
  animation: loaderBar 1.2s var(--ease-out) 0.8s forwards;
}

@keyframes loaderFadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes loaderBar {
  to { width: 100%; }
}

/* ── NAV ─────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

#nav.scrolled {
  background: rgba(250,248,243,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.nav-monogram {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--white);
  transition: color 0.4s;
}

#nav.scrolled .nav-monogram { color: var(--dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--white); }

#nav.scrolled .nav-links a { color: var(--mid); }
#nav.scrolled .nav-links a:hover { color: var(--gold); }

.nav-cta {
  padding: 0.6rem 1.4rem !important;
  border: 1px solid rgba(255,255,255,0.5) !important;
  border-radius: 40px !important;
  transition: background 0.3s, color 0.3s, border-color 0.3s !important;
}

.nav-cta:hover {
  background: var(--white) !important;
  color: var(--dark) !important;
  border-color: var(--white) !important;
}

#nav.scrolled .nav-cta {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}

#nav.scrolled .nav-cta:hover {
  background: var(--gold) !important;
  color: var(--white) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}

#nav.scrolled .nav-hamburger span { background: var(--dark); }
#nav.open .nav-hamburger span:first-child { transform: translateY(7px) rotate(45deg); }
#nav.open .nav-hamburger span:last-child  { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
#mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}

#mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

#mobile-menu ul {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

#mobile-menu a {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

#mobile-menu a:hover { color: var(--gold); }

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ── LAYOUT ──────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.container--narrow {
  max-width: 760px;
}

/* ── TYPOGRAPHY HELPERS ──────────────────────────────────── */
.section-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 3rem;
}

/* ── HERO ────────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(184,147,60,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(184,147,60,0.08) 0%, transparent 50%),
    linear-gradient(160deg, #1a1a18 0%, #2a2820 50%, #1a1a18 100%);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center bottom, rgba(26,26,24,0.6) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 1;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  flex-wrap: wrap;
}

.hero-ampersand {
  font-family: var(--script);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  color: var(--gold);
  line-height: 1.2;
  font-weight: 400;
}

.hero-subtitle {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 2rem;
}

.hero-scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 4rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}

.hero-scroll:hover { color: var(--gold); }

.hero-scroll svg {
  width: 20px;
  animation: bounce 2s var(--ease-in-out) infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* ── CONTAGEM ─────────────────────────────────────────────── */
#contagem {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--dark);
  text-align: center;
}

#contagem .section-label { color: rgba(184,147,60,0.7); }

.countdown {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
  padding: 1.5rem 2rem;
}

.countdown-number {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.countdown-label {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.75rem;
}

.countdown-sep {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: rgba(184,147,60,0.3);
  padding-top: 1.5rem;
  line-height: 1.3;
  align-self: flex-start;
}

/* ── NOSSA HISTÓRIA ──────────────────────────────────────── */
#nossa-historia {
  padding: clamp(6rem, 12vw, 10rem) 0;
}

.timeline {
  margin-top: 5rem;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--cream-dk) 10%, var(--cream-dk) 90%, transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: start;
  margin-bottom: 5rem;
  gap: 2rem;
}

.timeline-item:nth-child(even) .timeline-year { grid-column: 3; grid-row: 1; }
.timeline-item:nth-child(even) .timeline-content { grid-column: 1; grid-row: 1; text-align: right; }
.timeline-item:nth-child(odd) .timeline-year { grid-column: 1; grid-row: 1; text-align: right; }
.timeline-item:nth-child(odd) .timeline-content { grid-column: 3; grid-row: 1; }

.timeline-year {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  color: var(--gold);
  padding-top: 0.15em;
  position: relative;
}

.timeline-year::after {
  content: '';
  position: absolute;
  top: 0.55em;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--cream), 0 0 0 5px rgba(184,147,60,0.3);
}

.timeline-item:nth-child(odd) .timeline-year::after  { right: -44px; }
.timeline-item:nth-child(even) .timeline-year::after { left: -44px; }

.timeline-content h3 {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--dark);
}

.timeline-content p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--muted);
}

/* ── CERIMÔNIA ────────────────────────────────────────────── */
#cerimonia {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--dark);
}

.cerimonia-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 4rem;
  align-items: center;
}

.cerimonia-divider {
  background: rgba(255,255,255,0.08);
  align-self: stretch;
  margin: 2rem 0;
}

.cerimonia-card {
  text-align: center;
  padding: 3rem 2rem;
}

.cerimonia-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
  border: 1px solid rgba(184,147,60,0.3);
  border-radius: 50%;
  margin: 0 auto 2rem;
  color: var(--gold);
}

.cerimonia-icon svg { width: 28px; height: 28px; }

.cerimonia-tipo {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.cerimonia-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.cerimonia-detalhe {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem;
}

.cerimonia-horario {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.05em;
}

/* ── QUOTE ────────────────────────────────────────────────── */
#quote {
  padding: clamp(6rem, 12vw, 10rem) 0;
  background: var(--cream-dk);
}

blockquote {
  text-align: center;
}

blockquote p {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

blockquote cite {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ── GALERIA ──────────────────────────────────────────────── */
#galeria {
  padding: clamp(6rem, 12vw, 10rem) 0;
}

#galeria .container { margin-bottom: 4rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.gallery-item {
  overflow: hidden;
  border-radius: 4px;
}

.gallery-placeholder {
  width: 100%;
  aspect-ratio: var(--ratio, 1/1);
  background: linear-gradient(135deg, var(--cream-dk) 0%, #e0d9cc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.7s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.gallery-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184,147,60,0.1) 0%, transparent 60%);
}

.gallery-placeholder:hover { transform: scale(1.03); }

.gallery-placeholder span {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.5;
}

/* ── RSVP ─────────────────────────────────────────────────── */
#rsvp {
  padding: clamp(6rem, 12vw, 10rem) 0;
  background: var(--dark);
}

#rsvp .section-label { color: rgba(184,147,60,0.7); }
#rsvp .section-title { color: var(--white); }
#rsvp .section-title em { color: var(--gold); }
#rsvp .section-desc { color: rgba(255,255,255,0.45); }
#rsvp .section-desc strong { color: var(--gold); font-weight: 500; }

.rsvp-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.form-field label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 1rem 1.25rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--white);
  transition: border-color 0.3s, background 0.3s;
  outline: none;
  -webkit-appearance: none;
  width: 100%;
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.2); }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(184,147,60,0.5);
  background: rgba(255,255,255,0.06);
}

.form-field select option { background: var(--dark); color: var(--white); }

.form-field textarea { resize: none; }

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.25rem;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: none;
}

.radio-label input[type="radio"] {
  width: 16px; height: 16px;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: 50% !important;
  padding: 0 !important;
  background: transparent !important;
  position: relative;
  cursor: none;
  flex-shrink: 0;
}

.radio-label input[type="radio"]:checked {
  border-color: var(--gold) !important;
  background: var(--gold) !important;
}

.radio-label span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 2.5rem;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  border-radius: 40px;
  cursor: none;
  transition: background 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
  align-self: flex-start;
  margin-top: 0.5rem;
}

.btn-primary svg {
  width: 16px;
  transition: transform 0.3s var(--ease-out);
}

.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,147,60,0.3);
}

.btn-primary:hover svg { transform: translateX(4px); }

.form-success {
  display: none;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(184,147,60,0.3);
  border-radius: 8px;
  margin-top: 0.5rem;
}

.form-success.visible { display: flex; }

.form-success svg {
  width: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.form-success p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

/* ── FOOTER ───────────────────────────────────────────────── */
#footer {
  padding: clamp(5rem, 10vw, 8rem) 0 3rem;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.footer-monogram {
  font-family: var(--script);
  font-size: clamp(4rem, 8vw, 7rem);
  color: var(--gold);
  margin-bottom: 1.5rem;
  line-height: 1;
}

.footer-date {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 2rem;
}

.footer-msg {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 3rem;
}

.footer-line {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0 auto 2rem;
}

.footer-credit {
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
}

.footer-credit a {
  color: rgba(184,147,60,0.5);
  transition: color 0.3s;
}
.footer-credit a:hover { color: var(--gold); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .timeline::before { left: 2rem; }
  .timeline-item {
    grid-template-columns: 2rem 1fr;
    grid-template-rows: auto auto;
    gap: 1rem 1.5rem;
  }
  .timeline-item .timeline-year,
  .timeline-item:nth-child(even) .timeline-year {
    grid-column: 2; grid-row: 1;
    text-align: left;
  }
  .timeline-item .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    grid-column: 2; grid-row: 2;
    text-align: left;
  }
  .timeline-year::after,
  .timeline-item:nth-child(odd) .timeline-year::after,
  .timeline-item:nth-child(even) .timeline-year::after {
    top: 0.55em;
    left: -2.6rem;
    right: auto;
  }

  .cerimonia-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .cerimonia-divider {
    width: 60px;
    height: 1px;
    margin: 0 auto;
    background: rgba(255,255,255,0.08);
  }

  .form-row { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item[style*="grid-column: span 2"] { grid-column: span 2; }
  .gallery-item[style*="grid-row: span 2"] { grid-row: auto; }
}

@media (max-width: 600px) {
  .hero-title { flex-direction: column; gap: 0; }
  .countdown-item { min-width: 75px; padding: 1rem; }
  .countdown-sep { padding-top: 1rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item[style*="grid-column: span 2"] { grid-column: span 1; }
  .btn-primary { width: 100%; justify-content: center; }
}

/* ── SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── SELECTION ───────────────────────────────────────────── */
::selection { background: rgba(184,147,60,0.25); color: var(--dark); }
