:root {
  --bg-dark: #0a0a0a;
  --bg-section: #111111;
  --bg-card: #1a1a1a;
  --fg: #f5f0eb;
  --fg-muted: #a89b8c;
  --accent: #c9956b;
  --accent-light: #e8c9a8;
  --accent-glow: rgba(201, 149, 107, 0.15);
  --rose: #8b3a4a;
  --rose-light: #c25d73;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-dark);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 80px 24px;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(139, 58, 74, 0.2), transparent),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(201, 149, 107, 0.12), transparent);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: left;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(201, 149, 107, 0.3);
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 40px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.8;
}

.hero-accent {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 58, 74, 0.15), transparent 70%);
  filter: blur(80px);
  z-index: 0;
}

/* FEATURES */
.features {
  padding: 120px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(201, 149, 107, 0.08);
  padding: 48px 40px;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(201, 149, 107, 0.25);
}

.feature-card--large {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--bg-card), rgba(139, 58, 74, 0.08));
  border-color: rgba(139, 58, 74, 0.15);
}

.feature-number {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0.6;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--fg);
}

.feature-card p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* HOW IT WORKS */
.how-it-works {
  padding: 100px 24px;
  background: var(--bg-section);
  border-top: 1px solid rgba(201, 149, 107, 0.06);
  border-bottom: 1px solid rgba(201, 149, 107, 0.06);
}

.hiw-content {
  max-width: 900px;
  margin: 0 auto;
}

.hiw-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 24px;
}

.hiw-statement {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 640px;
  line-height: 1.8;
  margin-bottom: 60px;
}

.hiw-stats {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* CLOSING */
.closing {
  padding: 140px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(139, 58, 74, 0.1), transparent);
  z-index: 0;
}

.closing-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.1;
}

.closing h2 em {
  font-style: italic;
  color: var(--rose-light);
}

.closing p {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.closing-tagline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--accent) !important;
  margin-top: 40px !important;
  letter-spacing: 0.02em;
}

/* FOOTER */
.site-footer {
  padding: 60px 24px;
  border-top: 1px solid rgba(201, 149, 107, 0.08);
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
}

.footer-location {
  color: var(--fg-muted);
  font-size: 0.9rem;
}

.footer-email {
  color: var(--accent);
  font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card--large {
    grid-column: 1;
  }

  .feature-card {
    padding: 36px 28px;
  }

  .hiw-stats {
    gap: 40px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-sub {
    margin: 0 auto;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-accent {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 20px;
  }

  .features {
    padding: 80px 20px;
  }

  .how-it-works {
    padding: 80px 20px;
  }

  .closing {
    padding: 100px 20px;
  }
}

/* HERO BUTTONS */
.hero-btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #0a0a0a;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 18px 48px;
  border-radius: 2px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}

.hero-btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.hero-btn-secondary {
  display: inline-block;
  color: var(--fg-muted);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(201,149,107,0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.hero-btn-secondary:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* SERVICES / PRICING SECTION */
.services {
  padding: 120px 24px;
  background: var(--bg-section);
  border-top: 1px solid rgba(201,149,107,0.06);
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.services-header {
  margin-bottom: 60px;
}

.services-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 12px;
}

.services-header p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 520px;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,149,107,0.1);
  border-radius: 6px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.15s;
}

.service-card:hover {
  border-color: rgba(201,149,107,0.3);
  transform: translateY(-3px);
}

.service-card--featured {
  border-color: rgba(201,149,107,0.25);
  background: linear-gradient(160deg, var(--bg-card), rgba(139,58,74,0.08));
  position: relative;
}

.service-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-light);
  border: 1px solid rgba(194,93,115,0.35);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 24px;
  align-self: flex-start;
}

.service-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.service-price-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}

.service-desc {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 32px;
}

.service-book-btn {
  display: block;
  text-align: center;
  background: transparent;
  border: 1px solid rgba(201,149,107,0.3);
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.service-book-btn:hover {
  background: rgba(201,149,107,0.08);
  border-color: var(--accent);
}

.service-card--featured .service-book-btn {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0a0a;
}

.service-card--featured .service-book-btn:hover {
  opacity: 0.88;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }
}

/* ═══════════════════════════════════════════════════
   GALLERY PAGE
   ═══════════════════════════════════════════════════ */

/* ── GALLERY HERO ─────────────────────────────────── */
.gallery-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.gallery-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 10% 90%, rgba(139, 58, 74, 0.25), transparent),
    radial-gradient(ellipse 50% 50% at 90% 10%, rgba(201, 149, 107, 0.1), transparent),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(107, 76, 122, 0.08), transparent);
  z-index: 0;
}

.gallery-hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.gallery-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 48px;
  border-bottom: 1px solid rgba(201, 149, 107, 0.06);
}

.gallery-nav-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  transition: color 0.2s;
}

.gallery-nav-brand:hover { color: var(--accent); }

