/* ============================================================
   CONCRETE RESURFACING SYDNEY — ultra-premium dark site
   Serif display (Prata) + General Sans, monochrome palette,
   hairline borders, generous space. No landing-page DNA.
   ============================================================ */

:root{
  --bg: #0b0b0c;
  --bg-2: #101012;
  --panel: #141416;
  --ink: #f4f3f0;          /* warm-white text on dark */
  --ink-dim: rgba(244,243,240,0.68);
  --ink-faint: rgba(244,243,240,0.45);
  --hairline: rgba(244,243,240,0.14);
  --hairline-strong: rgba(244,243,240,0.28);
  --display: "Clash Display", "General Sans", Arial, sans-serif;
  --body: "General Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.22,1,0.36,1);
}

*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; background:var(--bg); overflow-x:clip; }
body{
  background:
    radial-gradient(80vw 700px at 85% -5%, rgba(244,243,240,0.045), transparent 60%),
    radial-gradient(70vw 900px at 0% 45%, rgba(244,243,240,0.03), transparent 60%),
    linear-gradient(180deg, #0b0b0c 0%, #0e0e10 50%, #0a0a0b 100%);
  color:var(--ink);
  font-family:var(--body);
  font-weight:400;
  line-height:1.6;
  overflow-x:clip;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul,ol{ list-style:none; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; color:inherit; }
input{ font-family:inherit; }

h1,h2,h3{ font-family:var(--display); font-weight:500; line-height:1.1; letter-spacing:-0.01em; }
h1 em, h2 em{ font-style:normal; font-weight:300; color:var(--ink-dim); }
h2{ font-size:clamp(34px, 4.4vw, 56px); }


.container{ max-width:1240px; margin:0 auto; padding:0 36px; }

/* small uppercase label with a hairline rule */
.label{
  font-size:12px; font-weight:500; letter-spacing:0.32em; text-transform:uppercase;
  color:var(--ink-faint); margin-bottom:26px;
  display:flex; align-items:center; gap:18px;
}
.label::before{ content:""; width:44px; height:1px; background:var(--hairline-strong); }

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:17px 34px; font-size:13.5px; font-weight:500; letter-spacing:0.12em;
  text-transform:uppercase; border-radius:2px;
  transition:background .4s var(--ease), color .4s, border-color .4s, transform .4s var(--ease);
  white-space:nowrap;
}
.btn-arrow{ font-size:15px; line-height:1; transition:transform .4s var(--ease); }
.btn:hover .btn-arrow{ transform:translate(3px,-3px); }
.btn-outline{ border:1px solid var(--hairline-strong); color:var(--ink); }
.btn-outline:hover{ border-color:var(--ink); background:rgba(244,243,240,0.06); }
.btn-solid{ background:var(--ink); color:#0b0b0c; border:1px solid var(--ink); }
.btn-solid:hover{ background:transparent; color:var(--ink); }
.btn-small{ padding:12px 22px; font-size:12px; }
.btn-full{ width:100%; }

/* ============ HEADER ============ */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  padding:20px 0;
  transition:background .5s var(--ease), padding .5s var(--ease), border-color .5s;
  border-bottom:1px solid transparent;
}
.site-header.scrolled{
  background:rgba(11,11,12,0.82); backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px);
  border-color:var(--hairline); padding:14px 0;
}
.header-inner{
  max-width:1400px; margin:0 auto; padding:0 36px;
  display:flex; align-items:center; justify-content:space-between; gap:28px;
}
.wordmark img{ height:58px; width:auto; transition:height .5s var(--ease); }
.site-header.scrolled .wordmark img{ height:44px; }
.main-nav{ display:flex; gap:38px; }
.main-nav a{
  font-size:12px; letter-spacing:0.18em; text-transform:uppercase; color:var(--ink-dim);
  transition:color .3s; position:relative; padding:4px 0;
}
.main-nav a::after{
  content:""; position:absolute; left:0; bottom:0; width:0; height:1px;
  background:var(--ink); transition:width .4s var(--ease);
}
.main-nav a:hover{ color:var(--ink); }
.main-nav a:hover::after{ width:100%; }
.header-actions{ display:flex; align-items:center; gap:26px; }
.header-phone{
  font-family:var(--display); font-size:15px; letter-spacing:0.06em; color:var(--ink-dim);
  transition:color .3s;
}
.header-phone:hover{ color:var(--ink); }

