﻿:root {
  --bg: #fdf8f2;
  --bg-soft: rgba(255, 250, 244, 0.75);
  --text: #2a1a0e;
  --muted: #8a6a50;
  --line: rgba(180, 140, 100, 0.2);
  --gold: #c9a84c;
  --gold-strong: #e8c87a;
  --shadow: 0 20px 60px rgba(180, 140, 100, 0.18);
  --radius: 26px;
  --container: min(1180px, calc(100% - 32px));
}


* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  color: var(--text);
  background: linear-gradient(160deg, #fdf8f2 0%, #fce8d8 50%, #fdf4e8 100%);
  font-family: "Inter", system-ui, sans-serif;
  overflow-x: hidden;
}

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

#starfield {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.hero,
.section,
.footer { position: relative; z-index: 1; }

/* ── HERO FULL SCREEN ── */
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: -5%;
  background-size: cover;
  background-position: center;
  animation: heroZoom 12s ease-out forwards;
  will-change: transform;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.22) 0%,
    rgba(0,0,0,0.08) 35%,
    rgba(0,0,0,0.50) 100%
  );
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 60% at 50% 50%,
      transparent 0%,
      transparent 25%,
      rgba(8, 4, 18, 0.52) 100%
    ),
    radial-gradient(ellipse 30% 40% at 15% 20%,
      rgba(180, 130, 80, 0.12) 0%,
      transparent 70%
    ),
    radial-gradient(ellipse 25% 35% at 85% 75%,
      rgba(120, 90, 160, 0.10) 0%,
      transparent 70%
    );
}


.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(24px, 5vw, 60px) clamp(20px, 8vw, 80px);
  max-width: 900px;
  width: 100%;
  background: none;
  border: none;
  backdrop-filter: none;
  box-shadow: none;
}

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  font-weight: 300;
}

.eyebrow::before,
.eyebrow::after {
  content: "✦";
  font-size: 0.7rem;
  opacity: 0.7;
}

/* Main name */
h1 {
  font-family: "Allura", cursive;
  text-transform: capitalize;
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 400;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 20px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
  letter-spacing: 0.02em;
}

h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  margin: 0 0 16px;
  line-height: 1.1;
  color: var(--text);
}

h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--text);
}

.hero__date {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 300;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.hero__location {
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.15em;
  margin-bottom: 40px;
  font-weight: 300;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Separator auriu */
.hero__separator {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  margin: 20px auto;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 32px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: pointer;
}

.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  color: #fff;
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

.btn--primary:hover {
  box-shadow: 0 12px 32px rgba(201,168,76,0.5);
}

.btn--ghost {
  border-color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.28);
  color: #fff;
  backdrop-filter: blur(10px);
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.2);
}

/* ── SECTIONS ── */
.section {
  width: var(--container);
  margin: 0 auto;
  padding: 100px 0;
}

.section__header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 48px;
}

.section__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.section__tag::before,
.section__tag::after {
  content: "✦";
  font-size: 0.7rem;
  opacity: 0.8;
}

.section__divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 20px auto 0;
}

/* ── GLASS CARDS ── */
.glass-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ── STORY ── */
.story-invite {
  font-family: 'Allura', cursive;
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  color: var(--gold);
  text-align: center;
  line-height: 1.75;
  max-width: 820px;
  margin: 0 auto 36px;
}

.story-card {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px);
}

.story-card p,
.detail-card p,
.map-copy p,
.rsvp-card p,
.footer p,
.footer small {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.9;
  color: var(--muted);
  font-weight: 300;
}

/* ── DETAILS GRID ── */
.details-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.detail-card {
  padding: 32px 28px;
  min-height: 200px;
}

.detail-card h3 {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

/* ── ACCORDION ── */
.accordion-gallery {
  display: flex;
  gap: 12px;
  min-height: 520px;
}

.accordion-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  flex: 1 1 0;
  border: 1px solid rgba(180,140,100,0.15);
  transition: flex 0.55s cubic-bezier(0.4,0,0.2,1), transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  cursor: pointer;
}

.accordion-item:hover,
.accordion-item.active {
  flex: 3.5 1 0;
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.accordion-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.accordion-item:hover img,
.accordion-item.active img {
  transform: scale(1.03);
}

.accordion-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.65) 100%);
}

.accordion-item__content {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 24px;
  color: #fff;
}