.gallery-nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.gallery-nav-links a {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

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

.gallery-nav-cta {
  background: var(--accent) !important;
  color: #0a0a0a !important;
  padding: 10px 22px !important;
  border-radius: 2px;
  font-weight: 600 !important;
  letter-spacing: 0.06em;
  transition: opacity 0.2s !important;
}

.gallery-nav-cta:hover { opacity: 0.85 !important; }

.gallery-hero-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 100px;
  max-width: 800px;
}

.gallery-hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(201, 149, 107, 0.3);
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 36px;
  width: fit-content;
}

.gallery-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.gallery-hero-title em {
  font-style: italic;
  color: var(--accent);
}

.gallery-hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 48px;
}

.gallery-hero-anchors {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.gallery-anchor-btn {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  border: 1px solid rgba(201, 149, 107, 0.2);
  padding: 10px 18px;
  border-radius: 2px;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}

.gallery-anchor-btn:hover {
  color: var(--accent);
  border-color: rgba(201, 149, 107, 0.5);
}

.gallery-hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 48px;
  font-size: 1.2rem;
  color: var(--fg-muted);
  opacity: 0.4;
  animation: bounce-down 2s ease-in-out infinite;
}

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

/* ── GALLERY SECTIONS ─────────────────────────────── */
.gallery-section {
  padding: 120px 48px;
}

.gallery-section--dark {
  background: var(--bg-section);
  border-top: 1px solid rgba(201, 149, 107, 0.06);
  border-bottom: 1px solid rgba(201, 149, 107, 0.06);
}

.gallery-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-section-header {
  max-width: 640px;
  margin-bottom: 72px;
}

.gallery-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.gallery-section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.gallery-section-header p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* ── DIVIDER ─────────────────────────────────────── */
.gallery-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 48px;
  margin: 0;
}

.gallery-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(201, 149, 107, 0.1);
}

.gallery-divider-icon {
  font-size: 0.8rem;
  color: rgba(201, 149, 107, 0.3);
  letter-spacing: 0.1em;
}

/* ── BEFORE / AFTER CARDS ─────────────────────────── */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.ba-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* Staggered reveal */
.ba-card:nth-child(1) { transition-delay: 0s; }
.ba-card:nth-child(2) { transition-delay: 0.08s; }
.ba-card:nth-child(3) { transition-delay: 0.16s; }
.ba-card:nth-child(4) { transition-delay: 0.08s; }
.ba-card:nth-child(5) { transition-delay: 0.16s; }
.ba-card:nth-child(6) { transition-delay: 0.24s; }

.ba-inner {
  position: relative;
  height: 340px;
}

/* Both faces fill the inner */
.ba-face {
  position: absolute;
  inset: 0;
  transition: opacity 0.4s ease;
}

.ba-before { opacity: 1; }
.ba-after { opacity: 0; }

/* Hover / flipped state */
.ba-card:hover .ba-before,
.ba-card.is-flipped .ba-before {
  opacity: 0;
}

.ba-card:hover .ba-after,
.ba-card.is-flipped .ba-after {
  opacity: 1;
}

.ba-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-room-icon {
  font-size: 3rem;
  opacity: 0.6;
  filter: grayscale(0.4);
}

.ba-room-icon--after {
  opacity: 0.9;
  filter: none;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.1); opacity: 1; }
}

/* Dust particles on "before" */
.ba-room-dust {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.dust-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.dust-particle:nth-child(1) { top: 20%; left: 30%; }
.dust-particle:nth-child(2) { top: 60%; right: 25%; }
.dust-particle:nth-child(3) { bottom: 25%; left: 55%; }

/* Sparkles on "after" */
.ba-sparkle-group {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-light);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  animation: sparkle-fade 2.5s ease-in-out infinite;
}

.sparkle { top: 18%; right: 22%; }
.sparkle--2 { top: 65%; left: 18%; animation-delay: 0.8s; }
.sparkle--3 { bottom: 20%; right: 38%; animation-delay: 1.6s; }

@keyframes sparkle-fade {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 0.9; transform: scale(1.2); }
}

