/* ==========================================================================
   Angel Clean — Design System
   ========================================================================== */

:root{
  /* Purple / Lilac palette */
  --purple-950:#1E0E33;
  --purple-900:#2B1246;
  --purple-800:#3D1E66;
  --purple-700:#54278C;
  --purple-600:#7238B5;
  --purple-500:#9457D6;
  --purple-400:#AC79E0;
  --lilac-300:#C6A4EC;
  --lilac-200:#DCC5F5;
  --lilac-100:#EDE1FA;
  --lilac-50:#F7F1FC;
  --white:#FFFFFF;
  --cream:#FFFDFB;
  --lilac-25:#FAF5FE;
  --gold:#D9B25F;
  --gold-deep:#B8934B;
  --gold-soft:#F0DFB2;
  --ink:#241534;
  --ink-soft:#5B4E70;

  --grad-primary:linear-gradient(135deg,#3D1E66 0%,#7238B5 50%,#AC79E0 100%);
  --grad-radiant:radial-gradient(circle at 30% 20%,#9457D6,#3D1E66 70%);
  --grad-text:linear-gradient(120deg,#7238B5,#AC79E0 60%,#D9B25F);
  --grad-gold-purple:linear-gradient(90deg,var(--purple-700),var(--gold) 50%,var(--purple-700));

  --shadow-sm:0 2px 10px rgba(43,18,70,.08);
  --shadow-md:0 12px 32px rgba(43,18,70,.14);
  --shadow-lg:0 24px 60px rgba(43,18,70,.22);
  --shadow-purple:0 16px 40px rgba(114,56,181,.35);

  --font-display:"Fraunces", "Iowan Old Style", serif;
  --font-body:"Plus Jakarta Sans", -apple-system, sans-serif;

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

  --header-h:84px;
}

*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--cream);
  overflow-x:hidden;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
svg{ fill:currentColor; width:100%; height:100%; }
button{ font:inherit; cursor:pointer; border:none; background:none; }
.container{
  width:100%;
  max-width:1240px;
  margin-inline:auto;
  padding-inline:28px;
}

h1,h2,h3,h4{
  font-family:var(--font-display);
  font-weight:500;
  color:var(--purple-950);
  letter-spacing:-.01em;
}

.script{
  font-style:italic;
  font-weight:400;
  background:var(--grad-text);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

::selection{ background:var(--purple-400); color:var(--white); }

/* Scrollbar */
::-webkit-scrollbar{ width:11px; }
::-webkit-scrollbar-track{ background:var(--lilac-50); }
::-webkit-scrollbar-thumb{ background:var(--purple-400); border-radius:10px; border:3px solid var(--lilac-50); }

/* ==========================================================================
   Preloader
   ========================================================================== */
.preloader{
  position:fixed; inset:0; z-index:9999;
  background:var(--grad-radiant);
  display:flex; align-items:center; justify-content:center;
  transition:opacity .7s var(--ease), visibility .7s var(--ease);
}
.preloader.is-done{ opacity:0; visibility:hidden; pointer-events:none; }
.preloader-mark{ width:64px; height:64px; animation:preloaderPulse 1.1s ease-in-out infinite; }
.preloader-spark{ width:100%; height:100%; fill:var(--lilac-100); filter:drop-shadow(0 0 18px rgba(255,255,255,.6)); animation:spin 2.4s linear infinite; }
@keyframes preloaderPulse{ 0%,100%{ transform:scale(.85); } 50%{ transform:scale(1.05); } }
@keyframes spin{ to{ transform:rotate(360deg); } }

/* Grain texture overlay */
.grain{
  position:fixed; inset:0; z-index:1; pointer-events:none;
  opacity:.035; mix-blend-mode:multiply;
  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.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   Reveal animation (IntersectionObserver driven)
   ========================================================================== */
[data-reveal]{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
[data-reveal].in-view{ opacity:1; transform:translateY(0); }
[data-reveal-delay="1"]{ transition-delay:.08s; }
[data-reveal-delay="2"]{ transition-delay:.16s; }
[data-reveal-delay="3"]{ transition-delay:.24s; }
[data-reveal-delay="4"]{ transition-delay:.32s; }
[data-reveal-delay="5"]{ transition-delay:.4s; }

/* ==========================================================================
   Buttons & shared bits
   ========================================================================== */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:.78rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
  color:var(--purple-600);
  margin-bottom:14px;
}
.eyebrow .icon-sm{ color:var(--gold); }
.eyebrow-light{ color:var(--lilac-200); }

.section-title{ font-size:clamp(2rem,4vw,2.9rem); line-height:1.15; margin-bottom:18px; }
.section-title::before{
  content:""; display:block; width:56px; height:3px; border-radius:2px;
  margin-bottom:16px;
  background:linear-gradient(90deg,var(--gold),var(--purple-500));
}
.section-sub{ color:var(--ink-soft); font-size:1.05rem; max-width:560px; }
.section-head{ max-width:680px; margin-bottom:56px; }

.icon-sm{ width:18px; height:18px; flex:none; }
.icon-sm path{ fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.eyebrow .icon-sm path, .trust-item .icon-sm path, .value-item svg path{ fill:currentColor; stroke:none; }

.btn{
  position:relative;
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:15px 28px;
  border-radius:100px;
  font-weight:700; font-size:.95rem;
  overflow:hidden;
  transition:transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
  white-space:nowrap;
}
.btn svg{ position:relative; z-index:2; }
.btn span{ position:relative; z-index:2; }
.btn-primary{
  background:var(--grad-primary);
  background-size:160% 160%;
  background-position:0% 50%;
  color:var(--white);
  box-shadow:var(--shadow-purple);
}
.btn-primary:hover{ transform:translateY(-3px); background-position:100% 50%; box-shadow:0 20px 46px rgba(114,56,181,.45); }
.btn-primary::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(115deg,transparent 30%,rgba(255,255,255,.35) 50%,transparent 70%);
  background-size:220% 100%; background-position:120% 0;
  transition:background-position .8s var(--ease-out);
}
.btn-primary:hover::after{ background-position:-20% 0; }

.btn-ghost{
  border:1.5px solid var(--purple-300,#C6A4EC);
  color:var(--purple-700);
  background:rgba(255,255,255,.5);
  backdrop-filter:blur(6px);
}
.btn-ghost:hover{ background:var(--white); border-color:var(--purple-600); transform:translateY(-3px); box-shadow:var(--shadow-md); }
.btn-ghost .icon-arrow{ transition:transform .35s var(--ease-out); }
.btn-ghost:hover .icon-arrow{ transform:translateX(4px); }

.btn-lg{ padding:18px 34px; font-size:1rem; }
.btn-sm{ padding:11px 20px; font-size:.85rem; }

.link-arrow{
  display:inline-flex; align-items:center; gap:8px;
  font-weight:700; color:var(--purple-700);
  padding-bottom:3px; border-bottom:1.5px solid var(--purple-300,#C6A4EC);
  transition:gap .35s var(--ease-out), color .3s;
}
.link-arrow:hover{ gap:14px; color:var(--purple-600); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:1000;
  transition:background .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header::before{
  content:""; position:absolute; top:0; left:0; right:0; height:3px;
  background:var(--grad-gold-purple); background-size:200% 100%;
  animation:barShimmer 7s linear infinite;
  z-index:1;
}
@keyframes barShimmer{ to{ background-position:-200% 0; } }
.site-header.scrolled{
  background:rgba(255,253,251,.86);
  backdrop-filter:blur(14px) saturate(160%);
  box-shadow:0 8px 30px rgba(43,18,70,.08);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between; gap:24px;
  padding-block:20px;
  transition:padding .4s var(--ease);
}
.site-header.scrolled .header-inner{ padding-block:12px; }

.brand{ display:flex; align-items:center; gap:10px; flex:none; }
.brand-mark{ width:36px; height:36px; color:var(--purple-600); transition:transform .6s var(--ease-out); }
.site-header.scrolled .brand-mark{ color:var(--purple-700); }
.brand:hover .brand-mark{ transform:rotate(90deg) scale(1.1); }
.brand-word{
  font-family:var(--font-display); font-size:1.4rem; font-weight:600;
  color:var(--purple-950);
}
.brand-word em{ font-style:italic; font-weight:400; color:var(--gold-deep); }

.main-nav{ display:flex; align-items:center; gap:36px; }
.nav-link{
  position:relative; font-weight:600; font-size:.92rem; color:var(--ink);
  padding-block:4px;
}
.nav-link::after{
  content:""; position:absolute; left:0; bottom:0; height:2px; width:0;
  background:var(--grad-primary); transition:width .35s var(--ease-out);
}
.nav-link:hover::after{ width:100%; }
.nav-link:hover{ color:var(--purple-700); }

.header-cta{ display:flex; align-items:center; gap:18px; flex:none; }
.phone-chip{
  display:flex; align-items:center; gap:8px;
  font-weight:700; font-size:.88rem; color:var(--purple-700);
}
.phone-chip .icon-sm path{ fill:none; stroke:currentColor; }
.phone-chip .icon-sm{ color:var(--gold); }

.nav-toggle{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:40px; height:40px; flex:none;
}
.nav-toggle span{ display:block; height:2px; width:100%; background:var(--purple-800); border-radius:2px; transition:transform .35s var(--ease), opacity .3s; }
.nav-toggle.active span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2){ opacity:0; }
.nav-toggle.active span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position:relative;
  min-height:100svh;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  padding-top:var(--header-h);
  overflow:hidden;
  isolation:isolate;
}
.hero-media{ position:absolute; inset:0; z-index:-2; }
.hero-img{ width:100%; height:100%; object-fit:cover; transform:scale(1.08); animation:heroZoom 22s var(--ease) infinite alternate; }
@keyframes heroZoom{ from{ transform:scale(1.08); } to{ transform:scale(1); } }
.hero-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(30,14,51,.55) 0%, rgba(43,18,70,.72) 55%, rgba(30,14,51,.92) 100%),
    linear-gradient(100deg, rgba(84,39,140,.55), rgba(148,87,214,.25));
}
.hero-mesh{
  position:absolute; inset:0;
  background:radial-gradient(circle at 85% 15%, rgba(217,178,95,.25), transparent 45%);
  mix-blend-mode:screen;
}

.hero-orbs{ position:absolute; inset:0; z-index:-1; overflow:hidden; }
.orb{
  position:absolute; border-radius:50%;
  filter:blur(50px); opacity:.55;
  animation:float 14s ease-in-out infinite;
}
.orb-1{ width:340px; height:340px; background:var(--purple-500); top:-80px; left:-100px; animation-duration:16s; }
.orb-2{ width:260px; height:260px; background:var(--gold-soft); bottom:5%; right:-60px; animation-duration:20s; animation-delay:-4s; }
.orb-3{ width:180px; height:180px; background:var(--lilac-200); top:40%; right:18%; animation-duration:12s; animation-delay:-8s; opacity:.35; }
@keyframes float{
  0%,100%{ transform:translate(0,0) scale(1); }
  33%{ transform:translate(24px,-30px) scale(1.08); }
  66%{ transform:translate(-18px,20px) scale(.96); }
}

.hero-inner{ position:relative; z-index:2; text-align:center; padding-block:60px 40px; }
.hero-inner .eyebrow{ color:var(--gold-soft); justify-content:center; }
.hero-inner .eyebrow .icon-sm path{ fill:var(--gold); stroke:none; }

.hero-title{
  color:var(--white);
  font-size:clamp(2.6rem, 6.4vw, 5rem);
  line-height:1.08;
  max-width:16ch; margin-inline:auto;
  text-wrap:balance;
}
.hero-sub{
  color:var(--lilac-100);
  font-size:clamp(1.02rem,1.6vw,1.2rem);
  max-width:560px; margin:26px auto 0;
}
.hero-actions{ display:flex; align-items:center; justify-content:center; gap:16px; margin-top:38px; flex-wrap:wrap; }
.hero .btn-ghost{ color:var(--white); border-color:rgba(255,255,255,.4); background:rgba(255,255,255,.08); }
.hero .btn-ghost:hover{ background:rgba(255,255,255,.16); border-color:var(--white); }

.hero-trust{
  display:flex; align-items:center; justify-content:center; gap:28px;
  margin-top:52px; flex-wrap:wrap;
}
.trust-item{
  display:flex; align-items:center; gap:8px;
  font-size:.85rem; font-weight:600; color:var(--lilac-100);
}
.trust-item .icon-sm{ color:var(--gold); }

.scroll-cue{
  position:absolute; bottom:28px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:10px;
  z-index:2; color:var(--lilac-100); font-size:.72rem; letter-spacing:.12em; text-transform:uppercase;
  font-weight:700;
}
.scroll-cue-line{ width:1px; height:34px; background:linear-gradient(var(--gold),transparent); position:relative; overflow:hidden; }
.scroll-cue-line::after{
  content:""; position:absolute; top:-100%; left:0; width:100%; height:100%;
  background:var(--white); animation:scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine{ to{ top:100%; } }

/* Marquee — ticker bar between Hero and Services, infinite seamless loop */
.marquee{
  position:relative; z-index:5;
  background:var(--purple-950); color:var(--lilac-100);
  padding-block:14px; overflow:hidden; white-space:nowrap;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.marquee-track{
  display:inline-flex; width:max-content; gap:16px; align-items:center;
  animation:marquee 46s linear infinite;
  will-change:transform;
  font-size:.85rem; font-weight:700; letter-spacing:.05em; text-transform:uppercase;
}
.marquee:hover .marquee-track{ animation-play-state:paused; }
.marquee-track .dot{ color:var(--gold); font-size:.7rem; flex:none; }
.marquee-track span:not(.dot){ flex:none; }
@keyframes marquee{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

/* ==========================================================================
   Services
   ========================================================================== */
.services{ padding-block:120px 90px; background:var(--lilac-25); position:relative; }
.services-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:24px;
  margin-bottom:70px;
}
.service-card{
  background:var(--white);
  border:1px solid var(--lilac-100);
  border-radius:22px;
  padding:34px 30px;
  transition:transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .5s;
  position:relative; overflow:hidden;
}
.service-card::before{
  content:""; position:absolute; inset:0; opacity:0;
  background:linear-gradient(160deg, var(--lilac-50), transparent 60%);
  transition:opacity .5s;
}
.service-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-lg); border-color:var(--gold); }
.service-card:hover::before{ opacity:1; }
.service-icon{
  display:flex; align-items:center; justify-content:center;
  width:56px; height:56px; border-radius:16px;
  background:var(--grad-primary); color:var(--white);
  margin-bottom:22px; position:relative; z-index:1;
  box-shadow:var(--shadow-purple);
  transition:transform .5s var(--ease-out);
}
.service-icon svg{ width:26px; height:26px; }
.service-icon path, .service-icon circle{ fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.service-card:hover .service-icon{ transform:rotate(-8deg) scale(1.08); }
.service-card h3{ font-size:1.3rem; margin-bottom:10px; position:relative; z-index:1; }
.service-card p{ color:var(--ink-soft); font-size:.95rem; position:relative; z-index:1; }

.services-feature{
  display:grid; grid-template-columns:1.1fr 1fr; gap:60px; align-items:center;
  background:var(--purple-950);
  border-radius:32px;
  padding:60px;
  position:relative; overflow:hidden;
}
.services-feature::before{
  content:""; position:absolute; inset:0;
  background:radial-gradient(circle at 90% 100%, rgba(148,87,214,.35), transparent 60%);
}
.services-feature-media{ position:relative; border-radius:20px; overflow:hidden; aspect-ratio:4/3; box-shadow:var(--shadow-lg); }
.services-feature-media img{ width:100%; height:100%; object-fit:cover; transition:transform .8s var(--ease-out); }
.services-feature-media:hover img{ transform:scale(1.06); }
.feature-badge{
  position:absolute; bottom:16px; left:16px;
  display:flex; align-items:center; gap:8px;
  background:rgba(255,253,251,.92); backdrop-filter:blur(6px);
  color:var(--purple-700); font-weight:700; font-size:.8rem;
  padding:10px 16px; border-radius:100px;
}
.feature-badge svg{ width:16px; height:16px; color:var(--gold); }
.services-feature-text{ position:relative; z-index:1; }
.services-feature-text h3{ color:var(--white); font-size:clamp(1.6rem,3vw,2.1rem); margin-bottom:16px; }
.services-feature-text p{ color:var(--lilac-100); margin-bottom:26px; max-width:44ch; }
.services-feature .link-arrow{ color:var(--gold-soft); border-color:rgba(217,178,95,.4); }
.services-feature .link-arrow:hover{ color:var(--gold); }

/* ==========================================================================
   About
   ========================================================================== */
.about{ padding-block:110px; background:var(--lilac-50); position:relative; overflow:hidden; }
.about-grid{ display:grid; grid-template-columns:.85fr 1.15fr; gap:80px; align-items:center; }

.about-media{ position:relative; }
.about-media-frame{
  border-radius:28px; overflow:hidden; aspect-ratio:4/5;
  box-shadow:var(--shadow-lg);
  position:relative;
}
.about-media-frame img{ width:100%; height:100%; object-fit:cover; transition:transform .8s var(--ease-out); }
.about-media:hover .about-media-frame img{ transform:scale(1.05); }
.about-media-frame--logo{
  background:radial-gradient(120% 120% at 50% 15%,var(--purple-600),var(--purple-800) 60%,var(--purple-950));
  display:flex; align-items:center; justify-content:center;
  padding:12%;
}
.about-media-frame--logo img{ width:100%; height:100%; object-fit:contain; filter:drop-shadow(0 12px 30px rgba(0,0,0,.35)); }
.about-media-ring{
  position:absolute; width:120%; height:120%; top:-10%; left:-10%; z-index:-1;
  border:2px dashed var(--purple-300,#C6A4EC); border-radius:40%;
  animation:spin 60s linear infinite;
  opacity:.5;
}
.about-quote-card{
  position:absolute; bottom:-30px; right:-30px;
  background:var(--white); border-radius:20px; box-shadow:var(--shadow-lg);
  padding:22px 26px; max-width:230px;
  display:flex; flex-direction:column; gap:10px;
}
.about-quote-card svg{ width:24px; height:24px; color:var(--gold); }
.about-quote-card p{ font-family:var(--font-display); font-style:italic; color:var(--purple-800); font-size:1.05rem; line-height:1.4; }

.about-text p{ color:var(--ink-soft); margin-bottom:16px; max-width:56ch; }
.about-values{ display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-top:34px; }
.value-item{ display:flex; align-items:flex-start; gap:12px; }
.value-item svg{ width:22px; height:22px; color:var(--purple-600); flex:none; margin-top:2px; }
.value-item svg circle{ fill:none; stroke:currentColor; stroke-width:1.8; }
.value-item svg path{ stroke-width:1.8; }
.value-item svg:has(circle) path{ fill:none; stroke:currentColor; stroke-linecap:round; stroke-linejoin:round; }
.value-item strong{ display:block; font-size:.95rem; color:var(--purple-950); }
.value-item span{ font-size:.85rem; color:var(--ink-soft); }

.about-meter{
  margin-top:44px; padding-top:36px; border-top:1px solid var(--lilac-200);
  display:flex; align-items:center; gap:24px;
}
.meter-ring{ position:relative; width:88px; height:88px; flex:none; }
.meter-svg{ width:100%; height:100%; transform:rotate(-90deg); }
.meter-track{ fill:none; stroke:var(--lilac-200); stroke-width:8; }
.meter-fill{
  fill:none; stroke:var(--purple-600); stroke-width:8; stroke-linecap:round;
  stroke-dasharray:326.7; stroke-dashoffset:326.7;
  transition:stroke-dashoffset 1.6s var(--ease-out);
}
.meter-ring.in-view .meter-fill{ stroke-dashoffset:0; }
.meter-value{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-weight:800; color:var(--purple-800); font-size:1.05rem; }
.about-meter p{ color:var(--ink-soft); font-size:.9rem; max-width:26ch; margin:0; }

/* ==========================================================================
   Before / After
   ========================================================================== */
.before-after{ padding-block:120px; background:var(--lilac-25); }
.ba-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.ba-card h3{ margin-top:18px; font-size:1.15rem; text-align:center; }

/* Draggable overlay comparison — both photos fill the card identically
   (object-fit:cover) and the "before" layer is revealed via clip-path,
   so proportions stay consistent and the divider glides without any
   image resizing/distortion. */
.ba-compare{
  --ba-pos:50%;
  position:relative;
  height:280px; border-radius:24px; overflow:hidden;
  box-shadow:var(--shadow-md); border:1px solid var(--lilac-100);
  background:var(--purple-950);
  cursor:ew-resize;
  touch-action:pan-y;
  -webkit-user-select:none; user-select:none;
}
.ba-compare-tall{ height:360px; }

.ba-img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover; object-position:center;
  pointer-events:none;
}
.ba-img-after{ z-index:1; }
.ba-img-before{
  z-index:2;
  filter:saturate(.92) brightness(.97);
  clip-path:inset(0 calc(100% - var(--ba-pos)) 0 0);
}
.ba-compare:not(.is-dragging) .ba-img-before{ transition:clip-path .5s var(--ease-out); }
.ba-compare:not(.is-dragging) .ba-handle{ transition:left .5s var(--ease-out); }

.ba-tag{
  position:absolute; top:12px; z-index:4; padding:6px 14px; border-radius:100px;
  font-size:.68rem; font-weight:800; letter-spacing:.08em; text-transform:uppercase;
  backdrop-filter:blur(6px);
}
.ba-tag-before{ left:12px; background:rgba(30,14,51,.72); color:var(--lilac-100); }
.ba-tag-after{ right:12px; background:linear-gradient(120deg,var(--gold),var(--gold-soft)); color:var(--purple-950); }

/* Drag handle: a full-height divider line with a circular grip, positioned
   at the current split via the same --ba-pos custom property. */
.ba-handle{
  position:absolute; top:0; bottom:0; left:var(--ba-pos);
  transform:translateX(-50%);
  width:48px; z-index:5;
  display:flex; align-items:center; justify-content:center;
  background:none; border:none; padding:0; margin:0;
  cursor:ew-resize; touch-action:none;
}
.ba-handle::before{
  content:""; position:absolute; top:0; bottom:0; left:50%;
  width:3px; transform:translateX(-50%);
  background:linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.55));
  box-shadow:0 0 0 1px rgba(30,14,51,.2);
}
.ba-handle-grip{
  position:relative; z-index:1;
  width:40px; height:40px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; gap:1px;
  background:var(--white);
  color:var(--purple-700);
  box-shadow:0 6px 18px rgba(30,14,51,.3), 0 0 0 3px rgba(255,255,255,.45);
  transition:transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.ba-handle:hover .ba-handle-grip{ transform:scale(1.08); }
.ba-handle:active .ba-handle-grip{ transform:scale(.94); }
.ba-handle:focus-visible{ outline:none; }
.ba-handle:focus-visible .ba-handle-grip{ box-shadow:0 6px 18px rgba(30,14,51,.3), 0 0 0 3px var(--gold); }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact{
  position:relative; overflow:hidden;
  background:var(--grad-radiant);
  padding-block:130px;
  text-align:center;
}
.contact-orbs{ position:absolute; inset:0; z-index:0; }
.contact .orb-4{ width:300px; height:300px; background:var(--gold-soft); opacity:.2; top:-60px; left:8%; }
.contact .orb-5{ width:240px; height:240px; background:var(--lilac-300); opacity:.25; bottom:-40px; right:10%; }

.contact-inner{ position:relative; z-index:1; max-width:680px; }
.contact-title{ color:var(--white); font-size:clamp(2.1rem,4.6vw,3.2rem); margin-bottom:20px; }
.contact-title .script{ background:linear-gradient(120deg, var(--lilac-100) 10%, var(--gold-soft) 60%, var(--gold) 100%); -webkit-background-clip:text; background-clip:text; }
.contact-sub{ color:var(--lilac-100); font-size:1.05rem; margin-bottom:42px; }

.contact-actions{ display:flex; align-items:center; justify-content:center; gap:18px; flex-wrap:wrap; margin-bottom:64px; }
.contact-phone-btn{
  display:flex; align-items:center; gap:14px;
  background:rgba(255,255,255,.1); border:1.5px solid rgba(255,255,255,.3);
  backdrop-filter:blur(8px);
  padding:14px 26px; border-radius:100px;
  color:var(--white); transition:all .4s var(--ease-out);
}
.contact-phone-btn:hover{ background:rgba(255,255,255,.18); transform:translateY(-3px); }
.contact-phone-btn svg{ width:22px; height:22px; color:var(--gold); }
.contact-phone-btn svg path{ fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.contact-phone-btn span{ display:flex; flex-direction:column; align-items:flex-start; font-weight:700; font-size:1.05rem; }
.contact-phone-btn small{ font-weight:600; font-size:.7rem; text-transform:uppercase; letter-spacing:.08em; color:var(--lilac-200); }

.contact-info-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.contact-info-card{
  background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.14);
  border-radius:20px; padding:28px 20px;
  backdrop-filter:blur(8px);
  transition:transform .4s var(--ease-out), background .4s;
}
.contact-info-card:hover{ transform:translateY(-6px); background:rgba(255,255,255,.12); }
.contact-info-card svg{ width:26px; height:26px; color:var(--gold); margin-bottom:14px; }
.contact-info-card svg path, .contact-info-card svg circle{ fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.contact-info-card h4{ color:var(--white); font-size:1rem; margin-bottom:8px; }
.contact-info-card p{ color:var(--lilac-200); font-size:.88rem; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{ background:var(--purple-950); color:var(--lilac-100); position:relative; }
.site-footer::before{
  content:""; position:absolute; top:0; left:0; right:0; height:3px;
  background:var(--grad-gold-purple); background-size:200% 100%;
  animation:barShimmer 7s linear infinite;
}
.footer-inner{
  display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:50px;
  padding-block:70px 50px;
}
.footer-brand p{ margin-top:16px; color:var(--lilac-200); font-size:.92rem; max-width:32ch; }
.footer-brand .brand-mark{ color:var(--gold); }
.footer-brand .brand-word{ color:var(--white); }
.footer-brand .brand-word em{ color:var(--gold-soft); }

.footer-nav, .footer-contact{ display:flex; flex-direction:column; gap:14px; }
.footer-nav-title{ font-weight:700; color:var(--white); font-size:.82rem; text-transform:uppercase; letter-spacing:.1em; margin-bottom:6px; }
.footer-nav a, .footer-contact-link{ color:var(--lilac-200); font-size:.92rem; transition:color .3s, transform .3s; width:fit-content; }
.footer-nav a:hover, .footer-contact-link:hover{ color:var(--gold-soft); transform:translateX(4px); }
.footer-contact-link{ display:flex; align-items:center; gap:10px; }
.footer-contact-link .icon-sm{ color:var(--gold); }
.footer-contact-link .icon-sm path{ fill:none; stroke:currentColor; }

.footer-bottom{ border-top:1px solid rgba(255,255,255,.1); }
.footer-bottom-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding-block:22px; font-size:.82rem; color:var(--lilac-300);
  flex-wrap:wrap; gap:10px;
}
.footer-signature{ color:var(--gold-soft); }

/* ==========================================================================
   Floating SMS button
   ========================================================================== */
.fab-sms{
  position:fixed; bottom:26px; right:26px; z-index:900;
  width:60px; height:60px; border-radius:50%;
  background:var(--grad-primary); color:var(--white);
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-purple);
  animation:fabPulse 2.8s ease-in-out infinite;
}
.fab-sms svg{ width:28px; height:28px; }
.fab-sms:hover{ transform:scale(1.08); }
@keyframes fabPulse{
  0%,100%{ box-shadow:0 0 0 0 rgba(217,178,95,.55), var(--shadow-purple); }
  50%{ box-shadow:0 0 0 14px rgba(217,178,95,0), var(--shadow-purple); }
}

/* ==========================================================================
   Social icons
   ========================================================================== */
.icon-social path{ fill:currentColor; stroke:none; }

.contact-social{
  display:flex; align-items:center; justify-content:center; gap:16px;
  margin-top:44px;
}
.contact-social-label{
  font-size:.82rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
  color:var(--gold-soft); margin-right:6px;
}
.social-icon{
  display:flex; align-items:center; justify-content:center;
  width:46px; height:46px; border-radius:50%;
  background:rgba(255,255,255,.1); border:1.5px solid rgba(255,255,255,.3);
  color:var(--white); backdrop-filter:blur(8px);
  transition:all .35s var(--ease-out);
}
.social-icon svg{ width:20px; height:20px; }
.social-icon:hover{ background:var(--gold); border-color:var(--gold); color:var(--purple-950); transform:translateY(-3px); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width:1080px){
  .services-grid{ grid-template-columns:repeat(2,1fr); }
  .services-feature{ grid-template-columns:1fr; padding:44px; }
  .about-grid{ grid-template-columns:1fr; gap:60px; }
  .about-media{ max-width:420px; margin-inline:auto; }
  .ba-grid{ grid-template-columns:repeat(2,1fr); gap:18px; }
}

@media (max-width:900px){
  .main-nav{ display:none; }
  .header-cta{ display:none; }
  .nav-toggle{ display:flex; }

  .main-nav.open{
    display:flex; flex-direction:column; align-items:flex-start; gap:4px;
    position:absolute; top:100%; left:0; right:0;
    background:var(--white); padding:20px 28px 28px;
    box-shadow:var(--shadow-lg);
    border-radius:0 0 24px 24px;
  }
  .main-nav.open .nav-link{ padding-block:12px; width:100%; border-bottom:1px solid var(--lilac-100); }

  .contact-info-grid{ grid-template-columns:1fr; }
  .footer-inner{ grid-template-columns:1fr; gap:40px; }
}

@media (max-width:640px){
  .container{ padding-inline:20px; }
  .services{ padding-block:90px 60px; }
  .about{ padding-block:80px; }
  .before-after{ padding-block:90px; }
  .contact{ padding-block:90px; }
  .services-grid{ grid-template-columns:1fr; }
  .services-feature{ padding:30px; border-radius:24px; }
  .about-values{ grid-template-columns:1fr; }
  .about-quote-card{ position:static; margin-top:20px; max-width:none; }
  .hero-actions{ flex-direction:column; width:100%; }
  .hero-actions .btn{ width:100%; }
  .fab-sms{ width:52px; height:52px; bottom:18px; right:18px; }
  .contact-social{ flex-wrap:wrap; }
  .about-media-ring{ display:none; }

  /* Compact header + hero rhythm so the CTA sits within the first screen on phones */
  .header-inner{ padding-block:14px; }
  .site-header.scrolled .header-inner{ padding-block:10px; }
  .brand-mark{ width:30px; height:30px; }
  .brand-word{ font-size:1.2rem; }
  .marquee{ padding-block:8px; }
  .marquee-track{ font-size:.7rem; gap:10px; }

  .hero-title{ font-size:clamp(2.1rem, 8.6vw, 3rem); max-width:14ch; }
  .hero-inner{ padding-block:28px 24px; }
  .eyebrow{ margin-bottom:10px; }
  .hero-sub{ margin-top:16px; font-size:.95rem; }
  .hero-actions{ margin-top:22px; gap:12px; }
  .hero-trust{ margin-top:26px; gap:14px 22px; }
  .btn-lg{ padding:15px 28px; }
  .scroll-cue{ display:none; }

  .ba-grid{ grid-template-columns:1fr; max-width:420px; margin-inline:auto; gap:22px; }
  .ba-compare{ height:230px; }
  .ba-compare-tall{ height:320px; }
}

@media (max-height:720px) and (max-width:640px){
  .hero-title{ font-size:clamp(1.9rem, 8vw, 2.8rem); }
  .hero-sub{ margin-top:12px; }
  .hero-actions{ margin-top:18px; }
  .hero-trust{ margin-top:18px; }
  .trust-item{ font-size:.78rem; }
  .hero-inner{ padding-block:16px; }
  .header-inner{ padding-block:10px; }
  .marquee{ padding-block:6px; }
  .eyebrow{ margin-bottom:8px; }
}

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