/* =========================================================
   NEXSTAR CLEANING — Design tokens & site styles
   Palette: deep navy night sky + gold star accent (from logo)
   Display: Bricolage Grotesque | Body: Inter | Mono: IBM Plex Mono
   ========================================================= */

:root{
  /* colour */
  --navy-deep:   #060a24;
  --navy:        #0d1140;
  --navy-mid:    #151a55;
  --navy-light:  #232b7e;
  --blue-glow:   #3b4bc4;
  --gold:        #f0b429;
  --gold-light:  #ffdd7a;
  --gold-deep:   #b9820f;
  --cream:       #f8f4e9;
  --white:       #ffffff;
  --ink:         #cfd3f2;
  --ink-dim:     #9aa0cc;
  --line:        rgba(240,180,41,0.18);

  /* type */
  --f-display: "Bricolage Grotesque", "Segoe UI", sans-serif;
  --f-body: "Inter", "Segoe UI", sans-serif;
  --f-mono: "IBM Plex Mono", monospace;

  /* layout */
  --maxw: 1220px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-gold: 0 10px 30px -8px rgba(240,180,41,0.35);
  --shadow-navy: 0 20px 50px -20px rgba(6,10,36,0.6);
  --ease: cubic-bezier(.22,.9,.32,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--f-body);
  background:var(--navy-deep);
  color:var(--ink);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{
  font-family:var(--f-display);
  color:var(--white);
  margin:0 0 .5em;
  line-height:1.12;
  letter-spacing:-0.02em;
}
p{ margin:0 0 1em; }
.container{ max-width:var(--maxw); margin:0 auto; padding:0 24px; }
section{ position:relative; padding:96px 0; }
@media(max-width:780px){ section{ padding:64px 0; } }

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

:focus-visible{
  outline:2px solid var(--gold-light);
  outline-offset:3px;
  border-radius:4px;
}

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

/* ---------- utility ---------- */
.eyebrow{
  font-family:var(--f-mono);
  font-size:12.5px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--gold);
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:14px;
}
.eyebrow::before{
  content:"";
  width:7px;height:7px;
  background:var(--gold);
  clip-path:polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}
