/* ============================================================================
   FLAWLESS CONSTRUCTION MANCHESTER
   "Schedule of Works" — an architectural ledger.
   Warm paper ground, off-black ink, a single gold accent, monumental Archivo
   display type with IBM Plex Mono metadata. Editorial, not SaaS.
   Colours/fonts come from theme.php CSS variables so the admin still themes it.
   ========================================================================== */

/* ---- Semantic aliases over the themeable variables ----------------------- */
:root{
  --gold:var(--c-primary);
  --gold-deep:var(--c-primary-dark);
  --ink:var(--c-secondary);
  --ink-soft:var(--c-secondary-light);
  --paper:var(--c-bg);
  --paper-2:var(--c-bg-alt);
  --line:var(--c-border);
  --muted:var(--c-muted);
  --txt:var(--c-text);
  --f-disp:var(--font-heading);
  --f-body:var(--font-body);
  --f-mono:var(--font-mono);
  --ease:cubic-bezier(.16,1,.3,1);
  --ease-snap:cubic-bezier(.77,0,.175,1);
}

/* ---- Reset / base -------------------------------------------------------- */
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
html,body{overflow-x:clip}
body{
  font-family:var(--f-body);font-size:var(--fs-base,16px);line-height:1.65;
  color:var(--txt);background:var(--paper);
  font-weight:400;-webkit-font-smoothing:antialiased;letter-spacing:.005em;
}
img{max-width:100%;display:block}
::selection{background:var(--gold);color:#0E0E0E}
a{color:inherit;text-decoration:none;transition:color .25s var(--ease)}

/* Paper grain overlay for warmth/depth */
body::before{
  content:"";position:fixed;inset:0;z-index:9999;pointer-events:none;opacity:.035;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode:multiply;
}

/* Scroll progress */
.scroll-prog{position:fixed;top:0;left:0;height:2px;width:0;z-index:400;background:var(--gold)}

/* Custom scrollbar (webkit) */
::-webkit-scrollbar{width:11px;height:11px}
::-webkit-scrollbar-track{background:var(--paper-2)}
::-webkit-scrollbar-thumb{background:var(--ink);border:3px solid var(--paper-2)}

.skip-link{position:absolute;left:-999px;top:0;background:var(--ink);color:#fff;padding:10px 16px;z-index:500}
.skip-link:focus{left:0}

/* ---- Layout primitives --------------------------------------------------- */
.container{width:100%;max-width:var(--container,1200px);margin:0 auto;padding:0 clamp(20px,5vw,64px)}
.section{padding:var(--section-pad,116px) 0;position:relative}
.section--alt{background:var(--paper-2)}
.section--alt + .section--alt{border-top:1px solid var(--line)}

/* Kicker + section head — mono label, big Archivo heading, hairline rule */
.eyebrow{
  display:inline-flex;align-items:center;gap:.6ch;font-family:var(--f-mono);
  font-weight:500;font-size:.72rem;letter-spacing:.22em;text-transform:uppercase;
  color:var(--gold-deep);margin-bottom:1.1rem;
}
.eyebrow::before{content:"";width:26px;height:1px;background:var(--gold-deep);opacity:.7}
.section-head{max-width:760px;margin-bottom:clamp(2.6rem,5vw,4.2rem);
  padding-bottom:1.6rem;border-bottom:1px solid var(--line)}
.section-head h2{margin:0}
.section-head p{margin-top:1rem;font-size:1.12rem;color:var(--muted);max-width:60ch}

h1,h2,h3,h4{font-family:var(--f-disp);color:var(--ink);font-weight:800;
  line-height:1.02;letter-spacing:-.02em;text-wrap:balance}
h1{font-size:clamp(2.9rem,1.6rem+6vw,6.4rem);font-weight:900;letter-spacing:-.035em;line-height:.96}
h2{font-size:clamp(2rem,1.2rem+3vw,3.5rem);letter-spacing:-.03em}
h3{font-size:clamp(1.2rem,1rem+.7vw,1.5rem);font-weight:700;letter-spacing:-.01em}
p{max-width:72ch}
.lead{font-size:1.22rem;line-height:1.6;color:var(--ink);font-weight:400}

/* ---- Buttons ------------------------------------------------------------- */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:.6ch;
  font-family:var(--f-mono);font-weight:500;font-size:.82rem;letter-spacing:.06em;
  text-transform:uppercase;padding:.95rem 1.6rem;border:1px solid transparent;
  border-radius:var(--radius);cursor:pointer;transition:all .3s var(--ease);white-space:nowrap}
.btn .ico{width:16px;height:16px;transition:transform .3s var(--ease)}
.btn-lg{padding:1.15rem 2rem;font-size:.86rem}
.btn-primary{background:var(--gold);color:#0E0E0E;border-color:var(--gold)}
.btn-primary:hover{background:#0E0E0E;color:var(--gold);border-color:#0E0E0E}
.btn-primary:hover .ico{transform:translateX(4px)}
.btn-secondary{background:var(--ink);color:#fff;border-color:var(--ink)}
.btn-secondary:hover{background:transparent;color:var(--ink)}
.btn-ghost{background:transparent;color:var(--ink);border-color:var(--ink)}
.btn-ghost:hover{background:var(--ink);color:var(--paper)}
.btn-light{background:var(--gold);color:#0E0E0E;border-color:var(--gold)}
.btn-light:hover{background:transparent;color:var(--gold);border-color:var(--gold)}
.btn-hero-ghost{background:transparent;color:var(--ink);border-color:var(--line)}
.btn-hero-ghost:hover{border-color:var(--ink)}
.btn-block{width:100%}
/* Editorial text-link button (used in hero secondary) */
.btn-text{background:none;border:0;padding:.9rem 0;color:var(--ink);position:relative;border-radius:0}
.btn-text::after{content:"";position:absolute;left:0;bottom:.55rem;width:100%;height:1px;background:var(--ink);transform:scaleX(1);transform-origin:left;transition:transform .35s var(--ease)}
.btn-text:hover{color:var(--gold-deep)}
.btn-text:hover::after{background:var(--gold-deep)}

/* ---- Header / nav — slim ruled bar --------------------------------------- */
.site-header{position:sticky;top:0;z-index:200;background:color-mix(in srgb,var(--paper) 88%,transparent);
  backdrop-filter:blur(8px);border-bottom:1px solid var(--line);transition:box-shadow .3s var(--ease),background .3s}
.site-header.is-stuck{box-shadow:0 1px 0 var(--line),0 12px 30px -24px rgba(0,0,0,.5)}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:1.5rem;min-height:72px}
.brand{display:flex;align-items:center;gap:.6rem;flex-shrink:0}
.brand-logo{height:38px;width:auto;display:block}
.brand-mark{display:inline-flex;width:38px;height:38px;align-items:center;justify-content:center;background:var(--ink);color:var(--gold);border-radius:var(--radius)}
.brand-ico{width:20px;height:20px}
.brand-text{font-family:var(--f-disp);font-weight:900;font-size:1.15rem;letter-spacing:-.02em;color:var(--ink);text-transform:uppercase}

.main-nav{display:flex;align-items:center;gap:2rem}
.nav-close{display:none}
.nav-list{display:flex;align-items:center;gap:.3rem;list-style:none}
.nav-list>li{position:relative}
.nav-list a{font-family:var(--f-mono);font-size:.78rem;font-weight:500;letter-spacing:.08em;
  text-transform:uppercase;color:var(--ink);padding:.6rem .8rem;position:relative;display:inline-block}
.nav-list>li>a::after{content:"";position:absolute;left:.8rem;right:.8rem;bottom:.35rem;height:1px;background:var(--gold);transform:scaleX(0);transform-origin:left;transition:transform .3s var(--ease)}
.nav-list>li>a:hover::after,.nav-list>li>a.active::after{transform:scaleX(1)}
.nav-list a:hover,.nav-list a.active{color:var(--gold-deep)}
.dd-toggle{background:none;border:0;cursor:pointer;padding:.3rem;color:inherit;display:none}
.dd-caret{display:inline-block;width:6px;height:6px;border-right:1.5px solid currentColor;border-bottom:1.5px solid currentColor;transform:rotate(45deg);vertical-align:2px;margin-left:.2ch}
.dropdown{position:absolute;top:100%;left:0;min-width:180px;background:var(--paper);border:1px solid var(--line);
  list-style:none;padding:.4rem;opacity:0;visibility:hidden;transform:translateY(8px);transition:.25s var(--ease);box-shadow:0 20px 40px -24px rgba(0,0,0,.4)}
.has-dropdown:hover .dropdown,.has-dropdown:focus-within .dropdown,.dd-open .dropdown{opacity:1;visibility:visible;transform:none}
.dropdown a{display:block;padding:.55rem .7rem}
.nav-cta{display:flex;align-items:center;gap:1rem}
.nav-cta .btn-ghost{border:0;padding:.6rem 0;font-size:.78rem;letter-spacing:.08em}
.nav-cta .btn-ghost:hover{background:none;color:var(--gold-deep)}
.nav-cta .btn-ghost .ico{width:14px;height:14px}
.nav-toggle{display:none;background:none;border:0;color:var(--ink);cursor:pointer;padding:6px}
.nav-toggle .ico,.nav-close .ico{width:26px;height:26px}

/* ---- Hero — editorial asymmetric ---------------------------------------- */
.hero{padding:clamp(3rem,6vw,6rem) 0 clamp(3.5rem,6vw,6rem);position:relative;overflow:hidden}
.hero-bg,.hero-orb,.hero-grid-lines{display:none}
.hero-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:clamp(2rem,5vw,5rem);align-items:end}
.hero-kicker{display:flex;gap:1.4rem;font-family:var(--f-mono);font-size:.72rem;font-weight:500;
  letter-spacing:.2em;text-transform:uppercase;color:var(--muted);margin-bottom:1.8rem;flex-wrap:wrap}
.hero-kicker span{display:inline-flex;align-items:center;gap:.7ch}
.hero-kicker span::before{content:"";width:7px;height:7px;background:var(--gold);border-radius:50%}
.hero-inner h1,.hero h1{margin-bottom:1.6rem;color:var(--ink)}
.hero-inner>p,.hero-sub{font-size:clamp(1.05rem,.9rem+.6vw,1.28rem);color:var(--muted);max-width:46ch;margin-bottom:2rem;line-height:1.6}
.hero-cta{display:flex;align-items:center;gap:1.8rem;flex-wrap:wrap;margin-bottom:2.6rem}
.hero-rating{display:flex;align-items:center;gap:.8rem;font-family:var(--f-mono);font-size:.76rem;letter-spacing:.04em;color:var(--muted);text-transform:uppercase}
.hero-rating .hr-stars,.hr-stars{color:var(--gold);letter-spacing:.1em}

/* Hero figure — framed photo with index tag + gold offset rule */
.hero-visual,.hero-figure{position:relative}
.hero-index{position:absolute;top:-1.6rem;left:0;font-family:var(--f-mono);font-size:.72rem;letter-spacing:.2em;text-transform:uppercase;color:var(--muted);z-index:2}
.cam-feed,.hero-frame{position:relative;aspect-ratio:1/1;overflow:hidden;background:var(--ink);border-radius:var(--radius)}
.cam-feed::after{content:"";position:absolute;left:14px;top:14px;right:-14px;bottom:-14px;border:1px solid var(--gold);z-index:-1;border-radius:var(--radius)}
.cam-photo{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.cam-center{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;color:rgba(255,195,73,.28)}
.cam-center .ico{width:96px;height:96px}
.cam-hud{position:absolute;left:0;bottom:0;width:100%;display:flex;justify-content:space-between;align-items:center;
  padding:.8rem 1rem;font-family:var(--f-mono);font-size:.68rem;letter-spacing:.12em;text-transform:uppercase;
  color:#fff;background:linear-gradient(transparent,rgba(0,0,0,.72))}
.cam-hud .proj-tag{background:var(--gold);color:#0E0E0E;padding:.2rem .6rem;font-weight:600;border-radius:2px}
.hud-corner{display:none}
.float-card{display:none}

/* ---- Stats as a ledger strip -------------------------------------------- */
.stats-band{border-top:1px solid var(--line);border-bottom:1px solid var(--line);background:var(--paper)}
.stats-row{display:grid;grid-template-columns:repeat(4,1fr)}
.stat{padding:2.2rem clamp(1rem,2vw,2rem);border-left:1px solid var(--line);display:flex;flex-direction:column;gap:.3rem}
.stat:first-child{border-left:0;padding-left:0}
.stat-ico{color:var(--gold-deep)}.stat-ico .ico{width:22px;height:22px}
.stat b{font-family:var(--f-disp);font-size:clamp(1.8rem,1.2rem+1.6vw,2.6rem);font-weight:800;color:var(--ink);line-height:1;letter-spacing:-.02em}
.stat span{font-family:var(--f-mono);font-size:.72rem;letter-spacing:.08em;text-transform:uppercase;color:var(--muted)}

/* ---- Marquee ticker of trades ------------------------------------------- */
.marquee{border-bottom:1px solid var(--line);background:var(--ink);color:var(--paper);overflow:hidden;padding:1rem 0}
.marquee-track{display:inline-flex;gap:0;white-space:nowrap;font-family:var(--f-disp);font-weight:800;
  font-size:1.05rem;text-transform:uppercase;letter-spacing:.02em;animation:marq 40s linear infinite;will-change:transform}
.mq-item{display:inline-flex;align-items:center}
.mq-item::after{content:"—";color:var(--gold);margin:0 1.7rem;font-weight:400}
@keyframes marq{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* ---- Services INDEX (the signature move) -------------------------------- */
.svc-index{border-top:1px solid var(--ink)}
.svc-row{display:grid;grid-template-columns:minmax(48px,auto) 1fr auto;align-items:center;gap:clamp(1rem,3vw,3rem);
  padding:clamp(1.3rem,2.4vw,2.1rem) .4rem;border-bottom:1px solid var(--line);position:relative;overflow:hidden;transition:padding .35s var(--ease)}
.svc-row::before{content:"";position:absolute;inset:0;background:var(--ink);transform:translateY(101%);transition:transform .45s var(--ease);z-index:0}
.svc-row>*{position:relative;z-index:1}
.svc-num{font-family:var(--f-mono);font-size:.8rem;font-weight:500;color:var(--gold-deep);letter-spacing:.05em}
.svc-row-main{display:flex;flex-direction:column;gap:.25rem}
.svc-row-title{font-family:var(--f-disp);font-weight:800;font-size:clamp(1.4rem,1rem+1.6vw,2.3rem);color:var(--ink);letter-spacing:-.02em;line-height:1.05;transition:color .35s var(--ease)}
.svc-row-desc{font-size:.98rem;color:var(--muted);max-width:60ch;transition:color .35s var(--ease)}
.svc-row-ico{width:38px;height:38px;display:flex;align-items:center;justify-content:center;border:1px solid var(--line);border-radius:50%;color:var(--ink);transition:.35s var(--ease)}
.svc-row-ico .ico{width:18px;height:18px;transition:transform .35s var(--ease)}
.svc-row:hover::before{transform:translateY(0)}
.svc-row:hover{padding-left:1.4rem}
.svc-row:hover .svc-row-title{color:var(--paper)}
.svc-row:hover .svc-num{color:var(--gold)}
.svc-row:hover .svc-row-desc{color:rgba(255,255,255,.66)}
.svc-row:hover .svc-row-ico{background:var(--gold);border-color:var(--gold);color:#0E0E0E}
.svc-row:hover .svc-row-ico .ico{transform:translateX(3px)}

/* Card grid (used on service.php "more services") ------------------------- */
.grid{display:grid;gap:1px;background:var(--line)}
.services-grid{grid-template-columns:repeat(3,1fr)}
.card{background:var(--paper);padding:2rem 1.8rem;display:flex;flex-direction:column;gap:.7rem;transition:background .3s var(--ease)}
.card:hover{background:var(--paper-2)}
.card-ico{width:46px;height:46px;display:inline-flex;align-items:center;justify-content:center;color:var(--gold-deep);border:1px solid var(--line);border-radius:var(--radius);margin-bottom:.4rem}
.card-ico .ico{width:24px;height:24px}
.card h3{font-size:1.2rem}
.card p{color:var(--muted);font-size:.96rem;flex:1}
.card-link{display:inline-flex;align-items:center;gap:.5ch;font-family:var(--f-mono);font-size:.75rem;
  letter-spacing:.08em;text-transform:uppercase;color:var(--ink);margin-top:.4rem}
.card-link .ico{width:15px;height:15px;transition:transform .3s var(--ease)}
.card:hover .card-link{color:var(--gold-deep)}
.card:hover .card-link .ico{transform:translateX(4px)}

/* ---- Trust bar ----------------------------------------------------------- */
.trust{background:var(--ink);color:var(--paper);padding:1.8rem 0}
.trust-inner{display:flex;flex-wrap:wrap;gap:1rem 2.4rem;align-items:center;justify-content:center}
.trust-item{display:inline-flex;align-items:center;gap:.6ch;font-family:var(--f-mono);font-size:.76rem;
  letter-spacing:.1em;text-transform:uppercase;color:var(--paper)}
.trust-item .ico{width:16px;height:16px;color:var(--gold)}
.trust-item img{max-height:34px;width:auto;filter:brightness(0) invert(1);opacity:.85}

/* ---- Why — asymmetric editorial split ----------------------------------- */
.why-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:clamp(2rem,5vw,5rem);align-items:center}
.why-media{position:relative;aspect-ratio:4/5;overflow:hidden;background:var(--ink);border-radius:var(--radius)}
.why-media img,.why-media .img-ph{width:100%;height:100%;object-fit:cover}
.why-media::after{content:"";position:absolute;right:-16px;bottom:-16px;width:60%;height:60%;border:1px solid var(--gold);z-index:-1}
.why-points{display:flex;flex-direction:column;margin-top:1.6rem}
.why-point{display:grid;grid-template-columns:auto 1fr;gap:1.2rem;padding:1.4rem 0;border-top:1px solid var(--line)}
.why-point:last-child{border-bottom:1px solid var(--line)}
.pico{width:40px;height:40px;display:flex;align-items:center;justify-content:center;color:var(--gold-deep)}
.pico .ico{width:26px;height:26px}
.why-point h3{margin-bottom:.3rem}
.why-point p{color:var(--muted);font-size:.98rem}

/* ---- Process — big numerals --------------------------------------------- */
.process-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--line);counter-reset:step;border-top:1px solid var(--ink)}
.step{background:var(--paper);padding:2.4rem 1.6rem;position:relative;counter-increment:step}
.step::before{content:counter(step,decimal-leading-zero);font-family:var(--f-disp);font-weight:900;font-size:2.6rem;
  color:var(--gold);line-height:1;display:block;margin-bottom:1rem;letter-spacing:-.03em}
.step h3{margin-bottom:.4rem;font-size:1.15rem}
.step p{color:var(--muted);font-size:.96rem;margin:0}

/* ---- Packages ------------------------------------------------------------ */
.pkg-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:1px;background:var(--line);border:1px solid var(--line)}
.pkg-card{background:var(--paper);padding:2rem 1.7rem;display:flex;flex-direction:column;gap:.5rem;position:relative}
.pkg-card.featured{background:var(--ink);color:var(--paper)}
.pkg-card.featured h3,.pkg-card.featured .pkg-price{color:var(--paper)}
.pkg-badge{position:absolute;top:1rem;right:1rem;font-family:var(--f-mono);font-size:.66rem;letter-spacing:.1em;
  text-transform:uppercase;background:var(--gold);color:#0E0E0E;padding:.25rem .6rem;border-radius:2px}
.pkg-head h3{font-size:1.4rem}
.pkg-highlight{font-family:var(--f-mono);font-size:.74rem;letter-spacing:.06em;text-transform:uppercase;color:var(--gold-deep)}
.pkg-card.featured .pkg-highlight{color:var(--gold)}
.pkg-price{font-family:var(--f-disp);font-weight:800;font-size:2rem;color:var(--ink);letter-spacing:-.02em;margin:.4rem 0}
.pkg-note{font-size:.8rem;color:var(--muted)}
.pkg-img{aspect-ratio:16/10;overflow:hidden;margin-bottom:.6rem}
.pkg-img img{width:100%;height:100%;object-fit:cover}
.pkg-features{list-style:none;display:flex;flex-direction:column;gap:.6rem;margin:.8rem 0 1.2rem;flex:1}
.pkg-features li{display:flex;gap:.6ch;font-size:.94rem;color:var(--muted)}
.pkg-features li::before{content:"—";color:var(--gold-deep)}
.pkg-card.featured .pkg-features li{color:rgba(255,255,255,.72)}
.pkg-cta{margin-top:auto}
.pkg-addons{margin-top:2.5rem}
.pkg-addons-table{width:100%;border-collapse:collapse;font-size:.94rem}
.pkg-addons-table td{padding:.7rem 0;border-bottom:1px solid var(--line)}
.pkg-addons-table td:last-child{text-align:right;font-family:var(--f-mono);color:var(--gold-deep)}

/* ---- Gallery — staggered editorial grid --------------------------------- */
.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(.6rem,1.4vw,1.1rem)}
.gallery-item{position:relative;overflow:hidden;aspect-ratio:4/3;background:var(--ink);cursor:pointer}
.gallery-item:nth-child(4n+1){grid-row:span 2;aspect-ratio:4/5}
.gallery-item img,.gallery-item .img-ph{width:100%;height:100%;object-fit:cover;transition:transform .7s var(--ease)}
.gallery-item:hover img{transform:scale(1.05)}
.gallery-cap{position:absolute;left:0;bottom:0;width:100%;padding:1.4rem 1rem .9rem;color:#fff;
  font-family:var(--f-mono);font-size:.74rem;letter-spacing:.06em;text-transform:uppercase;
  background:linear-gradient(transparent,rgba(0,0,0,.8));transform:translateY(6px);opacity:0;transition:.35s var(--ease)}
.gallery-item:hover .gallery-cap{transform:none;opacity:1}
.expand{position:absolute;top:12px;right:12px;width:34px;height:34px;display:flex;align-items:center;justify-content:center;
  background:var(--gold);color:#0E0E0E;opacity:0;transform:scale(.8);transition:.3s var(--ease)}
.gallery-item:hover .expand{opacity:1;transform:none}

/* ---- Reviews — big pull-quotes ------------------------------------------ */
.reviews-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1px;background:var(--line);border:1px solid var(--line)}
.review{background:var(--paper);padding:2.4rem 2rem;display:flex;flex-direction:column;gap:1rem}
.stars{letter-spacing:.15em}.stars .star{color:var(--line)}.stars .star.on{color:var(--gold)}
.review>p{font-family:var(--f-disp);font-weight:500;font-size:1.24rem;line-height:1.4;color:var(--ink);letter-spacing:-.01em}
.review-by{display:flex;align-items:center;gap:.9rem;margin-top:auto}
.review-avatar{width:44px;height:44px;border-radius:50%;background:var(--ink);color:var(--gold);
  display:flex;align-items:center;justify-content:center;font-family:var(--f-disp);font-weight:800}
.review-by b{display:block;font-family:var(--f-disp)}
.review-by span span{font-family:var(--f-mono);font-size:.74rem;letter-spacing:.06em;text-transform:uppercase;color:var(--muted)}

/* ---- FAQ — ruled accordion ---------------------------------------------- */
.faq-list{border-top:1px solid var(--ink);max-width:900px}
.faq-item{border-bottom:1px solid var(--line)}
.faq-q{width:100%;display:flex;align-items:center;justify-content:space-between;gap:1.5rem;
  background:none;border:0;cursor:pointer;padding:1.5rem .2rem;text-align:left;
  font-family:var(--f-disp);font-weight:700;font-size:clamp(1.05rem,.95rem+.5vw,1.3rem);color:var(--ink);letter-spacing:-.01em}
.faq-q .plus{position:relative;width:16px;height:16px;flex:none}
.faq-q .plus::before,.faq-q .plus::after{content:"";position:absolute;background:var(--gold-deep);border-radius:1px}
.faq-q .plus::before{top:50%;left:0;right:0;height:1.5px;transform:translateY(-50%)}
.faq-q .plus::after{left:50%;top:0;bottom:0;width:1.5px;transform:translateX(-50%);transition:transform .3s var(--ease)}
.faq-q[aria-expanded="true"] .plus::after{transform:translateX(-50%) scaleY(0)}
.faq-a{overflow:hidden;max-height:0;transition:max-height .4s var(--ease)}
.faq-a-inner{padding:0 .2rem 1.6rem;color:var(--muted);max-width:70ch}

/* ---- CTA band — full-bleed black w/ gold rule --------------------------- */
.cta-band{background:var(--ink);color:var(--paper);padding:clamp(3rem,6vw,5.5rem) clamp(1.5rem,4vw,4rem);
  border-top:3px solid var(--gold);text-align:left;position:relative}
.cta-band h2{color:var(--paper);max-width:20ch}
.cta-band p{color:rgba(255,255,255,.7);max-width:52ch;margin:1rem 0 2rem;font-size:1.1rem}

/* ---- Contact / editorial form ------------------------------------------- */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2rem,5vw,5rem);align-items:start}
.contact-info{display:flex;flex-direction:column;margin-top:1.6rem}
.ci-item{display:grid;grid-template-columns:auto 1fr;gap:1rem;padding:1.2rem 0;border-top:1px solid var(--line)}
.ci-item:last-child{border-bottom:1px solid var(--line)}
.ci-item .ico{width:22px;height:22px;color:var(--gold-deep);margin-top:2px}
.ci-item b{font-family:var(--f-mono);font-size:.72rem;letter-spacing:.1em;text-transform:uppercase;color:var(--muted);font-weight:500}
.quote-form,.review-form{background:var(--paper-2);border:1px solid var(--line);padding:clamp(1.6rem,3vw,2.4rem)}
.field{margin-bottom:1.3rem}
.field label{display:block;font-family:var(--f-mono);font-size:.72rem;letter-spacing:.08em;text-transform:uppercase;color:var(--muted);margin-bottom:.5rem}
.field input,.field select,.field textarea{width:100%;background:transparent;border:0;border-bottom:1px solid var(--ink);
  padding:.6rem 0;font-family:var(--f-body);font-size:1rem;color:var(--ink);border-radius:0}
.field input:focus,.field select:focus,.field textarea:focus{outline:0;border-bottom-color:var(--gold-deep);box-shadow:0 1px 0 var(--gold-deep)}
.field textarea{resize:vertical;min-height:120px}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:1.2rem}
.form-note{font-size:.8rem;color:var(--muted);margin-top:.8rem}
.hp{position:absolute;left:-9999px}
.star-input{display:flex;flex-direction:row-reverse;justify-content:flex-end;gap:.2rem}
.star-input input{position:absolute;left:-9999px}
.star-input label{font-size:1.6rem;color:var(--line);cursor:pointer}
.star-input input:checked ~ label,.star-input label:hover,.star-input label:hover ~ label{color:var(--gold)}
.map-embed{margin-top:2rem;border:1px solid var(--line);aspect-ratio:16/9;overflow:hidden}
.map-embed iframe{width:100%;height:100%;border:0}

.alert{padding:1rem 1.2rem;border:1px solid var(--line);margin-bottom:1.4rem;font-size:.95rem}
.alert-ok{border-color:var(--gold-deep);background:rgba(255,195,73,.1)}
.alert-err{border-color:#c0392b;background:rgba(192,57,43,.08);color:#8e2a20}

/* ---- Inner page hero ----------------------------------------------------- */
.page-hero{background:var(--ink);color:var(--paper);padding:clamp(3rem,7vw,6rem) 0 clamp(2.4rem,5vw,4rem);position:relative}
.page-hero::after{content:"";position:absolute;left:0;bottom:0;width:100%;height:3px;background:var(--gold)}
.page-hero h1{color:var(--paper);margin-bottom:.6rem}
.page-hero p{color:rgba(255,255,255,.7);max-width:62ch;font-size:1.1rem}
.crumbs{display:flex;flex-wrap:wrap;gap:.5ch;font-family:var(--f-mono);font-size:.74rem;letter-spacing:.06em;
  text-transform:uppercase;color:rgba(255,255,255,.5);margin-bottom:1.4rem}
.crumbs a{color:rgba(255,255,255,.8)}.crumbs a:hover{color:var(--gold)}

/* ---- Service detail ------------------------------------------------------ */
.svc-layout{display:grid;grid-template-columns:1.7fr .9fr;gap:clamp(2rem,4vw,4rem);align-items:start}
.svc-media{aspect-ratio:16/10;overflow:hidden;background:var(--ink);border-radius:var(--radius)}
.svc-media img,.svc-media .img-ph{width:100%;height:100%;object-fit:cover}
.svc-features{display:grid;grid-template-columns:1fr 1fr;gap:.9rem 1.6rem;margin:1.2rem 0 2rem}
.svc-feature{display:flex;gap:.7ch;align-items:flex-start;font-size:.98rem}
.svc-feature .ico{width:18px;height:18px;color:var(--gold-deep);flex:none;margin-top:4px}
.svc-aside{background:var(--paper-2);border:1px solid var(--line);padding:1.8rem;position:sticky;top:100px}
.svc-aside h3{margin-bottom:.6rem}
.svc-aside p{font-size:.96rem;color:var(--muted)}

/* ---- Blog ---------------------------------------------------------------- */
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--line);border:1px solid var(--line)}
.post-card{background:var(--paper);display:flex;flex-direction:column;transition:background .3s var(--ease)}
.post-card:hover{background:var(--paper-2)}
.post-card img{aspect-ratio:16/9;object-fit:cover;width:100%}
.post-card-body{padding:1.6rem;display:flex;flex-direction:column;gap:.5rem}
.post-meta{font-family:var(--f-mono);font-size:.72rem;letter-spacing:.06em;text-transform:uppercase;color:var(--muted)}
.post-card h3{font-size:1.25rem}
.post-body{max-width:760px;margin:0 auto}
.post-body p{margin:1.2rem 0;color:var(--txt)}
.post-body img{margin:2rem 0;border-radius:var(--radius)}
.post-body h2,.post-body h3{margin-top:2rem}

