/* ==========================================================================
   WEDDINGWEBAPP — Luxury Digital Wedding Album
   Design system: midnight charcoal + rose-gold/champagne + ivory
   ========================================================================== */

:root {
  /* Base palette */
  --void: #07060a;
  --charcoal: #0e0c10;
  --charcoal-2: #14111a;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --border-soft: rgba(255, 255, 255, 0.09);

  /* Rose gold / champagne */
  --rg-1: #f4dcb3;
  --rg-2: #e3b57e;
  --rg-3: #cd8f63;
  --rg-4: #b76e79;
  --gold-grad: linear-gradient(120deg, var(--rg-1) 0%, var(--rg-2) 45%, var(--rg-4) 100%);
  --gold-grad-soft: linear-gradient(120deg, rgba(244, 220, 179, .9) 0%, rgba(227, 181, 126, .9) 50%, rgba(183, 110, 121, .9) 100%);

  /* Ivory text */
  --ivory: #f7f0e6;
  --ivory-dim: #c9c0b4;
  --ivory-faint: #8d857c;

  --glow: rgba(227, 181, 126, 0.35);
  --glow-strong: rgba(227, 181, 126, 0.55);

  --radius-xl: 26px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;

  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);

  --container: 1220px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
img, svg, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }
input, textarea { font: inherit; color: inherit; }

body {
  background: var(--void);
  color: var(--ivory);
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-family: var(--font-body);
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

:root { --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; }
:root { --font-display: 'Playfair Display', Georgia, serif; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.2px;
}

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

section { position: relative; overflow: hidden; }

/* ---------- Selection & scrollbar ---------- */
::selection { background: var(--rg-3); color: var(--void); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--rg-2), var(--rg-4));
  border-radius: 10px;
}

/* ---------- Ambient background glows (clipped) ---------- */
.cosmos-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
}

.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--void);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .7s var(--ease-out), visibility .7s var(--ease-out);
}
.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.preloader-logo-wrap {
  position: relative;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader-logo-wrap img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 50%;
  animation: preloaderPulse 1.6s ease-in-out infinite;
  filter: drop-shadow(0 0 18px var(--glow-strong));
}
.preloader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid transparent;
  border-top-color: var(--rg-2);
  border-right-color: var(--rg-4);
  animation: spin 1.1s linear infinite;
}
.preloader-ring::after {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
}
.preloader-text {
  font-family: var(--font-display);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--ivory-dim);
}
.preloader-text span {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); opacity: .9; }
  50% { transform: scale(1.08); opacity: 1; }
}

/* ==========================================================================
   SCROLL PROGRESS BAR
   ========================================================================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--gold-grad);
  z-index: 9000;
  box-shadow: 0 0 12px var(--glow-strong);
  transition: width .08s linear;
}

/* ==========================================================================
   CUSTOM CURSOR — rose-gold heart + rotating ring
   Outer .cursor-heart / .cursor-ring are positioned via JS (transform:
   translate(x,y)). Inner elements own all keyframe animations so the two
   transform sources never fight each other.
   ========================================================================== */
.cursor-heart,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9500;
  will-change: transform;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .25s var(--ease-out);
}
body.no-cursor .cursor-heart,
body.no-cursor .cursor-ring { display: none; }
.cursor-heart.is-window-hidden,
.cursor-ring.is-window-hidden { opacity: 0; }

.cursor-heart-icon {
  display: block;
  color: var(--rg-1);
  font-size: 14px;
  opacity: .9;
  filter: drop-shadow(0 0 6px var(--glow-strong));
  transition: font-size .3s var(--ease-out), opacity .3s var(--ease-out);
  animation: cursorHeartIdle 1.6s ease-in-out infinite;
  transform-origin: center;
}
.cursor-heart.is-hover .cursor-heart-icon {
  font-size: 26px;
  opacity: 1;
  animation: cursorHeartBeat .85s ease-in-out infinite;
}
@keyframes cursorHeartIdle {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}
@keyframes cursorHeartBeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.22); }
}

