/* ==========================================================================
   PROBER — Wedding Music by Abdul Wahed
   Design tokens
   ========================================================================== */

:root {
  /* Color */
  --ink:          #05050A;   /* deep void black */
  --ink-soft:     #0D0D16;   /* raised panels */
  --ink-line:     #1A1A2E;   /* hairline borders on dark */
  --gold:         #00F3FF;   /* cyan, primary accent */
  --gold-bright:  #5CE1E6;   /* hover / glow state */
  --maroon:       #FF007A;   /* magenta, secondary accent */
  --maroon-bright:#FF4D9B;
  --ivory:        #F8F9FA;   /* primary text on dark */
  --ivory-dim:    #A0AAB2;   /* secondary text */
  --ivory-faint:  #6B7A8B;   /* tertiary / captions */

  /* Type */
  --font-display: 'Inter', 'Helvetica Neue', sans-serif;
  --font-body:    'Inter', 'Helvetica Neue', sans-serif;

  /* Layout */
  --max-w: 1240px;
  --radius: 18px;
  --radius-sm: 10px;
  --gutter: clamp(20px, 5vw, 64px);

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--gold); color: var(--ink); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--ink-line); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ============ Mouse Flare ============ */
.mouse-flare {
  position: fixed;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(162, 115, 60, 0.12) 0%, rgba(0,0,0,0) 60%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0; /* Behind content but above background */
  mix-blend-mode: screen;
  transition: opacity 0.3s ease;
  opacity: 0;
}
.mouse-flare.active {
  opacity: 1;
}

/* ---------- Typography helpers ---------- */

.eyebrow {
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

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

.section-title {
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.08;
  margin: 18px 0 0;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.lede {
  font-size: 17px;
  color: var(--ivory-dim);
  margin-top: 16px;
  max-width: 54ch;
  font-weight: 300;
}
.section-head.center .lede { margin-left: auto; margin-right: auto; }

section { position: relative; padding: 110px 0; }
@media (max-width: 720px) { section { padding: 78px 0; } }

.divider-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ink-line) 20%, var(--ink-line) 80%, transparent);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--ink);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(201,162,75,.55); }

.btn-ghost {
  background: rgba(243,234,216,0.04);
  border-color: rgba(243,234,216,0.28);
  color: var(--ivory);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-2px); }

.btn-whatsapp {
  background: rgba(107,31,51,0.25);
  border-color: var(--maroon-bright);
  color: var(--ivory);
}
.btn-whatsapp:hover { background: var(--maroon); border-color: var(--maroon-bright); transform: translateY(-2px); }

.btn-sm { padding: 11px 22px; font-size: 11.5px; }
.btn-block { width: 100%; }

/* ---------- Glass card base ---------- */

.glass {
  background: linear-gradient(160deg, rgba(243,234,216,0.055), rgba(243,234,216,0.015));
  border: 1px solid rgba(243,234,216,0.10);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* ==========================================================================
   Loading screen
   ========================================================================== */

#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  transition: opacity .7s var(--ease), visibility .7s var(--ease);
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-mark {
  font-family: var(--font-display);
  font-size: 34px;
  letter-spacing: 0.22em;
  color: var(--ivory);
}
.loader-mark span { color: var(--gold); }

.loader-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 28px;
}
.loader-bars i {
  width: 4px;
  border-radius: 2px;
  background: var(--gold);
  animation: loaderBar 1s ease-in-out infinite;
}
.loader-bars i:nth-child(1){ animation-delay: -0.9s; }
.loader-bars i:nth-child(2){ animation-delay: -0.7s; }
.loader-bars i:nth-child(3){ animation-delay: -0.5s; }
.loader-bars i:nth-child(4){ animation-delay: -0.3s; }
.loader-bars i:nth-child(5){ animation-delay: -0.1s; }
.loader-bars i:nth-child(6){ animation-delay: -0.6s; }
.loader-bars i:nth-child(7){ animation-delay: -0.2s; }