/* ---- Footer -------------------------------------------------------------- */
.site-footer{background:var(--ink);color:rgba(255,255,255,.66);padding-top:clamp(3rem,6vw,5rem)}
.footer-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1.2fr;gap:2.5rem;padding-bottom:3rem}
.brand--footer{margin-bottom:1.2rem}
.footer-about .brand-text{color:var(--paper)}
.footer-about p{color:rgba(255,255,255,.55);max-width:40ch;font-size:.95rem}
.footer-about a{color:var(--gold)}
.footer-socials{display:flex;gap:.7rem;margin-top:1.2rem;flex-wrap:wrap}
.footer-socials a{width:38px;height:38px;display:flex;align-items:center;justify-content:center;border:1px solid rgba(255,255,255,.18);color:rgba(255,255,255,.7)}
.footer-socials a:hover{background:var(--gold);border-color:var(--gold);color:#0E0E0E}
.footer-socials .soc-ico{width:17px;height:17px}
.footer-col h4{font-family:var(--f-mono);font-size:.74rem;letter-spacing:.12em;text-transform:uppercase;color:var(--gold);margin-bottom:1.1rem;font-weight:500}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:.7rem}
.footer-col a{color:rgba(255,255,255,.66);font-size:.95rem}
.footer-col a:hover{color:var(--paper)}
.footer-contact .ico{width:16px;height:16px;vertical-align:-3px;margin-right:.4ch;color:var(--gold)}
.footer-areas{border-top:1px solid rgba(255,255,255,.1)}
.footer-areas .container{padding-top:1.6rem;padding-bottom:.4rem}
.footer-areas h4{font-family:var(--f-mono);font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;color:var(--gold);margin-bottom:.5rem;font-weight:500}
.footer-areas p{color:rgba(255,255,255,.42);font-size:.82rem;line-height:2}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding:1.4rem 0;margin-top:1.5rem}
.footer-bottom .container{display:flex;justify-content:space-between;flex-wrap:wrap;gap:.5rem}
.footer-bottom p{margin:0;font-family:var(--f-mono);font-size:.74rem;letter-spacing:.04em;color:rgba(255,255,255,.5)}
.footer-credit a{color:rgba(255,255,255,.5)}.footer-credit a:hover{color:var(--gold)}