.cursor-ring-shape {
  display: block;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px dashed var(--rg-2);
  opacity: .55;
  transition: width .3s var(--ease-out), height .3s var(--ease-out),
              border-color .3s var(--ease-out), border-style .3s var(--ease-out),
              background .3s var(--ease-out), opacity .3s var(--ease-out);
  animation: cursorRingSpin 7s linear infinite;
  transform-origin: center;
}
.cursor-ring.is-down .cursor-ring-shape { width: 30px; height: 30px; }
.cursor-ring.is-hover .cursor-ring-shape {
  width: 64px; height: 64px;
  border-style: solid;
  border-color: var(--rg-1);
  background: radial-gradient(circle, rgba(227,181,126,.14), transparent 70%);
  opacity: 1;
  animation: cursorRingSpin 3.2s linear infinite;
}
@keyframes cursorRingSpin {
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 800;
  padding: 22px 0;
  transition: padding .35s var(--ease-out), background .35s var(--ease-out), border-color .35s var(--ease-out), box-shadow .35s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.navbar.is-scrolled {
  padding: 12px 0;
  background: rgba(10, 8, 12, 0.65);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.navbar-brand img {
  height: 34px;
  width: auto;
  object-fit: contain;
  transition: transform .3s var(--ease-out);
}
.navbar-brand:hover img { transform: scale(1.04); }

.navbar-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.navbar-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .3px;
  color: var(--ivory-dim);
  position: relative;
  padding: 6px 2px;
  transition: color .25s var(--ease-out);
}
.navbar-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0%;
  height: 1px;
  background: var(--gold-grad);
  transition: width .3s var(--ease-out);
}
.navbar-links a:hover { color: var(--ivory); }
.navbar-links a:hover::after { width: 100%; }

.navbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .3px;
  color: var(--void);
  background: var(--gold-grad);
  box-shadow: 0 6px 20px rgba(205, 143, 99, .28);
}

.navbar-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--surface-strong);
  border: 1px solid var(--border-soft);
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 900;
}
.navbar-toggle span {
  position: absolute;
  left: 12px;
  width: 22px;
  height: 2px;
  background: var(--ivory);
  border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .3s var(--ease-out), top .3s var(--ease-out);
}
.navbar-toggle span:nth-child(1) { top: 16px; }
.navbar-toggle span:nth-child(2) { top: 23px; }
.navbar-toggle span:nth-child(3) { top: 30px; }
.navbar-toggle.is-active span:nth-child(1) { top: 23px; transform: rotate(45deg); }
.navbar-toggle.is-active span:nth-child(2) { opacity: 0; }
.navbar-toggle.is-active span:nth-child(3) { top: 23px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: min(320px, 84vw);
  background: rgba(12, 10, 14, 0.92);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-left: 1px solid var(--border-soft);
  z-index: 850;
  padding: 110px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  transform: translateX(100%);
  transition: transform .45s var(--ease-out);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu a {
  font-size: 20px;
  font-family: var(--font-display);
  color: var(--ivory);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-soft);
}
.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 820;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease-out);
}
.mobile-backdrop.is-open { opacity: 1; pointer-events: auto; }

@media (max-width: 991px) {
  .navbar-links, .navbar-cta { display: none; }
  .navbar-toggle { display: flex; }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .4px;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.btn-primary {
  color: var(--void);
  background: var(--gold-grad);
  box-shadow: 0 10px 30px rgba(205, 143, 99, .3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(205, 143, 99, .42); }
.btn-ghost {
  color: var(--ivory);
  background: var(--surface);
  border: 1px solid var(--border-soft);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--rg-2); transform: translateY(-3px); }

.btn .shine {
  position: absolute;
  top: 0; left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg);
  transition: left .7s var(--ease-out);
  z-index: 1;
  pointer-events: none;
}
.btn:hover .shine { left: 130%; }

/* ==========================================================================
   GLASS CARD BASE
   ========================================================================== */
.glass {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
  position: relative;
}
.glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(160deg, rgba(255,255,255,.08), transparent 40%);
  pointer-events: none;
}