.section-head{ max-width:680px; margin-bottom:56px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head p{ color:var(--ink-dim); font-size:17px; }
.text-gold{ color:var(--gold); }
.bg-cream{ background:var(--cream); color:#241d0a; }
.bg-cream h1,.bg-cream h2,.bg-cream h3,.bg-cream h4{ color:#1c1608; }
.bg-cream .ink{ color:#5b532f; }

.btn{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--f-body); font-weight:700; font-size:15px;
  padding:15px 28px; border-radius:999px; border:1px solid transparent;
  cursor:pointer; transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s;
  white-space:nowrap;
}
.btn-gold{ background:var(--gold); color:var(--navy-deep); box-shadow:var(--shadow-gold); }
.btn-gold:hover{ transform:translateY(-3px); box-shadow:0 16px 34px -10px rgba(240,180,41,.55); background:var(--gold-light); }
.btn-outline{ background:transparent; color:var(--white); border-color:rgba(255,255,255,.28); }
.btn-outline:hover{ border-color:var(--gold); color:var(--gold); transform:translateY(-3px); }
.btn-outline.dark{ color:#1c1608; border-color:rgba(28,22,8,.3); }
.btn-outline.dark:hover{ border-color:var(--gold-deep); color:var(--gold-deep); }
.btn-sm{ padding:10px 20px; font-size:13.5px; }

/* ---------- reveal animation ---------- */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in{ opacity:1; transform:translateY(0); }
.reveal-stagger > *{ opacity:0; transform:translateY(22px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-stagger.in > *{ opacity:1; transform:translateY(0); }
.reveal-stagger.in > *:nth-child(1){ transition-delay:.05s; }
.reveal-stagger.in > *:nth-child(2){ transition-delay:.14s; }
.reveal-stagger.in > *:nth-child(3){ transition-delay:.23s; }
.reveal-stagger.in > *:nth-child(4){ transition-delay:.32s; }
.reveal-stagger.in > *:nth-child(5){ transition-delay:.41s; }
.reveal-stagger.in > *:nth-child(6){ transition-delay:.5s; }

/* ---------- starfield background (signature motif) ---------- */
.starfield{ position:absolute; inset:0; overflow:hidden; pointer-events:none; z-index:0; }
.starfield span{
  position:absolute; background:var(--gold-light); border-radius:50%;
  opacity:.55; animation:twinkle 4.5s ease-in-out infinite;
}
@keyframes twinkle{ 0%,100%{ opacity:.15; transform:scale(.7);} 50%{ opacity:.9; transform:scale(1);} }
.comet-arc{
  position:absolute; border:1.5px dashed var(--line); border-radius:50%;
  pointer-events:none;
}

/* =========================================================
   HEADER
   ========================================================= */
.topbar{
  background:var(--navy-deep);
  border-bottom:1px solid rgba(255,255,255,.06);
  font-family:var(--f-mono); font-size:12.5px; color:var(--ink-dim);
}
.topbar .container{ display:flex; justify-content:space-between; align-items:center; padding:8px 24px; flex-wrap:wrap; gap:6px; }
.topbar a{ color:var(--ink-dim); transition:color .25s; }
.topbar a:hover{ color:var(--gold); }
.topbar-links{ display:flex; gap:22px; }
.topbar-social{ display:flex; gap:14px; }

.site-header{
  position:sticky; top:0; z-index:100;
  border-bottom:1px solid rgba(255,255,255,.06);
  transition:box-shadow .3s;
}
.site-header::before{
  content:""; position:absolute; inset:0; z-index:-1;
  background:rgba(6,10,36,.86);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}
.site-header.scrolled{ box-shadow:0 12px 30px -14px rgba(0,0,0,.6); }
.nav-wrap{ display:flex; align-items:center; justify-content:space-between; padding:14px 24px; gap:20px; }
.brand{ display:flex; align-items:center; gap:12px; }
.brand-mark{
  width:52px;height:52px; border-radius:50%; overflow:hidden;
  border:2px solid var(--gold); box-shadow:0 0 0 4px rgba(240,180,41,.12);
  flex-shrink:0;
}
.brand-mark img{ width:100%;height:100%;object-fit:cover; transform:scale(1.35); }
.brand-word{ font-family:var(--f-display); font-size:22px; font-weight:800; color:var(--white); letter-spacing:-.01em; line-height:1; }
.brand-word span{ color:var(--gold); }
.brand-tag{ font-family:var(--f-mono); font-size:10px; letter-spacing:.1em; color:var(--ink-dim); text-transform:uppercase; }

.main-nav{ display:flex; align-items:center; gap:2px; }
.main-nav > ul{ display:flex; align-items:center; gap:4px; }
.main-nav > ul > li{ position:relative; }
.main-nav > ul > li > a{
  display:block; padding:12px 16px; font-size:14.5px; font-weight:600; color:var(--ink);
  border-radius:999px; transition:color .25s, background .25s;
}
.main-nav > ul > li > a:hover, .main-nav > ul > li.active > a{ color:var(--gold); background:rgba(240,180,41,.08); }
.main-nav > ul > li.has-dropdown > a{ display:inline-flex; align-items:center; }
.main-nav > ul > li.has-dropdown > a::after{
  content:""; display:inline-block; width:7px; height:7px; margin-left:7px; margin-top:-3px;
  border-right:1.5px solid currentColor; border-bottom:1.5px solid currentColor;
  transform:rotate(45deg); opacity:.65; transition:transform .25s var(--ease), opacity .25s;
  flex-shrink:0;
}
.main-nav > ul > li.has-dropdown:hover > a::after{ opacity:1; transform:rotate(225deg); margin-top:3px; }
.dropdown{
  position:absolute; top:100%; left:0; min-width:250px;
  background:var(--navy-mid); border:1px solid rgba(255,255,255,.08);
  border-radius:12px; padding:10px; box-shadow:var(--shadow-navy);
  opacity:0; visibility:hidden; transform:translateY(8px);
  transition:opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.has-dropdown:hover .dropdown{ opacity:1; visibility:visible; transform:translateY(4px); }
.dropdown li a{ display:block; padding:9px 12px; font-size:13.5px; border-radius:8px; color:var(--ink); }
.dropdown li a:hover{ background:rgba(240,180,41,.1); color:var(--gold); }

.nav-cta{ display:flex; align-items:center; gap:14px; }
.nav-phone{ display:flex; align-items:center; gap:8px; font-family:var(--f-mono); font-size:14px; color:var(--white); font-weight:600; }
.nav-phone svg{ width:16px;height:16px; color:var(--gold); }

.burger{ display:none; width:44px;height:44px; border-radius:10px; border:1px solid rgba(255,255,255,.15); background:none; cursor:pointer; position:relative; }
.burger span{ position:absolute; left:11px; right:11px; height:2px; background:var(--white); transition:transform .3s,opacity .3s; }
.burger span:nth-child(1){ top:15px; } .burger span:nth-child(2){ top:21px; } .burger span:nth-child(3){ top:27px; }
.burger.open span:nth-child(1){ transform:translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2){ opacity:0; }
.burger.open span:nth-child(3){ transform:translateY(-6px) rotate(-45deg); }

@media(max-width:980px){
  .main-nav{ position:absolute; top:100% !important; left:0; right:0; bottom:auto; height:100vh; z-index:99;
    background:var(--navy-deep); flex-direction:column; padding:20px; overflow-y:auto;
    transform:translateX(100%); transition:transform .4s var(--ease); }
  .main-nav.open{ transform:translateX(0); }
  .main-nav > ul{ flex-direction:column; align-items:stretch; width:100%; gap:2px; }
  .main-nav > ul > li > a{ padding:14px 10px; border-radius:8px; }
  .dropdown{ position:static; opacity:1; visibility:visible; transform:none; box-shadow:none; background:rgba(255,255,255,.03); display:none; margin:4px 0 8px; }
  .has-dropdown.open .dropdown{ display:block; }
  .has-dropdown.open > a::after{ transform:rotate(225deg); margin-top:3px; opacity:1; }
  .nav-phone{ display:none; }
  .burger{ display:block; }
  .topbar-links{ display:none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position:relative; overflow:hidden;
  background:radial-gradient(ellipse 900px 600px at 78% 20%, var(--navy-light), transparent 60%), linear-gradient(180deg,var(--navy-deep),var(--navy) 70%,var(--navy-deep));
  padding:90px 0 110px;
}
.hero-grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:50px; align-items:center; position:relative; z-index:2; }
@media(max-width:980px){ .hero-grid{ grid-template-columns:1fr; text-align:center; } .hero-badges{ justify-content:center !important; } }
.hero h1{ font-size:clamp(34px,5vw,58px); }
.hero-lead{ font-size:18px; color:var(--ink-dim); max-width:480px; }
@media(max-width:980px){ .hero-lead{ margin-left:auto; margin-right:auto; } }
.hero-cta{ display:flex; gap:14px; flex-wrap:wrap; margin-top:32px; }
@media(max-width:980px){ .hero-cta{ justify-content:center; } }
.hero-badges{ display:flex; gap:26px; margin-top:44px; flex-wrap:wrap; }
.hero-badge b{ display:block; font-family:var(--f-display); font-size:26px; color:var(--white); }
.hero-badge span{ font-size:12.5px; color:var(--ink-dim); font-family:var(--f-mono); text-transform:uppercase; letter-spacing:.06em; }

.hero-art{ position:relative; display:flex; align-items:center; justify-content:center; }
.hero-art-ring{
  position:relative; width:min(420px,90%); aspect-ratio:1/1; border-radius:50%;
  background:conic-gradient(from 180deg, rgba(240,180,41,.5), transparent 30%, rgba(240,180,41,.5) 70%, transparent);
  padding:6px; animation:spin 34s linear infinite;
}
@keyframes spin{ to{ transform:rotate(360deg); } }
.hero-art-inner{
  width:100%;height:100%; border-radius:50%; overflow:hidden;
  border:4px solid var(--navy-deep); background:var(--navy-mid);
}
.hero-art-inner img{ width:100%;height:100%; object-fit:cover; animation:counterspin 34s linear infinite; }
@keyframes counterspin{ to{ transform:rotate(-360deg); } }
.hero-star-badge{
  position:absolute; bottom:-6px; left:-6px;
  background:var(--gold); color:var(--navy-deep); font-family:var(--f-display); font-weight:800;
  border-radius:50%; width:110px;height:110px; display:flex; flex-direction:column; align-items:center; justify-content:center;
  box-shadow:var(--shadow-gold); text-align:center; line-height:1.1; font-size:13px;
  animation:float 5s ease-in-out infinite;
}
.hero-star-badge b{ font-size:24px; }
@keyframes float{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-10px);} }

.hero-strip{
  margin-top:70px; padding-top:34px; border-top:1px solid rgba(255,255,255,.08);
  display:flex; align-items:center; gap:34px; flex-wrap:wrap; justify-content:space-between; position:relative; z-index:2;
}
.hero-strip .label{ font-family:var(--f-mono); font-size:11.5px; letter-spacing:.14em; text-transform:uppercase; color:var(--ink-dim); }
.hero-strip-logos{ display:flex; gap:34px; flex-wrap:wrap; align-items:center; opacity:.75; font-family:var(--f-mono); font-size:13px; }

/* =========================================================
   QUOTE FORM CARD (used in hero / contact)
   ========================================================= */
.quote-card{
  background:var(--cream); color:#241d0a; border-radius:var(--radius); padding:30px;
  box-shadow:var(--shadow-navy); position:relative; z-index:2;
}
.quote-card h3{ color:#1c1608; font-size:20px; }
.quote-card p{ color:#5b532f; font-size:14px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:12px; }
@media(max-width:520px){ .form-row{ grid-template-columns:1fr; } }
.field{ display:flex; flex-direction:column; gap:6px; margin-bottom:12px; }
.field label{ font-size:12.5px; font-weight:700; color:#4a4322; }
.field input, .field select, .field textarea{
  border:1.5px solid #e3dcc4; background:#fffdf7; border-radius:8px; padding:12px 13px;
  font-family:var(--f-body); font-size:14.5px; color:#241d0a; transition:border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus{ border-color:var(--gold-deep); box-shadow:0 0 0 3px rgba(240,180,41,.22); outline:none; }
.field textarea{ resize:vertical; min-height:90px; }
.quote-card .btn-gold{ width:100%; justify-content:center; margin-top:6px; }
.form-note{ font-size:12px; color:#83794a; margin-top:10px; text-align:center; }
.form-success{ background:#eafaf0; border:1px solid #b9e6c8; color:#1e6b3f; padding:14px 16px; border-radius:10px; font-size:14px; margin-bottom:16px; }

/* =========================================================
   TRUST / STATS STRIP
   ========================================================= */
.stats-strip{ background:var(--navy); padding:0; }
.stats-grid{ display:grid; grid-template-columns:repeat(4,1fr); }
@media(max-width:780px){ .stats-grid{ grid-template-columns:repeat(2,1fr); } }
.stat-cell{ padding:44px 20px; text-align:center; border-right:1px solid rgba(255,255,255,.07); }
.stat-cell:last-child{ border-right:none; }
.stat-cell b{ display:block; font-family:var(--f-display); font-size:clamp(28px,3.4vw,42px); color:var(--gold); }
.stat-cell span{ font-size:13px; color:var(--ink-dim); text-transform:uppercase; letter-spacing:.06em; font-family:var(--f-mono); }

/* =========================================================
   FEATURE / WHY-US CARDS
   ========================================================= */
.feature-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
@media(max-width:980px){ .feature-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:560px){ .feature-grid{ grid-template-columns:1fr; } }
.feature-card{
  background:linear-gradient(160deg,var(--navy-mid),var(--navy));
  border:1px solid rgba(255,255,255,.07); border-radius:var(--radius); padding:28px 24px;
  transition:transform .35s var(--ease), border-color .35s;
}
.feature-card:hover{ transform:translateY(-6px); border-color:var(--gold); }
.feature-card .ico{ width:46px;height:46px; border-radius:12px; background:rgba(240,180,41,.12); display:flex; align-items:center; justify-content:center; margin-bottom:16px; color:var(--gold); }
.feature-card h4{ font-size:17px; margin-bottom:8px; }
.feature-card p{ font-size:14px; color:var(--ink-dim); margin:0; }

/* =========================================================
   SERVICES GRID
   ========================================================= */
.service-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
@media(max-width:980px){ .service-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:640px){ .service-grid{ grid-template-columns:1fr; } }
.service-card{
  background:var(--navy-mid); border:1px solid rgba(255,255,255,.07); border-radius:var(--radius);
  padding:26px; position:relative; overflow:hidden; transition:transform .4s var(--ease), border-color .4s;
}
.service-card:hover{ transform:translateY(-8px); border-color:var(--gold); }
.service-card .num{ font-family:var(--f-mono); font-size:12px; color:var(--gold); letter-spacing:.1em; }
.service-card h3{ font-size:19px; margin:12px 0 10px; }
.service-card p{ font-size:14px; color:var(--ink-dim); margin-bottom:16px; }
.service-card a.more{ font-size:13.5px; font-weight:700; color:var(--gold); display:inline-flex; align-items:center; gap:6px; }
.service-card a.more:hover{ gap:10px; }
.service-card .ico-badge{
  position:absolute; top:22px; right:22px; width:40px;height:40px; border-radius:50%;
  background:rgba(240,180,41,.1); display:flex; align-items:center; justify-content:center; color:var(--gold);
}

/* =========================================================
   PROCESS STEPS
   ========================================================= */
.process-wrap{ position:relative; }
.process-steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; position:relative; }
@media(max-width:980px){ .process-steps{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:560px){ .process-steps{ grid-template-columns:1fr; } }
.process-step{ text-align:left; padding:28px 22px; background:var(--navy-mid); border-radius:var(--radius); border:1px solid rgba(255,255,255,.06); }
.process-step .n{ font-family:var(--f-display); font-size:34px; color:var(--gold); opacity:.55; }
.process-step h4{ font-size:16.5px; margin:8px 0 6px; }
.process-step p{ font-size:13.5px; color:var(--ink-dim); margin:0; }

/* =========================================================
   BEFORE / AFTER
   ========================================================= */
.ba-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:22px; }
@media(max-width:780px){ .ba-grid{ grid-template-columns:1fr; } }
.ba-card{ border-radius:var(--radius); overflow:hidden; border:1px solid rgba(255,255,255,.08); }
.ba-slider{ position:relative; aspect-ratio:16/10; overflow:hidden; cursor:ew-resize; user-select:none; }
.ba-slider img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.ba-slider .after-wrap{ position:absolute; inset:0; width:50%; overflow:hidden; border-right:3px solid var(--gold); }
.ba-slider .after-wrap img{ width:var(--imgw,200%); max-width:none; height:100%; }
.ba-handle{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:42px;height:42px; border-radius:50%; background:var(--gold); color:var(--navy-deep);
  display:flex; align-items:center; justify-content:center; font-size:16px; box-shadow:var(--shadow-gold); pointer-events:none;
}
.ba-tag{ position:absolute; top:14px; font-family:var(--f-mono); font-size:11px; letter-spacing:.08em; text-transform:uppercase; padding:5px 10px; border-radius:6px; background:rgba(6,10,36,.7); color:var(--white); }
.ba-tag.before{ left:14px; } .ba-tag.after{ right:14px; }
.ba-caption{ padding:16px 18px; background:var(--navy-mid); font-size:14px; color:var(--ink-dim); }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.test-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
@media(max-width:980px){ .test-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:640px){ .test-grid{ grid-template-columns:1fr; } }
.test-card{ background:var(--navy-mid); border:1px solid rgba(255,255,255,.07); border-radius:var(--radius); padding:26px; }
.test-stars{ color:var(--gold); font-size:15px; letter-spacing:2px; margin-bottom:14px; }
.test-card p{ font-size:14.5px; color:var(--ink); }
.test-person{ display:flex; align-items:center; gap:12px; margin-top:16px; }
.test-avatar{ width:42px;height:42px; border-radius:50%; background:var(--gold); color:var(--navy-deep); display:flex; align-items:center; justify-content:center; font-family:var(--f-display); font-weight:800; }
.test-person b{ display:block; font-size:14px; color:var(--white); }
.test-person span{ font-size:12px; color:var(--ink-dim); }

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.faq-list{ max-width:820px; margin:0 auto; display:flex; flex-direction:column; gap:12px; }
.faq-item{ background:var(--navy-mid); border:1px solid rgba(255,255,255,.07); border-radius:12px; overflow:hidden; }
.faq-q{ display:flex; align-items:center; justify-content:space-between; gap:16px; padding:20px 22px; cursor:pointer; font-weight:700; color:var(--white); font-size:15.5px; }
.faq-q .plus{ font-size:20px; color:var(--gold); transition:transform .3s var(--ease); flex-shrink:0; }
.faq-item.open .faq-q .plus{ transform:rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .4s var(--ease); }
.faq-a-inner{ padding:0 22px 20px; font-size:14.5px; color:var(--ink-dim); }

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band{
  background:linear-gradient(120deg,var(--gold) 0%, var(--gold-light) 100%);
  color:#241d0a; border-radius:24px; padding:56px 50px;
  display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap;
  position:relative; overflow:hidden;
}
.cta-band h2{ color:#1c1608; margin-bottom:8px; font-size:clamp(24px,3vw,34px); }
.cta-band p{ color:#4a4322; margin:0; max-width:460px; }
.cta-band .btn-gold{ background:#1c1608; color:var(--gold-light); box-shadow:0 14px 30px -10px rgba(0,0,0,.4); }
.cta-band .btn-gold:hover{ background:#312512; }

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */
.page-hero{
  padding:64px 0 60px;
  background:radial-gradient(ellipse 800px 400px at 15% 0%, var(--navy-light), transparent 60%), var(--navy-deep);
  border-bottom:1px solid rgba(255,255,255,.06);
  text-align:center; position:relative; overflow:hidden;
}
.breadcrumb{ font-family:var(--f-mono); font-size:12.5px; color:var(--ink-dim); margin-bottom:14px; }
.breadcrumb a:hover{ color:var(--gold); }
.page-hero h1{ font-size:clamp(30px,4.4vw,48px); }
.page-hero .lead{ max-width:600px; margin:0 auto; color:var(--ink-dim); font-size:16.5px; }

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.about-grid{ display:grid; grid-template-columns:.9fr 1.1fr; gap:60px; align-items:center; }
@media(max-width:900px){ .about-grid{ grid-template-columns:1fr; } }
.about-media{ position:relative; }
.about-media img{ border-radius:var(--radius); width:100%; aspect-ratio:4/5; object-fit:cover; }
.about-media .float-card{
  position:absolute; bottom:-24px; right:-24px; background:var(--gold); color:var(--navy-deep);
  border-radius:16px; padding:20px 24px; box-shadow:var(--shadow-gold); text-align:center;
}
@media(max-width:560px){ .about-media .float-card{ right:0; bottom:-16px; padding:14px 18px; } }
.about-media .float-card b{ display:block; font-family:var(--f-display); font-size:28px; }
.about-media .float-card span{ font-size:11.5px; font-family:var(--f-mono); text-transform:uppercase; }
.value-list{ display:flex; flex-direction:column; gap:16px; margin-top:24px; }
.value-item{ display:flex; gap:16px; align-items:flex-start; }
.value-item .tick{ flex-shrink:0; width:30px;height:30px; border-radius:50%; background:rgba(240,180,41,.14); color:var(--gold); display:flex; align-items:center; justify-content:center; font-size:14px; }
.value-item b{ color:var(--white); display:block; font-size:15px; margin-bottom:2px; }
.value-item p{ margin:0; font-size:13.5px; color:var(--ink-dim); }

/* team */
.team-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
@media(max-width:900px){ .team-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:560px){ .team-grid{ grid-template-columns:1fr; } }
.team-card{ text-align:center; }
.team-photo{ aspect-ratio:1/1; border-radius:var(--radius); overflow:hidden; margin-bottom:14px; background:var(--navy-mid); display:flex; align-items:center; justify-content:center; font-family:var(--f-display); font-size:34px; color:var(--gold); border:1px solid rgba(255,255,255,.08); }
.team-card b{ display:block; color:var(--white); font-size:15px; }
.team-card span{ font-size:12.5px; color:var(--ink-dim); }

/* =========================================================
   SERVICE DETAIL PAGE
   ========================================================= */
.sd-grid{ display:grid; grid-template-columns:1.3fr .7fr; gap:50px; align-items:start; }
@media(max-width:900px){ .sd-grid{ grid-template-columns:1fr; } }
.sd-hero-img{ border-radius:var(--radius); width:100%; aspect-ratio:16/9; object-fit:cover; margin-bottom:30px; }
.sd-body h2{ font-size:24px; margin-top:36px; }
.sd-body p{ color:var(--ink-dim); font-size:15.5px; }
.sd-list{ display:flex; flex-direction:column; gap:12px; margin:20px 0; }
.sd-list li{ display:flex; gap:12px; align-items:flex-start; font-size:14.5px; color:var(--ink); }
.sd-list li::before{ content:"★"; color:var(--gold); flex-shrink:0; }
.sd-sidebar{ position:sticky; top:110px; display:flex; flex-direction:column; gap:20px; }
.sidebar-card{ background:var(--navy-mid); border:1px solid rgba(255,255,255,.08); border-radius:var(--radius); padding:26px; }
.sidebar-card h4{ font-size:16px; margin-bottom:14px; }
.sidebar-services li{ border-bottom:1px solid rgba(255,255,255,.06); }
.sidebar-services li:last-child{ border-bottom:none; }
.sidebar-services a{ display:flex; justify-content:space-between; align-items:center; padding:11px 2px; font-size:13.5px; color:var(--ink-dim); transition:color .25s,padding-left .25s; }
.sidebar-services a:hover{ color:var(--gold); padding-left:6px; }
.sidebar-services a.active{ color:var(--gold); font-weight:700; }
.sidebar-cta{ text-align:center; }
.sidebar-cta .btn{ width:100%; justify-content:center; margin-top:10px; }

/* =========================================================
   PRICING (used inline in service pages)
   ========================================================= */
.price-table{ width:100%; border-collapse:collapse; margin:18px 0; font-size:14px; }
.price-table th,.price-table td{ text-align:left; padding:13px 14px; border-bottom:1px solid rgba(255,255,255,.08); }
.price-table th{ color:var(--gold); font-family:var(--f-mono); font-size:11.5px; text-transform:uppercase; letter-spacing:.06em; }
.price-table td:last-child, .price-table th:last-child{ text-align:right; color:var(--white); font-weight:700; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{ background:var(--navy); border-top:1px solid rgba(255,255,255,.07); padding:80px 0 0; position:relative; overflow:hidden; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:56px; position:relative; z-index:1; }
@media(max-width:900px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media(max-width:560px){ .footer-grid{ grid-template-columns:1fr; } }
.footer-brand p{ font-size:14px; color:var(--ink-dim); max-width:280px; }
.footer-social{ display:flex; gap:10px; margin-top:18px; }
.footer-social a{ width:38px;height:38px; border-radius:50%; border:1px solid rgba(255,255,255,.14); display:flex; align-items:center; justify-content:center; transition:border-color .25s,color .25s,transform .25s; }
.footer-social a:hover{ border-color:var(--gold); color:var(--gold); transform:translateY(-3px); }
.footer-col h4{ font-size:14px; text-transform:uppercase; letter-spacing:.06em; color:var(--white); margin-bottom:18px; font-family:var(--f-mono); font-weight:600; }
.footer-col li{ margin-bottom:11px; }
.footer-col a{ font-size:14px; color:var(--ink-dim); transition:color .25s,padding-left .25s; }
.footer-col a:hover{ color:var(--gold); padding-left:4px; }
.footer-contact li{ display:flex; gap:10px; align-items:flex-start; font-size:13.5px; color:var(--ink-dim); }
.footer-contact svg{ flex-shrink:0; color:var(--gold); margin-top:2px; }
.footer-bottom{ border-top:1px solid rgba(255,255,255,.07); padding:22px 0; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px; font-size:12.5px; color:var(--ink-dim); position:relative; z-index:1; }
.footer-bottom a:hover{ color:var(--gold); }

/* back to top */
.to-top{
  position:fixed; right:22px; bottom:22px; width:48px;height:48px; border-radius:50%;
  background:var(--gold); color:var(--navy-deep); display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-gold); z-index:90; opacity:0; visibility:hidden; transform:translateY(10px);
  transition:opacity .3s,transform .3s,visibility .3s; border:none; cursor:pointer; font-size:18px;
}
.to-top.show{ opacity:1; visibility:visible; transform:translateY(0); }

/* whatsapp / sticky call (mobile) */
.mobile-callbar{ display:none; }
@media(max-width:780px){
  .mobile-callbar{
    display:flex; position:fixed; left:0;right:0;bottom:0; z-index:95;
    background:var(--navy-deep); border-top:1px solid rgba(255,255,255,.1); padding:10px 14px; gap:10px;
  }
  .mobile-callbar a{ flex:1; text-align:center; padding:12px; border-radius:10px; font-weight:700; font-size:14px; }
  .mobile-callbar a.call{ background:var(--gold); color:var(--navy-deep); }
  .mobile-callbar a.quote{ border:1px solid rgba(255,255,255,.2); color:var(--white); }
  body{ padding-bottom:66px; }
}

/* gallery grid */
.gal-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
@media(max-width:780px){ .gal-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:480px){ .gal-grid{ grid-template-columns:1fr; } }
.gal-item{ border-radius:12px; overflow:hidden; aspect-ratio:4/3; position:relative; }
.gal-item img{ width:100%;height:100%; object-fit:cover; transition:transform .5s var(--ease); }
.gal-item:hover img{ transform:scale(1.08); }
.gal-tag{ position:absolute; bottom:12px; left:12px; font-family:var(--f-mono); font-size:11px; text-transform:uppercase; letter-spacing:.06em; background:rgba(6,10,36,.75); padding:5px 10px; border-radius:6px; color:var(--white); }

/* areas grid */
.areas-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
@media(max-width:780px){ .areas-grid{ grid-template-columns:repeat(2,1fr); } }
.area-chip{ background:var(--navy-mid); border:1px solid rgba(255,255,255,.07); border-radius:10px; padding:14px 16px; font-size:14px; display:flex; align-items:center; gap:10px; transition:border-color .25s, transform .25s; }
.area-chip:hover{ border-color:var(--gold); transform:translateY(-3px); }
.area-chip::before{ content:"★"; color:var(--gold); font-size:12px; }

/* misc */
.divider-star{ display:flex; align-items:center; justify-content:center; gap:14px; margin:0 auto 46px; color:var(--gold); }
.divider-star::before,.divider-star::after{ content:""; height:1px; width:60px; background:linear-gradient(90deg,transparent,var(--line)); }
.divider-star::after{ transform:scaleX(-1); }

/* =========================================================
   CARPET CLEANING CALCULATOR
   ========================================================= */
.calc-wrap{ display:grid; grid-template-columns:1.3fr .7fr; gap:40px; align-items:start; }
@media(max-width:900px){ .calc-wrap{ grid-template-columns:1fr; } }
.calc-card{
  background:var(--cream); color:#241d0a; border-radius:var(--radius); padding:34px;
  box-shadow:var(--shadow-navy);
}
.calc-tabs{ display:flex; gap:8px; margin-bottom:22px; background:#efe7cf; border-radius:10px; padding:5px; }
.calc-tab{
  flex:1; border:none; background:transparent; padding:11px 14px; border-radius:7px; cursor:pointer;
  font-family:var(--f-body); font-weight:700; font-size:13.5px; color:#7a7143; transition:background .25s,color .25s;
}
.calc-tab.active{ background:var(--navy-deep); color:var(--gold-light); }
.calc-panel label{ font-size:12.5px; font-weight:700; color:#4a4322; display:block; margin-bottom:6px; }
.calc-panel select, .calc-panel input{
  width:100%; border:1.5px solid #e3dcc4; background:#fffdf7; border-radius:8px; padding:12px 13px;
  font-family:var(--f-body); font-size:14.5px; color:#241d0a; margin-bottom:18px;
}
.calc-check{ display:flex; align-items:center; gap:10px; font-size:14px; color:#4a4322; margin:4px 0 20px; cursor:pointer; }
.calc-check input{ width:17px; height:17px; accent-color:var(--gold-deep); }
.calc-total{
  display:flex; justify-content:space-between; align-items:center; background:var(--navy-deep);
  border-radius:10px; padding:18px 20px; margin-bottom:10px;
}
.calc-total span{ color:var(--ink-dim); font-family:var(--f-mono); font-size:12px; text-transform:uppercase; letter-spacing:.08em; }
.calc-total b{ color:var(--gold-light); font-family:var(--f-display); font-size:26px; }
.calc-note{ font-size:12px; color:#83794a; margin-bottom:18px; line-height:1.5; }
.calc-side{ display:flex; flex-direction:column; gap:20px; }