/* ---- Floating actions ---------------------------------------------------- */
.float-wa{position:fixed;right:20px;bottom:22px;width:54px;height:54px;border-radius:50%;background:#25d366;color:#fff;
  display:flex;align-items:center;justify-content:center;z-index:180;box-shadow:0 12px 30px -10px rgba(0,0,0,.4);transition:transform .3s var(--ease)}
.float-wa:hover{transform:scale(1.08)}.wa-ico{width:28px;height:28px}
.to-top{position:fixed;right:22px;bottom:86px;width:44px;height:44px;background:var(--ink);color:var(--paper);border:0;
  display:flex;align-items:center;justify-content:center;cursor:pointer;z-index:180;opacity:0;visibility:hidden;transition:.3s var(--ease)}
.to-top.show{opacity:1;visibility:visible}
.arrow-up{width:20px;height:20px;transform:rotate(-90deg)}
.mobile-bar{display:none}

/* ---- Reveal animation ---------------------------------------------------- */
.reveal{opacity:0;transform:translateY(24px);transition:opacity .8s var(--ease),transform .8s var(--ease)}
.reveal.is-visible{opacity:1;transform:none}
.reveal.d1{transition-delay:.06s}.reveal.d2{transition-delay:.12s}
.reveal.d3{transition-delay:.18s}.reveal.d4{transition-delay:.24s}