/* ==========================================================================
   SECTION HEADER
   ========================================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rg-2);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--gold-grad);
}
.section-head {
  max-width: 680px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(30px, 4.2vw, 48px);
  color: var(--ivory);
  margin-bottom: 16px;
}
.section-head h2 .accent {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-head p {
  color: var(--ivory-dim);
  font-size: 16px;
  line-height: 1.7;
}
.section-pad { padding: 120px 0; }
@media (max-width: 767px) { .section-pad { padding: 80px 0; } }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at 50% 30%, transparent 0%, var(--void) 82%),
              linear-gradient(180deg, rgba(7,6,10,.2), var(--void) 96%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 991px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--ivory-dim);
  margin-bottom: 26px;
}
.hero-badge i { color: var(--rg-2); }
.hero h1 {
  font-size: clamp(38px, 6vw, 74px);
  color: var(--ivory);
  margin-bottom: 22px;
}
.hero h1 .accent {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.hero p.lead {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  color: var(--ivory-dim);
  max-width: 540px;
  margin-bottom: 36px;
}
@media (max-width: 991px) { .hero p.lead { margin-inline: auto; } }
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 46px;
}
@media (max-width: 991px) { .hero-actions { justify-content: center; } }
.hero-social {
  display: flex;
  gap: 14px;
}
@media (max-width: 991px) { .hero-social { justify-content: center; } }
.hero-social a {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  color: var(--ivory-dim);
  font-size: 16px;
  transition: transform .3s var(--ease-out), color .3s var(--ease-out), border-color .3s var(--ease-out);
}
.hero-social a:hover {
  transform: translateY(-4px);
  color: var(--rg-1);
  border-color: var(--rg-2);
}

/* Hero visual mock card */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-phone-float {
  animation: floatY 6s ease-in-out infinite;
}
.hero-phone {
  position: relative;
  width: min(300px, 78vw);
  border-radius: 34px;
  padding: 14px;
  background: linear-gradient(160deg, rgba(255,255,255,.09), rgba(255,255,255,.02));
  border: 1px solid var(--border-soft);
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 60px var(--glow);
  transform-style: preserve-3d;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
  will-change: transform;
}
.hero-phone:hover {
  box-shadow: 0 40px 100px rgba(0,0,0,.55), 0 0 80px var(--glow-strong);
}
.hero-phone::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--sheen-x, 50%) var(--sheen-y, 50%), rgba(255,255,255,.16), transparent 55%);
  opacity: 0;
  transition: opacity .4s var(--ease-out);
  pointer-events: none;
}
.hero-phone:hover::after { opacity: 1; }
.hero-phone-screen {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 9/17.5;
  background: var(--charcoal-2);
  position: relative;
}
.hero-phone-screen img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-phone-screen .screen-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(227,181,126,.22), transparent 55%);
}
@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-16px) rotate(1.5deg); }
}
.hero-stat-chip {
  position: absolute;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 12px;
  line-height: 1.3;
  animation: floatY 7s ease-in-out infinite;
}
.hero-stat-chip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.chip-1 { top: 8%; left: -8%; animation-delay: .5s; }
.chip-2 { bottom: 10%; right: -10%; animation-delay: 1.2s; }
@media (max-width: 560px) { .chip-1, .chip-2 { display: none; } }

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--ivory-faint);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-cue .line {
  width: 1px; height: 34px;
  background: linear-gradient(var(--rg-2), transparent);
  overflow: hidden;
  position: relative;
}
.scroll-cue .line::after {
  content: '';
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--rg-1);
  animation: scrollCue 1.8s ease-in-out infinite;
}
@keyframes scrollCue { to { top: 100%; } }

/* ==========================================================================
   STATS STRIP
   ========================================================================== */
.stats-strip {
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 40px 0;
}
.stats-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
@media (max-width: 767px) { .stats-strip .container { grid-template-columns: repeat(2, 1fr); } }
.stat-item strong {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 38px);
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
}
.stat-item span {
  font-size: 13px;
  color: var(--ivory-faint);
  letter-spacing: .5px;
}

/* ==========================================================================
   PROCESS / SERVICES
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 991px) { .process-grid { grid-template-columns: 1fr; } }
.process-card {
  padding: 38px 30px;
  border-radius: var(--radius-lg);
  transition: transform .4s var(--ease-out), border-color .4s var(--ease-out);
  transform-style: preserve-3d;
}
.process-card:hover { border-color: var(--rg-2); }
.process-num {
  font-family: var(--font-display);
  font-size: 46px;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: .85;
  margin-bottom: 18px;
}
.process-card h4 {
  font-size: 20px;
  color: var(--ivory);
  margin-bottom: 12px;
}
.process-card p {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--ivory-dim);
}

/* ==========================================================================
   DEMO PREVIEW (interactive album demo)
   ========================================================================== */
