/* ============================================================
   DSTV Installations Kommetjie — shared stylesheet
   Flat, light, professional local-trade system.
   Slangkop palette, solid colours only: no gradients, no glows.
   ============================================================ */
:root{
  --primary:#17A2A8;
  --primary-strong:#0E7E84;
  --primary-dark:#06333A;
  --primary-deep:#042227;

  --accent:#F4713B;          /* brand coral: icons + marks on dark */
  --accent-cta:#C85118;      /* solid CTA fill, 4.5:1 with white */
  --accent-cta-hover:#A84212;
  --accent-deep:#B4451A;     /* coral-family text on light */
  --accent-soft:#FCEBE2;

  --text:#1D2E30;
  --text-soft:#48605F;
  --white:#FFFFFF;
  --surface:#FFFFFF;
  --alt:#F2F7F7;             /* alternating band */
  --tint:#E7F2F2;            /* icon tiles, soft fills */
  --line:#D5E1E1;
  --line-soft:#E4EDED;

  --radius:10px;
  --radius-sm:8px;
  --radius-xs:6px;

  --shadow-sm:0 1px 2px rgba(6,51,58,.06);
  --shadow:0 1px 3px rgba(6,51,58,.08),0 2px 8px -4px rgba(6,51,58,.10);
  --shadow-lg:0 2px 6px rgba(6,51,58,.08),0 10px 24px -14px rgba(6,51,58,.22);

  --space-2:.5rem; --space-3:.75rem; --space-4:1rem; --space-6:1.5rem;
  --space-8:2rem; --space-10:2.5rem; --space-12:3rem; --space-16:4rem;
  --space-20:5rem; --space-24:6rem; --space-28:7rem;

  --font-display:"Bricolage Grotesque",system-ui,sans-serif;
  --font-body:"Instrument Sans",system-ui,sans-serif;

  --ease:cubic-bezier(.16,1,.3,1);
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;scroll-padding-top:80px}
body{
  font-family:var(--font-body);
  color:var(--text);
  background:var(--surface);
  line-height:1.6;
  font-size:1rem;
  -webkit-font-smoothing:antialiased;
}
img,svg{display:block;max-width:100%}
a{color:var(--primary-strong);text-decoration:none;transition:color .15s linear}
a:hover{color:var(--accent-deep)}
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{
  outline:3px solid var(--accent-cta);
  outline-offset:2px;
  border-radius:3px;
}
/* brighter ring on the deep-teal bands, where the CTA coral is only 3:1 */
.hero a:focus-visible,.site-header a:focus-visible,.site-header button:focus-visible,
.cta-band a:focus-visible,.site-footer a:focus-visible,.mobile-bar a:focus-visible,
.aside-card.dark a:focus-visible{
  outline-color:var(--accent);
}
.container{width:min(1160px,100% - 2rem);margin-inline:auto}
.container-narrow{width:min(860px,100% - 2rem);margin-inline:auto}
@media (min-width:700px){
  .container{width:min(1160px,100% - 3rem)}
  .container-narrow{width:min(860px,100% - 3rem)}
}

/* ---------- Section rhythm ---------- */
.section{padding:2.75rem 0;border-bottom:1px solid var(--line-soft)}
@media (min-width:700px){.section{padding:3.5rem 0}}
@media (min-width:1024px){.section{padding:4.5rem 0}}
.section-tint{background:var(--alt)}
.cta-band{border-bottom:0}

