/* ==========================================================================
   Wedding Bharat — Main Styles
   Brand: Deep Plum · Royal Magenta · Marigold · Gold · Ivory · Emerald
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Inter:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,500&display=swap');

/* ---------- Design tokens (light) ---------- */
:root {
  --plum: #5C1845;
  --plum-deep: #3D0F2E;
  --magenta: #9C2466;
  --magenta-light: #B83280;
  --marigold: #E86A1A;
  --marigold-light: #F08A45;
  --gold: #D4AF37;
  --gold-bright: #E8C766;
  --ivory: #FAF7F2;
  --emerald: #2D7A4A;
  --emerald-light: #3A9A5E;

  --gradient-brand: linear-gradient(135deg, var(--magenta) 0%, var(--plum-deep) 55%, var(--plum) 100%);
  --gradient-hero: radial-gradient(70% 70% at 88% -8%, rgba(212, 175, 55, 0.18) 0%, transparent 58%),
    radial-gradient(60% 55% at -8% 12%, rgba(156, 36, 102, 0.1) 0%, transparent 55%),
    radial-gradient(45% 40% at 50% 100%, rgba(232, 106, 26, 0.08) 0%, transparent 50%),
    var(--ivory);
  --gradient-gold: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--marigold) 100%);
  --gradient-emerald: linear-gradient(135deg, var(--emerald-light), var(--emerald));
  --gradient-glass: linear-gradient(145deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.42) 100%);
  --gradient-dark-panel: linear-gradient(168deg, var(--plum-deep) 0%, #1A0612 48%, var(--plum) 100%);
  --gradient-ticker: linear-gradient(90deg, var(--plum-deep), var(--plum) 45%, var(--magenta) 85%, var(--marigold));

  --plum-pale: rgba(92, 24, 69, 0.08);
  --magenta-pale: rgba(156, 36, 102, 0.1);
  --gold-pale: rgba(212, 175, 55, 0.14);
  --emerald-pale: rgba(45, 122, 74, 0.1);

  --paper: #FFFFFF;
  --ink: #1A1418;
  --ink-soft: #6B5A62;
  --ink-faint: #9C8B92;
  --line: rgba(92, 24, 69, 0.12);
  --line-strong: rgba(92, 24, 69, 0.22);

  --shadow-sm: 0 2px 10px rgba(61, 15, 46, 0.06);
  --shadow-md: 0 14px 36px -14px rgba(61, 15, 46, 0.18);
  --shadow-lg: 0 32px 72px -24px rgba(61, 15, 46, 0.28);
  --shadow-glow: 0 0 40px rgba(156, 36, 102, 0.15);
  --shadow-gold: 0 16px 40px -12px rgba(212, 175, 55, 0.45);

  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --glass-bg: rgba(250, 247, 242, 0.78);
  --glass-border: rgba(255, 255, 255, 0.55);
  --glass-blur: blur(18px) saturate(165%);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --nav-h: 84px;
  --progress-h: 3px;
  --sticky-cta-h: 64px;

  --skeleton-base: rgba(92, 24, 69, 0.06);
  --skeleton-shine: rgba(255, 255, 255, 0.55);

  color-scheme: light;
}

/* ---------- Dark mode ---------- */
[data-theme="dark"] {
  --ivory: #120A0E;
  --paper: #1E1218;
  --ink: #F5EDE8;
  --ink-soft: #C4B0B8;
  --ink-faint: #8A7580;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --plum-pale: rgba(156, 36, 102, 0.15);
  --magenta-pale: rgba(156, 36, 102, 0.2);
  --gold-pale: rgba(212, 175, 55, 0.12);
  --emerald-pale: rgba(45, 122, 74, 0.15);
  --glass-bg: rgba(18, 10, 14, 0.82);
  --glass-border: rgba(255, 255, 255, 0.08);
  --gradient-hero: radial-gradient(70% 70% at 88% -8%, rgba(212, 175, 55, 0.12) 0%, transparent 58%),
    radial-gradient(60% 55% at -8% 12%, rgba(156, 36, 102, 0.15) 0%, transparent 55%),
    #120A0E;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 14px 36px -14px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 32px 72px -24px rgba(0, 0, 0, 0.55);
  --skeleton-base: rgba(255, 255, 255, 0.04);
  --skeleton-shine: rgba(255, 255, 255, 0.08);
  color-scheme: dark;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
}

.accent-serif {
  font-family: var(--font-accent);
  font-weight: 600;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; margin: 0; padding: 0; }

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

section { position: relative; scroll-margin-top: 96px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Page loader ---------- */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background: var(--gradient-dark-panel);
}

.page-loader__logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.page-loader__ring {
  width: 52px;
  height: 52px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-top-color: var(--gold);
  border-radius: 50%;
}