.demo-section { padding: 120px 0; }
.demo-wrap {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 991px) { .demo-wrap { grid-template-columns: 1fr; } }

.demo-tabs {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.demo-tab {
  text-align: left;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: var(--surface);
  transition: border-color .3s var(--ease-out), background .3s var(--ease-out), transform .3s var(--ease-out);
  cursor: pointer;
}
.demo-tab:hover { transform: translateX(4px); }
.demo-tab.is-active {
  border-color: var(--rg-2);
  background: linear-gradient(120deg, rgba(227,181,126,.12), rgba(183,110,121,.06));
}
.demo-tab-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-grad);
  color: var(--void);
  margin-bottom: 10px;
  font-size: 17px;
}
.demo-tab h5 {
  font-size: 16px;
  color: var(--ivory);
  margin-bottom: 4px;
}
.demo-tab p {
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--ivory-faint);
  line-height: 1.5;
}

.demo-device {
  position: relative;
  display: flex;
  justify-content: center;
}
.demo-browser {
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius-xl);
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: 0 40px 90px rgba(0,0,0,.55), 0 0 70px var(--glow);
}
.demo-browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid var(--border-soft);
}
.demo-browser-bar span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--ivory-faint);
  opacity: .5;
}
.demo-browser-bar .url {
  margin-left: 10px;
  font-size: 11px;
  color: var(--ivory-faint);
  font-family: var(--font-body);
  background: rgba(0,0,0,.25);
  padding: 4px 12px;
  border-radius: 999px;
  flex: 1;
}
.demo-screen {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--charcoal-2);
}
.demo-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s var(--ease-out);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.demo-slide.is-active { opacity: 1; visibility: visible; }
.demo-slide img { width: 100%; height: 100%; object-fit: cover; }
.demo-slide.stack {
  display: flex;
  flex-direction: column;
  padding: 26px;
  gap: 14px;
  justify-content: center;
}
.demo-slide.stack .love-line {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--rg-1);
}
.demo-slide.stack p {
  font-size: 13px;
  color: var(--ivory-dim);
  line-height: 1.7;
  font-family: var(--font-body);
}
.demo-wish {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 12.5px;
  color: var(--ivory-dim);
}
.demo-wish b { color: var(--rg-1); font-family: var(--font-display); font-weight: 500; }

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 991px) { .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }
.price-card {
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  transition: transform .45s var(--ease-out), border-color .45s var(--ease-out);
  transform-style: preserve-3d;
}
.price-card.is-featured {
  border-color: var(--rg-2);
  background: linear-gradient(160deg, rgba(227,181,126,.1), rgba(255,255,255,.03));
}
.price-tag {
  position: absolute;
  top: 22px; right: 22px;
  background: var(--gold-grad);
  color: var(--void);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
}
.price-name { font-size: 14px; letter-spacing: 1px; text-transform: uppercase; color: var(--rg-2); margin-bottom: 10px; }
.price-value { font-family: var(--font-display); font-size: 40px; color: var(--ivory); margin-bottom: 4px; }
.price-value span { font-size: 14px; color: var(--ivory-faint); font-family: var(--font-body); }
.price-card ul { margin: 26px 0 30px; display: flex; flex-direction: column; gap: 13px; flex: 1; }
.price-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--ivory-dim);
  line-height: 1.5;
}
.price-card ul li i { color: var(--rg-2); font-size: 16px; margin-top: 1px; flex-shrink: 0; }
.price-note { text-align: center; color: var(--ivory-faint); font-size: 13px; margin-top: 34px; line-height: 1.8; }