@keyframes loaderBar {
  0%, 100% { height: 6px; }
  50% { height: 28px; }
}

/* ==========================================================================
   Navigation
   ========================================================================== */

header.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 22px 0;
  transition: padding .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
header.site-nav.scrolled {
  padding: 14px 0;
  background: rgba(15,11,18,0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--ink-line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--ivory);
}
.logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  position: relative;
  padding-bottom: 4px;
  transition: color .3s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0%; height: 1px;
  background: var(--gold);
  transition: width .35s var(--ease);
}
.nav-links a:hover { color: var(--ivory); }
.nav-links a:hover::after { width: 100%; }

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

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--ink-line);
  border-radius: 8px;
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 600;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  padding: 28px var(--gutter);
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 60px; }
.mobile-menu-close { background: none; border: none; color: var(--ivory); font-size: 28px; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 28px; }
.mobile-menu nav a {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--ivory);
  border-bottom: 1px solid var(--ink-line);
  padding-bottom: 18px;
}
.mobile-menu .btn { margin-top: 40px; }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 90px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 55% at 18% 12%, rgba(201,162,75,0.16), transparent 60%),
    radial-gradient(ellipse 60% 50% at 88% 82%, rgba(107,31,51,0.28), transparent 60%),
    linear-gradient(180deg, #0F0B12 0%, #150F18 60%, #0F0B12 100%);
}
.hero-bg .glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .45;
  animation: drift 18s ease-in-out infinite;
}
.glow-1 { width: 360px; height: 360px; background: var(--gold); top: -80px; left: 8%; animation-delay: 0s; }
.glow-2 { width: 280px; height: 280px; background: var(--maroon); bottom: -60px; right: 10%; animation-delay: -6s; }
.glow-3 { width: 220px; height: 220px; background: var(--gold); top: 40%; right: 28%; opacity: .2; animation-delay: -11s; }

@keyframes drift {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(30px,-24px) scale(1.08); }
}

.particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.particle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--gold-bright);
  border-radius: 50%;
  opacity: 0;
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: .8; }
  90% { opacity: .5; }
  100% { transform: translateY(-110vh) translateX(20px); opacity: 0; }
}

.hero-inner { position: relative; z-index: 2; width: 100%; }

.hero-content { max-width: 760px; }

.hero-title {
  font-size: clamp(40px, 6.6vw, 84px);
  line-height: 1.04;
  margin-top: 24px;
  letter-spacing: 0.005em;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  position: relative;
}

.hero-sub {
  margin-top: 26px;
  font-size: 18px;
  color: var(--ivory-dim);
  max-width: 56ch;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 44px;
}

.hero-waveform {
  position: relative;
  z-index: 2;
  margin-top: 86px;
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--ivory-faint);
}
.hero-waveform .wf-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
}
.waveform-bars {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 44px;
  flex: 1;
  overflow: hidden;
}
.waveform-bars i {
  flex: 0 0 3px;
  background: linear-gradient(180deg, var(--gold), rgba(201,162,75,0.15));
  border-radius: 2px;
  animation: wfPulse 2.2s ease-in-out infinite;
}
@keyframes wfPulse {
  0%, 100% { transform: scaleY(0.25); opacity: .55; }
  50% { transform: scaleY(1); opacity: 1; }
}