/* ---------- Typography ---------- */
h1,h2,h3{font-family:var(--font-display);line-height:1.15;color:var(--primary-dark);letter-spacing:-.01em}
h1{font-size:clamp(1.95rem,5.4vw,2.9rem);font-weight:800}
h2{font-size:clamp(1.5rem,3.1vw,2.05rem);font-weight:800}
h3{font-size:1.13rem;font-weight:700}
.section-head{max-width:46rem;margin-bottom:1.75rem}
@media (min-width:900px){.section-head{margin-bottom:2.25rem}}
.section-head p{margin-top:.6rem;color:var(--text-soft);font-size:1rem}
.section-head.center{margin-inline:auto;text-align:center}
.kicker{
  display:flex;align-items:center;gap:.5rem;
  font-weight:700;font-size:.75rem;letter-spacing:.14em;text-transform:uppercase;
  color:var(--accent-deep);margin-bottom:.5rem;
}
.section-head.center .kicker{justify-content:center}
.kicker::before{content:"";width:20px;height:2px;background:var(--accent-cta);flex:none}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  font-family:var(--font-body);font-weight:700;font-size:.97rem;line-height:1.2;
  padding:.78rem 1.25rem;border-radius:var(--radius-sm);border:1.5px solid transparent;
  cursor:pointer;white-space:nowrap;min-height:46px;
  transition:background-color .15s linear,color .15s linear,border-color .15s linear;
}
.btn svg{width:1.05em;height:1.05em;flex:none}
.btn-accent{background:var(--accent-cta);color:#fff;border-color:var(--accent-cta)}
.btn-accent:hover{background:var(--accent-cta-hover);border-color:var(--accent-cta-hover);color:#fff}
.btn-primary{background:var(--primary-strong);color:#fff;border-color:var(--primary-strong)}
.btn-primary:hover{background:#0A6469;border-color:#0A6469;color:#fff}
.btn-ghost,.btn-outline{
  background:var(--white);color:var(--primary-dark);border-color:#9EBDBE;
}
.btn-ghost:hover,.btn-outline:hover{background:var(--tint);color:var(--primary-dark);border-color:var(--primary-strong)}
/* Outline buttons sitting on the dark bands */
.hero .btn-ghost,.cta-band .btn-ghost,.aside-card.dark .btn-ghost,.site-header .btn-ghost{
  background:transparent;color:#fff;border-color:rgba(255,255,255,.6);
}
.hero .btn-ghost:hover,.cta-band .btn-ghost:hover,.aside-card.dark .btn-ghost:hover,.site-header .btn-ghost:hover{
  background:rgba(255,255,255,.12);color:#fff;border-color:#fff;
}

/* ---------- Header ---------- */
.site-header{
  position:sticky;top:0;z-index:60;
  background:var(--primary-dark);
  border-bottom:3px solid var(--accent-cta);
}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:1rem;min-height:64px}
@media (min-width:900px){.header-inner{min-height:72px}}
.brand{display:flex;align-items:center;gap:.6rem;color:#fff;font-family:var(--font-display)}
.brand:hover{color:#fff}
.brand-mark{
  width:38px;height:38px;flex:none;border-radius:var(--radius-xs);
  background:var(--primary-strong);
  display:grid;place-items:center;color:#fff;
}
.brand-mark svg{width:22px;height:22px}
.brand-text{line-height:1.1}
.brand-text strong{display:block;font-size:1rem;font-weight:800}
.brand-text span{display:block;font-size:.62rem;font-weight:600;letter-spacing:.18em;text-transform:uppercase;color:#9AD2D5}
.main-nav ul{display:flex;gap:1.75rem;list-style:none}
.main-nav a{
  color:#DCEEEF;font-weight:600;font-size:.84rem;letter-spacing:.09em;
  padding:.35rem 0;border-bottom:2px solid transparent;
}
.main-nav a:hover{color:#fff;border-bottom-color:var(--accent)}
.main-nav a[aria-current="page"]{color:#fff;border-bottom-color:var(--accent)}
.header-call{display:none}
.nav-toggle{
  display:grid;place-items:center;width:44px;height:44px;
  background:transparent;border:1.5px solid rgba(255,255,255,.4);border-radius:var(--radius-xs);
  color:#fff;cursor:pointer;
}
.nav-toggle svg{width:22px;height:22px}
.nav-toggle .icon-close{display:none}
.nav-toggle[aria-expanded="true"] .icon-burger{display:none}
.nav-toggle[aria-expanded="true"] .icon-close{display:block}
@media (max-width:899px){
  .main-nav{
    position:absolute;top:100%;left:0;right:0;
    background:var(--primary-dark);
    border-top:1px solid rgba(255,255,255,.12);
    display:none;padding:.5rem 1rem 1rem;
  }
  .main-nav.open{display:block}
  .main-nav ul{flex-direction:column;gap:0}
  .main-nav a{display:block;padding:.8rem .25rem;font-size:.98rem;letter-spacing:.04em;border-bottom:1px solid rgba(255,255,255,.1)}
  .main-nav li:last-child a{border-bottom:0}
  .main-nav a:hover{color:#fff;border-bottom-color:rgba(255,255,255,.1)}
}
@media (min-width:900px){
  .nav-toggle{display:none}
  .header-call{display:inline-flex;padding:.65rem 1.15rem;font-size:.9rem;min-height:44px}
}

/* ---------- Home hero — "Slangkop sunset" band ----------
   The site's signature section: solid deep-teal band, a solid coral sun
   disc dipping behind a solid wave divider that cuts into the page.
   Flat by construction — one solid fill per shape. No gradients, no
   backdrop-filter, no blur, no glow, no clipped-background text. */
.hero{
  position:relative;overflow:hidden;
  background:var(--primary-dark);
  color:#fff;
  padding:1.9rem 0 3.25rem;
}
@media (min-width:700px){.hero{padding:2.9rem 0 5rem}}
@media (min-width:1024px){.hero{padding:3.6rem 0 6.5rem}}
/* keep the hero on the same left edge as every other section */
.hero-grid{position:relative;z-index:1;max-width:46rem}
.hero-grid h1{max-width:22ch}

/* Sun disc — one solid coral circle, only where there is empty column
   space to its right, so it can never sit behind hero copy. */
.hero-sun{display:none}
@media (min-width:1100px){
  .hero-sun{
    display:block;position:absolute;z-index:0;pointer-events:none;
    right:3.5rem;bottom:1.25rem;
    width:12.5rem;height:12.5rem;border-radius:50%;
    background:var(--accent-cta);
  }
}

/* Wave divider — single-colour path, matches the section below it. */
.hero-wave{position:absolute;left:0;right:0;bottom:-1px;z-index:2;pointer-events:none;line-height:0}
.hero-wave svg{width:100%;height:auto;display:block}

.hero-eyebrow{
  display:inline-flex;align-items:center;gap:.5rem;
  background:#0B4A52;border:1px solid #1C6670;border-radius:var(--radius-xs);
  padding:.34rem .7rem;margin-bottom:.9rem;
  font-size:.72rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;
  color:#BFE8EA; /* 7.5:1 on the chip fill */
}
.hero-eyebrow svg{width:14px;height:14px;color:var(--accent);flex:none}
.hero h1{color:#fff}
.hero h1 .loc{color:#5FD3D8} /* 7.6:1 on the band — solid, not clipped text */
.hero-sub{margin-top:.7rem;max-width:40rem;font-size:1rem;color:#C9E4E6}
@media (min-width:700px){.hero-sub{font-size:1.05rem;margin-top:.85rem}}

/* CTA rows — full-width stacked on phones, tight inline from 560px */
.hero-ctas{display:grid;grid-template-columns:1fr;gap:.55rem;margin-top:1.15rem}
.hero-ctas .btn{width:100%}
@media (min-width:560px){
  .hero-ctas{display:flex;flex-wrap:wrap;gap:.65rem;margin-top:1.4rem}
  .hero-ctas .btn{width:auto}
}
.hero-badges{
  display:flex;flex-wrap:wrap;gap:.45rem 1.25rem;list-style:none;
  margin-top:1.1rem;padding-top:.95rem;border-top:1px solid rgba(255,255,255,.2);
}
.hero-badges li{display:inline-flex;align-items:center;gap:.4rem;font-weight:600;font-size:.86rem;color:#E7F6F7}
.hero-badges svg{width:16px;height:16px;color:var(--accent);flex:none}
@media (min-width:700px){.hero-badges{gap:.5rem 2rem;font-size:.92rem}}

/* ---------- Interior page hero ---------- */
.page-hero{
  background:var(--alt);
  border-bottom:1px solid var(--line);
  padding:1.25rem 0 1.75rem;
}
@media (min-width:700px){.page-hero{padding:1.75rem 0 2.5rem}}
@media (min-width:1024px){.page-hero{padding:2.25rem 0 3rem}}
.page-hero h1{max-width:44rem}
.page-hero .lede{margin-top:.7rem;max-width:40rem;font-size:1rem;color:var(--text-soft)}
@media (min-width:700px){.page-hero .lede{font-size:1.05rem}}
.page-hero .hero-ctas{margin-top:1.15rem}
@media (min-width:560px){.page-hero .hero-ctas{margin-top:1.4rem}}

/* ---------- Image slots ----------
   Every <img> carries explicit width/height attributes matching its exact
   intrinsic size (see IMAGES.md). The aspect-ratio rules below restate that
   same ratio in CSS so the box is reserved before the file loads and nothing
   shifts, on any browser. object-fit:cover means a real photo at a slightly
   different crop still fills the reserved box instead of distorting it.
   Flat only: solid placeholder fill, hairline border, no effects. */
.media{display:block;margin:0}
.media img{
  display:block;width:100%;height:auto;object-fit:cover;
  background:var(--tint);
  border:1px solid var(--line);border-radius:var(--radius);
}
.media figcaption{
  margin-top:.55rem;font-size:.84rem;line-height:1.45;color:var(--text-soft);
}

.hero-visual img{aspect-ratio:960/640}
.card-media img{aspect-ratio:640/400}
.card-media-wide img{aspect-ratio:1160/360}
.page-banner img{aspect-ratio:1160/400}
.page-banner.slim img{aspect-ratio:1160/280}
.trust-media img{aspect-ratio:1160/420}
.aside-media img{aspect-ratio:640/480}
.post-thumb img{aspect-ratio:640/360}
.post-figure img{aspect-ratio:800/450}

/* Hero visual — stacks under the copy on phones, becomes the right-hand
   column from 1024px. No hero copy, CTA or badge is altered by this. */
.hero-visual{margin-top:1.1rem}
.hero-visual img{border-color:rgba(255,255,255,.28)}
@media (min-width:1024px){
  .hero.has-visual .hero-grid{
    max-width:none;
    display:grid;grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);
    /* One row per text child — eyebrow, h1, sub, CTAs, badges.
       This must be declared: `grid-row:1/-1` on the visual resolves -1
       against the EXPLICIT row grid, so without these rows the span
       collapsed into row 1. The image then inflated row 1 to its own
       height and align-items:center pushed the eyebrow down the middle
       of it, which is what put a ~250px dead band above the badge. */
    grid-template-rows:repeat(5,auto);
    column-gap:2.75rem;row-gap:0;
    align-items:start;
    /* auto rows absorb leftover space under the default stretch behaviour,
       which spread the text block and left a dead band above the eyebrow */
    align-content:start;
  }
  .hero.has-visual .hero-grid > :not(.hero-visual){grid-column:1}
  /* image spans the full text block and centres against it, so the two
     columns read as one composition instead of two stacked blocks */
  .hero.has-visual .hero-visual{grid-column:2;grid-row:1 / -1;margin-top:0;align-self:center}
  /* the sun disc and the visual compete for the same column — the visual wins */
  .hero.has-visual .hero-sun{display:none}
}

/* Card images sit full-bleed against the card edge, above the icon */
.service-card .card-media{margin:-1.35rem -1.25rem .95rem}
@media (min-width:700px){.service-card .card-media{margin:-1.6rem -1.5rem 1.1rem}}
.post-card .post-thumb{margin:-1.3rem -1.2rem 1rem}
@media (min-width:700px){.post-card .post-thumb{margin:-1.5rem -1.4rem 1.1rem}}
.service-card .card-media img,.post-card .post-thumb img{
  border-width:0 0 1px 0;border-radius:var(--radius) var(--radius) 0 0;
}

/* Banners, trust and in-post figures */
.page-hero .page-banner{margin-top:1.25rem}
@media (min-width:700px){.page-hero .page-banner{margin-top:1.6rem}}
.trust-media{margin-bottom:1.5rem}
.aside-media{margin-bottom:0}
.prose .post-figure{margin:1.6rem 0}
@media (min-width:700px){.prose .post-figure{margin:1.9rem 0}}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs{margin-bottom:.9rem}
.breadcrumbs ol{display:flex;flex-wrap:wrap;gap:.35rem;list-style:none;font-size:.82rem;font-weight:600}
.breadcrumbs a{color:#0A6469}
.breadcrumbs a:hover{color:var(--accent-deep)}
.breadcrumbs li{display:inline-flex;align-items:center;gap:.35rem;color:var(--text-soft)}
.breadcrumbs li+li::before{content:"/";color:#9EB4B4;font-weight:400}
.breadcrumbs [aria-current="page"]{color:var(--primary-dark)}

/* ---------- Service cards / grids ---------- */
.services-grid{display:grid;gap:1rem;grid-template-columns:1fr}
@media (min-width:700px){.services-grid{grid-template-columns:1fr 1fr;gap:1.15rem}}
@media (min-width:1024px){
  .services-grid{grid-template-columns:repeat(6,1fr)}
  .service-card{grid-column:span 3}
  .service-card.wide{grid-column:span 6}
}
.service-card{
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius);
  padding:1.35rem 1.25rem;box-shadow:var(--shadow-sm);
  transition:border-color .15s linear,box-shadow .15s linear;
  position:relative;
  display:flex;flex-direction:column;
}
@media (min-width:700px){.service-card{padding:1.6rem 1.5rem}}
.service-card:hover,.service-card:focus-within{box-shadow:var(--shadow);border-color:var(--primary-strong)}
.service-icon{
  width:44px;height:44px;border-radius:var(--radius-xs);margin-bottom:.85rem;
  background:var(--tint);color:var(--primary-strong);
  display:grid;place-items:center;
}
.service-icon svg{width:24px;height:24px}
.service-card h3{margin-bottom:.4rem}
.service-card p{color:var(--text-soft);font-size:.95rem}
.card-link{
  display:inline-flex;align-items:center;gap:.4rem;
  margin-top:.9rem;font-weight:700;font-size:.9rem;color:var(--accent-deep);
}
.card-link::after{content:"";position:absolute;inset:0}
.card-link svg{width:15px;height:15px}
.service-tags{display:flex;flex-wrap:wrap;gap:.4rem;margin-top:.85rem;list-style:none}
.service-tags li{
  background:var(--accent-soft);color:#8F3413;font-weight:600;font-size:.82rem;
  padding:.28rem .6rem;border-radius:4px;
}

/* ---------- Pricing ---------- */
.pricing-grid{display:grid;gap:1rem;grid-template-columns:1fr}
@media (min-width:560px){.pricing-grid{grid-template-columns:1fr 1fr}}
@media (min-width:1024px){.pricing-grid{grid-template-columns:repeat(4,1fr);align-items:stretch;gap:1.15rem}}
.price-card{
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius);
  padding:1.4rem 1.15rem;text-align:center;box-shadow:var(--shadow-sm);
  display:flex;flex-direction:column;gap:.15rem;
  transition:border-color .15s linear,box-shadow .15s linear;
}
.price-card:hover{box-shadow:var(--shadow);border-color:var(--primary-strong)}
.price-card h3{font-size:1.05rem}
.price-from{font-size:.72rem;font-weight:700;letter-spacing:.11em;text-transform:uppercase;color:var(--text-soft);margin-top:.5rem}
.price-amount{font-family:var(--font-display);font-size:2.1rem;font-weight:800;color:var(--accent-deep);line-height:1.1}
.price-card p{color:var(--text-soft);font-size:.9rem;margin-top:.4rem;flex:1}
.price-card .btn{margin-top:1rem;width:100%;padding:.7rem 1rem;font-size:.9rem}
.price-card.featured{
  background:var(--primary-dark);
  border-color:var(--primary-dark);position:relative;
}
.price-card.featured h3{color:#fff}
.price-card.featured .price-from{color:#9AD2D5}
.price-card.featured .price-amount{color:#FFB98F}
.price-card.featured p{color:#C9E0E1}
.price-card.featured::after{
  content:"Most Popular";
  position:absolute;top:-11px;left:50%;transform:translateX(-50%);
  background:var(--accent-cta);color:#fff;
  font-size:.68rem;font-weight:700;letter-spacing:.07em;text-transform:uppercase;
  padding:.24rem .7rem;border-radius:4px;white-space:nowrap;
}
.pricing-note{
  text-align:center;color:var(--text-soft);font-size:.88rem;
  max-width:38rem;margin:1.5rem auto 0;
}

/* ---------- Area chips ---------- */
.area-chips{display:flex;flex-wrap:wrap;gap:.5rem;list-style:none;max-width:56rem}
.area-chips li{
  display:inline-flex;align-items:center;gap:.35rem;
  background:var(--white);border:1px solid var(--line);
  color:var(--primary-dark);font-weight:600;font-size:.88rem;
  padding:.42rem .75rem;border-radius:var(--radius-xs);
  transition:border-color .15s linear,background-color .15s linear;
}
.area-chips li:hover{border-color:var(--primary-strong);background:var(--tint)}
.area-chips svg{width:13px;height:13px;color:var(--primary-strong);flex:none}

/* ---------- CTA band (flat dark) ---------- */
.cta-band{background:var(--primary-dark);color:#E2F0F1;text-align:center}
.cta-band h2{color:#fff}
.cta-band .cta-copy{margin-top:.7rem;color:#C9E0E1;font-size:1rem;max-width:36rem;margin-inline:auto}
.cta-points{display:flex;flex-wrap:wrap;justify-content:center;gap:.4rem 1.35rem;margin-top:1rem;list-style:none}
.cta-points li{display:inline-flex;align-items:center;gap:.4rem;font-weight:600;color:#E2F0F1;font-size:.92rem}
.cta-points svg{width:15px;height:15px;color:var(--accent)}
.cta-band .hero-ctas{justify-content:center;margin-top:1.25rem}
@media (min-width:560px){.cta-band .hero-ctas{margin-top:1.6rem}}

/* ---------- Why choose ---------- */
.why-grid{display:grid;gap:1rem;grid-template-columns:1fr}
@media (min-width:560px){.why-grid{grid-template-columns:1fr 1fr}}
@media (min-width:1024px){.why-grid{grid-template-columns:repeat(4,1fr);gap:1.15rem}}
.why-card{
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius);
  padding:1.35rem 1.25rem;box-shadow:var(--shadow-sm);
  transition:border-color .15s linear,box-shadow .15s linear;
}
@media (min-width:700px){.why-card{padding:1.6rem 1.4rem}}
.why-card:hover{box-shadow:var(--shadow);border-color:var(--primary-strong)}
.why-icon{
  width:44px;height:44px;border-radius:var(--radius-xs);margin-bottom:.85rem;
  background:var(--tint);color:var(--primary-strong);display:grid;place-items:center;
}
.why-card:nth-child(even) .why-icon{background:var(--accent-soft);color:var(--accent-deep)}
.why-icon svg{width:23px;height:23px}
.why-card h3{margin-bottom:.35rem;font-size:1.05rem}
.why-card p{color:var(--text-soft);font-size:.93rem}

/* ---------- Testimonials ---------- */
.rating-strip{
  display:inline-flex;align-items:center;flex-wrap:wrap;justify-content:center;gap:.5rem;margin-top:.85rem;
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius-xs);
  padding:.5rem .9rem;
}
.rating-strip .stars{color:var(--accent-deep);letter-spacing:.1em;font-size:1rem}
.rating-strip strong{font-family:var(--font-display);font-size:1rem;color:var(--primary-dark)}
.rating-strip span{color:var(--text-soft);font-size:.88rem}
.review-grid{display:grid;gap:1rem;grid-template-columns:1fr;margin-top:1.5rem}
@media (min-width:560px){.review-grid{grid-template-columns:1fr 1fr}}
@media (min-width:1024px){.review-grid{grid-template-columns:repeat(3,1fr);gap:1.15rem}}
.review-card{
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius);
  padding:1.25rem 1.15rem;box-shadow:var(--shadow-sm);
  display:flex;flex-direction:column;gap:.7rem;
  transition:border-color .15s linear,box-shadow .15s linear;
}
@media (min-width:700px){.review-card{padding:1.45rem 1.35rem}}
.review-card:hover{box-shadow:var(--shadow);border-color:var(--primary-strong)}
.review-stars{color:var(--accent-deep);font-size:.92rem;letter-spacing:.12em}
.review-card blockquote{font-size:.95rem;color:var(--text);flex:1}
.review-card blockquote::before{content:"\201C"}
.review-card blockquote::after{content:"\201D"}
.review-meta{display:flex;align-items:center;gap:.7rem}
.review-avatar{
  width:38px;height:38px;border-radius:var(--radius-xs);flex:none;
  display:grid;place-items:center;color:#fff;font-weight:700;font-size:.9rem;
  font-family:var(--font-display);
}
.review-meta cite{font-style:normal;line-height:1.3}
.review-meta cite strong{display:block;color:var(--primary-dark);font-size:.93rem}
.review-meta cite span{color:var(--text-soft);font-size:.8rem}

/* Single testimonial pull (service pages) */
.testimonial-pull{
  background:var(--white);border:1px solid var(--line);border-left:4px solid var(--accent-cta);
  border-radius:var(--radius);padding:1.3rem 1.25rem;
  display:flex;flex-direction:column;gap:.8rem;max-width:44rem;box-shadow:var(--shadow-sm);
}
.testimonial-pull blockquote{font-size:1.02rem;color:var(--text)}
.testimonial-pull blockquote::before{content:"\201C"}
.testimonial-pull blockquote::after{content:"\201D"}

/* ---------- FAQ ---------- */
.faq-list{max-width:50rem;margin-inline:auto;display:grid;gap:.6rem}
.faq-list.left{margin-inline:0}
.faq-item{
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius-sm);
  overflow:hidden;
  transition:border-color .15s linear;
}
.faq-item.open{border-color:var(--primary-strong)}
.faq-q{
  width:100%;display:flex;align-items:center;justify-content:space-between;gap:.9rem;
  background:none;border:0;cursor:pointer;text-align:left;
  padding:.9rem 1rem;min-height:48px;
  font-family:var(--font-display);font-weight:700;font-size:.99rem;color:var(--primary-dark);
  line-height:1.35;
}
.faq-q:hover{color:var(--primary-strong)}
.faq-chevron{
  flex:none;width:24px;height:24px;color:var(--primary-strong);
  display:grid;place-items:center;
  transition:transform .2s var(--ease);
}
.faq-chevron svg{width:18px;height:18px}
.faq-item.open .faq-chevron{transform:rotate(180deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .28s var(--ease)}
.faq-a p{padding:0 1rem 1rem;color:var(--text-soft);font-size:.95rem}

/* ---------- Gallery ---------- */
.gallery-grid{display:grid;gap:.6rem;grid-template-columns:repeat(3,1fr)}
@media (min-width:640px){.gallery-grid{grid-template-columns:repeat(4,1fr);gap:.75rem}}
@media (min-width:1024px){.gallery-grid{grid-template-columns:repeat(5,1fr)}}
.gallery-tile{
  aspect-ratio:1/1;border-radius:var(--radius-xs);position:relative;overflow:hidden;
  display:flex;align-items:flex-end;
}
.gallery-tile.t-install{background:var(--primary-strong)}
.gallery-tile.t-dish{background:var(--accent-cta)}
.gallery-tile.t-mount{background:#134A54}
.gallery-icon{
  position:absolute;top:50%;left:50%;transform:translate(-50%,-60%);
  color:rgba(255,255,255,.9);width:30%;height:30%;
}
.gallery-label{
  position:relative;z-index:1;margin:.4rem .5rem;
  color:#fff;font-size:.66rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;
}

/* ---------- Service page layout ---------- */
.service-layout{display:grid;gap:1.75rem;grid-template-columns:1fr}
@media (min-width:1024px){
  .service-layout{grid-template-columns:minmax(0,1fr) 330px;gap:3rem;align-items:start}
  .service-aside{position:sticky;top:88px}
}
.prose{max-width:68ch}
.prose p{margin-bottom:1rem;color:var(--text-soft);font-size:1rem}
.prose p strong{color:var(--text)}
.prose h2{margin:1.9rem 0 .8rem}
.prose h2:first-child{margin-top:0}
.prose h3{margin:1.5rem 0 .5rem;font-size:1.06rem}
.prose ul,.prose ol{margin:0 0 1rem 1.2rem;color:var(--text-soft)}
.prose li{margin-bottom:.35rem}
.prose li strong{color:var(--text)}
.prose a{font-weight:600;text-decoration:underline;text-underline-offset:2px}
.service-aside{display:grid;gap:1rem}
.aside-card{
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius);
  padding:1.3rem 1.2rem;box-shadow:var(--shadow-sm);
}
.aside-card.dark{
  background:var(--primary-dark);
  border-color:var(--primary-dark);color:#C9E0E1;
}
.aside-card.dark h3{color:#fff}
.aside-card.dark a:not(.btn){color:#8FD6D9}
.aside-card.dark a:not(.btn):hover{color:#fff}
.aside-card h3{margin-bottom:.5rem}
.aside-price{display:flex;align-items:baseline;gap:.5rem;margin:.3rem 0 .5rem}
.aside-price .amount{font-family:var(--font-display);font-size:2rem;font-weight:800;color:#FFB98F}
.aside-price .label{font-size:.72rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:#9AD2D5}
.aside-card .btn{width:100%;margin-top:.6rem}
.aside-card p.small{font-size:.86rem}
.aside-list{list-style:none;display:grid;gap:.5rem;margin-top:.5rem}
.aside-list li{display:flex;gap:.55rem;align-items:flex-start;font-size:.91rem;color:var(--text-soft)}
.aside-list svg{width:16px;height:16px;flex:none;color:var(--primary-strong);margin-top:.2rem}

/* Included checklist */
.check-grid{display:grid;gap:.6rem;grid-template-columns:1fr;list-style:none;margin:.9rem 0 1.4rem}
@media (min-width:560px){.check-grid{grid-template-columns:1fr 1fr}}
.check-grid li{
  display:flex;gap:.6rem;align-items:flex-start;
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius-xs);
  padding:.7rem .85rem;font-size:.93rem;color:var(--text);
}
.check-grid svg{width:18px;height:18px;flex:none;color:var(--primary-strong);margin-top:.15rem}

/* More services strip */
.more-services{display:flex;flex-wrap:wrap;gap:.5rem;list-style:none}
.more-services a{
  display:inline-flex;align-items:center;gap:.4rem;
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius-xs);
  padding:.5rem .85rem;font-weight:600;font-size:.89rem;color:var(--primary-dark);
  transition:border-color .15s linear,background-color .15s linear;
}
.more-services a:hover{border-color:var(--primary-strong);background:var(--tint);color:var(--primary-dark)}
.more-services svg{width:14px;height:14px;color:var(--primary-strong)}

/* ---------- Blog ---------- */
.post-grid{display:grid;gap:1rem;grid-template-columns:1fr}
@media (min-width:700px){.post-grid{grid-template-columns:1fr 1fr;gap:1.15rem}}
@media (min-width:1024px){.post-grid{grid-template-columns:repeat(3,1fr)}}
.post-card{
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius);
  padding:1.3rem 1.2rem;box-shadow:var(--shadow-sm);position:relative;
  display:flex;flex-direction:column;
  transition:border-color .15s linear,box-shadow .15s linear;
}
@media (min-width:700px){.post-card{padding:1.5rem 1.4rem}}
.post-card:hover,.post-card:focus-within{box-shadow:var(--shadow);border-color:var(--primary-strong)}
.post-card h3{margin:.6rem 0 .4rem;font-size:1.08rem}
.post-card p{color:var(--text-soft);font-size:.94rem;flex:1}
.post-tag{
  display:inline-flex;align-self:flex-start;
  background:var(--tint);border:1px solid #B9D6D6;color:#064A4F;
  font-weight:700;font-size:.7rem;letter-spacing:.1em;text-transform:uppercase;
  padding:.26rem .55rem;border-radius:4px;
}
.post-card .post-tag{margin-bottom:.15rem}
.post-meta{
  display:flex;flex-wrap:wrap;gap:.3rem .85rem;list-style:none;
  color:var(--text-soft);font-size:.83rem;font-weight:600;
}
.post-meta li{display:inline-flex;align-items:center;gap:.35rem}
.post-meta svg{width:14px;height:14px;color:var(--primary-strong);flex:none}
.post-card .post-meta{margin-top:.75rem}
.post-card .card-link{margin-top:.85rem}
.post-header .post-meta{margin-top:.8rem}
.post-lead{font-size:1.07rem;color:var(--text);margin-bottom:1.2rem;max-width:64ch}
.post-note{
  background:var(--accent-soft);border:1px solid #F0C4AC;border-radius:var(--radius-sm);
  padding:.95rem 1.05rem;margin:0 0 1.2rem;font-size:.95rem;color:#7C2E10;
}
.post-note strong{color:#6B2708}
.related-grid{display:grid;gap:1rem;grid-template-columns:1fr}
@media (min-width:700px){.related-grid{grid-template-columns:1fr 1fr;gap:1.15rem}}

/* ---------- Legal pages ---------- */
.legal-updated{
  display:inline-flex;align-items:center;gap:.45rem;
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius-xs);
  padding:.42rem .75rem;font-size:.84rem;font-weight:600;color:var(--text-soft);
  margin-bottom:1.4rem;
}
.legal-updated svg{width:15px;height:15px;color:var(--primary-strong);flex:none}
.legal-toc{
  background:var(--alt);border:1px solid var(--line);border-radius:var(--radius);
  padding:1.1rem 1.2rem;margin-bottom:1.8rem;
}
.legal-toc h2{font-size:.82rem;letter-spacing:.13em;text-transform:uppercase;margin:0 0 .6rem;color:var(--primary-dark)}
.legal-toc ol{margin:0 0 0 1.15rem;color:var(--text-soft);font-size:.94rem}
.legal-toc li{margin-bottom:.28rem}

/* ---------- Contact / forms ---------- */
.contact-layout{display:grid;gap:1.75rem;grid-template-columns:1fr}
@media (min-width:1024px){.contact-layout{grid-template-columns:minmax(0,1.15fr) minmax(0,.85fr);gap:3rem;align-items:start}}
.quote-form{
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius);
  padding:1.3rem 1.15rem;box-shadow:var(--shadow-sm);display:grid;gap:.95rem;
}
@media (min-width:700px){.quote-form{padding:1.75rem 1.6rem;gap:1.1rem}}
.form-row{display:grid;gap:.95rem}
@media (min-width:560px){.form-row{grid-template-columns:1fr 1fr;gap:1.1rem}}
.field{display:grid;gap:.35rem}
.field label{font-weight:700;font-size:.9rem;color:var(--primary-dark)}
.field .hint{font-size:.8rem;color:var(--text-soft)}
.field input,.field select,.field textarea{
  font:inherit;color:var(--text);
  background:var(--white);
  border:1px solid #A9C2C2;border-radius:var(--radius-xs);
  padding:.72rem .85rem;width:100%;min-height:46px;
  transition:border-color .15s linear,box-shadow .15s linear;
}
.field input:hover,.field select:hover,.field textarea:hover{border-color:var(--primary-strong)}
.field input:focus,.field select:focus,.field textarea:focus{
  border-color:var(--primary-strong);outline:none;
  box-shadow:0 0 0 3px rgba(14,126,132,.2);
}
.field input::placeholder,.field textarea::placeholder{color:#5C7676}
.field textarea{min-height:120px;resize:vertical}
.quote-form .btn{width:100%}
@media (min-width:560px){.quote-form .btn{width:auto;justify-self:start}}
.form-note{font-size:.84rem;color:var(--text-soft)}
.form-status{display:none;border-radius:var(--radius-xs);padding:.75rem .9rem;font-size:.91rem;font-weight:600}
.form-status.ok{display:block;background:var(--tint);color:#064A4F;border:1px solid var(--primary-strong)}
.form-status.err{display:block;background:var(--accent-soft);color:#8F3413;border:1px solid var(--accent-cta)}
.contact-cards{display:grid;gap:1rem}
.contact-cards .aside-card ul{list-style:none;display:grid;gap:.7rem}
.contact-cards .aside-card li{display:flex;align-items:flex-start;gap:.6rem;font-size:.93rem}
.contact-cards .aside-card li svg{width:17px;height:17px;color:var(--primary-strong);flex:none;margin-top:.2rem}
.contact-cards .aside-card.dark li svg{color:var(--accent)}

/* ---------- Footer ---------- */
.site-footer{
  background:var(--primary-dark);
  color:#BEDBDD;padding:2.25rem 0 1.5rem;
  border-top:3px solid var(--accent-cta);
}
@media (min-width:900px){.site-footer{padding:3rem 0 1.75rem}}
.footer-grid{display:grid;gap:1.75rem;grid-template-columns:1fr}
@media (min-width:700px){.footer-grid{grid-template-columns:1fr 1fr;gap:2rem}}
@media (min-width:900px){.footer-grid{grid-template-columns:1.4fr 1fr 1.2fr;gap:2.5rem}}
.footer-brand p{margin-top:.8rem;font-size:.92rem;max-width:24rem}
.site-footer h3{color:#fff;font-size:.82rem;letter-spacing:.13em;text-transform:uppercase;margin-bottom:.8rem}
.footer-links{list-style:none;display:grid;gap:.4rem}
.footer-links a{color:#BEDBDD;font-size:.92rem}
.footer-links a:hover{color:#fff}
.footer-contact{list-style:none;display:grid;gap:.65rem}
.footer-contact li{display:flex;align-items:flex-start;gap:.6rem;font-size:.92rem}
.footer-contact svg{width:17px;height:17px;color:var(--accent);flex:none;margin-top:.2rem}
.footer-contact a{color:#BEDBDD}
.footer-contact a:hover{color:#fff}
.footer-bottom{
  margin-top:1.75rem;padding-top:1.1rem;border-top:1px solid rgba(255,255,255,.15);
  text-align:center;font-size:.83rem;color:#8FB6B9;
}

/* ---------- Sticky mobile bar ---------- */
.mobile-bar{
  position:fixed;left:0;right:0;bottom:0;z-index:70;
  display:grid;grid-template-columns:1fr 1fr 1fr;
  background:var(--primary-dark);
  border-top:1px solid rgba(255,255,255,.15);
  padding-bottom:env(safe-area-inset-bottom);
}
.mobile-bar a{
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.15rem;
  padding:.5rem .25rem;color:#fff;font-size:.7rem;font-weight:700;min-height:56px;
}
.mobile-bar svg{width:19px;height:19px}
.mobile-bar .mb-call{background:var(--accent-cta)}
.mobile-bar .mb-wa{background:#128C7E}
.mobile-bar .mb-book{background:var(--primary-strong)}
.mobile-bar a:hover{color:#fff}
@media (min-width:900px){.mobile-bar{display:none}}
@media (max-width:899px){body{padding-bottom:56px}}

/* ---------- Reveal on scroll ---------- */
.reveal{opacity:0;transform:translateY(12px);transition:opacity .45s var(--ease),transform .45s var(--ease)}
.reveal.in{opacity:1;transform:none}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation:none!important;transition:none!important}
  .reveal{opacity:1;transform:none}
}

@media (min-width:1024px){.hero.has-visual .hero-grid > .hero-eyebrow{margin-top:0}}