.page-loader__bar {
  width: 180px;
  height: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.page-loader__bar i {
  display: block;
  height: 100%;
  background: var(--gradient-gold);
  border-radius: inherit;
}

.page-loader__tagline {
  font-family: var(--font-accent);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.04em;
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--progress-h);
  z-index: 200;
  background: transparent;
  pointer-events: none;
}

.scroll-progress__bar {
  height: 100%;
  width: 0%;
  background: var(--gradient-gold);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
  transition: width 0.08s linear;
}

/* ---------- Logo sizing ---------- */
.logo-img { object-fit: contain; display: block; }
.logo-img--nav { height: 60px; width: auto; max-width: 220px; }
.logo-img--footer { height: 64px; max-width: 230px; }
.logo-img--loader { height: 112px; max-width: 380px; }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand .word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.02em;
}

.brand .word b {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand .word i {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

/* ---------- Typography utilities ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--magenta);
  background: var(--magenta-pale);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.kicker.on-dark {
  color: var(--gold-bright);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.kicker .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.section-head {
  max-width: 700px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  color: var(--ink);
}

.section-head p {
  font-size: 17px;
  color: var(--ink-soft);
  margin-top: 18px;
  line-height: 1.65;
}

.section-head.left {
  margin: 0 0 44px;
  text-align: left;
  max-width: 640px;
}

.sec-pad { padding: 64px 0 130px; }
.sec-pad.med { padding: 96px 0; }
.sec-pad.tight-top { padding-top: 100px; }
.sec-pad.compact { padding: 72px 0; }

.bg-paper { background: var(--paper); }
.bg-gradient-soft {
  background: linear-gradient(180deg, var(--ivory) 0%, var(--paper) 50%, var(--ivory) 100%);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 30px;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.3, 1), box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 14px 32px -10px rgba(92, 24, 69, 0.5);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px -10px rgba(92, 24, 69, 0.58);
}

.btn-gold {
  background: var(--gradient-gold);
  color: #3A2305;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px -10px rgba(212, 175, 55, 0.65);
}

.btn-emerald {
  background: var(--gradient-emerald);
  color: #fff;
  box-shadow: 0 14px 32px -10px rgba(45, 122, 74, 0.45);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--line-strong);
  color: var(--ink);
}

.btn-outline:hover {
  border-color: var(--magenta);
  color: var(--magenta);
  transform: translateY(-3px);
}

.btn-sm { padding: 10px 20px; font-size: 13.5px; }
.btn-icon { width: 44px; height: 44px; padding: 0; border-radius: 50%; }

.btn:focus-visible,
.faq-q:focus-visible,
.cat-card:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2.5px solid var(--magenta);
  outline-offset: 3px;
}

/* ---------- Glass navbar & mega menu ---------- */
header.nav {
  position: sticky;
  top: 0;
  z-index: 150;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

header.nav.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(250, 247, 242, 0.92);
}

[data-theme="dark"] header.nav.scrolled {
  background: rgba(18, 10, 14, 0.94);
}

header.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14.5px;
  font-weight: 600;
}

.nav-links a {
  opacity: 0.75;
  transition: opacity 0.2s ease, color 0.2s ease;
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
}

.nav-links a:hover,
.nav-links a.is-active {
  opacity: 1;
  color: var(--magenta);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-item-has-mega { position: relative; }

.nav-item-has-mega > a::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 5px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  vertical-align: middle;
  opacity: 0.6;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: min(920px, 92vw);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px 32px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  backdrop-filter: blur(20px);
}

.mega-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.mega-menu__col h6 {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--magenta);
  margin-bottom: 14px;
}

.mega-menu__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.2s ease, transform 0.2s ease;
  position: relative;
}

.mega-menu__link:hover {
  color: var(--magenta);
  transform: translateX(4px);
}

.mega-menu__featured {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  padding: 16px 20px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-theme-toggle:hover {
  background: var(--magenta-pale);
  color: var(--magenta);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu drawer */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 20, 24, 0.55);
  z-index: 180;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 88vw);
  height: 100vh;
  background: var(--paper);
  z-index: 190;
  padding: 24px;
  overflow-y: auto;
  transform: translateX(100%);
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu__links a {
  padding: 14px 16px;
  font-weight: 600;
  font-size: 16px;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}

.mobile-menu__links a:hover { background: var(--magenta-pale); }

.mobile-menu__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

body.menu-open { overflow: hidden; }

/* ---------- Ticker strip ---------- */
.ticker-strip {
  background: var(--gradient-ticker);
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 60;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ticker-strip::before,
.ticker-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 70px;
  z-index: 2;
  pointer-events: none;
}

.ticker-strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--plum-deep), transparent);
}