/* ==========================================================================
   PORTFOLIO / VIDEO GALLERY
   ========================================================================== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 991px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .video-grid { grid-template-columns: 1fr; } }
.video-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/10;
  cursor: pointer;
}
.video-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out), filter .5s var(--ease-out);
  filter: saturate(.85) brightness(.75);
}
.video-card:hover img { transform: scale(1.08); filter: saturate(1) brightness(.6); }
.video-play {
  position: absolute;
  top: 50%; left: 50%;
  width: 56px; height: 56px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid var(--border-soft);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  font-size: 18px;
  transition: transform .35s var(--ease-out), background .35s var(--ease-out);
}
.video-card:hover .video-play {
  transform: translate(-50%, -50%) scale(1.14);
  background: var(--gold-grad);
  color: var(--void);
}
.video-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px 12px;
  font-size: 13px;
  color: var(--ivory);
  background: linear-gradient(0deg, rgba(0,0,0,.72), transparent);
}
.video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ==========================================================================
   ABOUT + FAQ
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 991px) { .about-grid { grid-template-columns: 1fr; } }
.about-copy p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.85;
  color: var(--ivory-dim);
  margin-bottom: 16px;
}
.about-image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: 0 30px 70px rgba(0,0,0,.4);
}

.faq-item {
  border-bottom: 1px solid var(--border-soft);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--ivory);
  text-align: left;
}
.faq-question i {
  flex-shrink: 0;
  color: var(--rg-2);
  transition: transform .35s var(--ease-out);
  font-size: 20px;
}
.faq-item.is-open .faq-question i { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease-out);
}
.faq-answer-inner {
  padding: 0 4px 22px;
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--ivory-dim);
}

/* ==========================================================================
   GUESTBOOK PREVIEW
   ========================================================================== */
.guestbook-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 991px) { .guestbook-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }
.guest-card {
  padding: 30px 28px;
  border-radius: var(--radius-lg);
  transition: transform .4s var(--ease-out), border-color .4s var(--ease-out);
}
.guest-card:hover { border-color: var(--rg-2); }
.guest-quote-icon { color: var(--rg-2); font-size: 26px; margin-bottom: 16px; opacity: .8; }
.guest-card p.msg {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ivory);
  margin-bottom: 22px;
}
.guest-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.guest-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--void);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.guest-meta span { font-size: 12.5px; color: var(--ivory-faint); font-family: var(--font-body); }
.guest-meta strong { display: block; font-size: 14px; color: var(--ivory); font-family: var(--font-body); }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 767px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform .4s var(--ease-out), border-color .4s var(--ease-out);
}
.contact-card:hover { transform: translateY(-6px); border-color: var(--rg-2); }
.contact-icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-grad);
  color: var(--void);
  font-size: 22px;
}
.contact-card h5 { font-size: 16px; color: var(--ivory); margin-bottom: 8px; }
.contact-card p { font-size: 14px; color: var(--ivory-dim); font-family: var(--font-body); line-height: 1.6; }
.contact-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 50px;
}
.contact-social a {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  color: var(--ivory-dim);
  transition: transform .3s var(--ease-out), color .3s var(--ease-out), border-color .3s var(--ease-out);
}
.contact-social a:hover { transform: translateY(-4px); color: var(--rg-1); border-color: var(--rg-2); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  padding: 70px 0 32px;
  border-top: 1px solid var(--border-soft);
  text-align: center;
}
.footer-logo img { height: 30px; margin: 0 auto 26px; }
.footer-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 22px;
}
.footer-social a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  color: var(--ivory-dim);
  transition: transform .3s var(--ease-out), color .3s var(--ease-out);
}
.footer-social a:hover { transform: translateY(-4px); color: var(--rg-1); }
.footer p.tag { color: var(--ivory-faint); font-size: 13px; margin-bottom: 18px; }
.footer .copyright { color: var(--ivory-faint); font-size: 12.5px; }
.footer .copyright a { color: var(--rg-2); }

/* ==========================================================================
   BACK TO TOP
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-strong);
  border: 1px solid var(--border-soft);
  backdrop-filter: blur(12px);
  color: var(--ivory);
  z-index: 700;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out), border-color .35s var(--ease-out);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { border-color: var(--rg-2); color: var(--rg-1); }

/* ==========================================================================
   REVEAL UTILITIES (GSAP hooks)
   ========================================================================== */
[data-reveal] { opacity: 0; }
.reveal-fallback [data-reveal] { opacity: 1; }

/* ==========================================================================
   MISC
   ========================================================================== */
.text-center { text-align: center; }
.mt-lg { margin-top: 60px; }