.accordion-item__content h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 6px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.accordion-item__content p {
  margin: 0;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  max-width: 32ch;
  line-height: 1.6;
}

/* ── MAP ── */
.map-card {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 24px;
  align-items: stretch;
  padding: clamp(24px, 3vw, 40px);
}

.map-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.map-frame-wrap {
  min-height: 380px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
}

#map-frame {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

/* ── RSVP ── */
.rsvp-card {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(32px, 4vw, 56px);
}

/* ── FOOTER ── */
.footer {
  padding: 32px 16px 48px;
}

.footer__inner {
  width: var(--container);
  margin: 0 auto;
  padding: 32px;
  border-top: 1px solid var(--line);
  text-align: center;
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  .details-grid,
  .map-card {
    grid-template-columns: 1fr;
  }

  .accordion-gallery {
    flex-direction: column;
    min-height: unset;
  }

  .accordion-item,
  .accordion-item:hover,
  .accordion-item.active {
    min-height: 340px;
    flex: unset;
  }

  .hero {
    background-attachment: scroll;
  }
}

.hero__actions-mobile { display: none; }

@media (max-width: 640px) {
  .section { padding: 64px 0; }

  h1 { font-size: clamp(3rem, 14vw, 4.5rem); }
  h2 { font-size: clamp(2rem, 9vw, 3rem); }

  .hero {
    min-height: 0;
    height: var(--hero-mobile-height, 75vw);
    width: 100%;
    padding: 0;
    align-items: center;
  }

  .hero__content { padding: 32px; width: 100%; }

  .hero__actions { display: none; }

  .hero__actions-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 32px 32px;
    background: var(--bg);
  }

  .hero__actions-mobile .btn { width: 100%; max-width: 280px; }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .story-card,
  .detail-card,
  .map-card,
  .rsvp-card {
    padding: 24px 20px;
  }

  .accordion-item,
  .accordion-item:hover,
  .accordion-item.active {
    min-height: 280px;
  }
}

@media (max-width: 400px) {
  h1 { font-size: clamp(2.5rem, 12vw, 3.5rem); }
}
/* COUNTDOWN */
.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px);
  text-align: center;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.countdown-number {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.countdown-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 300;
}

@media (max-width: 480px) {
  .countdown-grid { gap: 12px; }
}

/* ── SITE NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  background: rgba(253,248,242,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: rgba(180,140,100,0.18);
}
.site-nav__links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.site-nav__links a {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  font-weight: 300;
  transition: color 0.3s ease;
  position: relative;
}
.site-nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.site-nav__links a:hover::after { transform: scaleX(1); }
.site-nav.scrolled .site-nav__links a { color: var(--muted); }
.site-nav__links a:hover { color: var(--gold); }
.hero__actions-mobile { display: none; }

@media (max-width: 640px) {
  .site-nav { padding: 12px 20px; }
  .site-nav__links { display: none; }
}

/* ═══════════════════════════════════════════
   SPLASH INTRO — PLIC CU SIGILIU (nunta-1)
═══════════════════════════════════════════ */
#spl {
  position: fixed; inset: 0; z-index: 200000;
  background: #1a0a04;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; overflow: hidden;
  transition: opacity .8s ease, visibility .8s ease;
}
#spl.spl-out { opacity: 0; visibility: hidden; pointer-events: none; }
body.spl-lock { overflow: hidden; }
#spl::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 72% 55% at 50% 50%, rgba(201,168,76,.14) 0%, transparent 72%);
}

/* Particule aurii plutitoare */
.spl-pt {
  position: absolute; width: 3px; height: 3px; border-radius: 50%;
  background: #c9a84c; opacity: 0;
  animation: spl-rise var(--d, 4s) var(--dl, 0s) infinite ease-in-out;
}
@keyframes spl-rise {
  0%   { transform: translateY(0) scale(0); opacity: 0; }
  20%  { opacity: .85; transform: translateY(-16px) scale(1); }
  80%  { opacity: .28; }
  100% { transform: translateY(var(--h, -110px)) scale(.14); opacity: 0; }
}

.spl-stage {
  display: flex; flex-direction: column; align-items: center; gap: 28px;
  pointer-events: none;
}