.ticker-strip::after {
  right: 0;
  background: linear-gradient(-90deg, var(--marigold), transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  padding: 11px 0;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  padding: 0 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  white-space: nowrap;
}

.ticker-item svg { flex-shrink: 0; }
.ticker-item b { color: var(--gold-bright); font-weight: 600; }

/* ---------- Hero ---------- */
.hero {
  background: var(--gradient-hero);
  padding: 28px 0 0;
  overflow: hidden;
  position: relative;
  min-height: 82vh;
}

.hero__bg-layers {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  will-change: transform;
}

.hero-aurora--primary {
  width: 420px;
  height: 420px;
  top: -80px;
  right: -60px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.35), transparent 70%);
}

.hero-aurora--secondary {
  width: 360px;
  height: 360px;
  bottom: 10%;
  left: -80px;
  background: radial-gradient(circle, rgba(156, 36, 102, 0.25), transparent 70%);
}

.hero-aurora--gold {
  width: 280px;
  height: 280px;
  top: 40%;
  right: 20%;
  background: radial-gradient(circle, rgba(232, 106, 26, 0.2), transparent 70%);
}

.hero-light-sweep {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.hero-light-sweep::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.hero-mouse-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  mask-image: linear-gradient(to bottom, transparent 0%, black 26%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 26%);
}

.floating-flower {
  position: absolute;
  font-size: 22px;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 2px 8px rgba(92, 24, 69, 0.2));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 5;
}

.hero h1 {
  font-size: clamp(38px, 5.2vw, 62px);
  line-height: 1.06;
  color: var(--ink);
  max-width: 660px;
}

.hero h1 .accent {
  background: linear-gradient(100deg, var(--magenta), var(--marigold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.sub {
  font-family: var(--font-accent);
  font-size: 20px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 26px 0 36px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 46px;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.avatar-stack { display: flex; }

.avatar-stack span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2.5px solid var(--ivory);
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

.avatar-stack span:first-child { margin-left: 0; }

.trust-row small {
  font-size: 13.5px;
  color: var(--ink-soft);
  font-weight: 600;
}

.trust-row .stars {
  color: var(--gold);
  letter-spacing: 1px;
  font-size: 13px;
}

/* Hero glass panel & collage */
.hero-visual {
  position: relative;
  height: 580px;
}

.hero-glass-panel {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: var(--gradient-glass);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  overflow: hidden;
}

.collage {
  position: absolute;
  inset: 8px;
  border-radius: calc(var(--radius-xl) - 8px);
  overflow: hidden;
}

.collage-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  padding: 6px;
}

.collage-tile {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: var(--gradient-brand);
}

.collage-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.collage-tile:hover img { transform: scale(1.08); }

.collage-tile.big { grid-row: 1 / 3; }

.collage-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(61, 15, 46, 0) 30%, rgba(61, 15, 46, 0.55) 100%);
}

.collage-tile .tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 7px;
}

.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 15px 17px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

[data-theme="dark"] .float-card {
  background: rgba(30, 18, 24, 0.92);
  border-color: var(--line);
}

.float-card .ic-circle {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-card .num {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.float-card .lbl {
  font-size: 10.5px;
  color: var(--ink-soft);
  font-weight: 600;
  margin-top: 2px;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 70px;
  padding: 38px 0 90px;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 5;
}

.stat-strip .stat {
  text-align: center;
  border-left: 1px solid var(--line);
}

.stat-strip .stat:first-child { border-left: none; }

.stat-strip .num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-strip .lbl {
  font-size: 12.5px;
  color: var(--ink-soft);
  font-weight: 600;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---------- Airbnb-style search bar ---------- */
.search-wrap {
  margin-top: -48px;
  position: relative;
  z-index: 25;
}

.search-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  display: grid;
  grid-template-columns: repeat(6, 1fr) auto;
  gap: 0;
  border: 1px solid var(--line);
  align-items: stretch;
  position: relative;
}

.search-field {
  position: relative;
  padding: 16px 20px;
  border-right: 1px solid var(--line);
  transition: background 0.2s ease;
}

.search-field:last-of-type { border-right: none; }

/* Category is already a dropdown in the search bar itself — the separate
   quick-select chip row underneath was redundant, so it's hidden. */
#categoryChips {
  display: none;
}

/* Smart suggestions: a clean floating panel, not a grid cell.
   Hidden by default; JS toggles the .open class to reveal it. */
#smartSuggestions {
  display: none;
  grid-column: 1 / -1;
  position: absolute;
  left: 8px;
  right: 8px;
  top: calc(100% + 10px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
  z-index: 60;
}

#smartSuggestions.open {
  display: block;
}

.smart-suggestion {
  display: block;
  width: 100%;
  text-align: left;
  padding: 13px 18px;
  border: none;
  background: none;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, padding-left 0.15s ease;
}