/* ============ HERO ============ */
.hero{
  position:relative; min-height:100svh;
  display:flex; flex-direction:column; justify-content:center;
  overflow:hidden;
}
.hero-media{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:60% 35%;
}
.hero-scrim{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(11,11,12,0.72) 0%, rgba(11,11,12,0.45) 35%, rgba(11,11,12,0.5) 70%, rgba(11,11,12,0.94) 100%),
    radial-gradient(ellipse 90% 70% at 50% 55%, rgba(11,11,12,0.25), rgba(11,11,12,0.6) 100%);
}
.hero-content{
  position:relative; text-align:center; padding:140px 24px 40px;
  display:flex; flex-direction:column; align-items:center;
}
.hero-kicker{
  font-size:12px; font-weight:500; letter-spacing:0.42em; text-transform:uppercase;
  color:var(--ink-dim); margin-bottom:34px;
  display:flex; align-items:center; gap:20px;
}
.hero-kicker::before,.hero-kicker::after{ content:""; width:52px; height:1px; background:var(--hairline-strong); }
.hero h1{
  font-size:clamp(40px, 6vw, 82px);
  line-height:1.06; margin-bottom:30px;
}
.hero h1 em{ color:var(--ink); opacity:0.75; font-weight:300; }
.hero-sub{
  font-size:16.5px; color:var(--ink-dim); max-width:52ch; margin:0 auto 42px; line-height:1.7;
}
.hero-cta{ display:flex; gap:18px; justify-content:center; flex-wrap:wrap; }

.hero-foot{
  position:relative; margin-top:auto;
  display:grid; grid-template-columns:repeat(4,1fr);
  max-width:1240px; width:calc(100% - 72px); margin-left:auto; margin-right:auto;
  padding:26px 0 34px; gap:20px;
}
.hero-stat{ text-align:center; }
.hero-stat strong{
  display:block; font-family:var(--display); font-weight:400;
  font-size:clamp(19px,2vw,26px); letter-spacing:0.04em; margin-bottom:4px;
}
.hero-stat span{
  font-size:11px; letter-spacing:0.22em; text-transform:uppercase; color:var(--ink-faint);
}

/* hero entrance */
.rise{ opacity:0; transform:translateY(28px); animation:rise 1.3s var(--ease) forwards; }
.rise.d1{ animation-delay:.15s; }
.rise.d2{ animation-delay:.35s; }
.rise.d3{ animation-delay:.55s; }
.rise.d4{ animation-delay:.8s; }
@keyframes rise{ to{ opacity:1; transform:translateY(0); } }
@media (prefers-reduced-motion: reduce){
  .rise{ animation:none; opacity:1; transform:none; }
}

/* ============ SECTIONS ============ */
.section{ position:relative; padding:130px 0; }
.section-line{ border-top:1px solid var(--hairline); }
.section-head{ margin-bottom:70px; }
.section-head h2{ max-width:22ch; }

.reveal{ opacity:0; transform:translateY(34px); transition:opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.reveal.in-view{ opacity:1; transform:translateY(0); }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
}

/* ============ SPLIT LAYOUT (about / why / contact) ============ */
.split{ display:grid; grid-template-columns:1fr 1fr; gap:90px; align-items:center; }
.split-rev > :first-child{ order:0; }
.split-copy h2{ margin-bottom:30px; }
.split-copy p{ color:var(--ink-dim); font-size:15.5px; margin-bottom:18px; max-width:54ch; }
.split-copy .btn{ margin-top:22px; }

/* layered photo collage (about) */
.collage{ position:relative; aspect-ratio:0.95/1; }
.collage img{
  position:absolute; object-fit:cover; border-radius:3px;
  border:1px solid var(--hairline);
  box-shadow:0 40px 80px rgba(0,0,0,0.55);
}
.collage-a{ width:62%; height:70%; left:0; top:0; z-index:1; }
.collage-b{ width:52%; height:56%; right:0; top:14%; z-index:2; }
.collage-c{ width:58%; height:44%; left:12%; bottom:0; z-index:3; }

/* ============ SERVICES ============ */
.services-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:26px;
}
.svc{ display:block; }
.svc figure{
  overflow:hidden; border-radius:3px; border:1px solid var(--hairline);
  aspect-ratio:4/3; margin-bottom:20px;
}
.svc img{
  width:100%; height:100%; object-fit:cover;
  filter:saturate(0.85);
  transition:transform 1.2s var(--ease), filter .6s;
}
.svc:hover img{ transform:scale(1.05); filter:saturate(1); }
.svc-meta{ display:flex; align-items:baseline; gap:16px; border-bottom:1px solid var(--hairline); padding-bottom:18px; }
.svc-num{
  font-family:var(--display); font-size:13px; color:var(--ink-faint); letter-spacing:0.1em;
}
.svc-meta h3{ font-size:20px; letter-spacing:0; transition:color .3s; }
.svc:hover .svc-meta h3{ color:var(--ink); }
.svc:hover .svc-meta{ border-color:var(--hairline-strong); }