/* Plicul */
.spl-env {
  position: relative;
  width: min(360px, 87vw); height: min(225px, 55vw);
  perspective: 1400px;
}
.spl-env::before {
  content: ''; position: absolute; inset: 0; border-radius: 4px;
  background: linear-gradient(135deg, #fdf8f2 0%, #fce8d8 100%);
  border: 1px solid rgba(201,168,76,.36);
  box-shadow: 0 32px 90px rgba(0,0,0,.72), 0 0 50px rgba(201,168,76,.18);
}

/* Linii interioare de îndoire */
.spl-folds {
  position: absolute; inset: 0; border-radius: 4px; overflow: hidden;
  background:
    linear-gradient(to bottom right, rgba(201,168,76,.10) 49.8%, transparent 50.2%),
    linear-gradient(to bottom left,  rgba(201,168,76,.10) 49.8%, transparent 50.2%);
  pointer-events: none;
}

/* Scrisoarea interioară */
.spl-ltr {
  position: absolute; bottom: 10%; left: 8%; width: 84%; height: 65%;
  background: linear-gradient(to bottom, #fff, #fdf8f2);
  border: 1px solid rgba(201,168,76,.22); border-radius: 2px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px;
  z-index: 2; transform-origin: bottom center;
  transition: transform .9s .5s cubic-bezier(.34, 1.56, .64, 1);
}
.spl-env.opening .spl-ltr { transform: translateY(-168%); }

.spl-ltr-tag {
  font-family: 'Inter', sans-serif; font-size: 9px;
  letter-spacing: .22em; text-transform: uppercase; color: #c9a84c;
}
.spl-ltr-name {
  font-family: 'Allura', cursive;
  font-size: clamp(20px, 5.5vw, 28px); color: #2a1a0e;
  line-height: 1.1; font-weight: 400;
}
.spl-ltr-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(10px, 2.5vw, 13px); color: #8a6a50; letter-spacing: .08em;
}

/* Clapeta de sus */
.spl-flap {
  position: absolute; top: 0; left: 0; right: 0; height: 52%;
  z-index: 3; transform-origin: top center;
  transform-style: preserve-3d;
  transition: transform .82s cubic-bezier(.4, 0, .2, 1);
}
.spl-flap-face {
  position: absolute; inset: 0;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: linear-gradient(160deg, #fce8d8 0%, #fdf0e8 60%, #fdf8f2 100%);
  border-left: 1px solid rgba(201,168,76,.2);
  border-right: 1px solid rgba(201,168,76,.2);
}
.spl-env.opening .spl-flap { transform: rotateX(-180deg); }

/* Sigiliu de ceară */
.spl-seal {
  position: absolute; top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  width: 58px; height: 58px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #d6b06d, #c9a84c 40%, #a07030 100%);
  box-shadow: 0 4px 20px rgba(201,168,76,.6), inset 0 1px 2px rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center;
  z-index: 4; animation: spl-glow 2.5s ease-in-out infinite;
  transition: transform .35s ease, opacity .3s ease;
}
.spl-env.opening .spl-seal {
  transform: translate(-50%, -50%) scale(0) rotate(80deg); opacity: 0;
}
@keyframes spl-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(201,168,76,.5), inset 0 1px 2px rgba(255,255,255,.3); }
  50%       { box-shadow: 0 4px 35px rgba(201,168,76,.9), 0 0 28px rgba(201,168,76,.3), inset 0 1px 2px rgba(255,255,255,.3); }
}
.spl-seal-ring {
  position: absolute; inset: 5px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
}
.spl-seal > span {
  font-family: 'Allura', cursive; font-size: 19px;
  color: rgba(26,13,7,.85); z-index: 1; position: relative;
}

/* Textul de hint */
.spl-hint {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(11px, 3vw, 14px); color: rgba(201,168,76,.8);
  letter-spacing: .16em; text-align: center;
  animation: spl-hint-pulse 2.5s ease-in-out infinite;
}
@keyframes spl-hint-pulse { 0%, 100% { opacity: .5; } 50% { opacity: 1; } }

/* ═══════════════════════════════════════════
   LUXURY DIVIDER
═══════════════════════════════════════════ */
.luxury-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 8px 0;
  position: relative;
  z-index: 2;
}
.luxury-divider--hero {
  padding: 28px clamp(24px, 8vw, 120px);
  background: var(--bg);
}
.luxury-divider--section {
  margin-bottom: 36px;
  padding: 0;
}
.luxury-divider--locations {
  padding: 40px clamp(24px, 8vw, 120px);
  background: var(--bg);
  gap: 20px;
}
.luxury-divider__wing { display: flex; align-items: center; }
.luxury-divider__wing--right { transform: none; }
.luxury-divider__center {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.luxury-divider__gem {
  color: var(--gold);
  font-size: 10px;
  opacity: 0.85;
}
.luxury-divider__gem--sm { font-size: 7px; opacity: 0.55; }
.luxury-divider__dot { color: rgba(201,168,76,0.35); font-size: 10px; }
.luxury-divider__line-full {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.35), transparent);
}