.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--ivory-faint);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-cue .line {
  width: 1px; height: 30px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ==========================================================================
   About
   ========================================================================== */

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

.about-portrait {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background: linear-gradient(155deg, var(--ink-soft), var(--ink));
  border: 1px solid var(--ink-line);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.about-portrait .ring {
  position: absolute;
  width: 76%; height: 76%;
  border: 1px solid rgba(201,162,75,0.4);
  border-radius: 50%;
}
.about-portrait .ring2 {
  position: absolute;
  width: 60%; height: 60%;
  border: 1px solid rgba(201,162,75,0.22);
  border-radius: 50%;
}
.about-portrait .initials {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--gold);
  letter-spacing: 0.05em;
  position: relative; z-index: 2;
}
.about-portrait .mini-wave {
  position: absolute;
  bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 3px; height: 20px; align-items: flex-end;
}
.about-portrait .mini-wave i {
  width: 3px; background: var(--gold); border-radius: 2px;
  animation: wfPulse 1.8s ease-in-out infinite;
}

.about-text .role {
  margin-top: 18px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--ivory-faint);
  text-transform: uppercase;
}
.about-text .role b { color: var(--gold); font-weight: 500; }

.about-text p {
  margin-top: 22px;
  color: var(--ivory-dim);
  font-size: 16.5px;
  font-weight: 300;
  max-width: 56ch;
}

.about-tags {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 30px;
}
.about-tags span {
  border: 1px solid var(--ink-line);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ivory-dim);
}

/* ==========================================================================
   Music portfolio
   ========================================================================== */

.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 26px;
  perspective: 1000px;
}

.track-card {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.1s ease-out, border-color .4s var(--ease), box-shadow .4s var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
}
.track-card:hover {
  border-color: rgba(0, 243, 255, 0.35);
  box-shadow: 0 20px 40px -10px rgba(0, 243, 255, 0.2), 0 0 20px rgba(255, 0, 122, 0.1);
}

.cover {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  transform: translateZ(30px);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.8);
}
.cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.cover .cover-tag {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(15,11,18,0.6);
  border: 1px solid rgba(243,234,216,0.18);
  backdrop-filter: blur(6px);
  color: var(--ivory);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  padding: 5px 10px;
  border-radius: 999px;
}
.cover svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.cover .play-toggle {
  position: relative; z-index: 3;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(15,11,18,0.55);
  border: 1px solid rgba(243,234,216,0.4);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: var(--ivory);
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.cover .play-toggle:hover { transform: scale(1.08); border-color: var(--gold); }
.track-card.playing .cover .play-toggle {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.cover .play-toggle svg { position: static; width: 20px; height: 20px; }
.cover .play-toggle .icon-pause { display: none; }
.track-card.playing .cover .play-toggle .icon-play { display: none; }
.track-card.playing .cover .play-toggle .icon-pause { display: block; }

.track-info { display: flex; flex-direction: column; gap: 4px; }
.track-title { font-size: 19px; font-weight: 600; }
.track-genre {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-transform: uppercase;
}

.track-player { display: flex; flex-direction: column; gap: 10px; }
.progress-row { display: flex; align-items: center; gap: 10px; }
.progress-time { font-size: 11px; color: var(--ivory-faint); width: 36px; flex: none; font-variant-numeric: tabular-nums; }
.progress-bar {
  flex: 1; height: 4px; border-radius: 4px;
  background: var(--ink-line);
  position: relative; cursor: pointer;
}
.progress-bar .fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius: 4px;
}
.progress-bar .knob {
  position: absolute; top: 50%; left: 0%;
  width: 11px; height: 11px;
  background: var(--ivory);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 3px rgba(201,162,75,0.25);
  transition: left .05s linear;
}

.track-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2px;
}
.track-actions .dl {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  transition: color .3s var(--ease);
}
.track-actions .dl:hover { color: var(--gold-bright); }
.track-actions .dl svg { width: 14px; height: 14px; }

.track-lyrics {
  margin-top: 14px;
  padding: 12px;
  background: rgba(243, 234, 216, 0.03);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-sm);
  max-height: 80px;
  overflow-y: auto;
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--ivory-dim);
  font-style: italic;
  scrollbar-width: none; /* Firefox */
}
.track-lyrics::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}
.track-lyrics p {
  margin: 0;
}