.smart-suggestion:hover,
.smart-suggestion:focus-visible {
  background: var(--plum-pale);
  color: var(--plum);
  padding-left: 22px;
}

.smart-suggestion + .smart-suggestion {
  margin-top: 2px;
}

.search-field:focus-within {
  background: var(--magenta-pale);
  border-radius: var(--radius-sm);
}

.search-field label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  margin-bottom: 4px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.search-field:focus-within label,
.search-field.is-filled label {
  color: var(--magenta);
  transform: translateY(-1px);
}

.search-field select,
.search-field input,
.search-field textarea {
  border: none;
  outline: none;
  width: 100%;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  background: transparent;
}

.search-field input::placeholder,
.search-field textarea::placeholder { color: var(--ink-faint); font-weight: 500; }

/* ---------- Vendor self-registration form ---------- */
.vendor-form-grid {
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  padding: 8px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.vendor-form-grid .search-field {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.vendor-form-grid .search-field:nth-child(2n) {
  border-right: none;
}

.vendor-form-grid .search-field:last-child,
.vendor-form-grid .search-field:nth-last-child(2):nth-child(odd) {
  border-bottom: none;
}

.vr-form-message {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 600;
}

.vr-form-message.success {
  background: var(--emerald-pale);
  color: var(--emerald);
}

.vr-form-message.error {
  background: rgba(220, 38, 38, 0.08);
  color: #B91C1C;
}

.search-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 20px 16px;
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
}

.search-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--gold-pale);
  border: 1px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
}

.search-chip:hover,
.search-chip.is-active {
  background: var(--magenta-pale);
  color: var(--magenta);
  border-color: rgba(156, 36, 102, 0.2);
}

.search-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
}

.search-btn {
  background: var(--gradient-brand);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 0 28px;
  min-height: 52px;
  font-weight: 700;
  font-size: 14.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 28px -8px rgba(92, 24, 69, 0.45);
}

.search-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 14px 36px -8px rgba(92, 24, 69, 0.55);
}

.search-voice-btn,
.search-location-btn {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--magenta);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.search-voice-btn:hover,
.search-location-btn:hover {
  background: var(--magenta-pale);
  border-color: var(--magenta);
}

.search-voice-btn.is-listening {
  background: var(--emerald-pale);
  border-color: var(--emerald);
  color: var(--emerald);
}

/* ---------- Live weddings ---------- */
.live-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.live-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.3, 1), box-shadow 0.35s ease;
}

.live-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-emerald);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.live-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.live-card:hover::before { opacity: 1; }

.live-card .lc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.live-card .lc-city {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  color: var(--emerald);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lc-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--emerald);
}

.live-card .lc-time {
  font-size: 11.5px;
  color: var(--ink-faint);
  font-weight: 600;
}

.live-card h4 { font-size: 18.5px; margin-bottom: 4px; }

.live-card .lc-loc {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 16px;
}

.live-card .lc-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--magenta);
  background: var(--magenta-pale);
  padding: 9px 12px;
  border-radius: var(--radius-sm);
}

.live-card .lc-guests {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--ink-soft);
  font-weight: 600;
  margin-top: 12px;
}

/* ---------- How it works / timeline ---------- */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 46px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line-strong) 0 8px, transparent 8px 16px);
  z-index: 0;
}

.tl-card {
  position: relative;
  z-index: 1;
  text-align: center;
}

.tl-icon {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  margin: 0 auto 26px;
  background: linear-gradient(155deg, var(--paper), var(--gold-pale));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.tl-card:hover .tl-icon {
  transform: translateY(-6px) scale(1.04);
  box-shadow: var(--shadow-md);
}

.tl-step {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.tl-card h3 { font-size: 21px; margin-bottom: 10px; }

.tl-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 280px;
  margin: 0 auto;
}

/* Wedding timeline (planning) */
.wedding-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.wedding-timeline__item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  position: relative;
}

.wedding-timeline__month {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--marigold);
  margin-bottom: 8px;
}

.wedding-timeline__item h4 { font-size: 16px; margin-bottom: 8px; }

.wedding-timeline__item p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 18px;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gallery-card.tall { grid-row: span 2; }
.gallery-card.wide { grid-column: span 2; }

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-card:hover img { transform: scale(1.09); }

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(61, 15, 46, 0) 45%, rgba(26, 6, 18, 0.72) 100%);
}

.gallery-card .g-label {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 2;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

.gallery-card .g-label span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

/* Real weddings / inspiration masonry */
.inspiration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.inspiration-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.inspiration-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.inspiration-card__img {
  height: 220px;
  overflow: hidden;
}

.inspiration-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.inspiration-card:hover .inspiration-card__img img { transform: scale(1.06); }

.inspiration-card__body { padding: 20px 22px 24px; }

.inspiration-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.inspiration-card h4 { font-size: 17px; margin-bottom: 6px; }

.inspiration-card p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ---------- Vendor cards (featured / premium / trending) ---------- */
.vendor-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.vendor-tabs__chip {
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-soft);
  background: var(--paper);
  border: 1.5px solid var(--line);
  transition: all 0.25s ease;
  cursor: pointer;
}