/* ═══════════════════════════════════════════
   NAȘI SECTION
═══════════════════════════════════════════ */
.nasi-wrapper {
  text-align: center;
  padding: clamp(20px, 3vw, 40px) 0 clamp(32px, 4vw, 56px);
}
.nasi-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-bottom: 36px;
}
.nasi-pair {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 5vw, 64px);
  flex-wrap: wrap;
}
.nasi-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.nasi-role {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}
.nasi-name {
  font-family: 'Allura', cursive;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--text);
  line-height: 1.1;
}
.nasi-separator {
  opacity: 0.6;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   GALLERY BENTO (Premium)
═══════════════════════════════════════════ */
.gallery-bento {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 10px;
}
.gallery-bento-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(180,140,100,0.12);
  box-shadow: 0 6px 28px rgba(0,0,0,0.07);
  cursor: zoom-in;
}
.gallery-bento-item:first-child {
  grid-row: 1 / 3;
}
.gallery-bento-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  display: block;
}
.gallery-bento-item:hover img { transform: scale(1.06); }
.gallery-bento-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20,8,4,0.45) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-bento-item:hover .gallery-bento-item__overlay { opacity: 1; }
.gallery-secondary { margin-top: 16px; }

@media (max-width: 640px) {
  .gallery-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px;
  }
  .gallery-bento-item:first-child { grid-row: 1; }
}

/* ═══════════════════════════════════════════
   COUNTDOWN ACTUALIZAT
═══════════════════════════════════════════ */
.countdown-event-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-top: 4px;
  font-weight: 300;
}

/* ═══════════════════════════════════════════
   LOCATION SECTIONS (Cununie + Petrecere)
═══════════════════════════════════════════ */
.location-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.location-row--reverse {
  /* card left, map right — handled by source order */
}
.location-map-wrap {
  min-height: 360px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}
.location-map-wrap iframe {
  width: 100%; height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}
.location-card {
  padding: clamp(28px, 3.5vw, 48px) clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 4px;
}
.location-badge::before { content: '✦'; font-size: 0.65rem; }
.location-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--text);
  margin: 0;
  line-height: 1.2;
}
.location-detail {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0.03em;
  margin: 0;
}
.location-address {
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
}
.location-meniu {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-top: 4px;
}
.location-meniu-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.location-meniu p {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 300;
}
.location-btn { margin-top: auto; align-self: flex-start; }

@media (max-width: 860px) {
  .location-row,
  .location-row--reverse {
    grid-template-columns: 1fr;
  }
  .location-row .location-map-wrap { order: -1; min-height: 280px; }
  .location-row--reverse .location-map-wrap { order: 0; min-height: 280px; }
  .location-map-wrap iframe { min-height: 280px; }
}

/* ═══════════════════════════════════════════
   RSVP — CONFIRMAREA PREZENȚEI
═══════════════════════════════════════════ */
.rsvp-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}
.btn--rsvp-yes {
  background: linear-gradient(135deg, #4a9b6f, #62c48f);
  color: #fff;
  box-shadow: 0 8px 24px rgba(74,155,111,0.35);
  min-height: 52px;
  padding: 0 32px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  text-decoration: none;
}
.btn--rsvp-yes:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(74,155,111,0.5);
}
.btn--rsvp-no {
  background: rgba(255,255,255,0.8);
  color: var(--muted);
  border: 1px solid rgba(180,140,100,0.25);
  backdrop-filter: blur(8px);
  min-height: 52px;
  padding: 0 32px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.25s ease, background 0.25s ease;
  cursor: pointer;
  text-decoration: none;
}
.btn--rsvp-no:hover {
  transform: translateY(-2px);
  background: rgba(255,240,240,0.9);
}
.rsvp-icon {
  font-size: 1.1em;
  font-weight: 600;
}
@media (max-width: 480px) {
  .rsvp-buttons { flex-direction: column; align-items: center; }
  .btn--rsvp-yes, .btn--rsvp-no { width: 100%; max-width: 280px; justify-content: center; }
}