/* Coming soon cards */
.track-card.coming-soon { opacity: .82; }
.track-card.coming-soon .cover { filter: grayscale(0.55) brightness(0.7); }
.track-card.coming-soon .cover .play-toggle {
  background: rgba(15,11,18,0.7);
  border-color: rgba(243,234,216,0.25);
}
.track-card.coming-soon .cover-tag {
  background: rgba(107,31,51,0.55);
  border-color: var(--maroon-bright);
}
.track-card.coming-soon .track-genre { color: var(--ivory-faint); }
.lock-icon { width: 18px; height: 18px; }

.music-more {
  text-align: center;
  margin-top: 56px;
}

/* ==========================================================================
   Pricing
   ========================================================================== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 24px;
}

.price-card {
  position: relative;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.price-card:hover { transform: translateY(-6px); }

.price-card.popular {
  border-color: var(--gold);
  background: linear-gradient(165deg, rgba(201,162,75,0.13), rgba(243,234,216,0.02));
}
.popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.price-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ivory);
}
.price-amount {
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--gold);
  font-weight: 600;
}
.price-amount sup { font-size: 18px; top: -1em; }

.price-features {
  list-style: none;
  margin: 26px 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
  flex: 1;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ivory-dim);
}
.price-features svg { flex: none; width: 16px; height: 16px; margin-top: 2px; color: var(--gold); }

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.testimonial-card { padding: 32px 28px; }
.stars { color: var(--gold); font-size: 14px; letter-spacing: 3px; }
.testimonial-quote {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: 19px;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.5;
}
.testimonial-who {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold), var(--maroon));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
}
.testimonial-who .name { font-size: 14px; color: var(--ivory); font-weight: 500; }
.testimonial-who .role { font-size: 12px; color: var(--ivory-faint); }

/* ==========================================================================
   Stats
   ========================================================================== */

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
@media (max-width: 720px) { .stats-bar { grid-template-columns: repeat(2, 1fr); } }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  color: var(--gold);
  font-weight: 600;
}
.stat-label {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card { padding: 36px; }
.contact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--ink-line);
}
.contact-row:last-of-type { border-bottom: none; }
.contact-row .label { font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ivory-faint); }
.contact-row .value { font-size: 15px; color: var(--ivory); text-align: right; }
.contact-card .btn { margin-top: 26px; }

.form-card { padding: 36px; }
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  margin-bottom: 9px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: rgba(243,234,216,0.04);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 14.5px;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.form-field select option { background: var(--ink-soft); }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--gold);
  background: rgba(243,234,216,0.06);
  outline: none;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.form-note { font-size: 12px; color: var(--ivory-faint); margin-top: 14px; }

/* ==========================================================================
   Floating WhatsApp
   ========================================================================== */

.float-whatsapp {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 400;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--maroon-bright), var(--maroon));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 32px -10px rgba(107,31,51,0.7);
  color: var(--ivory);
  transition: transform .3s var(--ease);
}
.float-whatsapp:hover { transform: scale(1.08); }
.float-whatsapp::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--maroon-bright);
  animation: ringPulse 2.4s ease-out infinite;
}
@keyframes ringPulse {
  0% { transform: scale(0.9); opacity: .8; }
  100% { transform: scale(1.5); opacity: 0; }
}
.float-whatsapp svg { width: 26px; height: 26px; }

/* ==========================================================================
   Footer
   ========================================================================== */

footer {
  padding: 70px 0 30px;
  border-top: 1px solid var(--ink-line);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 36px;
  padding-bottom: 40px;
}
.footer-brand .logo { display: block; margin-bottom: 14px; }
.footer-brand p { max-width: 38ch; color: var(--ivory-faint); font-size: 14px; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col a, .footer-col span {
  display: block;
  font-size: 14px;
  color: var(--ivory-dim);
  margin-bottom: 12px;
  transition: color .3s var(--ease);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 26px;
  border-top: 1px solid var(--ink-line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: var(--ivory-faint);
}

/* ==========================================================================
   Scroll reveal utility
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