.vendor-tabs__chip.is-active {
  background: var(--gradient-brand);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 28px -8px rgba(92, 24, 69, 0.4);
}

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

.vendor-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.3, 1), box-shadow 0.35s ease;
  position: relative;
}

.vendor-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.vendor-card--premium {
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: var(--shadow-gold);
}

.vendor-card--premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.08), transparent);
  z-index: 3;
  pointer-events: none;
}

.vendor-card--trending .vendor-photo::before {
  content: "Trending";
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  background: var(--gradient-gold);
  color: #3A2305;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: 999px;
}

.vendor-photo {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.vendor-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(0, 0, 0, 0) 55%, rgba(26, 6, 18, 0.55) 100%);
}

.vendor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vendor-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  justify-content: space-between;
  z-index: 2;
}

.badge-verified {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--magenta);
  font-size: 11px;
  font-weight: 800;
  padding: 6px 11px;
  border-radius: 999px;
}

.badge-premium {
  background: var(--gradient-gold);
  color: #3A2305;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 11px;
  border-radius: 999px;
}

.badge-avail {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--emerald);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 11px;
  border-radius: 999px;
}

.badge-avail .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

.vendor-actions {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 4;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.vendor-card:hover .vendor-actions {
  opacity: 1;
  transform: translateX(0);
}

.vendor-action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.vendor-action-btn:hover {
  background: var(--magenta);
  color: #fff;
  border-color: var(--magenta);
}

.vendor-action-btn.is-saved {
  background: var(--magenta);
  color: #fff;
  border-color: var(--magenta);
}

.vendor-name-overlay {
  position: absolute;
  left: 18px;
  bottom: 14px;
  z-index: 2;
  color: #fff;
}

.vendor-name-overlay h4 { font-size: 20px; color: #fff; }

.vendor-name-overlay .cat {
  font-size: 12.5px;
  color: var(--gold-bright);
  font-weight: 700;
}

.vendor-body { padding: 20px 22px 24px; }

.vendor-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.vendor-stats .stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 1px;
}

.vendor-stats .weddings {
  font-size: 12.5px;
  color: var(--ink-soft);
  font-weight: 600;
}

.vendor-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.v-chip {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink-soft);
  background: var(--gold-pale);
  padding: 6px 11px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.v-chip--gst {
  background: var(--emerald-pale);
  color: var(--emerald);
  font-family: var(--font-mono, monospace);
  letter-spacing: 0.02em;
}

.vendor-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.vendor-foot .price {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--magenta);
}

.vendor-foot .price span {
  display: block;
  font-size: 10.5px;
  font-family: var(--font-body);
  color: var(--ink-faint);
  font-weight: 600;
  text-transform: uppercase;
}

.vendor-compare-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: var(--magenta-pale);
  border-radius: var(--radius);
  margin-top: 24px;
  font-size: 13.5px;
  font-weight: 600;
}

/* ---------- Categories (17 services) ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cat-grid--17 {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.cat-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 0;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  display: block;
}

.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.cat-card .cat-photo {
  height: 108px;
  position: relative;
  overflow: hidden;
  background: var(--gradient-brand);
}

.cat-card .cat-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  mix-blend-mode: multiply;
}

.cat-card .cat-body {
  padding: 20px 22px 24px;
  position: relative;
}

.cat-card .cat-ic {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -44px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  border: 3px solid var(--paper);
  background: var(--gradient-brand);
}

.cat-card h4 { font-size: 16.5px; margin-bottom: 6px; }

.cat-card p { font-size: 12.5px; color: var(--ink-soft); }

.cat-card .arrow {
  position: absolute;
  top: 20px;
  right: 22px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate(-6px, 6px);
  transition: all 0.3s ease;
  z-index: 1;
}

.cat-card:hover .arrow {
  opacity: 1;
  transform: translate(0, 0);
  background: var(--magenta);
}

.cat-card:hover .arrow svg path { stroke: #fff; }

/* ---------- AI section & match charts ---------- */
.ai-section {
  background: var(--gradient-dark-panel);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
}

.ai-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18), transparent 70%);
  top: -220px;
  right: -180px;
}

.ai-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(156, 36, 102, 0.2), transparent 70%);
  bottom: -180px;
  left: -120px;
}

.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ai-grid h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  color: #fff;
  line-height: 1.22;
}

.ai-grid > div:first-child p {
  color: rgba(245, 230, 235, 0.85);
  font-size: 16px;
  line-height: 1.7;
  margin-top: 20px;
  max-width: 480px;
}

.chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(240, 220, 228, 0.95);
  display: flex;
  align-items: center;
  gap: 7px;
}

.chip .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-bright);
}

.ai-visual,
.match-chart {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(8px);
}

.ai-row,
.match-chart__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ai-row:last-child,
.match-chart__row:last-child { border-bottom: none; }

.ai-row .l,
.match-chart__label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(240, 220, 228, 0.95);
  min-width: 120px;
}

.ai-row .bar,
.match-chart__bar {
  flex: 1;
  max-width: 160px;
  height: 7px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 16px;
  overflow: hidden;
}

.ai-row .bar i,
.match-chart__bar i {
  display: block;
  height: 100%;
  border-radius: 99px;
  background: var(--gradient-gold);
  width: var(--bar-width, 0%);
}

.ai-row .pct,
.match-chart__pct {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-bright);
  width: 42px;
  text-align: right;
}

/* AI preview panel */
.ai-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.ai-preview__mock {
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.ai-preview__bubble {
  background: var(--magenta-pale);
  border-radius: 16px 16px 16px 4px;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 12px;
  max-width: 85%;
}

.ai-preview__bubble--bot {
  background: var(--gradient-brand);
  color: #fff;
  border-radius: 16px 16px 4px 16px;
  margin-left: auto;
}

/* ---------- Testimonials carousel ---------- */
.testi-track-wrap { overflow: hidden; }

.testi-track {
  display: flex;
  gap: 24px;
}

.testi-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.testi-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.testi-card p.quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 24px;
}

.testi-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}

.testi-person .name { font-size: 14px; font-weight: 700; }
.testi-person .role { font-size: 12.5px; color: var(--ink-soft); }

.testi-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 36px;
}

.testi-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
}

.testi-dots span.active {
  background: var(--magenta);
  width: 22px;
  border-radius: 99px;
}

/* Customer stories */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.story-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
}

.story-card__media {
  height: 200px;
  position: relative;
}

.story-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card__body { padding: 22px 24px 28px; }

.story-card__quote {
  font-family: var(--font-accent);
  font-size: 17px;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 16px;
}

/* ---------- Pricing ---------- */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.plan {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.3, 1), box-shadow 0.35s ease;
}

.plan:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.plan.featured {
  background: var(--gradient-dark-panel);
  color: #fff;
  border-color: transparent;
  transform: translateY(-14px);
  box-shadow: 0 40px 80px -24px rgba(92, 24, 69, 0.45);
}

.plan.featured:hover { transform: translateY(-20px); }

.badge-best {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-gold);
  color: #3A2305;
  font-size: 11.5px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.plan-tag {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 8px;
}

.plan.featured .plan-tag { color: var(--gold-bright); }

.plan h3 { font-size: 23px; margin-bottom: 18px; }

.plan .price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
}

.plan .price span {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  font-family: var(--font-body);
}

.plan.featured .price span { color: rgba(231, 207, 196, 0.85); }

.plan ul {
  flex: 1;
  margin: 26px 0 30px;
}

.plan ul li {
  font-size: 14px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink-soft);
}

.plan ul li:first-child { border-top: none; }

.plan.featured ul li {
  border-top-color: rgba(255, 255, 255, 0.14);
  color: rgba(240, 220, 228, 0.9);
}

/* ---------- FAQ with search ---------- */
.faq-search-wrap {
  max-width: 480px;
  margin: 0 auto 36px;
  position: relative;
}

.faq-search-wrap input {
  width: 100%;
  padding: 16px 20px 16px 48px;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  font-family: inherit;
  font-size: 15px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-search-wrap input:focus {
  outline: none;
  border-color: var(--magenta);
  box-shadow: 0 0 0 4px var(--magenta-pale);
}

.faq-search-wrap svg {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-faint);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item.open { border-color: rgba(156, 36, 102, 0.25); }

.faq-item.is-hidden { display: none; }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15.5px;
  gap: 16px;
}

.faq-q .plus {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--magenta-pale);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--magenta);
  border-radius: 2px;
}

.faq-q .plus::before { width: 11px; height: 2px; }
.faq-q .plus::after { width: 2px; height: 11px; }

.faq-item.open .plus { background: var(--magenta); }
.faq-item.open .plus::before,
.faq-item.open .plus::after { background: #fff; }

.faq-a { max-height: 0; overflow: hidden; }

.faq-a p {
  padding: 0 26px 24px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ---------- Budget calculator preview ---------- */
.budget-calc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.budget-calc__sliders { display: flex; flex-direction: column; gap: 24px; }

.budget-slider label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink-soft);
}

.budget-slider label span { color: var(--magenta); }

.budget-slider input[type="range"] {
  width: 100%;
  accent-color: var(--magenta);
  height: 6px;
}