/* ============ WHY / PROOF ============ */
.feature-photo{
  overflow:hidden; border-radius:3px; border:1px solid var(--hairline);
  aspect-ratio:4/5; box-shadow:0 40px 90px rgba(0,0,0,0.5);
}
.feature-photo img{ width:100%; height:100%; object-fit:cover; transition:transform 1.4s var(--ease); }
.feature-photo:hover img{ transform:scale(1.04); }
.proof-list{ margin-top:44px; display:flex; flex-direction:column; }
.proof{ padding:24px 0; border-top:1px solid var(--hairline); }
.proof:last-child{ border-bottom:1px solid var(--hairline); }
.proof h3{ font-size:18px; margin-bottom:8px; }
.proof p{ color:var(--ink-dim); font-size:14.5px; max-width:52ch; margin:0; }

/* ============ SURFACES ============ */
.surface-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.surface{
  position:relative; display:block; overflow:hidden; border-radius:3px;
  border:1px solid var(--hairline); aspect-ratio:3/4;
}
.surface img{
  width:100%; height:100%; object-fit:cover; filter:saturate(0.8) brightness(0.85);
  transition:transform 1.2s var(--ease), filter .6s;
}
.surface:hover img{ transform:scale(1.06); filter:saturate(1) brightness(0.95); }
.surface-cap{
  position:absolute; left:0; right:0; bottom:0; padding:22px;
  display:flex; align-items:flex-end; justify-content:space-between; gap:12px;
  background:linear-gradient(180deg, transparent, rgba(11,11,12,0.9));
}

