:root{
 --stone-50:#FFFFFF;
 --stone-100:#F6F4F0;
 --stone-200:#E3E0D9;
 --stone-300:#D3CFC5;
 --clay-500:#C9A227;
 --clay-600:#A6811A;
 --slate-800:#1F2430;
 --slate-900:#0F1B30;
 --heading-sub:#2C4570;
 --moss-600:#23324D;
 --moss-700:#101A2C;
 --cream:#FFFFFF;
 --line:rgba(15,27,48,0.12);
 --line-dark:rgba(255,255,255,0.14);
 --shadow:0 20px 50px rgba(15,27,48,0.14);
 --radius:2px;
 --font-display:'Montserrat', sans-serif;
 --font-body:'Lato', sans-serif;
 --font-mono:'Montserrat', sans-serif;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:var(--font-body);
  color:var(--slate-900);
  background:var(--cream);
  line-height:1.6;
 -webkit-font-smoothing:antialiased;
}
img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
ul{list-style:none;}
button{font-family:inherit; cursor:pointer;}
.wrap{max-width:1180px; margin:0 auto; padding:0 32px;}
.eyebrow{
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--clay-500);
  display:flex; align-items:center; gap:10px;
  margin-bottom:18px;
}
.eyebrow::before{content:""; width:22px; height:1px; background:var(--clay-500); display:inline-block;}
h1,h2{font-family:var(--font-display); font-weight:700; line-height:1.08; letter-spacing:-0.01em; color:var(--slate-900);}
h3,h4{font-family:var(--font-display); font-weight:600; line-height:1.15; letter-spacing:-0.005em; color:var(--heading-sub);}
.section-head{max-width:640px; margin-bottom:56px;}
.section-head h2{font-size:clamp(30px,4vw,44px); margin-bottom:14px;}
.section-head p{font-size:17px; color:#5B5347; max-width:560px;}
.section-head.center{margin-left:auto; margin-right:auto; text-align:center;}
.section-head.center .eyebrow{justify-content:center;}
.section-head.center .eyebrow::before{display:none;}
.section-head.center p{margin-left:auto; margin-right:auto;}

/* ============ Strata divider (signature motif) ============ */
.strata{height:14px; width:100%; display:flex;}
.strata span{flex:1; height:100%;}
.strata.light span:nth-child(1){background:var(--stone-200);}
.strata.light span:nth-child(2){background:var(--stone-300);}
.strata.light span:nth-child(3){background:var(--clay-500);}
.strata.light span:nth-child(4){background:var(--stone-300);}
.strata.light span:nth-child(5){background:var(--stone-200);}
.strata.dark span:nth-child(1){background:#1F2430;}
.strata.dark span:nth-child(2){background:var(--clay-600);}
.strata.dark span:nth-child(3){background:#5B5347;}
.strata.dark span:nth-child(4){background:var(--clay-600);}
.strata.dark span:nth-child(5){background:#1F2430;}

/* ============ Buttons ============================================
   Namespaced as .bc-btn (NOT .btn). WordPress themes very often ship
   Bootstrap, whose .btn / .btn-primary would otherwise repaint every
   button on this design bright blue with rounded corners. The double
   class selectors below also lift specificity above stray theme rules.
   ================================================================= */
.bc-btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  padding:16px 30px; font-family:var(--font-display);
  font-size:13.5px; font-weight:600; letter-spacing:0.03em; line-height:1;
  border-radius:var(--radius); border:1px solid transparent; white-space:nowrap;
  text-align:center; cursor:pointer; text-decoration:none;
  transition:background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.bc-btn svg{width:17px; height:17px; flex-shrink:0;}
.bc-btn:focus-visible{outline:2px solid var(--clay-500); outline-offset:3px;}

/* Primary - gold fill, dark ink. Dark ink on gold reads far better than
   white (7.1:1 vs 2.2:1) and looks more considered. */
.bc-btn.bc-btn-primary{background:var(--clay-500); color:var(--slate-900); border-color:var(--clay-500);}
.bc-btn.bc-btn-primary:hover{background:#DDB63A; border-color:#DDB63A; color:var(--slate-900); box-shadow:0 8px 22px rgba(201,162,39,0.32); transform:translateY(-2px);}

/* Secondary - hairline outline that fills on hover. */
.bc-btn.bc-btn-outline{background:transparent; color:var(--slate-900); border-color:rgba(15,27,48,0.28);}
.bc-btn.bc-btn-outline:hover{background:var(--slate-900); color:var(--cream); border-color:var(--slate-900); transform:translateY(-2px);}
.bc-btn.bc-btn-outline.on-dark{color:var(--cream); border-color:rgba(255,255,255,0.34);}
.bc-btn.bc-btn-outline.on-dark:hover{background:var(--cream); color:var(--slate-900); border-color:var(--cream);}

/* WhatsApp - real brand green with the real glyph, not a green dot. */
.bc-btn.bc-btn-whatsapp{background:#25D366; color:#06371C; border-color:#25D366;}
.bc-btn.bc-btn-whatsapp svg{fill:currentColor;}
.bc-btn.bc-btn-whatsapp:hover{background:#1EBE5A; border-color:#1EBE5A; color:#06371C; box-shadow:0 8px 22px rgba(37,211,102,0.32); transform:translateY(-2px);}

/* Quiet inline link-button. */
.bc-btn-ghost-link{
  display:inline-flex; align-items:center; gap:8px; font-family:var(--font-display);
  font-size:14px; font-weight:600; letter-spacing:.02em; color:var(--slate-900);
  border-bottom:1px solid var(--clay-500); padding:3px 0; transition:color .18s ease, gap .18s ease;
}
.bc-btn-ghost-link:hover{color:var(--clay-600); gap:12px;}

@media (prefers-reduced-motion:reduce){
  .bc-btn:hover{transform:none;}
}

/* ============ Header ============ */
header{
  position:sticky; top:0; z-index:100;
  background:rgba(255,255,255,0.92); backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{display:flex; align-items:center; justify-content:space-between; padding:18px 0;}
.logo{display:flex; align-items:center;}
.logo-mark{display:block; height:44px; width:auto;}
.nav-links{display:flex; align-items:center; gap:34px;}
.nav-links a{font-size:14px; font-weight:500; color:var(--slate-800); position:relative;}
.nav-links a::after{content:""; position:absolute; left:0; bottom:-4px; width:0; height:1px; background:var(--clay-500); transition:width .2s ease;}
.nav-links a:hover::after{width:100%;}
.nav-right{display:flex; align-items:center; gap:16px;}
.burger{display:none; flex-direction:column; gap:5px; background:none; border:none;}
.burger span{width:24px; height:2px; background:var(--slate-900);}

/* ============ Hero ============ */
.hero{
  position:relative; overflow:hidden;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(166,82,46,0.16), transparent 55%),
    linear-gradient(180deg, var(--stone-100) 0%, var(--stone-50) 100%);
  padding:100px 0 0;
}
.hero-grid{display:grid; grid-template-columns:1.05fr 0.85fr; gap:60px; align-items:center;}
.hero-eyebrow{font-family:var(--font-mono); font-size:12px; letter-spacing:.14em; text-transform:uppercase; color:var(--clay-500); margin-bottom:22px; display:flex; align-items:center; gap:10px;}
.hero-eyebrow::before{content:""; width:22px; height:1px; background:var(--clay-500);}
.hero h1{font-size:clamp(38px,5.4vw,64px); line-height:1.04; margin-bottom:22px;}
.hero h1 em{font-style:italic; color:var(--clay-500);}
.hero p.lead{font-size:18px; color:#5B5347; max-width:480px; margin-bottom:36px;}
.hero-ctas{display:flex; flex-wrap:wrap; gap:14px; margin-bottom:56px;}
.hero-figure{
  position:relative; aspect-ratio:4/5; border-radius:2px; overflow:hidden;
  background:linear-gradient(160deg,#5B5347,#23324D 45%,#1F2430 70%,#101A2C);
}
.hero-figure .layer{position:absolute; left:0; right:0;}
.hero-figure .caption{
  position:absolute; left:20px; bottom:20px; background:rgba(15,27,48,0.82); color:var(--cream);
  padding:14px 18px; font-family:var(--font-mono); font-size:11px; letter-spacing:.06em; max-width:220px;
}
.hero-figure .caption b{display:block; font-family:var(--font-display); font-size:16px; font-weight:600; margin-bottom:4px; letter-spacing:0;}

/* Core-sample graphic used in hero + why-choose section */
.core-sample{position:absolute; inset:0;}
.core-sample .band{position:absolute; left:0; right:0;}

/* ============ Trust bar ============ */
.trust-bar{background:var(--slate-900); color:var(--cream); padding:26px 0;}
.trust-bar ul{display:flex; flex-wrap:wrap; justify-content:space-between; gap:20px;}
.trust-bar li{display:flex; align-items:center; gap:10px; font-size:13px; font-weight:500; letter-spacing:.01em; flex:1; min-width:220px;}
.trust-bar li .dot{width:7px; height:7px; background:var(--clay-500); border-radius:50%; flex-shrink:0;}

/* ============ Why Choose ============ */
.why{padding:110px 0 100px; background:var(--stone-50);}
.why-intro{display:grid; grid-template-columns:1fr 1fr; gap:60px; margin-bottom:70px;}
.why-intro p{font-size:18px; color:#5B5347;}
.why-cards{display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line); border:1px solid var(--line);}
.why-card{background:var(--stone-50); padding:36px 28px; position:relative;}
.why-card .num{font-family:var(--font-mono); font-size:12px; color:var(--clay-500); margin-bottom:26px; display:block;}
.why-card h3{font-size:20px; margin-bottom:12px;}
.why-card p{font-size:14.5px; color:#5B5347;}
.why-close{margin-top:56px; font-family:var(--font-display); font-size:22px; font-style:italic; color:var(--slate-800); max-width:720px; border-left:2px solid var(--clay-500); padding-left:24px;}

/* ============ Services ============ */
.services{padding:110px 0; background:var(--stone-100);}
.services-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); border:1px solid var(--line);}
.service-card{background:var(--stone-100); padding:34px 30px; transition:background .2s ease;}
.service-card:hover{background:var(--stone-50);}
.service-card .si{width:38px; height:38px; margin-bottom:22px; color:var(--clay-500);}
.service-card h3{font-size:17.5px; margin-bottom:10px; font-weight:600;}
.service-card p{font-size:14px; color:#5B5347;}
.services-cta{margin-top:56px; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:20px; border-top:1px solid var(--line); padding-top:40px;}
.services-cta p{font-family:var(--font-display); font-size:22px; max-width:460px;}

/* ============ Health Check (contrast section) ============ */
.healthcheck{background:var(--slate-900); color:var(--cream); padding:110px 0;}
.healthcheck .section-head p{color:#C7BFAF;}
.healthcheck .eyebrow{color:var(--clay-500);}
.hc-grid{display:grid; grid-template-columns:1fr 0.9fr; gap:70px; align-items:start;}
.hc-list{display:grid; gap:0;}
.hc-item{display:grid; grid-template-columns:60px 1fr; gap:20px; padding:22px 0; border-bottom:1px solid var(--line-dark);}
.hc-item:first-child{padding-top:0;}
.hc-item .n{font-family:var(--font-mono); font-size:13px; color:var(--clay-500); padding-top:2px;}
.hc-item h4{font-size:16.5px; margin-bottom:6px; color:var(--cream); font-weight:600; font-family:var(--font-body);}
.hc-item p{font-size:14px; color:#C7BFAF;}
.hc-honest{margin-top:32px; font-family:var(--font-display); font-style:italic; font-size:19px; color:var(--stone-200); border-left:2px solid var(--clay-500); padding-left:22px;}
.hc-ctas{display:flex; flex-wrap:wrap; gap:14px; margin-top:34px;}
.hc-visual{
  position:relative; aspect-ratio:3/4; border-radius:2px; overflow:hidden;
  background:linear-gradient(200deg,#1F2430,#A6811A 60%,#0F1B30);
  border:1px solid var(--line-dark);
}
.hc-visual .tag{position:absolute; top:20px; left:20px; font-family:var(--font-mono); font-size:11px; letter-spacing:.08em; color:var(--clay-500); border:1px solid var(--clay-500); padding:6px 10px;}
.hc-price{position:absolute; bottom:24px; left:24px; right:24px;}
.hc-price .amt{font-family:var(--font-display); font-size:46px; color:var(--cream);}
.hc-price .lbl{font-family:var(--font-mono); font-size:11px; color:#C7BFAF; letter-spacing:.08em; text-transform:uppercase;}

/* ============ Care+ ============ */
.care{padding:110px 0; background:var(--stone-50);}
.care-grid{display:grid; grid-template-columns:0.9fr 1.1fr; gap:70px; align-items:center;}
.care-panel{
  background:linear-gradient(160deg,var(--moss-600),var(--moss-700));
  color:var(--cream); padding:48px 40px; border-radius:2px; position:relative; overflow:hidden;
}
.care-panel::before{content:"Care+"; position:absolute; right:-10px; bottom:-30px; font-family:var(--font-display); font-size:130px; font-weight:700; color:rgba(255,255,255,0.06); line-height:1;}
.care-panel h3{color:var(--cream); font-size:26px; margin-bottom:16px; position:relative;}
.care-panel p{color:rgba(255,255,255,0.86); font-size:15px; position:relative;}
.care-list{display:grid; grid-template-columns:1fr 1fr; gap:14px 28px; margin-bottom:40px;}
.care-list li{font-size:14.5px; display:flex; gap:10px; align-items:flex-start; color:#101A2C;}
.care-list li::before{content:"-"; color:var(--moss-600); flex-shrink:0;}
.care-who{font-size:15px; color:#5B5347; margin-bottom:32px; max-width:560px;}
.care-who b{color:var(--slate-900);}

/* ============ Gallery ============ */
.gallery{padding:110px 0; background:var(--stone-100);}
.ba-slider{position:relative; aspect-ratio:16/9; border-radius:2px; overflow:hidden; cursor:ew-resize; user-select:none; border:1px solid var(--line);}
.ba-slider .side{position:absolute; inset:0; display:flex; align-items:flex-end; padding:24px;}
.ba-before{background:linear-gradient(160deg,var(--moss-600),#5B5347 60%,#5B5347); color:var(--stone-100);}
.ba-after{background:linear-gradient(160deg,#5B5347,#23324D 55%,#1F2430); color:#A6811A; clip-path:inset(0 0 0 50%);}
.ba-side-label{font-family:var(--font-mono); font-size:11px; letter-spacing:.1em; text-transform:uppercase; background:rgba(0,0,0,0.35); padding:6px 12px;}
.ba-after .ba-side-label{background:rgba(255,255,255,0.4); color:#A6811A;}
.ba-handle{position:absolute; top:0; bottom:0; left:50%; width:2px; background:var(--cream); transform:translateX(-1px);}
.ba-handle .grip{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:44px; height:44px; border-radius:50%; background:var(--cream); display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow);}
.ba-caption{margin-top:18px; display:flex; justify-content:space-between; align-items:baseline; flex-wrap:wrap; gap:10px;}
.ba-caption h4{font-size:17px; font-weight:600; font-family:var(--font-body);}
.ba-caption span{font-family:var(--font-mono); font-size:12px; color:var(--clay-500);}
.ba-nav{display:flex; gap:10px; margin-top:26px; flex-wrap:wrap;}
.ba-nav button{padding:8px 16px; border:1px solid var(--line); background:transparent; font-size:13px; font-family:var(--font-mono); border-radius:2px;}
.ba-nav button.active{background:var(--slate-900); color:var(--cream); border-color:var(--slate-900);}
.gallery-cta{margin-top:50px; text-align:center;}

/* ============ Pricing ============ */
.pricing{padding:110px 0; background:var(--stone-50);}
.demo-flag{display:inline-block; font-family:var(--font-mono); font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:var(--clay-500); border:1px solid var(--clay-500); padding:4px 10px; margin-bottom:24px;}
.pricing-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
.price-card{border:1px solid var(--line); background:var(--cream); padding:38px 32px; position:relative; display:flex; flex-direction:column;}
.price-card.featured{border-color:var(--clay-500); background:var(--slate-900); color:var(--cream);}
.price-card.featured .tier-desc, .price-card.featured li{color:#C7BFAF;}
.badge{position:absolute; top:-13px; left:32px; background:var(--clay-500); color:var(--cream); font-family:var(--font-mono); font-size:11px; letter-spacing:.06em; text-transform:uppercase; padding:5px 12px;}
.tier-name{font-size:14px; font-family:var(--font-mono); text-transform:uppercase; letter-spacing:.08em; color:var(--clay-500); margin-bottom:14px;}
.tier-price{font-family:var(--font-display); font-size:30px; margin-bottom:6px;}
.tier-desc{font-size:14px; color:#5B5347; margin-bottom:26px;}
.price-card ul{margin-bottom:30px; flex:1;}
.price-card li{font-size:13.5px; padding:9px 0; border-top:1px solid var(--line); display:flex; gap:8px;}
.price-card.featured li{border-top-color:var(--line-dark);}
.price-card li::before{content:"✓"; color:var(--clay-500); flex-shrink:0;}
.tier-time{font-family:var(--font-mono); font-size:12px; color:var(--clay-500); margin-bottom:20px;}
.pricing-note{text-align:center; margin-top:44px; font-size:14.5px; color:#5B5347; max-width:560px; margin-left:auto; margin-right:auto;}

/* ============ Testimonials ============ */
.testi{padding:110px 0; background:var(--stone-100);}
.testi-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
.testi-card{background:var(--cream); border:1px solid var(--line); padding:32px 28px; display:flex; flex-direction:column;}
.testi-card:nth-child(4), .testi-card:nth-child(5){grid-column:span 1;}
.stars{font-family:var(--font-mono); color:var(--clay-500); font-size:13px; margin-bottom:18px; letter-spacing:2px;}
.testi-card p{font-size:14.5px; color:#101A2C; flex:1; margin-bottom:22px;}
.testi-name{font-size:13.5px; font-weight:600; border-top:1px solid var(--line); padding-top:14px;}
.testi-name span{display:block; font-weight:400; color:#8A8272; font-size:12.5px; margin-top:2px;}

/* ============ FAQ ============ */
.faq{padding:110px 0; background:var(--stone-50);}
.faq-list{max-width:820px;}
.faq-item{border-bottom:1px solid var(--line);}
.faq-q{width:100%; display:flex; justify-content:space-between; align-items:center; gap:20px; padding:26px 0; background:none; border:none; text-align:left; font-family:var(--font-display); font-size:19px; font-weight:600; color:var(--slate-900);}
.faq-q .plus{font-family:var(--font-mono); font-size:20px; color:var(--clay-500); flex-shrink:0; transition:transform .25s ease;}
.faq-item.open .plus{transform:rotate(45deg);}
.faq-a{max-height:0; overflow:hidden; transition:max-height .3s ease;}
.faq-a p{font-size:14.5px; color:#5B5347; padding-bottom:26px; max-width:680px;}

/* ============ Contact ============ */
.contact{padding:110px 0; background:var(--slate-900); color:var(--cream);}
.contact .eyebrow{color:var(--clay-500);}
.contact-grid{display:grid; grid-template-columns:0.9fr 1.1fr; gap:70px;}
.contact-info h2{color:var(--cream); font-size:clamp(28px,3.6vw,40px); margin-bottom:18px;}
.contact-info p{color:#C7BFAF; font-size:16px; margin-bottom:36px; max-width:420px;}
.contact-direct{display:flex; flex-direction:column; gap:16px;}
.contact-direct a{display:flex; align-items:center; gap:12px; font-size:15px; color:var(--cream); font-weight:500;}
.contact-direct .ic{width:34px; height:34px; border:1px solid var(--line-dark); border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0;}
form.enquiry{display:grid; grid-template-columns:1fr 1fr; gap:18px;}
form.enquiry .full{grid-column:1/-1;}
.field label{display:block; font-family:var(--font-mono); font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:#C7BFAF; margin-bottom:8px;}
.field input, .field select, .field textarea{
  width:100%; background:transparent; border:1px solid var(--line-dark); color:var(--cream);
  padding:13px 14px; font-family:var(--font-body); font-size:14px; border-radius:2px;
}
.field input::placeholder, .field textarea::placeholder{color:var(--moss-600);}
.field select{color:var(--cream);}
.field select option{background:var(--slate-900); color:var(--cream);}
.field textarea{resize:vertical; min-height:90px;}
.file-field{border:1px dashed var(--line-dark); padding:16px; font-size:13px; color:#C7BFAF; border-radius:2px; display:flex; align-items:center; justify-content:space-between; gap:12px;}
.form-msg{grid-column:1/-1; font-size:13px; color:var(--clay-500); display:none;}

/* ============ Footer ============ */
footer{background:#0F1B30; color:#C7BFAF; padding:80px 0 0;}
.footer-grid{display:grid; grid-template-columns:1.3fr 0.8fr 1fr 0.9fr; gap:50px; padding-bottom:60px; border-bottom:1px solid var(--line-dark);}
.footer-logo-mark{display:block; height:76px; width:auto; margin-bottom:20px;}
.footer-grid p{font-size:13.5px; line-height:1.7;}
.footer-col h5{font-family:var(--font-mono); font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:var(--cream); margin-bottom:20px;}
.footer-col li{margin-bottom:11px; font-size:13.5px;}
.footer-col a:hover{color:var(--cream);}
.service-areas{padding:34px 0; border-bottom:1px solid var(--line-dark); font-size:12.5px; line-height:1.8; color:#8A8272;}
.service-areas b{color:#C7BFAF;}
.copyright{padding:26px 0; font-size:12.5px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;}

/* ============ Sticky mobile bar ============ */
.mobile-bar{display:none; position:fixed; bottom:0; left:0; right:0; z-index:100;}
.mobile-bar{display:none;}

/* ============ Responsive ============ */
@media (max-width:960px){
  .why-intro, .hc-grid, .care-grid, .contact-grid{grid-template-columns:1fr; gap:34px;}
  .why-cards{grid-template-columns:repeat(2,1fr);}
  .services-grid{grid-template-columns:repeat(2,1fr);}
  .pricing-grid{grid-template-columns:1fr; max-width:440px; margin:0 auto;}
  .testi-grid{grid-template-columns:1fr 1fr;}
  .footer-grid{grid-template-columns:1fr 1fr; gap:34px;}
  .hero-grid{grid-template-columns:1fr;}
  .hero-figure{order:-1; aspect-ratio:16/9;}
}
@media (max-width:680px){
  .wrap{padding:0 20px;}
  .nav-links{display:none;}
  .burger{display:flex;}
  .why-cards{grid-template-columns:1fr;}
  .services-grid{grid-template-columns:1fr;}
  .testi-grid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr; gap:30px;}
  form.enquiry{grid-template-columns:1fr;}
  .care-list{grid-template-columns:1fr;}
  .hero-ctas .btn{width:100%;}
  .mobile-bar{display:flex; height:56px;}
  body{padding-bottom:56px;}
  .services-cta, .copyright{flex-direction:column; align-items:flex-start;}
}
.mobile-bar.show{display:flex;}
.mobile-bar a{flex:1; display:flex; align-items:center; justify-content:center; gap:8px; font-size:13px; font-weight:600;}
.mobile-bar .wa{background:#25D366; color:#0F1B30;}
.mobile-bar .call{background:var(--clay-500); color:var(--cream);}

.reveal{opacity:0; transform:translateY(16px); transition:opacity .6s ease, transform .6s ease;}
.reveal.in{opacity:1; transform:translateY(0);}
@media (prefers-reduced-motion:reduce){.reveal{opacity:1; transform:none; transition:none;}}
/* ============================================================
   IMAGE PLACEHOLDER COMPONENT
   ============================================================ */
.img-ph{
  position:relative; display:flex; align-items:center; justify-content:center;
  background:
    repeating-linear-gradient(135deg, rgba(15,27,48,0.05) 0 10px, transparent 10px 20px),
    var(--stone-100);
  border:1.5px dashed var(--stone-300);
  color:#8A8272; text-align:center; overflow:hidden;
}
.img-ph .ph-inner{padding:20px; max-width:88%;}
.img-ph .ph-icon{width:30px; height:30px; margin:0 auto 10px; opacity:0.55;}
.img-ph .ph-label{font-family:var(--font-mono); font-size:11px; letter-spacing:.06em; text-transform:uppercase; line-height:1.5;}

/* ============================================================
   STICKY WHATSAPP FLOAT (site-wide)
   ============================================================ */
.wa-float{
  position:fixed; right:22px; bottom:22px; z-index:200;
  width:56px; height:56px; border-radius:50%; background:#25D366;
  display:flex; align-items:center; justify-content:center; box-shadow:0 10px 30px rgba(15,27,48,0.35);
  transition:transform .2s ease;
}
.wa-float:hover{transform:scale(1.08);}
.wa-float svg{width:28px; height:28px;}
@media (max-width:680px){ .wa-float{display:none;} }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider{position:relative; overflow:hidden; min-height:640px; display:flex; align-items:center;}
.hero-slide{
  position:absolute; inset:0; width:100%; display:flex; align-items:center; opacity:0; visibility:hidden;
  transition:opacity .6s ease; z-index:1;
  background:linear-gradient(155deg,var(--stone-100) 0%,var(--stone-50) 55%,var(--stone-200) 100%);
}
.hero-slide.active{opacity:1; visibility:visible; z-index:2; position:relative; width:100%;}
.hero-slide .wrap{width:100%;}
.hero-slide-grid{display:grid; grid-template-columns:1.05fr 0.85fr; gap:60px; align-items:center; width:100%;}
.hero-slide-inner{max-width:640px; padding:120px 0 90px;}
.hero-visual{position:relative; aspect-ratio:4/5; border-radius:2px; overflow:hidden;}
@media (max-width:900px){ .hero-slide-grid{grid-template-columns:1fr;} .hero-visual{display:none;} }
.hero-eyebrow{font-family:var(--font-mono); font-size:12px; letter-spacing:.14em; text-transform:uppercase; color:var(--clay-500); margin-bottom:22px; display:flex; align-items:center; gap:10px;}
.hero-eyebrow::before{content:""; width:22px; height:1px; background:var(--clay-500);}
.hero-slide h1{font-size:clamp(32px,4.6vw,54px); line-height:1.08; margin-bottom:20px;}
.hero-slide p.lead{font-size:17px; color:#5B5347; max-width:480px; margin-bottom:32px;}
.hero-ctas{display:flex; flex-wrap:wrap; gap:14px;}
.hero-dots{position:absolute; left:32px; bottom:28px; z-index:5; display:flex; gap:10px;}
.hero-dots button{width:9px; height:9px; border-radius:50%; border:1px solid var(--clay-500); background:transparent; padding:0;}
.hero-dots button.active{background:var(--clay-500);}
.hero-count{position:absolute; right:32px; bottom:28px; z-index:5; font-family:var(--font-mono); font-size:12px; color:#8A8272;}
@media (max-width:680px){ .hero-slider{min-height:560px;} .hero-slide-inner{padding:110px 0 80px;} }

/* ============================================================
   ABOUT
   ============================================================ */
.about{padding:110px 0; background:var(--stone-50);}
.about-grid{display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center;}
.about-copy p.lead{font-size:16.5px; color:#5B5347; margin-bottom:36px;}
.icon-boxes{display:grid; gap:26px; margin-bottom:36px;}
.icon-box{display:flex; gap:18px;}
.icon-box .ib-icon{width:44px; height:44px; flex-shrink:0; border:1px solid var(--line); border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--clay-500);}
.icon-box h4{font-size:16px; margin-bottom:6px;}
.icon-box p{font-size:14px; color:#5B5347;}
.about-visual{position:relative;}
.about-visual .img-ph{aspect-ratio:4/5; border-radius:2px;}
.about-counter{
  position:absolute; left:-28px; bottom:-28px; background:var(--slate-900); color:var(--cream);
  padding:24px 26px; min-width:170px; box-shadow:var(--shadow);
}
.about-counter .num{font-family:var(--font-display); font-size:34px; font-weight:700; color:var(--cream);}
.about-counter .lbl{font-family:var(--font-mono); font-size:11px; letter-spacing:.06em; text-transform:uppercase; color:#C7BFAF; margin-top:4px;}
@media (max-width:960px){ .about-grid{grid-template-columns:1fr;} .about-visual{order:-1;} .about-counter{left:16px; bottom:-24px;} }

/* ============================================================
   SERVICES (6-card + center image)
   ============================================================ */
.services6{padding:110px 0; background:var(--stone-100);}
.services6-grid{display:grid; grid-template-columns:1fr 1fr 1fr; gap:1px; background:var(--line); border:1px solid var(--line);}
.s6-card{background:var(--stone-100); padding:32px 28px;}
.s6-card h3{font-size:16.5px; margin-bottom:8px; font-weight:600;}
.s6-card p{font-size:13.5px; color:#5B5347;}
.s6-img{grid-row:span 2; position:relative;}
.s6-img .img-ph{height:100%; min-height:220px;}
.services6-foot{margin-top:40px; text-align:center;}

/* ============================================================
   COUNTERS
   ============================================================ */
.counters{background:var(--slate-900); padding:64px 0;}
.counters .demo-flag{margin-bottom:0;}
.counters-head{display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px; margin-bottom:40px;}
.counters-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line-dark);}
.counter-item{background:var(--slate-900); text-align:center; padding:14px 10px;}
.counter-item .cnum{font-family:var(--font-display); font-size:38px; font-weight:700; color:var(--cream);}
.counter-item .clabel{font-family:var(--font-mono); font-size:11px; letter-spacing:.06em; text-transform:uppercase; color:#C7BFAF; margin-top:8px;}
@media (max-width:680px){ .counters-grid{grid-template-columns:1fr 1fr;} }

/* ============================================================
   WORK PROCESS
   ============================================================ */
.process{padding:110px 0; background:var(--stone-50);}
.process-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:40px;}
.process-item{position:relative; padding-top:6px;}
.process-item .pnum{font-family:var(--font-display); font-size:52px; font-weight:700; color:var(--stone-300); line-height:1; margin-bottom:18px;}
.process-item h3{font-size:19px; margin-bottom:10px;}
.process-item p{font-size:14.5px; color:#5B5347;}
.process-foot{margin-top:52px; border-top:1px solid var(--line); padding-top:32px; font-family:var(--font-display); font-size:19px; font-style:italic; color:var(--slate-800); max-width:760px;}
.process-foot a{color:var(--clay-500); font-style:normal; font-weight:600; border-bottom:1px solid var(--clay-500);}

/* ============================================================
   PROJECTS (6 cards)
   ============================================================ */
.projects{padding:110px 0; background:var(--stone-100);}
.projects-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
.project-card{background:var(--cream); border:1px solid var(--line);}
.project-card .img-ph{aspect-ratio:4/3;}
.project-card .pc-body{padding:22px 22px 26px;}
.project-card h3{font-size:16px; margin-bottom:8px; line-height:1.3;}
.project-card p{font-size:13.5px; color:#5B5347;}
.projects-foot{margin-top:44px; text-align:center;}
@media (max-width:900px){ .projects-grid{grid-template-columns:1fr 1fr;} }
@media (max-width:600px){ .projects-grid{grid-template-columns:1fr;} }

/* ============================================================
   BEFORE / AFTER (reuses .ba-slider pattern with placeholders)
   ============================================================ */
.gallery{padding:110px 0; background:var(--stone-50);}
.ba-slider{position:relative; aspect-ratio:16/9; border-radius:2px; overflow:hidden; cursor:ew-resize; user-select:none; border:1px solid var(--line);}
.ba-slider .side{position:absolute; inset:0;}
.ba-slider .side .img-ph{width:100%; height:100%; border:none;}
.ba-side-label{position:absolute; bottom:20px; left:20px; z-index:3; font-family:var(--font-mono); font-size:11px; letter-spacing:.1em; text-transform:uppercase; background:rgba(15,27,48,0.75); color:var(--cream); padding:6px 12px;}
.ba-after{clip-path:inset(0 0 0 50%);}
.ba-handle{position:absolute; top:0; bottom:0; left:50%; width:2px; background:var(--cream); transform:translateX(-1px); z-index:4;}
.ba-handle .grip{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:44px; height:44px; border-radius:50%; background:var(--cream); display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow);}
.ba-caption{margin-top:18px; display:flex; justify-content:space-between; align-items:baseline; flex-wrap:wrap; gap:10px;}
.ba-caption h4{font-size:17px; font-weight:600; font-family:var(--font-body);}
.ba-caption span{font-family:var(--font-mono); font-size:12px; color:var(--clay-500);}
.ba-nav{display:flex; gap:10px; margin-top:26px; flex-wrap:wrap;}
.ba-nav button{padding:8px 16px; border:1px solid var(--line); background:transparent; font-size:12.5px; font-family:var(--font-mono); border-radius:2px;}
.ba-nav button.active{background:var(--slate-900); color:var(--cream); border-color:var(--slate-900);}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi{padding:110px 0; background:var(--stone-100);}
.testi-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
.testi-card{background:var(--cream); border:1px solid var(--line); padding:30px 26px; display:flex; flex-direction:column;}
.stars{font-family:var(--font-mono); color:var(--clay-500); font-size:13px; margin-bottom:16px; letter-spacing:2px;}
.testi-card p{font-size:14px; color:#5B5347; flex:1; margin-bottom:22px;}
.testi-who{display:flex; align-items:center; gap:12px; border-top:1px solid var(--line); padding-top:16px;}
.avatar-initials{
  width:38px; height:38px; border-radius:50%; background:var(--clay-500); color:var(--cream);
  display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-weight:700; font-size:14px; flex-shrink:0;
}
.testi-name{font-size:13.5px; font-weight:600;}
.testi-name span{display:block; font-weight:400; color:#8A8272; font-size:12.5px; margin-top:2px;}
@media (max-width:900px){ .testi-grid{grid-template-columns:1fr 1fr;} }
@media (max-width:600px){ .testi-grid{grid-template-columns:1fr;} }

/* ============================================================
   HEALTH CHECK (dark two-column, reused pattern)
   ============================================================ */
.healthcheck{background:var(--slate-900); color:var(--cream); padding:110px 0;}
.healthcheck .section-head p{color:#C7BFAF;}
.healthcheck .eyebrow{color:var(--clay-500);}
.hc-grid{display:grid; grid-template-columns:1fr 0.9fr; gap:70px; align-items:start;}
.hc-list{display:grid; gap:0;}
.hc-item{display:grid; grid-template-columns:60px 1fr; gap:20px; padding:20px 0; border-bottom:1px solid var(--line-dark);}
.hc-item:first-child{padding-top:0;}
.hc-item .n{font-family:var(--font-mono); font-size:13px; color:var(--clay-500); padding-top:2px;}
.hc-item h4{font-size:16px; margin-bottom:6px; color:var(--cream); font-weight:600; font-family:var(--font-body);}
.hc-item p{font-size:13.5px; color:#C7BFAF;}
.hc-honest{margin-top:30px; font-family:var(--font-display); font-style:italic; font-size:18px; color:var(--stone-200); border-left:2px solid var(--clay-500); padding-left:22px;}
.hc-ctas{display:flex; flex-wrap:wrap; gap:14px; margin-top:32px;}
.hc-visual .img-ph{aspect-ratio:3/4; border-radius:2px; border-color:var(--line-dark); background:rgba(255,255,255,0.03); color:#C7BFAF;}

/* ============================================================
   CARE+ (reused panel pattern)
   ============================================================ */
.care{padding:110px 0; background:var(--stone-50);}
.care-grid{display:grid; grid-template-columns:0.9fr 1.1fr; gap:70px; align-items:center;}
.care-panel{background:linear-gradient(160deg,var(--moss-600),var(--moss-700)); color:var(--cream); padding:48px 40px; border-radius:2px; position:relative; overflow:hidden;}
.care-panel::before{content:"Care+"; position:absolute; right:-10px; bottom:-30px; font-family:var(--font-display); font-size:130px; font-weight:700; color:rgba(255,255,255,0.06); line-height:1;}
.care-panel h3{color:var(--cream); font-size:26px; margin-bottom:16px; position:relative;}
.care-panel p{color:rgba(255,255,255,0.86); font-size:15px; position:relative;}
.care-list{display:grid; grid-template-columns:1fr 1fr; gap:14px 28px; margin-bottom:36px;}
.care-list li{font-size:14px; display:flex; gap:10px; align-items:flex-start; color:#5B5347;}
.care-list li::before{content:"-"; color:var(--clay-500); flex-shrink:0;}
@media (max-width:960px){ .about-grid, .hc-grid, .care-grid{grid-template-columns:1fr; gap:34px;} .services6-grid{grid-template-columns:1fr 1fr;} .s6-img{grid-row:auto; grid-column:span 2;} .process-grid{grid-template-columns:1fr;} .projects-grid{grid-template-columns:1fr 1fr;} }

/* ============================================================
   PRICING with Renovation / Care+ toggle
   ============================================================ */
.pricing{padding:110px 0; background:var(--stone-100);}
.demo-flag{display:inline-block; font-family:var(--font-mono); font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:var(--clay-500); border:1px solid var(--clay-500); padding:4px 10px; margin-bottom:24px;}
.price-toggle{display:inline-flex; border:1px solid var(--line); border-radius:999px; padding:4px; margin-bottom:48px;}
.price-toggle button{padding:9px 22px; font-size:13px; font-weight:600; border-radius:999px; background:transparent; color:var(--slate-900); border:none;}
.price-toggle button.active{background:var(--slate-900); color:var(--cream);}
.pricing-panel{display:none;}
.pricing-panel.active{display:block;}
.pricing-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
.price-card{border:1px solid var(--line); background:var(--cream); padding:36px 30px; position:relative; display:flex; flex-direction:column;}
.price-card.featured{border-color:var(--clay-500); background:var(--slate-900); color:var(--cream);}
.price-card.featured .tier-desc, .price-card.featured li{color:#C7BFAF;}
.badge{position:absolute; top:-13px; left:30px; background:var(--clay-500); color:var(--cream); font-family:var(--font-mono); font-size:11px; letter-spacing:.06em; text-transform:uppercase; padding:5px 12px;}
.tier-name{font-size:14px; font-family:var(--font-mono); text-transform:uppercase; letter-spacing:.08em; color:var(--clay-500); margin-bottom:14px;}
.tier-price{font-family:var(--font-display); font-size:28px; margin-bottom:6px;}
.tier-desc{font-size:13.5px; color:#5B5347; margin-bottom:24px;}
.price-card ul{margin-bottom:28px; flex:1;}
.price-card li{font-size:13.5px; padding:9px 0; border-top:1px solid var(--line); display:flex; gap:8px;}
.price-card.featured li{border-top-color:var(--line-dark);}
.price-card li::before{content:"✓"; color:var(--clay-500); flex-shrink:0;}
.pricing-note{text-align:center; margin-top:40px; font-size:14px; color:#5B5347; max-width:560px; margin-left:auto; margin-right:auto;}
@media (max-width:960px){ .pricing-grid{grid-template-columns:1fr; max-width:440px; margin:0 auto;} }

/* ============================================================
   FAQ (reused accordion)
   ============================================================ */
.faq{padding:110px 0; background:var(--stone-50);}
.faq-list{max-width:820px;}
.faq-item{border-bottom:1px solid var(--line);}
.faq-q{width:100%; display:flex; justify-content:space-between; align-items:center; gap:20px; padding:24px 0; background:none; border:none; text-align:left; font-family:var(--font-display); font-size:18px; font-weight:600; color:var(--slate-900);}
.faq-q .plus{font-family:var(--font-mono); font-size:20px; color:var(--clay-500); flex-shrink:0; transition:transform .25s ease;}
.faq-item.open .plus{transform:rotate(45deg);}
.faq-a{max-height:0; overflow:hidden; transition:max-height .3s ease;}
.faq-a p{font-size:14.5px; color:#5B5347; padding-bottom:24px; max-width:680px;}

/* ============================================================
   CONTACT (reused form)
   ============================================================ */
.contact{padding:110px 0; background:var(--slate-900); color:var(--cream);}
.contact .eyebrow{color:var(--clay-500);}
.contact-grid{display:grid; grid-template-columns:0.9fr 1.1fr; gap:70px;}
.contact-info h2{color:var(--cream); font-size:clamp(28px,3.6vw,40px); margin-bottom:18px;}
.contact-info p{color:#C7BFAF; font-size:16px; margin-bottom:36px; max-width:420px;}
.contact-direct{display:flex; flex-direction:column; gap:16px;}
.contact-direct a{display:flex; align-items:center; gap:12px; font-size:15px; color:var(--cream); font-weight:500;}
.contact-direct .ic{width:34px; height:34px; border:1px solid var(--line-dark); border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0;}
form.enquiry{display:grid; grid-template-columns:1fr 1fr; gap:18px;}
form.enquiry .full{grid-column:1/-1;}
.field label{display:block; font-family:var(--font-mono); font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:#C7BFAF; margin-bottom:8px;}
.field input, .field select, .field textarea{width:100%; background:transparent; border:1px solid var(--line-dark); color:var(--cream); padding:13px 14px; font-family:var(--font-body); font-size:14px; border-radius:2px;}
.field input::placeholder, .field textarea::placeholder{color:#8A8272;}
.field select option{background:var(--slate-900); color:var(--cream);}
.field textarea{resize:vertical; min-height:90px;}
.form-msg{grid-column:1/-1; font-size:13px; color:#25D366; display:block; margin-bottom:6px;}

/* ============================================================
   FOOTER (reused)
   ============================================================ */
footer{background:var(--slate-900); color:#C7BFAF; padding:80px 0 0; position:relative;}
.footer-grid{display:grid; grid-template-columns:1.3fr 0.8fr 1fr 0.9fr; gap:50px; padding-bottom:60px; border-bottom:1px solid var(--line-dark);}
.footer-logo-mark{display:block; height:76px; width:auto; margin-bottom:14px;}
.footer-grid p{font-size:13.5px; line-height:1.7;}
.footer-col h5{font-family:var(--font-mono); font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:var(--cream); margin-bottom:20px;}
.footer-col li{margin-bottom:11px; font-size:13.5px;}
.footer-col a:hover{color:var(--cream);}
.service-areas{padding:34px 0; border-bottom:1px solid var(--line-dark); font-size:12.5px; line-height:1.8; color:#8A8272;}
.service-areas b{color:#C7BFAF;}
.copyright{padding:26px 0; font-size:12.5px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;}
@media (max-width:960px){ .footer-grid{grid-template-columns:1fr 1fr; gap:34px;} }
@media (max-width:600px){ .footer-grid{grid-template-columns:1fr; gap:30px;} form.enquiry{grid-template-columns:1fr;} .contact-grid{grid-template-columns:1fr; gap:34px;} .copyright{flex-direction:column; align-items:flex-start;} }

/* ============================================================
   MOBILE MENU + STICKY BAR (reused)
   ============================================================ */
.mobile-bar{display:none; position:fixed; bottom:0; left:0; right:0; z-index:150; height:56px;}
.mobile-bar.show{display:flex;}
.mobile-bar a{flex:1; display:flex; align-items:center; justify-content:center; gap:8px; font-size:13px; font-weight:600;}
.mobile-bar .wa{background:#25D366; color:#0F1B30;}
.mobile-bar .call{background:var(--clay-500); color:var(--cream);}
@media (max-width:680px){ body{padding-bottom:56px;} .nav-links{display:none;} .burger{display:flex;} }

.reveal{opacity:0; transform:translateY(16px); transition:opacity .6s ease, transform .6s ease;}
.reveal.in{opacity:1; transform:translateY(0);}
@media (prefers-reduced-motion:reduce){.reveal{opacity:1; transform:none; transition:none;}}

/* ============================================================
   PHOTO SLOTS
   .img-ph keeps its aspect-ratio box; .has-photo drops the
   placeholder hatching and lets a real photo fill the frame.
   ============================================================ */
.img-ph.has-photo{background:none; border:none; padding:0; overflow:hidden;}
.img-ph.has-photo .ph-inner{display:none;}
.img-ph.has-photo img{width:100%; height:100%; object-fit:cover; display:block;}

/* ============================================================
   BUTTONS ON DARK SECTIONS
   Primary and WhatsApp are self-coloured and need no change.
   Only the outline variant has to flip for navy backgrounds.
   ============================================================ */
.healthcheck .bc-btn.bc-btn-outline,
.contact .bc-btn.bc-btn-outline,
.cta-band .bc-btn.bc-btn-outline,
.page-hero .bc-btn.bc-btn-outline,
.sec.dark .bc-btn.bc-btn-outline,
.care-panel .bc-btn.bc-btn-outline,
.price-card.featured .bc-btn.bc-btn-outline{
  background:transparent; color:var(--cream); border-color:rgba(255,255,255,0.34);
}
.healthcheck .bc-btn.bc-btn-outline:hover,
.contact .bc-btn.bc-btn-outline:hover,
.cta-band .bc-btn.bc-btn-outline:hover,
.page-hero .bc-btn.bc-btn-outline:hover,
.sec.dark .bc-btn.bc-btn-outline:hover,
.care-panel .bc-btn.bc-btn-outline:hover,
.price-card.featured .bc-btn.bc-btn-outline:hover{
  background:var(--cream); color:var(--slate-900); border-color:var(--cream);
}

/* The WhatsApp glyph, drawn as a mask so the markup stays clean. */
.bc-btn.bc-btn-whatsapp::before{
  content:""; width:17px; height:17px; flex-shrink:0; background:currentColor;
  -webkit-mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12.04 2C6.58 2 2.13 6.45 2.13 11.91c0 1.75.46 3.45 1.32 4.95L2.05 22l5.25-1.38c1.45.79 3.08 1.21 4.74 1.21h.01c5.46 0 9.91-4.45 9.91-9.91C21.96 6.45 17.5 2 12.04 2zm5.8 14.06c-.24.68-1.4 1.3-1.93 1.38-.49.08-1.11.11-1.79-.11-.41-.13-.94-.31-1.62-.6-2.85-1.23-4.71-4.1-4.85-4.29-.14-.19-1.16-1.54-1.16-2.94 0-1.4.73-2.09 1-2.38.26-.28.57-.35.76-.35.19 0 .38 0 .55.01.18.01.41-.07.64.49.24.57.81 1.97.88 2.11.07.14.12.31.02.5-.09.19-.14.31-.28.48-.14.16-.29.36-.42.49-.14.14-.28.29-.12.57.16.28.71 1.17 1.52 1.9 1.05.94 1.93 1.23 2.21 1.37.28.14.44.12.6-.07.16-.19.68-.79.87-1.06.19-.28.37-.23.62-.14.26.09 1.63.77 1.91.91.28.14.47.21.54.33.07.12.07.68-.16 1.36z'/></svg>") center/contain no-repeat;
          mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12.04 2C6.58 2 2.13 6.45 2.13 11.91c0 1.75.46 3.45 1.32 4.95L2.05 22l5.25-1.38c1.45.79 3.08 1.21 4.74 1.21h.01c5.46 0 9.91-4.45 9.91-9.91C21.96 6.45 17.5 2 12.04 2zm5.8 14.06c-.24.68-1.4 1.3-1.93 1.38-.49.08-1.11.11-1.79-.11-.41-.13-.94-.31-1.62-.6-2.85-1.23-4.71-4.1-4.85-4.29-.14-.19-1.16-1.54-1.16-2.94 0-1.4.73-2.09 1-2.38.26-.28.57-.35.76-.35.19 0 .38 0 .55.01.18.01.41-.07.64.49.24.57.81 1.97.88 2.11.07.14.12.31.02.5-.09.19-.14.31-.28.48-.14.16-.29.36-.42.49-.14.14-.28.29-.12.57.16.28.71 1.17 1.52 1.9 1.05.94 1.93 1.23 2.21 1.37.28.14.44.12.6-.07.16-.19.68-.79.87-1.06.19-.28.37-.23.62-.14.26.09 1.63.77 1.91.91.28.14.47.21.54.33.07.12.07.68-.16 1.36z'/></svg>") center/contain no-repeat;
}

/* Rows of buttons line up cleanly */
.hero-ctas,.hc-ctas,.cta-band .acts,.services-cta,.gallery-cta,.projects-foot{align-items:center;}
@media (max-width:680px){ .bc-btn{width:100%;} }

/* ============================================================
   SERVICES GRID - feature image column
   Six cards in columns 1 and 3, one tall photo down the middle.
   The previous 2-row span left an empty ninth cell showing as a
   grey block under the photo.
   ============================================================ */
.services6-grid{grid-template-columns:1fr 1fr 1fr; grid-auto-rows:1fr;}
.services6-grid > .s6-card:nth-child(1){grid-column:1; grid-row:1;}
.services6-grid > .s6-card:nth-child(2){grid-column:1; grid-row:2;}
.services6-grid > .s6-card:nth-child(3){grid-column:1; grid-row:3;}
.services6-grid > .s6-img{grid-column:2; grid-row:1 / span 3;}
.services6-grid > .s6-card:nth-child(5){grid-column:3; grid-row:1;}
.services6-grid > .s6-card:nth-child(6){grid-column:3; grid-row:2;}
.services6-grid > .s6-card:nth-child(7){grid-column:3; grid-row:3;}
.s6-img{position:relative; min-height:100%;}
.s6-img .img-ph{position:absolute; inset:0; height:100%; width:100%;}
@media (max-width:960px){
  .services6-grid{grid-template-columns:1fr 1fr;}
  .services6-grid > .s6-card:nth-child(1){grid-column:1; grid-row:1;}
  .services6-grid > .s6-card:nth-child(2){grid-column:2; grid-row:1;}
  .services6-grid > .s6-card:nth-child(3){grid-column:1; grid-row:2;}
  .services6-grid > .s6-card:nth-child(5){grid-column:2; grid-row:2;}
  .services6-grid > .s6-card:nth-child(6){grid-column:1; grid-row:3;}
  .services6-grid > .s6-card:nth-child(7){grid-column:2; grid-row:3;}
  .services6-grid > .s6-img{grid-column:1 / -1; grid-row:4;}
  .s6-img{min-height:280px;}
}
@media (max-width:600px){
  .services6-grid{grid-template-columns:1fr;}
  .services6-grid > .s6-card:nth-child(1){grid-column:1; grid-row:1;}
  .services6-grid > .s6-card:nth-child(2){grid-column:1; grid-row:2;}
  .services6-grid > .s6-card:nth-child(3){grid-column:1; grid-row:3;}
  .services6-grid > .s6-card:nth-child(5){grid-column:1; grid-row:4;}
  .services6-grid > .s6-card:nth-child(6){grid-column:1; grid-row:5;}
  .services6-grid > .s6-card:nth-child(7){grid-column:1; grid-row:6;}
  .services6-grid > .s6-img{grid-column:1; grid-row:7;}
}

/* ============================================================
   BEFORE / AFTER SLIDER
   The earlier rule left padding:24px and flex alignment on .side,
   so the photo inside was inset and clipped. Reset it here.
   ============================================================ */
.ba-slider .side{position:absolute; inset:0; display:block; padding:0; background:none;}
.ba-slider .side .img-ph{position:absolute; inset:0; width:100%; height:100%; border:none;}
.ba-slider .side .img-ph img{width:100%; height:100%; object-fit:cover;}
.ba-slider .ba-side-label{
  position:absolute; bottom:18px; z-index:3;
  font-family:var(--font-mono); font-size:10.5px; letter-spacing:.12em; text-transform:uppercase;
  background:rgba(15,27,48,0.78); color:var(--cream); padding:7px 13px; backdrop-filter:blur(4px);
}
.ba-before .ba-side-label{left:18px;}
.ba-after .ba-side-label{right:18px; background:rgba(201,162,39,0.92); color:var(--slate-900);}
.ba-handle{z-index:4;}
.ba-handle .grip{cursor:ew-resize;}

/* ============================================================
   PRICING BADGE
   Renamed from .badge, which collides with Bootstrap in themes.
   ============================================================ */
.price-card .bc-badge{
  position:absolute; top:-13px; left:30px; background:var(--clay-500); color:var(--slate-900);
  font-family:var(--font-mono); font-size:10.5px; font-weight:600; letter-spacing:.08em;
  text-transform:uppercase; padding:6px 13px; border-radius:2px;
}

/* ============================================================
   RESPONSIVE PASS
   Desktop layout is unchanged. Everything below tightens the
   design down through tablet to small phones, and replaces the
   inline-style mobile menu with a real one.
   ============================================================ */

/* ---- Mobile navigation ---- */
.burger{background:none; border:none; padding:6px; cursor:pointer;}
.burger span{display:block; width:24px; height:2px; background:var(--slate-900); transition:transform .22s ease, opacity .18s ease;}
.burger.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.burger.is-open span:nth-child(2){opacity:0;}
.burger.is-open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

@media (max-width:900px){
  header .wrap.nav{position:relative;}
  .nav-links{
    display:flex; flex-direction:column; align-items:stretch; gap:0;
    position:absolute; top:100%; left:0; right:0;
    background:var(--cream); border-bottom:1px solid var(--line);
    box-shadow:0 18px 40px rgba(15,27,48,0.12);
    padding:8px 20px 18px;
    max-height:0; overflow:hidden; opacity:0; visibility:hidden;
    transition:max-height .28s ease, opacity .2s ease;
  }
  .nav-links.is-open{max-height:70vh; overflow-y:auto; opacity:1; visibility:visible;}
  .nav-links a{padding:15px 4px; font-size:15px; border-bottom:1px solid var(--line);}
  .nav-links a:last-child{border-bottom:none;}
  .nav-links a::after{display:none;}
  .burger{display:flex; flex-direction:column; gap:5px;}
  .nav-right .bc-btn{padding:12px 18px; font-size:12.5px;}
}

/* ---- Tablet ---- */
@media (max-width:900px){
  .hero-slide-grid{grid-template-columns:1fr; gap:34px;}
  .hero-slide-inner{padding:64px 0 20px; max-width:none;}
  /* The hero photograph stays on mobile - it was being hidden entirely. */
  .hero-visual{display:block; aspect-ratio:16/10; margin-bottom:54px;}
  .hero-slider{min-height:0;}
  .hero-slide h1{font-size:clamp(28px,6.4vw,40px);}
  .hero-dots{left:20px; bottom:16px;}
  .hero-count{right:20px; bottom:16px;}
  .trust-bar li{min-width:calc(50% - 10px); flex:0 0 calc(50% - 10px);}
}

/* ---- Phone ---- */
@media (max-width:680px){
  .wrap{padding:0 18px;}
  section{overflow-x:hidden;}
  .about, .services6, .process, .projects, .gallery, .testi,
  .healthcheck, .care, .pricing, .faq, .contact{padding:64px 0;}
  .counters{padding:44px 0;}
  .section-head{margin-bottom:34px;}
  .section-head h2{font-size:clamp(25px,7vw,32px);}
  .hero-ctas{flex-direction:column; align-items:stretch; gap:12px;}
  .hero-ctas .bc-btn, .hc-ctas .bc-btn, .cta-band .acts .bc-btn,
  .projects-foot .bc-btn, .gallery-cta .bc-btn{width:100%;}
  .hc-ctas, .cta-band .acts{flex-direction:column; align-items:stretch; width:100%;}
  .trust-bar{padding:20px 0;}
  .trust-bar ul{flex-direction:column; gap:12px;}
  .trust-bar li{min-width:100%; flex:1 1 100%; font-size:13.5px;}
  .about-counter{position:static; margin-top:18px; min-width:0; display:inline-block;}
  .about-visual .img-ph{aspect-ratio:4/3;}
  .counters-grid{grid-template-columns:1fr 1fr;}
  .counter-item .cnum{font-size:26px;}
  .counter-item .clabel{font-size:10px;}
  .process-item .pnum{font-size:40px; margin-bottom:12px;}
  .ba-slider{aspect-ratio:4/3;}
  .ba-nav{gap:8px;}
  .ba-nav button{padding:7px 12px; font-size:11.5px;}
  .ba-caption{flex-direction:column; gap:4px;}
  .hc-item{grid-template-columns:40px 1fr; gap:12px;}
  .hc-visual{display:none;}
  .care-panel{padding:34px 26px;}
  .care-panel::before{font-size:90px;}
  .price-toggle{width:100%; display:flex;}
  .price-toggle button{flex:1;}
  .faq-q{font-size:16px; padding:20px 0;}
  .footer-logo-mark{height:60px;}
  .service-areas{font-size:12px;}
  /* keep the sticky call bar clear of page content */
  body{padding-bottom:56px;}
}

/* ---- Small phone ---- */
@media (max-width:400px){
  .wrap{padding:0 15px;}
  .logo-mark{height:36px;}
  .nav-right .bc-btn{padding:11px 14px; font-size:11.5px;}
  .hero-slide h1{font-size:26px;}
  .section-head h2{font-size:24px;}
}

/* ---- Nothing may push the page sideways ---- */
html, body{max-width:100%; overflow-x:hidden;}
img, iframe, table{max-width:100%;}