.budget-calc__result {
  text-align: center;
  padding: 32px;
  background: var(--gradient-brand);
  border-radius: var(--radius-lg);
  color: #fff;
}

.budget-calc__result .total {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  margin: 12px 0;
}

.budget-calc__breakdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
  font-size: 13px;
  opacity: 0.9;
}

/* ---------- Checklist ---------- */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.checklist-item.is-done {
  background: var(--emerald-pale);
  border-color: rgba(45, 122, 74, 0.25);
}

.checklist-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.checklist-item.is-done .checklist-item__icon {
  background: var(--emerald);
  border-color: var(--emerald);
  color: #fff;
}

.checklist-item__text {
  font-size: 14.5px;
  font-weight: 600;
}

.checklist-item.is-done .checklist-item__text {
  text-decoration: line-through;
  color: var(--ink-soft);
}

.checklist-progress {
  max-width: 720px;
  margin: 0 auto 32px;
  height: 8px;
  background: var(--line);
  border-radius: 99px;
  overflow: hidden;
}

.checklist-progress i {
  display: block;
  height: 100%;
  background: var(--gradient-emerald);
  border-radius: inherit;
  width: var(--progress, 0%);
  transition: width 0.5s ease;
}

/* ---------- Vendor dashboard preview ---------- */
.dashboard-preview {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.dashboard-preview__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
}

.dashboard-preview__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.dashboard-stat {
  background: var(--paper);
  padding: 24px 20px;
  text-align: center;
}

.dashboard-stat .num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--magenta);
}

.dashboard-stat .lbl {
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 600;
  margin-top: 4px;
}

.dashboard-preview__chart {
  padding: 28px;
  height: 200px;
  background: linear-gradient(180deg, var(--ivory), var(--paper));
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.dashboard-bar {
  flex: 1;
  background: var(--gradient-brand);
  border-radius: 6px 6px 0 0;
  min-height: 20px;
  opacity: 0.85;
}

/* ---------- Popular destinations ---------- */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
  cursor: pointer;
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dest-card:hover img { transform: scale(1.08); }

.dest-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(26, 6, 18, 0.75) 0%, transparent 55%);
}

.dest-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 2;
  color: #fff;
}

.dest-card__info h4 { font-size: 18px; color: #fff; margin-bottom: 4px; }

.dest-card__info span {
  font-size: 12.5px;
  color: var(--gold-bright);
  font-weight: 600;
}

/* ---------- Celebrity weddings ---------- */
.celeb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.celeb-card {
  display: flex;
  gap: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.celeb-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.celeb-card__img {
  width: 100px;
  height: 100px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}

.celeb-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.celeb-card h4 { font-size: 16px; margin-bottom: 6px; }

.celeb-card p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.celeb-card .v-chip { margin-top: 10px; }

/* ---------- Instagram gallery ---------- */
.insta-section { overflow: hidden; }

.insta-track-wrap {
  overflow: hidden;
  margin: 0 -32px;
}

.insta-track {
  display: flex;
  width: max-content;
  gap: 12px;
}

.insta-item {
  flex-shrink: 0;
  width: 220px;
  height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

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

.insta-item:hover img { transform: scale(1.06); }

.insta-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(92, 24, 69, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
}

.insta-item:hover .insta-item__overlay { opacity: 1; }

/* ---------- Media coverage & awards ---------- */
.media-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: center;
}

.media-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  opacity: 0.65;
  filter: grayscale(100%);
  transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
  min-height: 80px;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-soft);
}

.media-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: translateY(-4px);
}

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

.award-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.award-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.award-card h4 { font-size: 15px; margin-bottom: 6px; }

.award-card p {
  font-size: 12.5px;
  color: var(--ink-soft);
}

/* ---------- Partner brands ---------- */
.partners-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px 48px;
  padding: 40px 0;
}

.partner-logo {
  opacity: 0.55;
  filter: grayscale(100%);
  transition: opacity 0.3s ease, filter 0.3s ease;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-soft);
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ---------- Success numbers ---------- */
.success-nums {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.success-num {
  padding: 32px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.success-num::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
}

.success-num .num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.success-num .lbl {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 600;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.blog-card__img {
  height: 180px;
  overflow: hidden;
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__img img { transform: scale(1.06); }

.blog-card__body { padding: 22px 24px 28px; }

.blog-card__meta {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--marigold);
  margin-bottom: 10px;
}

.blog-card h4 { font-size: 17px; margin-bottom: 10px; line-height: 1.35; }

.blog-card p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--magenta);
}

/* ---------- Newsletter ---------- */
.newsletter-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--gradient-dark-panel);
  border-radius: var(--radius-xl);
  padding: 56px 64px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.newsletter-block::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent 70%);
  top: -150px;
  right: -100px;
}