/* Mobile nav backdrop (created by main.js) */
.nav-backdrop{position:fixed;inset:0;background:rgba(14,14,14,.55);opacity:0;visibility:hidden;transition:opacity .3s var(--ease);z-index:250}
.nav-backdrop.show{opacity:1;visibility:visible}

/* Gallery lightbox (created by main.js) */
.lightbox{position:fixed;inset:0;z-index:500;background:rgba(10,10,10,.94);display:none;
  align-items:center;justify-content:center;gap:1rem;padding:clamp(1rem,4vw,3rem)}
.lightbox.open{display:flex}
.lightbox figure{max-width:min(1100px,90vw);margin:0;text-align:center}
.lightbox img{max-width:100%;max-height:82vh;object-fit:contain;border:1px solid rgba(255,255,255,.14)}
.lb-cap{color:#fff;font-family:var(--f-mono);font-size:.78rem;letter-spacing:.06em;text-transform:uppercase;margin-top:1rem}
.lightbox-close{position:absolute;top:20px;right:24px;background:none;border:0;color:#fff;cursor:pointer;padding:6px}
.lightbox-close .ico{width:26px;height:26px}
.lb-count{position:absolute;top:24px;left:24px;color:rgba(255,255,255,.6);font-family:var(--f-mono);font-size:.76rem;letter-spacing:.08em}
.lb-nav{background:none;border:1px solid rgba(255,255,255,.25);color:#fff;width:48px;height:48px;cursor:pointer;
  display:flex;align-items:center;justify-content:center;flex:none;transition:.25s var(--ease)}
.lb-nav svg{width:22px;height:22px}
.lb-nav:hover{background:var(--gold);border-color:var(--gold);color:#0E0E0E}
@media(max-width:768px){.lb-nav{position:absolute;bottom:24px}.lb-prev{left:24px}.lb-next{right:24px}}

/* ---- Responsive ---------------------------------------------------------- */
@media(max-width:980px){
  .hero-grid{grid-template-columns:1fr;gap:3rem}
  .hero-figure{max-width:460px}
  .why-grid,.contact-grid,.svc-layout{grid-template-columns:1fr}
  .svc-aside{position:static}
  .footer-grid{grid-template-columns:1fr 1fr}
  .services-grid,.blog-grid,.gallery-grid{grid-template-columns:repeat(2,1fr)}
  .process-grid{grid-template-columns:repeat(2,1fr)}
  .reviews-grid{grid-template-columns:1fr}
  .svc-features{grid-template-columns:1fr}
}
@media(max-width:768px){
  .nav-toggle{display:block}
  .main-nav{position:fixed;inset:0 0 0 auto;width:min(84vw,340px);background:var(--paper);flex-direction:column;
    align-items:stretch;justify-content:flex-start;gap:0;padding:5rem 1.6rem 2rem;transform:translateX(100%);
    transition:transform .4s var(--ease);z-index:300;box-shadow:-20px 0 50px -20px rgba(0,0,0,.4);overflow-y:auto}
  .main-nav.open{transform:none}
  .nav-close{display:block;position:absolute;top:1.2rem;right:1.2rem;background:none;border:0;color:var(--ink);cursor:pointer}
  .nav-list{flex-direction:column;align-items:stretch;gap:0}
  .nav-list>li>a{display:block;padding:1rem .2rem;border-bottom:1px solid var(--line);font-size:.9rem}
  .nav-list>li>a::after{display:none}
  .dd-toggle{display:inline-block;position:absolute;right:0;top:.7rem}
  .dropdown{position:static;opacity:1;visibility:visible;transform:none;border:0;box-shadow:none;padding:0 0 0 1rem;max-height:0;overflow:hidden;transition:max-height .3s}
  .dd-open .dropdown{max-height:400px}
  .nav-cta{flex-direction:column;align-items:stretch;margin-top:1.5rem;gap:.8rem}
  .nav-cta .btn{width:100%}
  .nav-cta .btn-ghost{border:1px solid var(--ink);padding:.9rem}
  .stats-row{grid-template-columns:1fr 1fr}
  .stat{border-left:0;border-top:1px solid var(--line);padding-left:0}
  .stat:nth-child(even){padding-left:clamp(1rem,2vw,2rem);border-left:1px solid var(--line)}
  .services-grid,.blog-grid,.gallery-grid,.process-grid,.footer-grid{grid-template-columns:1fr}
  .gallery-item:nth-child(4n+1){grid-row:auto;aspect-ratio:4/3}
  .field-row{grid-template-columns:1fr}
  .svc-row{grid-template-columns:auto 1fr auto;gap:1rem}
  .mobile-bar{display:grid;grid-template-columns:repeat(3,1fr);position:fixed;left:0;right:0;bottom:0;z-index:180;
    background:var(--ink);border-top:1px solid rgba(255,255,255,.12)}
  .mobile-bar a{display:flex;flex-direction:column;align-items:center;gap:2px;padding:.6rem;color:var(--paper);
    font-family:var(--f-mono);font-size:.62rem;letter-spacing:.05em;text-transform:uppercase}
  .mobile-bar a .ico{width:20px;height:20px}
  .mobile-bar .mb-call{color:var(--gold)}
  .mobile-bar .mb-quote{background:var(--gold);color:#0E0E0E}
  .float-wa{bottom:76px}.to-top{bottom:140px}
  body{padding-bottom:60px}
}

/* Reduced motion */
@media(prefers-reduced-motion:reduce){
  *{animation-duration:.01ms!important;transition-duration:.01ms!important}
  .reveal{opacity:1;transform:none}
  .marquee-track{animation:none}
}

/* Image placeholder (branded) */
.img-ph{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.8rem;width:100%;height:100%;
  background:linear-gradient(135deg,#1a1a1a,#0E0E0E);color:rgba(255,195,73,.3)}
.img-ph .ph-ico{width:64px;height:64px}
.img-ph span{font-family:var(--f-mono);font-size:.72rem;letter-spacing:.08em;text-transform:uppercase;color:rgba(255,255,255,.4)}

/* ============================================================================
   CLEAN TYPE DIRECTION — Work Sans headings, Inter Tight body, no monospace,
   normal-case labels. (Client chose "clean & professional".)
   Appended last so it wins; the layout is unchanged, only label typography.
   ========================================================================== */
.eyebrow,.hero-kicker,.hero-index,.hero-rating,.card-link,.trust-item,
.stat span,.pkg-highlight,.pkg-badge,.review-by span span,.footer-col h4,
.footer-areas h4,.post-meta,.crumbs,.ci-item b,.field label,.mobile-bar a,
.cam-hud,.lb-cap,.lb-count,.svc-num,.nav-list a,.nav-cta .btn-ghost,.btn{
  font-family:var(--font-body);
  text-transform:none;
  letter-spacing:normal;
}
/* Give the small labels enough weight to read now they're not tracked caps */
.eyebrow{font-weight:600;letter-spacing:.01em;font-size:.82rem}
.hero-kicker{font-weight:500;font-size:.82rem;letter-spacing:.01em}
.hero-index,.post-meta,.stat span,.footer-areas p,.crumbs,.lb-count{font-weight:400}
.nav-list a{font-weight:600;font-size:.92rem}
.footer-col h4,.footer-areas h4{font-weight:700;font-size:.95rem;letter-spacing:0}
.field label,.ci-item b{font-weight:600;font-size:.8rem;letter-spacing:0}
.btn{font-weight:600;letter-spacing:.01em}
.stat span,.pkg-highlight,.trust-item{font-weight:500;font-size:.86rem}
.svc-num{font-weight:600}
/* Marquee reads better sentence-weight, not shouty */
.marquee-track{text-transform:none;font-weight:700}

/* ============================================================================
   COMPACT SCALE — dial the whole type/space system down a notch.
   (Client: "everything is too big.")  Section vertical padding is reduced via
   theme.section_pad so the admin still controls it; everything else here.
   ========================================================================== */
h1{font-size:clamp(2rem,1.4rem+2.2vw,3.4rem);line-height:1.02;letter-spacing:-.03em}
h2{font-size:clamp(1.45rem,1.1rem+1.15vw,2.1rem);letter-spacing:-.02em}
h3{font-size:clamp(1.05rem,.98rem+.32vw,1.22rem)}
.lead{font-size:1.05rem;line-height:1.6}
.section-head{margin-bottom:clamp(1.7rem,3.4vw,2.6rem);padding-bottom:1.1rem}
.section-head p{font-size:1rem;margin-top:.7rem}
.eyebrow{font-size:.78rem;margin-bottom:.8rem}

.hero{padding:clamp(1.6rem,3.5vw,3rem) 0 clamp(1.8rem,3.5vw,3.2rem)}
.hero-kicker{margin-bottom:1.1rem}
.hero-sub{font-size:clamp(1rem,.92rem+.3vw,1.1rem);margin-bottom:1.4rem}
.hero-cta{margin-bottom:1.5rem;gap:1.4rem}
.hero-index{top:-1.3rem}

.stats-row .stat{padding:1.4rem clamp(.8rem,1.6vw,1.4rem)}
.stat b{font-size:clamp(1.45rem,1.1rem+.85vw,1.95rem)}
.stat span{font-size:.82rem}

.svc-row{padding:clamp(.95rem,1.7vw,1.45rem) .3rem}
.svc-row-title{font-size:clamp(1.1rem,.95rem+.75vw,1.5rem)}
.svc-row-desc{font-size:.92rem}
.svc-row-ico{width:34px;height:34px}

.card{padding:1.5rem 1.4rem}
.card h3{font-size:1.08rem}
.card p{font-size:.92rem}

.why-point{padding:1.1rem 0}
.process-grid .step{padding:1.7rem 1.4rem}
.step::before{font-size:1.9rem;margin-bottom:.6rem}
.step h3{font-size:1.05rem}

.review{padding:1.7rem 1.5rem;gap:.8rem}
.review>p{font-size:1.04rem;line-height:1.45}

.faq-q{padding:1.15rem .2rem;font-size:clamp(1rem,.95rem+.28vw,1.14rem)}
.faq-a-inner{padding-bottom:1.15rem}

.cta-band{padding:clamp(2rem,3.6vw,3.2rem) clamp(1.3rem,3vw,2.4rem)}
.cta-band p{font-size:1rem;margin:.8rem 0 1.5rem}

.pkg-card{padding:1.5rem 1.4rem}
.pkg-price{font-size:1.6rem}

.marquee{padding:.7rem 0}
.marquee-track{font-size:.9rem}

.page-hero{padding:clamp(2rem,3.6vw,3.2rem) 0 clamp(1.6rem,2.8vw,2.4rem)}
.svc-features{gap:.65rem 1.4rem}
.svc-media,.why-media,.cam-feed,.hero-frame{border-radius:var(--radius)}

.brand-logo{height:32px}
.header-inner{min-height:58px}
.nav-list a{font-size:.88rem}
.btn{padding:.82rem 1.4rem;font-size:.8rem}
.btn-lg{padding:1rem 1.7rem;font-size:.82rem}

/* ============================================================================
   REFURBISHMENT REPOSITION — core services, before/after, audiences, areas
   ========================================================================== */
.section-cta{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;margin-top:2.2rem}
.hero-cta-sub{display:flex;align-items:center;gap:.5ch;color:var(--muted);font-size:.92rem;margin-bottom:1.2rem}
.hero-cta-sub .ico{width:16px;height:16px;color:var(--gold-deep)}
.hero-cta-sub a{color:var(--ink);border-bottom:1px solid var(--gold);font-weight:600}
.btn-wa{background:#25d366;color:#fff;border-color:#25d366}
.btn-wa:hover{background:#1ebe5b;color:#fff;border-color:#1ebe5b}
.btn-wa .ico{width:18px;height:18px}

/* ---- Core services (curated, grouped) ----------------------------------- */
.core-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--line);border:1px solid var(--line)}
.core-card{background:var(--paper);padding:1.5rem 1.4rem;display:grid;grid-template-columns:auto 1fr auto;gap:1rem;align-items:start;transition:background .3s var(--ease)}
.core-card:hover{background:var(--paper-2)}
.core-ico{width:44px;height:44px;display:flex;align-items:center;justify-content:center;border:1px solid var(--line);border-radius:var(--radius);color:var(--gold-deep)}
.core-ico .ico{width:23px;height:23px}
.core-title{display:block;font-family:var(--f-disp);font-weight:700;font-size:1.12rem;color:var(--ink);margin-bottom:.25rem;letter-spacing:-.01em}
.core-desc{display:block;color:var(--muted);font-size:.92rem;line-height:1.5}
.core-go{align-self:center;color:var(--ink)}
.core-go .ico{width:18px;height:18px;transition:transform .3s var(--ease)}
.core-card:hover .core-go .ico{transform:translateX(4px)}
.core-card.big{grid-column:1/-1;background:var(--ink);color:var(--paper);padding:clamp(1.6rem,3vw,2.4rem)}
.core-card.big .core-title{color:var(--paper);font-size:clamp(1.3rem,1rem+1.2vw,1.7rem)}
.core-card.big .core-desc{color:rgba(255,255,255,.72);font-size:1.02rem;max-width:64ch}
.core-card.big .core-ico{border-color:rgba(255,255,255,.24);color:var(--gold)}
.core-card.big .core-go{color:var(--gold)}

/* ---- Before / after slider ---------------------------------------------- */
.ba-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(1rem,2vw,1.6rem)}
.ba-item{margin:0}
.ba-frame{position:relative;aspect-ratio:4/3;overflow:hidden;background:var(--ink);border-radius:var(--radius);user-select:none}
.ba-after,.ba-before{position:absolute;inset:0}
.ba-after img,.ba-after .img-ph,.ba-before img,.ba-before .img-ph{width:100%;height:100%;object-fit:cover}
.ba-before{clip-path:inset(0 50% 0 0)}
.ba-before .img-ph{filter:grayscale(1) brightness(.7)}
.ba-tag{position:absolute;top:10px;font-family:var(--font-body);font-size:.68rem;font-weight:600;letter-spacing:.04em;
  text-transform:uppercase;padding:.2rem .5rem;border-radius:2px;color:#fff;background:rgba(0,0,0,.6);z-index:3}
.ba-tag-b{left:10px}.ba-tag-a{right:10px;background:var(--gold);color:#0E0E0E}
.ba-divider{position:absolute;top:0;bottom:0;left:50%;width:2px;background:var(--gold);transform:translateX(-1px);z-index:4;pointer-events:none}
.ba-handle{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:38px;height:38px;border-radius:50%;
  background:var(--gold);color:#0E0E0E;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 14px rgba(0,0,0,.35)}
.ba-handle .ico{width:15px;height:15px}.ba-handle .ico:first-child{transform:rotate(180deg);margin-right:-4px}
.ba-range{position:absolute;inset:0;width:100%;height:100%;margin:0;opacity:0;cursor:ew-resize;z-index:5}
.ba-label{margin-top:.9rem;font-weight:600;color:var(--ink);font-size:.98rem}

/* ---- Audiences (homeowners / landlords / investors) --------------------- */
.aud-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--line);border:1px solid var(--line)}
.aud-card{background:var(--paper);padding:2rem 1.8rem;display:flex;flex-direction:column;gap:.7rem}
.aud-ico{width:50px;height:50px;display:flex;align-items:center;justify-content:center;background:var(--ink);color:var(--gold);border-radius:var(--radius);margin-bottom:.4rem}
.aud-ico .ico{width:26px;height:26px}
.aud-card h3{font-size:1.25rem}
.aud-card p{color:var(--muted);font-size:.96rem}

/* ---- Areas covered ------------------------------------------------------- */
.areas-cloud{display:flex;flex-wrap:wrap;gap:.7rem}
.area-chip{display:inline-flex;align-items:center;gap:.4ch;padding:.5rem .9rem;border:1px solid var(--line);
  border-radius:2px;font-size:.9rem;color:var(--ink);background:var(--paper);transition:.25s var(--ease)}
.area-chip:hover{border-color:var(--gold);background:var(--paper-2)}
.area-chip .ico{width:15px;height:15px;color:var(--gold-deep)}

/* ---- 5-step process ------------------------------------------------------ */
.process-grid.steps-5{grid-template-columns:repeat(5,1fr)}

@media(max-width:980px){
  .core-grid,.ba-grid,.aud-grid{grid-template-columns:repeat(2,1fr)}
  .process-grid.steps-5{grid-template-columns:repeat(2,1fr)}
  .core-card{grid-template-columns:auto 1fr;grid-auto-flow:row}
  .core-go{display:none}
}
@media(max-width:768px){
  .core-grid,.ba-grid,.aud-grid{grid-template-columns:1fr}
  .process-grid.steps-5{grid-template-columns:1fr}
  .hero-cta .btn{width:100%}
}

/* ============================================================================
   PHASE 2 — projects (case studies), areas landing pages, costs guide
   ========================================================================== */
.proj-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--line);border:1px solid var(--line)}
.proj-card{background:var(--paper);display:flex;flex-direction:column;transition:background .3s var(--ease)}
.proj-card:hover{background:var(--paper-2)}
.proj-card-img{aspect-ratio:16/11;overflow:hidden}
.proj-card-img img,.proj-card-img .img-ph{width:100%;height:100%;object-fit:cover;transition:transform .6s var(--ease)}
.proj-card:hover .proj-card-img img{transform:scale(1.05)}
.proj-card-body{padding:1.5rem;display:flex;flex-direction:column;gap:.5rem}
.proj-meta{display:inline-flex;align-items:center;gap:.4ch;font-size:.82rem;color:var(--muted)}
.proj-meta .ico{width:14px;height:14px;color:var(--gold-deep)}
.proj-card h3{font-size:1.2rem}
.proj-facts{list-style:none;display:flex;flex-direction:column;margin:.4rem 0 0}
.proj-facts li{display:flex;justify-content:space-between;gap:1rem;padding:.75rem 0;border-bottom:1px solid var(--line);font-size:.94rem}
.proj-facts li:first-child{border-top:1px solid var(--line)}
.proj-facts li span{color:var(--muted)}
.proj-facts li b{color:var(--ink);text-align:right}

.areas-index{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--line);border:1px solid var(--line)}
.area-link{background:var(--paper);padding:1.4rem 1.5rem;display:flex;flex-direction:column;gap:.5rem;transition:background .3s var(--ease)}
.area-link:hover{background:var(--paper-2)}
.area-link>span:first-child{display:inline-flex;align-items:center;gap:.5ch;font-family:var(--f-disp);font-weight:700;font-size:1.14rem;color:var(--ink)}
.area-link>span:first-child .ico{width:18px;height:18px;color:var(--gold-deep)}

.costs-layout{display:grid;grid-template-columns:1.6fr .9fr;gap:clamp(2rem,4vw,4rem);align-items:start}
.cost-factors{display:grid;grid-template-columns:1fr 1fr;gap:1px;background:var(--line);border:1px solid var(--line);margin-top:1rem}
.cost-factor{background:var(--paper);padding:1.4rem}
.cost-factor h3{font-size:1.05rem;margin-bottom:.3rem}
.cost-factor p{color:var(--muted);font-size:.92rem}
.cost-table{width:100%;border-collapse:collapse;margin-top:.5rem}
.cost-table td{padding:.9rem 0;border-bottom:1px solid var(--line)}
.cost-table td:first-child{color:var(--ink)}
.cost-table td:last-child{text-align:right;font-family:var(--f-disp);font-weight:700;color:var(--gold-deep);white-space:nowrap}

@media(max-width:980px){.proj-grid,.areas-index{grid-template-columns:repeat(2,1fr)}.costs-layout{grid-template-columns:1fr}}
@media(max-width:768px){.proj-grid,.areas-index,.cost-factors{grid-template-columns:1fr}}

/* ============================================================================
   STANDARD SIZES — conventional website type scale (supersedes COMPACT SCALE).
   Client: "make them standard size, the texts are too big."
   ========================================================================== */
h1{font-size:clamp(1.8rem,1.45rem+1.15vw,2.35rem);line-height:1.14;letter-spacing:-.02em}
h2{font-size:clamp(1.3rem,1.1rem+.7vw,1.65rem);letter-spacing:-.015em;line-height:1.15}
h3{font-size:clamp(1rem,.96rem+.2vw,1.12rem)}
.lead{font-size:1.02rem;line-height:1.6}
.section-head p{font-size:.98rem}
.eyebrow,.hero-kicker{font-size:.74rem}

.hero-sub{font-size:clamp(.98rem,.93rem+.18vw,1.05rem)}
.stat b{font-size:clamp(1.3rem,1.05rem+.6vw,1.6rem)}

.svc-row-title{font-size:clamp(1.05rem,.95rem+.45vw,1.28rem)}
.svc-row-desc,.core-desc,.aud-card p,.card p,.proj-card p,.why-point p{font-size:.9rem}
.core-title{font-size:1.02rem}
.core-card.big .core-title{font-size:clamp(1.15rem,1rem+.7vw,1.4rem)}
.core-card.big .core-desc{font-size:.95rem}
.aud-card h3,.card h3,.proj-card h3{font-size:1.05rem}
.review>p{font-size:1.02rem;font-weight:500;line-height:1.5}
.step::before{font-size:1.7rem}
.faq-q{font-size:clamp(.98rem,.95rem+.2vw,1.1rem)}
.pkg-price{font-size:1.45rem}
.brand-text{font-size:1.05rem}
.btn{font-size:.78rem}.btn-lg{font-size:.8rem}

/* ============================================================================
   ICON SIZING SAFETY — give every .ico a sensible default so an icon used
   outside a sized container (e.g. the WhatsApp glyph in the quote form note)
   can't render at the browser's huge default SVG size.
   ========================================================================== */
.ico{width:1.1em;height:1.1em;vertical-align:-.18em;flex:none}
.form-note{display:flex;align-items:center;gap:.45ch;flex-wrap:wrap;line-height:1.5}
.form-note .ico{color:#25d366;width:1.1em;height:1.1em}

/* ============================================================================
   MOBILE MENU FIX — .site-header's backdrop-filter was creating a containing
   block that trapped the position:fixed off-canvas nav inside the header box.
   Drop the blur on mobile (solid header bg instead) so the menu fills the screen.
   ========================================================================== */
@media(max-width:768px){
  .site-header{background:var(--paper);backdrop-filter:none;-webkit-backdrop-filter:none}
}

/* ============================================================================
   MOBILE MENU v2 — full-page, opaque, centered, bigger text, submenus always
   expanded (no tap-to-open needed), no dark backdrop.
   ========================================================================== */
@media(max-width:768px){
  /* Full page, opaque, vertically + horizontally centered */
  .main-nav{
    inset:0;width:100%;max-width:100%;
    background:var(--paper);
    padding:5rem 1.4rem 2.5rem;
    align-items:center;justify-content:center;text-align:center;gap:.2rem;
  }
  .nav-backdrop{display:none}            /* no screen darkening — menu covers all */

  .nav-list{width:100%;align-items:stretch;gap:0}
  .nav-list>li{text-align:center;border-bottom:1px solid var(--line)}
  .nav-list>li:first-child{border-top:1px solid var(--line)}
  .nav-list>li>a{
    display:block;text-align:center;justify-content:center;
    font-size:1.35rem;font-weight:600;padding:1.15rem .2rem;
  }
  .nav-list>li>a::after{display:none}

  /* Submenu (About) always shown as centered sub-items — nothing to tap open */
  .dd-toggle{display:none}
  .has-dropdown{display:block}
  .dropdown{
    max-height:none!important;overflow:visible;opacity:1;visibility:visible;
    position:static;transform:none;border:0;box-shadow:none;background:transparent;
    padding:.2rem 0 .8rem;margin:0;
  }
  .dropdown li{text-align:center}
  .dropdown a{display:block;text-align:center;font-size:1.05rem;color:var(--muted);padding:.55rem .2rem}
  .dropdown a:hover{color:var(--gold-deep)}

  .nav-cta{width:100%;align-items:stretch;margin-top:1.8rem;gap:.9rem}
  .nav-cta .btn{width:100%;justify-content:center;font-size:.92rem;padding:1rem}

  .nav-close{top:1.3rem;right:1.3rem}
  .nav-close .ico{width:30px;height:30px}
}

/* ============================================================================
   HEADER LOGO SIZING — uploaded logos include a full wordmark, so give the
   header brand image more height so it stays legible.
   ========================================================================== */
.site-header .brand-logo{height:52px}
.header-inner{min-height:74px}
@media(max-width:768px){ .site-header .brand-logo{height:42px} .header-inner{min-height:62px} }