.ba-label-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.ba-pill {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.ba-pill--before {
  background: rgba(255, 255, 255, 0.1);
  color: var(--fg-muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ba-pill--after {
  background: rgba(201, 149, 107, 0.2);
  color: var(--accent);
  border: 1px solid rgba(201, 149, 107, 0.4);
}

.ba-room-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-style: italic;
}

.ba-hover-hint {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.08em;
  font-weight: 500;
}

.ba-caption {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.5;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 12px;
  border-radius: 2px;
  border-left: 2px solid var(--accent);
}

.ba-sample-note {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── OUTFIT CARDS ─────────────────────────────────── */
.outfit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.outfit-card {
  background: var(--bg-card);
  border: 1px solid rgba(201, 149, 107, 0.08);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.25s;
}

.outfit-card.is-visible { opacity: 1; transform: translateY(0); }
.outfit-card:nth-child(1) { transition-delay: 0s; }
.outfit-card:nth-child(2) { transition-delay: 0.07s; }
.outfit-card:nth-child(3) { transition-delay: 0.14s; }
.outfit-card:nth-child(4) { transition-delay: 0.07s; }
.outfit-card:nth-child(5) { transition-delay: 0.14s; }
.outfit-card:nth-child(6) { transition-delay: 0.21s; }

.outfit-card:hover {
  border-color: rgba(201, 149, 107, 0.25);
  transform: translateY(-3px);
}

.outfit-visual {
  height: 180px;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.outfit-silhouette {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.outfit-icon {
  font-size: 3.5rem;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 20px var(--outfit-accent, var(--accent)));
  transition: transform 0.3s ease;
}

.outfit-card:hover .outfit-icon { transform: scale(1.12); }

.outfit-glow {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.outfit-card:hover .outfit-glow { opacity: 0.85; }

.outfit-body {
  padding: 24px 24px 16px;
  flex: 1;
}

.outfit-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--outfit-accent, var(--accent));
  border: 1px solid currentColor;
  opacity: 0.7;
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: 12px;
}

.outfit-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}

.outfit-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

.outfit-book-btn {
  display: block;
  text-align: center;
  margin: 0 24px 24px;
  padding: 12px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  border: 1px solid rgba(201, 149, 107, 0.15);
  border-radius: 2px;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.outfit-book-btn:hover {
  color: var(--accent);
  border-color: rgba(201, 149, 107, 0.4);
  background: rgba(201, 149, 107, 0.04);
}

/* ── EVENT CARDS ──────────────────────────────────── */
.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 60px;
}

.event-card {
  background: var(--bg-card);
  border: 1px solid rgba(201, 149, 107, 0.08);
  border-radius: 4px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.25s;
  position: relative;
  overflow: hidden;
}

.event-card.is-visible { opacity: 1; transform: translateY(0); }
.event-card:nth-child(1) { transition-delay: 0s; }
.event-card:nth-child(2) { transition-delay: 0.1s; }
.event-card:nth-child(3) { transition-delay: 0.05s; }
.event-card:nth-child(4) { transition-delay: 0.15s; }

.event-card:hover {
  border-color: rgba(201, 149, 107, 0.2);
  transform: translateY(-2px);
}

.event-card--featured {
  border-color: rgba(139, 58, 74, 0.2);
  background: linear-gradient(135deg, var(--bg-card), rgba(139, 58, 74, 0.06));
}

.event-icon-wrap {
  position: relative;
  margin-bottom: 20px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-icon {
  font-size: 2rem;
  position: relative;
  z-index: 1;
}

.event-glow {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  opacity: 0.6;
}

.event-body { flex: 1; margin-bottom: 20px; }

.event-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.event-desc {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.event-detail {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-transform: uppercase;
  opacity: 0.8;
}

.event-book-link {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 149, 107, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s;
  width: fit-content;
}

.event-book-link:hover { border-color: var(--accent); }

/* ── CTA ROWS ─────────────────────────────────────── */
.gallery-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.gallery-cta-primary {
  display: inline-block;
  background: var(--accent);
  color: #0a0a0a;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 2px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}

.gallery-cta-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.gallery-cta-xl {
  padding: 20px 56px;
  font-size: 0.95rem;
}

.gallery-cta-secondary {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(201, 149, 107, 0.25);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.gallery-cta-secondary:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.gallery-cta-note {
  font-size: 0.82rem;
  color: var(--fg-muted);
  opacity: 0.7;
}

/* ── GALLERY CLOSING ─────────────────────────────── */
.gallery-closing {
  padding: 160px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gallery-closing-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 50%, rgba(139, 58, 74, 0.12), transparent),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(201, 149, 107, 0.06), transparent);
  z-index: 0;
}

.gallery-closing-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.gallery-closing-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0;
}

.gallery-closing-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.gallery-closing-title em {
  font-style: italic;
  color: var(--rose-light);
}

.gallery-closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 480px;
}

.gallery-closing-note {
  font-size: 0.82rem;
  color: var(--fg-muted);
  opacity: 0.6;
  letter-spacing: 0.04em;
}

/* ── GALLERY RESPONSIVE ───────────────────────────── */
@media (max-width: 900px) {
  .ba-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .outfit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-nav {
    padding: 20px 24px;
  }

  .gallery-hero-body {
    padding: 60px 24px 80px;
  }

  .gallery-section {
    padding: 80px 24px;
  }

  .gallery-divider {
    padding: 0 24px;
  }

  .gallery-closing {
    padding: 100px 24px;
  }
}

@media (max-width: 640px) {
  .ba-grid {
    grid-template-columns: 1fr;
  }

  .outfit-grid {
    grid-template-columns: 1fr;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .gallery-nav-links a:not(.gallery-nav-cta) {
    display: none;
  }

  .gallery-hero-title {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .ba-inner {
    height: 280px;
  }

  .gallery-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