.newsletter-block h3 {
  font-size: clamp(24px, 3vw, 32px);
  color: #fff;
  margin-bottom: 12px;
}

.newsletter-block p {
  color: rgba(245, 230, 235, 0.8);
  font-size: 15px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: inherit;
  font-size: 14.5px;
}

.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.5); }

.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
}

/* ---------- Download app ---------- */
.app-download {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.app-download__mock {
  position: relative;
  display: flex;
  justify-content: center;
}

.app-download__phone {
  width: 260px;
  height: 520px;
  border-radius: 36px;
  border: 8px solid var(--ink);
  background: var(--gradient-dark-panel);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.app-download__phone::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: var(--ink);
  border-radius: 99px;
}

.app-download__badges {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  transition: transform 0.2s ease;
}

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

.app-badge small {
  display: block;
  font-size: 10px;
  opacity: 0.7;
  font-weight: 500;
}

/* ---------- Vendor benefits ---------- */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.benefit-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.benefit-ic {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--magenta-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.benefit-card h4 { font-size: 16px; margin-bottom: 8px; }

.benefit-card p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ---------- Final CTA ---------- */
.final-cta {
  border-radius: var(--radius-xl);
  background: var(--gradient-brand);
  padding: 78px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent 70%);
  bottom: -260px;
  left: -160px;
}

.final-cta h2 {
  color: #fff;
  font-size: clamp(28px, 3.6vw, 42px);
  max-width: 660px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.final-cta p {
  color: rgba(245, 230, 235, 0.9);
  font-size: 16px;
  margin: 18px auto 36px;
  max-width: 500px;
  position: relative;
  z-index: 1;
}

.final-cta .hero-ctas {
  justify-content: center;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

/* ---------- Footer luxury redesign ---------- */
footer {
  background: linear-gradient(180deg, var(--ivory) 0%, rgba(250, 247, 242, 0.95) 100%);
  border-top: 1px solid var(--line);
  padding-top: 88px;
  position: relative;
}

[data-theme="dark"] footer {
  background: linear-gradient(180deg, var(--ivory) 0%, #0E080A 100%);
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 64px;
}

.foot-brand p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 18px 0 24px;
  max-width: 300px;
}

.foot-social {
  display: flex;
  gap: 10px;
}

.foot-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.foot-social a:hover {
  background: var(--gradient-brand);
  border-color: transparent;
  transform: translateY(-2px);
}

.foot-social a:hover svg path { stroke: #fff; }

.foot-col h5 {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin-bottom: 20px;
}

.foot-col a {
  display: block;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 13px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.foot-col a:hover {
  color: var(--magenta);
  transform: translateX(3px);
}

.foot-col.newsletter input {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 13.5px;
  margin-bottom: 10px;
  background: var(--paper);
  color: var(--ink);
}

.foot-col.newsletter .btn { width: 100%; justify-content: center; }

.foot-bottom {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: var(--ink-faint);
}

.foot-bottom .links {
  display: flex;
  gap: 22px;
}

.foot-bottom .links a:hover { color: var(--magenta); }

/* ---------- Floating widgets ---------- */
.widget-whatsapp {
  position: fixed;
  bottom: 96px;
  right: 24px;
  z-index: 120;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease;
}

.widget-whatsapp:hover { transform: scale(1.08); }

.widget-back-top {
  position: fixed;
  bottom: 96px;
  right: 92px;
  z-index: 120;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--magenta);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.widget-back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sticky-bottom-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 110;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-top: 1px solid var(--line);
  padding: 12px 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -8px 32px rgba(61, 15, 46, 0.12);
}

.sticky-bottom-cta.is-visible { display: flex; }

.sticky-bottom-cta__text {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.sticky-bottom-cta__text span {
  display: block;
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 500;
}

.sticky-bottom-cta .btn {
  padding: 12px 24px;
  font-size: 14px;
  flex-shrink: 0;
}

/* ---------- Skeleton loaders ---------- */
.skeleton-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}

.skeleton-img {
  height: 200px;
  border-radius: 0;
}

.skeleton-body { padding: 20px; }

.skeleton-line {
  height: 14px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.skeleton-line--short { width: 60%; }
.skeleton-line--medium { width: 80%; }

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

.skeleton-grid.is-hidden { display: none; }

/* ---------- Real weddings section ---------- */
.real-weddings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.real-wedding-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.real-wedding-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.real-wedding-card__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  min-height: 280px;
}

.real-wedding-card__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.real-wedding-card__gallery img:first-child {
  grid-row: 1 / 3;
}

.real-wedding-card__content {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.real-wedding-card__couple {
  font-family: var(--font-accent);
  font-size: 22px;
  margin-bottom: 8px;
}

.real-wedding-card__meta {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.real-wedding-card__vendors {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