.surface-cap span{
  flex-shrink:0; width:36px; height:36px; border:1px solid var(--hairline-strong); border-radius:50%;
  display:flex; align-items:center; justify-content:center; font-size:14px;
  transition:background .4s, color .4s, transform .4s var(--ease);
}
.surface:hover .surface-cap span{ background:var(--ink); color:#0b0b0c; transform:translate(2px,-2px); }

/* ============ PROCESS ============ */
.steps{
  display:grid; grid-template-columns:repeat(4,1fr); gap:0;
  border-top:1px solid var(--hairline); border-bottom:1px solid var(--hairline);
}
.step{ padding:46px 34px 52px; border-left:1px solid var(--hairline); }
.step:first-child{ border-left:none; }
.step-num{
  font-family:var(--display); font-size:44px; color:var(--ink-faint);
  display:block; margin-bottom:26px; line-height:1;
}
.step h3{ font-size:19px; margin-bottom:12px; }
.step p{ color:var(--ink-dim); font-size:14px; max-width:30ch; }

/* ============ COMPARISON ============ */
.compare-grid{ display:grid; grid-template-columns:1fr 1fr; gap:26px; }
.compare-col{
  border:1px solid var(--hairline); border-radius:3px; padding:44px 44px 48px;
  background:rgba(244,243,240,0.02);
}
.compare-crs{ background:rgba(244,243,240,0.05); border-color:var(--hairline-strong); }

.compare-col li{
  padding:11px 0 11px 34px; position:relative; font-size:15px; color:var(--ink-dim);
}
.cons li::before{
  content:"\00d7"; position:absolute; left:0; top:9px;
  width:20px; height:20px; border:1px solid var(--hairline-strong); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:11px; color:var(--ink-faint);
}
.pros li{ color:var(--ink); }
.pros li::before{
  content:"\2713"; position:absolute; left:0; top:9px;
  width:20px; height:20px; background:var(--ink); color:#0b0b0c; border-radius:50%;
  display:flex; align-items:center; justify-content:center; font-size:11px;
}

/* ============ GALLERY STRIP ============ */
.gallery-strip{
  overflow:hidden; border-top:1px solid var(--hairline); border-bottom:1px solid var(--hairline);
  padding:0;
}
.gallery-track{
  display:flex; width:max-content;
  animation:gallery-scroll 48s linear infinite;
}
.gallery-track img{
  height:340px; width:auto; object-fit:cover;
  border-left:1px solid var(--hairline);
  filter:saturate(0.85);
}
@keyframes gallery-scroll{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .gallery-track{ animation:none; } }

/* ============ CONTACT / FORM ============ */
.contact-lines{ margin-top:36px; display:flex; flex-direction:column; }
.contact-line{
  display:flex; flex-direction:column; gap:2px; padding:18px 0;
  border-top:1px solid var(--hairline);
  font-family:var(--display); font-size:20px; letter-spacing:0.01em; font-weight:400;
  transition:color .3s; margin-bottom:0; color:var(--ink);
}
.contact-line:last-child{ border-bottom:1px solid var(--hairline); }
.contact-line span{
  font-family:var(--body); font-size:11px; letter-spacing:0.26em; text-transform:uppercase;
  color:var(--ink-faint);
}
a.contact-line:hover{ color:var(--ink-dim); }

.enquiry-form{
  border:1px solid var(--hairline); border-radius:3px; padding:46px;
  background:rgba(244,243,240,0.03);
  display:flex; flex-direction:column; gap:20px;
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.form-field{ display:flex; flex-direction:column; gap:8px; }
.form-field label{
  font-size:11px; font-weight:500; letter-spacing:0.24em; text-transform:uppercase;
  color:var(--ink-faint);
}
.enquiry-form input{
  background:transparent; border:none; border-bottom:1px solid var(--hairline-strong);
  padding:10px 2px 12px; color:var(--ink); font-size:15.5px; border-radius:0;
  transition:border-color .3s;
}
.enquiry-form input::placeholder{ color:var(--ink-faint); }
.enquiry-form input:focus{ outline:none; border-color:var(--ink); }
.enquiry-form .btn{ margin-top:14px; }
.form-note{ font-size:12px; color:var(--ink-faint); text-align:center; }

/* ============ FOOTER ============ */
.site-footer{ border-top:1px solid var(--hairline); padding:74px 0 34px; }
.footer-grid{
  display:grid; grid-template-columns: 0.9fr 1.1fr; gap:64px; align-items:stretch;
}
.footer-info{ display:flex; flex-direction:column; }
.footer-logo{ height:64px; width:auto; align-self:flex-start; margin-bottom:26px; }
.footer-blurb{ color:var(--ink-dim); font-size:14.5px; max-width:62ch; margin-bottom:38px; }
.footer-cols{ display:grid; grid-template-columns:repeat(3,auto); gap:40px; }
.footer-col{ display:flex; flex-direction:column; gap:10px; }
.footer-col h3{
  font-size:13px; letter-spacing:0.18em; text-transform:uppercase; font-weight:500;
  color:var(--ink); margin-bottom:8px;
}
.footer-col a, .footer-col p{
  font-size:14px; color:var(--ink-dim); transition:color .3s; line-height:1.5;
}
.footer-col a:hover{ color:var(--ink); }
.footer-base{
  margin-top:56px; padding-top:26px; border-top:1px solid var(--hairline); text-align:center;
}
.footer-fine{ font-size:12px; color:var(--ink-faint); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px){
  .main-nav{ display:none; }
  .split{ grid-template-columns:1fr; gap:56px; }
  .split-rev > figure{ order:1; }
  .services-grid{ grid-template-columns:repeat(2,1fr); }
  .surface-grid{ grid-template-columns:repeat(2,1fr); }
  .steps{ grid-template-columns:repeat(2,1fr); }
  .step{ border-top:1px solid var(--hairline); }
  .step:nth-child(-n+2){ border-top:none; }
  .step:nth-child(odd){ border-left:none; }
  .compare-grid{ grid-template-columns:1fr; }
  .section{ padding:96px 0; }
}
@media (max-width: 640px){
  .container{ padding:0 22px; }
  .header-inner{ padding:0 22px; }
  .header-phone{ display:none; }
  .wordmark img{ height:44px; }
  .site-header.scrolled .wordmark img{ height:38px; }
  .hero-content{ padding-top:120px; }
  .hero h1{ font-size:clamp(34px, 10vw, 46px); }
  .hero-kicker{ letter-spacing:0.3em; gap:12px; }
  .hero-kicker::before,.hero-kicker::after{ width:26px; }
  .hero-foot{ grid-template-columns:repeat(2,1fr); width:calc(100% - 44px); gap:18px 10px; }
  .services-grid{ grid-template-columns:1fr; }
  .surface-grid{ grid-template-columns:1fr; }
  .surface{ aspect-ratio:4/3; }
  .steps{ grid-template-columns:1fr; }
  .step{ border-left:none; border-top:1px solid var(--hairline); padding:36px 6px 40px; }
  .step:first-child{ border-top:none; }
  .compare-col{ padding:32px 26px 36px; }
  .enquiry-form{ padding:30px 24px; }
  .form-row{ grid-template-columns:1fr; }
  .gallery-track img{ height:220px; }
  .section{ padding:78px 0; }
  .section-head{ margin-bottom:48px; }
  .collage{ aspect-ratio:1/1; }
}

/* ============ TINTCO ADDITIONS ============ */
/* Problems grid: minimal numbered tiles, hairline dividers */
.section-lead{ color:var(--ink-dim); font-size:16px; max-width:60ch; margin-top:22px; }
.problem-grid{
  display:grid; grid-template-columns:repeat(3,1fr);
  border-top:1px solid var(--hairline); border-left:1px solid var(--hairline);
}
.problem{
  padding:38px 34px 44px;
  border-right:1px solid var(--hairline); border-bottom:1px solid var(--hairline);
  transition:background .5s var(--ease);
}
.problem:hover{ background:rgba(244,243,240,0.03); }
.problem h3{ font-size:19px; margin-bottom:10px; }
.problem p{ color:var(--ink-dim); font-size:14.5px; max-width:34ch; }

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

/* Offers: hairline cards with arrow CTA */
.offer-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.offer{
  display:flex; flex-direction:column; gap:12px;
  border:1px solid var(--hairline); border-radius:3px; padding:40px 36px 34px;
  background:rgba(244,243,240,0.02);
  transition:border-color .4s, background .5s var(--ease), transform .5s var(--ease);
}
.offer:hover{ border-color:var(--hairline-strong); background:rgba(244,243,240,0.05); transform:translateY(-4px); }
.offer-num{ font-family:var(--display); font-weight:300; font-size:14px; color:var(--ink-faint); letter-spacing:0.2em; }
.offer h3{ font-size:24px; }
.offer p{ color:var(--ink-dim); font-size:14.5px; flex-grow:1; }
.offer-cta{
  font-size:12px; font-weight:500; letter-spacing:0.16em; text-transform:uppercase;
  display:inline-flex; align-items:center; gap:8px; margin-top:10px;
  border-top:1px solid var(--hairline); padding-top:18px; width:100%;
  transition:color .3s;
}
.offer:hover .offer-cta{ color:var(--ink); }

/* Brand logos under Why TintCo */
.brand-row{
  display:flex; align-items:center; gap:34px; flex-wrap:wrap;
  margin-top:38px; padding-top:28px; border-top:1px solid var(--hairline);
}
.brand-row img{
  height:42px; width:auto; max-width:180px; object-fit:contain;
  filter:grayscale(1) brightness(4) contrast(0.6) opacity(0.55);
  transition:filter .4s;
}
.brand-row img:hover{ filter:grayscale(1) brightness(4) contrast(0.8) opacity(0.9); }
.brand-row-center{ justify-content:center; gap:56px; }
.brand-row-center img{ height:56px; max-width:240px; }
/* XPEL artwork is dark — invert it to match the light logos beside it */
.brand-row img[alt="XPEL"]{ filter:grayscale(1) invert(1) brightness(1.4) contrast(0.6) opacity(0.55); }
.brand-row img[alt="XPEL"]:hover{ filter:grayscale(1) invert(1) brightness(1.4) contrast(0.8) opacity(0.9); }

@media (max-width: 1080px){
  .problem-grid{ grid-template-columns:repeat(2,1fr); }
  .offer-grid{ grid-template-columns:1fr; }
  .steps-3{ grid-template-columns:1fr; }
}
@media (max-width: 640px){
  .problem-grid{ grid-template-columns:1fr; }
  .problem{ padding:28px 24px 32px; }
  .brand-row{ gap:22px; }
  .brand-row img{ height:32px; }
}

/* ============ REVIEWS EMBED ============ */
/* Elfsight injects a light widget; give it breathing room on the dark canvas */
.reviews-embed{
  border:1px solid var(--hairline); border-radius:3px;
  padding:34px 30px; background:rgba(244,243,240,0.03);
  min-height:280px;
}

/* ============ FOOTER MAP ============ */
.footer-map{
  border:1px solid var(--hairline); border-radius:3px; overflow:hidden;
  min-height:320px;
}
.footer-map iframe{
  width:100%; height:100%; min-height:320px; border:0; display:block;
  /* dark-mode treatment so the map sits in the monochrome palette */
  filter:grayscale(1) invert(0.92) hue-rotate(180deg) contrast(0.9);
}
@media (max-width: 1080px){
  .footer-grid{ grid-template-columns:1fr; gap:44px; }
  .footer-map{ min-height:280px; }
}
@media (max-width: 640px){
  .footer-cols{ grid-template-columns:1fr; gap:28px; }
  .reviews-embed{ padding:22px 16px; }
}

/* Reviews widget dark theme: style Elfsight's own elements directly so text
   is light, cards are dark, and stars/logos keep their native colours. */
.reviews-embed .es-header-heading-text,
.reviews-embed .es-rating-value,
.reviews-embed .es-header-rating-text-container,
.reviews-embed .es-header-info,
.reviews-embed .es-review-author-name,
.reviews-embed .es-review-content,
.reviews-embed .es-review-content-text-container{
  color: var(--ink) !important;
}
.reviews-embed .es-review-info-date,
.reviews-embed .es-review-info-source,
.reviews-embed .es-review-content-line-shortener{
  color: var(--ink-faint) !important;
}
.reviews-embed .es-review-background-container,
.reviews-embed .es-review-container{
  background: rgba(244,243,240,0.04) !important;
  border-color: var(--hairline) !important;
}
.reviews-embed .es-carousel-arrow-control{
  background: rgba(244,243,240,0.08) !important;
  color: var(--ink) !important;
}
.reviews-embed .es-carousel-arrow-control-icon{ fill: var(--ink) !important; color: var(--ink) !important; }
.reviews-embed .es-bullets-control-item{ background: rgba(244,243,240,0.25) !important; }
.reviews-embed .es-bullets-control-item-active{ background: var(--ink) !important; }



/* ============ INNER PAGES ============ */
.page-hero{
  padding:190px 0 84px; border-bottom:1px solid var(--hairline);
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(244,243,240,0.05), transparent 60%),
    linear-gradient(180deg, #0e0e10, #0b0b0c);
}
.page-hero h1{ font-size:clamp(38px, 5.2vw, 68px); line-height:1.08; margin-bottom:22px; }
.page-hero h1 em{ font-weight:300; color:var(--ink-dim); }
.page-hero .hero-kicker{ justify-content:flex-start; margin-bottom:26px; }
.page-hero .hero-kicker::after{ display:none; }
.page-hero-sub{ color:var(--ink-dim); font-size:16.5px; max-width:56ch; }
.nav-active{ color:var(--ink) !important; }
.nav-active::after{ width:100% !important; }

/* services overview cards get a description line */
.svc-desc{ color:var(--ink-dim); font-size:14px; margin-top:12px; max-width:40ch; }

/* about stats */
.stat-grid{
  display:grid; grid-template-columns:repeat(4,1fr);
  border-top:1px solid var(--hairline); border-left:1px solid var(--hairline);
  margin-bottom:48px;
}
.stat-block{
  padding:44px 30px; text-align:center;
  border-right:1px solid var(--hairline); border-bottom:1px solid var(--hairline);
}
.stat-block strong{
  display:block; font-family:var(--display); font-weight:400;
  font-size:clamp(34px,3.6vw,52px); margin-bottom:8px;
}
.stat-block span{ font-size:11.5px; letter-spacing:0.22em; text-transform:uppercase; color:var(--ink-faint); }

/* gallery grid */
.gallery-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.gallery-tile{ overflow:hidden; border-radius:3px; border:1px solid var(--hairline); aspect-ratio:4/3; }
.gallery-tile img{
  width:100%; height:100%; object-fit:cover; filter:saturate(0.85);
  transition:transform 1.2s var(--ease), filter .6s;
}
.gallery-tile:hover img{ transform:scale(1.05); filter:saturate(1); }

/* pre-footer CTA band */
.cta-band-inner{ display:flex; align-items:flex-end; justify-content:space-between; gap:40px; flex-wrap:wrap; }
.cta-band h2{ margin-top:0; }
.cta-band-actions{ display:flex; gap:16px; flex-wrap:wrap; padding-bottom:8px; }

@media (max-width: 1080px){
  .stat-grid{ grid-template-columns:repeat(2,1fr); }
  .gallery-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 640px){
  .page-hero{ padding:150px 0 60px; }
  .gallery-grid{ grid-template-columns:1fr; }
  .stat-block{ padding:30px 18px; }
}

/* ============ REELS ============ */
.reels-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; max-width:1000px; margin:0 auto; }
.reel{
  border:1px solid var(--hairline); border-radius:3px; overflow:hidden;
  aspect-ratio:9/16; background:#000;
}
.reel iframe{ width:100%; height:100%; border:0; display:block; }
@media (max-width: 1080px){
  .reels-grid{ grid-template-columns:repeat(3,1fr); gap:14px; }
}
@media (max-width: 640px){
  .reels-grid{ grid-template-columns:1fr; max-width:340px; }
}

/* ============ GALLERY PAGE ============ */
.gallery-filters{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom:48px; }
.gallery-filter{
  padding:12px 24px; border:1px solid var(--hairline-strong); border-radius:2px;
  font-size:12px; font-weight:500; letter-spacing:0.14em; text-transform:uppercase;
  color:var(--ink-dim); transition:all .3s;
}
.gallery-filter:hover{ color:var(--ink); border-color:var(--ink); }
.gallery-filter.is-active{ background:var(--ink); color:#0b0b0c; border-color:var(--ink); }
.gallery-cat-title{
  font-size:22px; margin:64px 0 26px; padding-top:40px; border-top:1px solid var(--hairline);
}
.gallery-cat-title:first-of-type{ margin-top:24px; }
.gallery-videos{ margin-bottom:20px; }
.reels-embed{ margin-top:26px; }
.gallery-hidden{ display:none !important; }

/* Problem/benefit tile icons */
.problem-icon{ display:block; color:var(--ink-faint); margin-bottom:18px; }
.problem-icon svg{ display:block; }

/* ============ SEO H1 SWAP ============ */
/* Keyword phrase is the real H1 (kicker slot); display line is a styled <p>. */
h1.hero-kicker{
  font-family:var(--body); font-weight:500;
  font-size:12px; letter-spacing:0.42em; text-transform:uppercase;
  color:var(--ink-dim); line-height:1.6;
}
.page-hero h1.hero-kicker{ font-size:12px; letter-spacing:0.32em; }
.hero-content .hero-display{
  font-family:var(--display); font-weight:500; letter-spacing:-0.01em;
  font-size:clamp(40px, 6vw, 82px); line-height:1.06; margin-bottom:30px; color:var(--ink);
}
.hero-content .hero-display em{ font-style:normal; font-weight:300; color:var(--ink); opacity:0.75; }
.page-hero .hero-display{
  font-family:var(--display); font-weight:500; letter-spacing:-0.01em;
  font-size:clamp(38px, 5.2vw, 68px); line-height:1.08; margin-bottom:22px; color:var(--ink);
}
.page-hero .hero-display em{ font-style:normal; font-weight:300; color:var(--ink-dim); }
@media (max-width: 640px){
  .hero-content .hero-display{ font-size:clamp(34px, 10vw, 46px); }
  h1.hero-kicker{ letter-spacing:0.3em; }
}

/* countertop finish duo */
.ct-duo{ display:grid; grid-template-columns:1fr 1fr; gap:22px; }
.ct-duo .feature-photo{ aspect-ratio:4/3; }
@media (max-width: 640px){ .ct-duo{ grid-template-columns:1fr; } }

/* Hero sub: two lines, larger */
.hero-sub{ font-size:19px; max-width:72ch; line-height:1.6; }

/* Hero stats: count-up + hairline bars */
.hero-stat strong .hstat-pre{ font-size:0.72em; }
.hstat-bar{
  display:block; height:2px; background:rgba(244,243,240,0.14);
  margin:14px auto 0; width:72%; border-radius:1px; overflow:hidden;
}
.hstat-bar b{
  display:block; height:100%; width:0; background:var(--ink);
  transition:width 1.6s cubic-bezier(0.22,1,0.36,1);
}

/* number spans inside the stat strong must not inherit the label styling */
.hero-stat strong span{
  font-size:inherit; letter-spacing:inherit; text-transform:none; color:inherit;
}
.hero-stat strong .hstat-pre{ font-size:0.6em; letter-spacing:0.04em; }

/* ============ HERO STAT GAUGES ============ */
.hstat-gauge{ position:relative; width:160px; margin:0 auto; }
.hstat-gauge svg{ display:block; width:160px; height:92px; }
.hstat-track, .hstat-fill{
  fill:none; stroke-width:2; stroke-linecap:round;
}
.hstat-track{ stroke:rgba(244,243,240,0.14); }
.hstat-fill{
  stroke:var(--ink);
  stroke-dasharray:214;      /* semicircle path length */
  stroke-dashoffset:214;     /* starts empty; JS animates to pct */
  transition:stroke-dashoffset 1.8s cubic-bezier(0.22,1,0.36,1);
}
.hstat-gauge strong{
  position:absolute; left:0; right:0; bottom:2px; text-align:center;
}
.hero-stat .hstat-gauge + span{ display:block; margin-top:10px; }
@media (max-width: 640px){
  .hstat-gauge{ width:120px; }
  .hstat-gauge svg{ width:120px; height:69px; }
}

/* ============ COUNTERTOP APPLICATIONS ============ */
.app-grid{ display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.app-card{
  border:1px solid var(--hairline); border-radius:3px; overflow:hidden;
  background:rgba(244,243,240,0.02);
}
.app-card figure{ aspect-ratio:16/9; overflow:hidden; }
.app-card img{
  width:100%; height:100%; object-fit:cover; filter:saturate(0.85);
  transition:transform 1.2s var(--ease), filter .6s;
}
.app-card:hover img{ transform:scale(1.04); filter:saturate(1); }
.app-card h3{ font-size:22px; padding:28px 34px 4px; }
.app-list{ padding:14px 34px 34px; display:flex; flex-direction:column; gap:12px; }
.app-list li{
  position:relative; padding-left:30px; color:var(--ink-dim); font-size:15px;
}
.app-list li::before{
  content:""; position:absolute; left:0; top:2px; width:18px; height:18px;
  border-radius:50%; background:var(--ink);
  -webkit-mask:none; 
}
.app-list li::after{
  content:""; position:absolute; left:4.5px; top:6.5px; width:8px; height:5px;
  border-left:1.6px solid #0b0b0c; border-bottom:1.6px solid #0b0b0c;
  transform:rotate(-45deg);
}
@media (max-width: 900px){ .app-grid{ grid-template-columns:1fr; } }

/* Instagram: no card chrome, blend straight into the page */
.insta-embed{ background:transparent; border:none; padding:0; }
.insta-embed .eapps-instagram-feed,
.insta-embed .eapps-instagram-feed-container,
.insta-embed .eapps-instagram-feed-header{ background:transparent !important; }

/* ============ WARRANTY ============ */
.warranty-badge-wrap{ display:flex; align-items:center; justify-content:center; }
.warranty-badge{ position:relative; width:min(400px, 80%); aspect-ratio:1; }
.warranty-badge .wb-ring{ width:100%; height:100%; animation:wb-spin 40s linear infinite; }
@keyframes wb-spin{ to{ transform:rotate(360deg); } }
@media (prefers-reduced-motion: reduce){ .warranty-badge .wb-ring{ animation:none; } }
.wb-line{ fill:none; stroke:var(--hairline-strong); stroke-width:0.6; }
.wb-text{
  font-family:var(--body); font-size:10.5px; font-weight:500;
  letter-spacing:0.34em; fill:var(--ink-dim);
}
.wb-shield{
  position:absolute; top:50%; left:50%; width:19%; height:19%;
  transform:translate(-50%,-50%); color:var(--ink);
}
.warranty-list{ margin-top:34px; border-top:1px solid var(--hairline); }
.warranty-list li{
  display:flex; align-items:baseline; justify-content:space-between; gap:20px;
  padding:16px 0; border-bottom:1px solid var(--hairline);
}
.warranty-list span{ color:var(--ink-dim); font-size:15px; }
.warranty-list strong{
  font-family:var(--display); font-weight:400; font-size:20px; letter-spacing:0.02em;
}
.fine-note{ font-size:12.5px; color:var(--ink-faint); margin-top:18px; }
@media (max-width: 1080px){
  .warranty-badge{ width:min(300px, 70%); margin-bottom:10px; }
}

/* ============ SECTION DIVIDERS OFF + CENTERED PAGE HEROES ============ */
/* No hairline rules between sections, site-wide */
.section-line{ border-top:none; }
.page-hero{ border-bottom:none; }

/* Sub-page headers: centered, symmetric like the homepage hero */
.page-hero{ text-align:center; padding:210px 0 96px; }
.page-hero h1.hero-kicker{
  justify-content:center; display:flex; align-items:center; gap:20px;
}
.page-hero h1.hero-kicker::before{ content:""; width:44px; height:1px; background:var(--hairline-strong); }
.page-hero h1.hero-kicker::after{ content:""; width:44px; height:1px; background:var(--hairline-strong); display:block; }
.page-hero .hero-display{ margin-left:auto; margin-right:auto; max-width:20ch; }
.page-hero-sub{ margin-left:auto; margin-right:auto; }
@media (max-width: 640px){
  .page-hero{ padding:170px 0 70px; }
}

/* ============ WORK STRIP (team in action) ============ */
.work-strip{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.work-tile{ overflow:hidden; border-radius:3px; border:1px solid var(--hairline); aspect-ratio:4/3; }
.work-tile img{
  width:100%; height:100%; object-fit:cover; filter:saturate(0.88);
  transition:transform 1.2s var(--ease), filter .6s;
}
.work-tile:hover img{ transform:scale(1.05); filter:saturate(1); }
@media (max-width: 900px){ .work-strip{ grid-template-columns:1fr; } .work-tile{ aspect-ratio:16/10; } }

/* ============ NAV DROPDOWN ============ */
.nav-sub{ position:relative; display:inline-flex; }
.nav-caret{
  display:inline-block; width:6px; height:6px; margin-left:8px; margin-bottom:2px;
  border-right:1px solid currentColor; border-bottom:1px solid currentColor;
  transform:rotate(45deg) translateY(-2px); transition:transform .3s var(--ease);
  vertical-align:middle;
}
.nav-sub:hover .nav-caret{ transform:rotate(225deg) translateY(-1px); }
.nav-drop{
  position:absolute; top:100%; left:-24px; padding-top:18px;
  opacity:0; visibility:hidden; transform:translateY(8px);
  transition:opacity .35s var(--ease), transform .35s var(--ease), visibility 0s .35s;
  z-index:120; min-width:280px;
}
.nav-sub:hover .nav-drop, .nav-sub:focus-within .nav-drop{
  opacity:1; visibility:visible; transform:translateY(0);
  transition:opacity .35s var(--ease), transform .35s var(--ease), visibility 0s;
}
.nav-drop{ pointer-events:none; }
.nav-sub:hover .nav-drop, .nav-sub:focus-within .nav-drop{ pointer-events:auto; }
.nav-drop > a{
  display:block; padding:14px 24px;
  background:rgba(11,11,12,0.96); backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  border:1px solid var(--hairline); border-top:none;
  font-size:11.5px; letter-spacing:0.14em; text-transform:uppercase; color:var(--ink-dim);
  transition:color .25s, background .25s;
}
.nav-drop > a:first-child{ border-top:1px solid var(--hairline); }
.nav-drop > a::after{ display:none; }
.nav-drop > a:hover{ color:var(--ink); background:rgba(244,243,240,0.05); }

/* Featured vertical reel (Maccas case study) */
.reel-feature{
  max-width:380px; margin:0 auto;
  border:1px solid var(--hairline); border-radius:3px; overflow:hidden;
  aspect-ratio:9/16; background:#000;
}
.reel-feature video{ width:100%; height:100%; display:block; object-fit:cover; }
