
:root{
  --bg:#f4f7f8;
  --surface:#ffffff;
  --surface-2:#eef5f6;
  --text:#12161b;
  --muted:#66707c;
  --line:#dde5e7;
  --brand:#18889d;
  --brand-dark:#0f6f80;
  --brand-soft:#e0f4f8;
  --accent:#11151a;
  --shadow:0 18px 40px rgba(16,24,40,.08);
  --radius:24px;
  --radius-sm:18px;
  --max:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Manrope",ui-sans-serif,system-ui,-apple-system,"Segoe UI",sans-serif;
  color:var(--text);
  background:var(--bg);
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button,input,textarea{font:inherit}
.page-shell{overflow-x:clip}
.container{width:min(calc(100% - 28px),var(--max));margin:0 auto}
.topbar{background:#0d1116;color:#f7fbfc;font-size:.83rem}
.topbar .container{display:flex;gap:18px;overflow:auto;scrollbar-width:none;padding:10px 0}
.topbar .container::-webkit-scrollbar{display:none}
.topbar-badge{white-space:nowrap;opacity:.95}
.site-header{position:sticky;top:0;z-index:90;background:rgba(255,255,255,.9);backdrop-filter:blur(14px);border-bottom:1px solid rgba(221,229,231,.9)}
.site-header .container{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:12px;padding:12px 0}
.brand{display:inline-flex;align-items:center;gap:12px;min-width:0}
.brand-mark{width:58px;height:58px;border-radius:18px;overflow:hidden;background:#fff;border:1px solid var(--line);box-shadow:var(--shadow);display:grid;place-items:center;flex:0 0 auto}
.brand-mark img{width:100%;height:100%;object-fit:cover}
.brand-text{display:flex;flex-direction:column;min-width:0}
.brand-text .title{font-size:clamp(1.1rem,2.8vw,1.4rem);font-weight:800;line-height:1.05;letter-spacing:-.03em}
.brand-text .subtitle{font-size:.83rem;color:var(--muted);margin-top:4px}
.desktop-nav{display:none;justify-content:center;gap:10px;flex-wrap:wrap}
.desktop-nav a{padding:11px 14px;border-radius:999px;font-weight:700;color:#31404b}
.desktop-nav a.active,.desktop-nav a:hover{background:var(--brand-soft);color:var(--brand-dark)}
.header-actions{display:flex;align-items:center;gap:10px}
.icon-btn,.btn{transition:.2s transform ease,.2s box-shadow ease,.2s background ease}
.icon-btn:hover,.btn:hover{transform:translateY(-1px)}
.icon-btn{width:46px;height:46px;border-radius:15px;border:1px solid var(--line);background:#fff;display:grid;place-items:center;box-shadow:0 10px 24px rgba(16,24,40,.06);cursor:pointer}
.icon-btn svg{width:20px;height:20px}
.menu-icon{display:grid;gap:4px}
.menu-icon span{display:block;width:18px;height:2px;background:#111}
.mobile-menu{position:fixed;inset:0;background:rgba(9,14,18,.45);display:none;z-index:110}
.mobile-menu.open{display:block}
.mobile-menu-panel{margin-left:auto;width:min(86vw,360px);min-height:100%;background:#fff;padding:20px;box-shadow:-20px 0 60px rgba(0,0,0,.15)}
.mobile-menu-head{display:flex;justify-content:space-between;align-items:center;margin-bottom:18px}
.mobile-menu-links{display:grid;gap:10px}
.mobile-menu-links a{padding:14px 16px;border-radius:16px;background:var(--surface-2);font-weight:700}
.mobile-menu-cta{display:grid;gap:12px;margin-top:18px}
.btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;min-height:52px;padding:0 22px;border-radius:999px;border:1px solid transparent;font-weight:800;letter-spacing:-.01em}
.btn-primary{background:var(--brand);color:#fff;box-shadow:0 14px 26px rgba(24,136,157,.24)}
.btn-primary:hover{background:var(--brand-dark)}
.btn-secondary{background:#fff;color:var(--text);border-color:var(--line)}
.btn-dark{background:#11151a;color:#fff}
.btn-ghost{background:rgba(255,255,255,.12);color:#fff;border-color:rgba(255,255,255,.26)}
.section,.section-tight{padding:72px 0}
.section-tight{padding-top:54px;padding-bottom:54px}
.eyebrow{display:inline-flex;align-items:center;gap:10px;padding:8px 12px;background:var(--brand-soft);border-radius:999px;color:var(--brand-dark);font-size:.8rem;font-weight:800;letter-spacing:.02em}
.section-head{display:flex;justify-content:space-between;gap:16px;align-items:end;margin-bottom:22px}
.section-head h2{font-size:clamp(2rem,5vw,3rem);line-height:1;letter-spacing:-.05em;margin:12px 0 0}
.section-head p{max-width:640px;color:var(--muted)}
.hero{position:relative;min-height:94svh;background:#0f1217;color:#fff;isolation:isolate}
.hero-media,.hero-slide{position:absolute;inset:0}
.hero-slide{opacity:0;animation:heroFade 30s infinite}
.hero-slide img{width:100%;height:100%;object-fit:cover}
.hero-slide::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(9,12,16,.2) 0%,rgba(9,12,16,.45) 45%,rgba(9,12,16,.86) 100%)}
.hero-slide:nth-child(1){animation-delay:0s}
.hero-slide:nth-child(2){animation-delay:5s}
.hero-slide:nth-child(3){animation-delay:10s}
.hero-slide:nth-child(4){animation-delay:15s}
.hero-slide:nth-child(5){animation-delay:20s}
.hero-slide:nth-child(6){animation-delay:25s}
@keyframes heroFade{0%,100%{opacity:0}4%,16%{opacity:1}20%{opacity:0}}
.hero-content{position:relative;z-index:2;display:flex;align-items:end;min-height:94svh;padding:24px 0 34px}
.hero-stack{max-width:760px}
.hero h1{font-size:clamp(2.8rem,9vw,5.8rem);line-height:.94;letter-spacing:-.07em;margin:16px 0}
.hero p{font-size:clamp(1rem,2.5vw,1.18rem);max-width:670px;color:rgba(255,255,255,.86);margin:0}
.hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:24px}
.hero-notes{display:grid;grid-template-columns:1fr;gap:12px;margin-top:22px}
.note{padding:18px;border-radius:20px;background:rgba(255,255,255,.1);backdrop-filter:blur(8px);border:1px solid rgba(255,255,255,.12)}
.note strong{display:block;font-size:1rem;margin-bottom:6px}
.note span{color:rgba(255,255,255,.82);font-size:.92rem}
.trust-strip{margin-top:-28px;position:relative;z-index:5}
.trust-card{display:grid;grid-template-columns:1fr;gap:14px;background:#fff;border:1px solid var(--line);box-shadow:var(--shadow);border-radius:28px;padding:18px}
.trust-card div{padding:10px 12px;min-width:0}
.trust-card strong{display:block;font-size:1rem}
.trust-card span{color:var(--muted);font-size:.93rem}
.snap-row{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(260px,78vw);gap:14px;overflow:auto;padding-bottom:6px;scroll-snap-type:x proximity;scrollbar-width:none}
.snap-row::-webkit-scrollbar{display:none}
.work-card,.review-card,.service-card,.content-card,.contact-card,.gallery-card,.page-hero-card{background:var(--surface);border:1px solid var(--line);box-shadow:var(--shadow);border-radius:var(--radius);overflow:hidden}
.work-card{scroll-snap-align:start}
.work-card img{width:100%;aspect-ratio:4/4.5;object-fit:cover}
.work-card-body{padding:18px}
.work-card-body span{font-size:.8rem;font-weight:800;color:var(--brand-dark);text-transform:uppercase;letter-spacing:.06em}
.work-card-body h3{margin:8px 0 8px;font-size:1.25rem;letter-spacing:-.03em}
.work-card-body p{margin:0;color:var(--muted);line-height:1.6}
.grid-2,.grid-3{display:grid;gap:18px}
.grid-3{grid-template-columns:1fr}
.grid-2{grid-template-columns:1fr}
.content-card img{width:100%;aspect-ratio:4/3;object-fit:cover}
.content-card-body{padding:20px}
.content-card-body h3{margin:0 0 10px;font-size:1.35rem;letter-spacing:-.04em}
.content-card-body p{margin:0;color:var(--muted);line-height:1.65}
.service-grid{display:grid;gap:14px}
.service-card{padding:22px}
.service-card h3{margin:0 0 10px;font-size:1.2rem;letter-spacing:-.03em}
.service-card p{margin:0;color:var(--muted);line-height:1.65}
.service-card .pill{display:inline-block;margin-bottom:12px;padding:7px 10px;border-radius:999px;background:var(--brand-soft);color:var(--brand-dark);font-size:.78rem;font-weight:800;text-transform:uppercase;letter-spacing:.05em}
.split-banner{display:grid;gap:18px;align-items:center;background:linear-gradient(135deg,#10161d,#1b2730);color:#fff;padding:22px;border-radius:30px;box-shadow:var(--shadow)}
.split-banner img{width:100%;height:100%;object-fit:cover;border-radius:24px;aspect-ratio:4/3}
.split-banner p{color:rgba(255,255,255,.82)}
.before-after-grid{display:grid;gap:18px}
.before-after-card{background:var(--surface);border:1px solid var(--line);box-shadow:var(--shadow);border-radius:28px;padding:18px}
.before-after-card h3{margin:0 0 10px;font-size:1.35rem;letter-spacing:-.04em}
.before-after-card p{margin:0 0 18px;color:var(--muted);line-height:1.65}
.before-after-wrap{display:grid;grid-template-columns:1fr;gap:14px}
.compare-panel{background:var(--surface-2);border-radius:22px;padding:14px;border:1px solid var(--line)}
.compare-label{display:inline-flex;margin-bottom:10px;padding:7px 10px;border-radius:999px;background:#fff;border:1px solid var(--line);font-size:.78rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase;color:#31404b}
.compare-panel img{width:100%;aspect-ratio:4/5;object-fit:contain;border-radius:18px;background:#fff}
.review-card{padding:22px}
.stars{letter-spacing:3px;color:#f5b300;font-size:1rem;margin-bottom:10px}
.review-card h3{margin:0 0 10px;font-size:1.1rem}
.review-card p{margin:0;color:var(--muted);line-height:1.7}
.review-slider{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(280px,84vw);gap:14px;overflow:auto;padding-bottom:6px;scroll-snap-type:x proximity;scrollbar-width:none}
.review-slider::-webkit-scrollbar{display:none}
.review-slider .review-card{scroll-snap-align:start}
.cta-band{background:linear-gradient(135deg,#18889d,#0f6f80);border-radius:32px;color:#fff;padding:26px;box-shadow:0 20px 44px rgba(24,136,157,.26)}
.cta-band h2{margin:10px 0 12px;font-size:clamp(2rem,5vw,3rem);line-height:1;letter-spacing:-.05em}
.cta-band p{margin:0;color:rgba(255,255,255,.9);max-width:680px}
.cta-band-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:22px}
.site-footer{padding:50px 0 96px;background:#0f141a;color:#dfe8eb;margin-top:50px}
.footer-grid{display:grid;grid-template-columns:1fr;gap:24px}
.footer-grid h3{margin:0 0 12px;color:#fff}
.footer-grid a{color:#dfe8eb;line-height:2}
.footer-copy{color:#b2c0c7;line-height:1.7;max-width:560px}
.footer-bottom{display:flex;flex-direction:column;gap:8px;border-top:1px solid rgba(255,255,255,.08);padding-top:16px;margin-top:22px;font-size:.92rem;color:#b2c0c7}
.footer-brand .brand-mark{background:#fff}
.contact-grid{display:grid;gap:18px}
.contact-card{padding:22px}
.contact-card h2,.contact-card h3{margin-top:0}
.contact-list a,.contact-list span{display:block;padding:12px 0;border-bottom:1px solid var(--line);color:#31404b}
.contact-list a:last-child,.contact-list span:last-child{border-bottom:0}
.form-grid{display:grid;gap:14px}
.field{display:grid;gap:8px}
.field label{font-weight:700}
.field input,.field textarea{border:1px solid var(--line);background:#fff;border-radius:16px;padding:14px 15px}
.field textarea{min-height:150px;resize:vertical}
.form-note{color:var(--muted);font-size:.92rem}
.gallery-grid{columns:2;column-gap:12px}
.gallery-card img{width:100%;height:auto;display:block;object-fit:cover}
.gallery-card figcaption{display:none}
.page-hero{padding:40px 0 18px}
.page-hero-card{padding:24px}
.page-hero-card h1{margin:10px 0 12px;font-size:clamp(2.3rem,7vw,4rem);line-height:1;letter-spacing:-.05em}
.page-hero-card p{margin:0;color:var(--muted);max-width:760px;line-height:1.7}
.callout-grid{display:grid;gap:14px}
.callout{padding:18px;border:1px solid var(--line);background:#fff;border-radius:20px}
.callout strong{display:block;margin-bottom:6px}
.callout span{color:var(--muted)}
.sticky-bar{position:fixed;left:12px;right:12px;bottom:12px;z-index:95;display:grid;grid-template-columns:1fr 1fr;gap:10px}
.sticky-bar a{min-height:56px;border-radius:18px;display:flex;align-items:center;justify-content:center;font-weight:800;box-shadow:0 18px 34px rgba(16,24,40,.18)}
.sticky-call{background:#11151a;color:#fff}
.sticky-whatsapp{background:#1fa955;color:#fff}
.hide-mobile{display:none}
@media(min-width:760px){
  .container{width:min(calc(100% - 48px),var(--max))}
  .hero-notes{grid-template-columns:repeat(3,minmax(0,1fr))}
  .trust-card{grid-template-columns:repeat(3,minmax(0,1fr))}
  .gallery-grid{columns:3}
  .grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
  .grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
  .service-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .before-after-wrap{grid-template-columns:repeat(2,minmax(0,1fr))}
  .contact-grid{grid-template-columns:1fr 1.15fr}
  .split-banner{grid-template-columns:1.1fr .9fr;padding:30px}
  .footer-grid{grid-template-columns:1.6fr .8fr .8fr}
  .footer-bottom{flex-direction:row;justify-content:space-between}
  .trust-card{padding:22px}
}
@media(min-width:980px){
  .desktop-nav{display:flex}
  .menu-toggle{display:none}
  .hide-mobile{display:grid}
  .hero-content{padding-bottom:42px}
  .hero-notes{max-width:760px}
  .snap-row{grid-auto-columns:minmax(300px,33vw)}
  .review-slider{grid-auto-columns:minmax(300px,32vw)}
  .service-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .gallery-grid{columns:4}
  .sticky-bar{display:none}
}


.note, .trust-item{min-width:0}
.hero-notes .note{padding:16px 16px 16px 18px}
.hero-notes .note strong{font-size:1rem;line-height:1.2}
.hero-notes .note span{display:block;line-height:1.5}
.trust-item{display:flex;gap:14px;align-items:flex-start}
.trust-icon,.service-icon{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:0;background:transparent !important;color:var(--brand-dark);box-shadow:none !important;padding:0;margin:0 auto 16px}
.trust-icon svg,.service-icon svg{width:26px;height:26px}
.trust-item strong{display:block;font-size:1rem;margin-bottom:4px;line-height:1.25}
.trust-item span{display:block;color:var(--muted);line-height:1.55}
.before-after-grid{grid-template-columns:1fr}
.before-after-card.compact h3{margin-bottom:14px}
.before-after-wrap.single-row{grid-template-columns:1fr}
.service-card .service-icon{margin-bottom:14px}
.service-card h3{line-height:1.15}
.service-card p{max-width:40ch}
.gallery-feed-intro{margin-bottom:20px}
.gallery-grid .gallery-card{break-inside:avoid;margin:0 0 12px;border-radius:24px;overflow:hidden;background:#fff}
.gallery-card button{display:block;width:100%;padding:0;border:0;background:transparent;cursor:pointer}
.gallery-card img{border-radius:24px}
.gallery-card:hover{transform:translateY(-2px)}
.gallery-card{transition:transform .2s ease, box-shadow .2s ease}
.review-google-grid{display:grid;gap:18px}
.google-review{padding:18px 18px 16px;border-radius:26px;background:#fff;border:1px solid var(--line);box-shadow:var(--shadow)}
.google-review-head{display:flex;align-items:center;gap:12px;margin-bottom:10px}
.google-avatar{width:46px;height:46px;border-radius:50%;display:grid;place-items:center;color:#fff;font-weight:800;font-size:1.1rem;flex:0 0 auto}
.google-review h3{margin:0;font-size:1.06rem;line-height:1.2}
.google-review .stars{margin:0 0 10px;font-size:.95rem}
.google-review p{margin:0;color:var(--muted);line-height:1.7}
.review-photos{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin-top:14px}
.review-photos.two{grid-template-columns:repeat(2,1fr)}
.review-photos img{width:100%;aspect-ratio:1/1;object-fit:cover;border-radius:16px;border:1px solid var(--line);background:#f3f5f7}
.lightbox{position:fixed;inset:0;background:rgba(10,14,19,.88);display:none;align-items:center;justify-content:center;padding:22px;z-index:120}
.lightbox.open{display:flex}
.lightbox-inner{max-width:min(1200px,96vw);max-height:92vh;position:relative}
.lightbox img{max-width:100%;max-height:92vh;border-radius:24px;display:block;background:#fff}
.lightbox-close{position:absolute;right:10px;top:10px;width:44px;height:44px;border-radius:50%;border:0;background:rgba(17,21,26,.8);color:#fff;font-size:1.6rem;cursor:pointer}
.review-link-row{display:flex;justify-content:flex-start;margin-top:22px}
.compare-panel img{aspect-ratio:4/5;object-fit:contain}
@media(max-width:759px){
  .hero h1{font-size:clamp(2.35rem,13vw,4.2rem)}
  .section-head{align-items:start}
  .section-head .btn{margin-top:8px}
  .sticky-bar{bottom:10px}
  .gallery-grid{columns:2}
  .gallery-card{border-radius:20px}
  .gallery-card img{border-radius:20px}
}
@media(min-width:760px){
  .review-google-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(min-width:1100px){
  .review-google-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
}


/* final polish adjustments */
.topbar{overflow:hidden;background:#0f141a;color:#e9f2f5;border-bottom:1px solid rgba(255,255,255,.06)}
.topbar .container{display:block;width:100%;max-width:none;padding:0}
.topbar-marquee{position:relative;overflow:hidden;white-space:nowrap;padding:10px 0}
.topbar-track{display:inline-flex;gap:26px;min-width:max-content;animation:marqueeMove 28s linear infinite;padding-left:18px}
.topbar-item{display:inline-flex;align-items:center;gap:10px;font-size:.92rem;font-weight:700;letter-spacing:.01em;color:#eff7fa}
.topbar-dot{width:7px;height:7px;border-radius:999px;background:#58c5d6;display:inline-block;box-shadow:0 0 0 4px rgba(88,197,214,.16)}
@keyframes marqueeMove{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.brand-mark{width:94px;height:94px;cursor:zoom-in;transition:transform .2s ease, box-shadow .2s ease}
.brand-mark:hover{transform:translateY(-1px);box-shadow:0 12px 24px rgba(16,24,40,.14)}
.brand-text .title-link{color:inherit;text-decoration:none}
.brand-text .title-link:hover{text-decoration:none}
.trust-card{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;padding:0;background:transparent;border:0;box-shadow:none}
.trust-item{background:#fff;border:1px solid var(--line);border-radius:28px;padding:22px;box-shadow:var(--shadow);display:flex;flex-direction:column;align-items:flex-start;gap:14px;min-height:100%}
.trust-icon,.service-icon{display:grid;place-items:center}
.trust-icon svg,.service-icon svg{display:block;margin:auto}
.trust-item strong{font-size:1.1rem}
.service-card{position:relative;overflow:hidden}
.service-card .service-icon{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:0;background:transparent !important;color:var(--brand-dark);box-shadow:none !important;padding:0;margin:0 auto 16px}
.service-card{padding-top:26px}
.service-card h3{margin-top:0}
.service-card .pill{display:none}
.section-head-premium{align-items:center}
.section-link-btn{display:inline-flex;align-items:center;justify-content:center;min-width:142px;padding:14px 22px;border-radius:24px;border:1px solid #d3dde1;background:linear-gradient(180deg,#ffffff,#f3f6f8);box-shadow:0 10px 20px rgba(15,20,26,.06);font-weight:800;color:#182028;line-height:1.1;text-decoration:none}
.section-link-btn:hover{transform:translateY(-1px);box-shadow:0 16px 28px rgba(15,20,26,.1)}
.home-review-slider{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(290px,88vw);gap:16px;overflow:auto;padding-bottom:8px;scrollbar-width:none;scroll-snap-type:x proximity}
.home-review-slider::-webkit-scrollbar{display:none}
.home-review-slider .google-review{scroll-snap-align:start}
.home-review-slider .google-review{min-height:100%}
.review-link-row .section-link-btn{min-width:170px}
.lightbox-inner{position:relative}
.lightbox-nav{position:absolute;top:50%;transform:translateY(-50%);width:52px;height:52px;border-radius:50%;border:1px solid rgba(255,255,255,.16);background:rgba(17,21,26,.78);color:#fff;display:grid;place-items:center;font-size:1.8rem;cursor:pointer}
.lightbox-prev{left:14px}
.lightbox-next{right:14px}
.lightbox-counter{position:absolute;left:50%;bottom:14px;transform:translateX(-50%);padding:8px 12px;border-radius:999px;background:rgba(17,21,26,.72);color:#fff;font-size:.9rem}
.work-card img{cursor:pointer}
@media(max-width:759px){
  .brand-mark{width:74px;height:74px;border-radius:22px}
  .brand-text .title{font-size:2rem}
  .brand-text .subtitle{font-size:1rem}
  .trust-card{grid-template-columns:1fr}
  .trust-item{align-items:center;text-align:center}
  .section-head-premium{grid-template-columns:1fr auto;gap:14px}
  .section-link-btn{min-width:124px;padding:13px 18px;border-radius:22px;font-size:1rem}
  .section-head-premium > div{min-width:0}
  .section-head-premium h2{max-width:8ch}
  .review-link-row .section-link-btn{min-width:150px}
  .lightbox-nav{width:44px;height:44px;font-size:1.45rem}
  .lightbox-prev{left:8px}
  .lightbox-next{right:8px}
}


/* mobile-first final polish */
body{overflow-x:hidden}
.site-header .container{grid-template-columns:minmax(0,1fr) auto;gap:10px}
.brand{min-width:0;max-width:100%}
.brand-mark{width:72px;height:72px;border-radius:20px;flex:0 0 72px}
.brand-text{min-width:0;overflow:hidden}
.brand-text .title-link{display:flex;flex-direction:column;min-width:0}
.brand-text .title{font-size:clamp(1.22rem,7vw,1.95rem);line-height:1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.brand-text .subtitle{font-size:.82rem;line-height:1.2;white-space:normal;max-width:18ch}
.header-actions{flex:0 0 auto}
.icon-btn{width:54px;height:54px;border-radius:18px}
.site-header{background:rgba(255,255,255,.96)}
.topbar-marquee{padding:11px 0}
.topbar-track{animation-duration:34s;will-change:transform}
.hero-notes{gap:10px}
.note{border-radius:22px;padding:16px}
.trust-strip{margin-top:-22px}
.trust-card{display:grid;grid-template-columns:1fr;gap:14px;padding:0;background:transparent;border:0;box-shadow:none}
.trust-item{background:#fff;border:1px solid var(--line);border-radius:28px;padding:22px 18px;box-shadow:var(--shadow);display:flex;flex-direction:column;align-items:center;text-align:center;gap:14px}
.trust-icon,.service-icon{display:grid;place-items:center}
.trust-icon svg,.service-icon svg{width:24px;height:24px;stroke-linecap:round;stroke-linejoin:round;margin:auto}
.service-icon{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:0;background:transparent !important;color:var(--brand-dark);box-shadow:none !important;padding:0;margin:0 auto 16px}
.trust-item strong{font-size:1.08rem;line-height:1.15}
.trust-item span{font-size:.98rem;line-height:1.55}
.section,.section-tight{padding:62px 0}
.section-head{margin-bottom:18px}
.section-head-premium{display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:start;gap:14px}
.section-head-premium h2{max-width:10ch}
.section-link-btn{position:relative;min-width:auto;padding:12px 18px;border-radius:18px;background:#fff;border:1px solid #d7e0e4;box-shadow:0 12px 24px rgba(15,20,26,.06);font-size:.96rem;font-weight:800;white-space:nowrap;gap:10px}
.section-link-btn::after{content:'→';font-size:1rem;line-height:1;display:inline-block}
.snap-row{gap:12px;grid-auto-columns:minmax(256px,80vw);padding:2px 2px 8px;scroll-padding-left:2px}
.work-card{border-radius:24px}
.work-card img{aspect-ratio:4/4.2}
.work-card-body{padding:16px 16px 18px}
.work-card-body span{font-size:.76rem;letter-spacing:.08em}
.work-card-body h3{font-size:1.18rem;line-height:1.08}
.work-card-body p{font-size:.96rem;line-height:1.55}
.before-after-grid{gap:16px}
.before-after-card{padding:16px;border-radius:24px}
.before-after-card h3{font-size:1.22rem;line-height:1.1;margin-bottom:12px}
.before-after-wrap{gap:12px}
.compare-panel{padding:12px;border-radius:20px}
.compare-panel img{aspect-ratio:auto;max-height:440px;object-fit:contain}
.service-grid{gap:16px}
.service-card{padding:22px 18px;border-radius:24px;display:flex;flex-direction:column;align-items:center;text-align:center}
.service-card h3{font-size:1.18rem;line-height:1.1;margin-bottom:10px;width:100%}
.service-card p{font-size:1rem;line-height:1.6;max-width:none;width:100%}
.content-card{border-radius:24px}
.content-card-body{padding:18px}
.content-card-body h3{font-size:1.28rem;line-height:1.08}
.home-review-slider{gap:14px;grid-auto-columns:minmax(280px,88vw);padding:2px 2px 8px}
.google-review{padding:18px;border-radius:24px}
.google-review-head{margin-bottom:12px}
.google-review .stars{font-size:.92rem;letter-spacing:2px}
.google-review p{font-size:1rem;line-height:1.62}
.review-photos img{border-radius:14px}
.review-link-row{margin-top:18px}
.gallery-grid{columns:2;column-gap:10px}
.gallery-grid .gallery-card{margin:0 0 10px;border-radius:22px}
.gallery-card img{border-radius:22px}
.lightbox{padding:12px}
.lightbox-inner{width:100%;max-width:min(1200px,100vw)}
.lightbox img{width:auto;max-width:100%;max-height:84vh;border-radius:20px;margin:0 auto}
.lightbox-nav{width:46px;height:46px}
.cta-band{padding:24px;border-radius:28px}
.cta-band-actions{gap:10px}
.page-hero{padding:28px 0 12px}
.page-hero-card{padding:22px;border-radius:24px}
.page-hero-card h1{font-size:clamp(2rem,12vw,3.3rem)}
.sticky-bar{left:10px;right:10px;bottom:10px;gap:10px}
.sticky-bar a{min-height:58px;border-radius:18px;font-size:1rem}
.site-footer{padding-bottom:96px}
.footer-brand .brand-mark{width:76px;height:76px;flex-basis:76px}
@media (max-width:420px){
  .container{width:min(calc(100% - 22px),var(--max))}
  .brand-mark{width:64px;height:64px;flex-basis:64px}
  .brand-text .title{font-size:1.05rem}
  .brand-text .subtitle{font-size:.75rem;max-width:15ch}
  .icon-btn{width:50px;height:50px}
  .section-head-premium h2{max-width:9ch}
  .section-link-btn{padding:11px 15px;font-size:.92rem}
  .snap-row{grid-auto-columns:minmax(248px,82vw)}
}
@media (min-width:760px){
  .site-header .container{grid-template-columns:auto 1fr auto}
  .brand-mark{width:88px;height:88px;flex-basis:88px}
  .brand-text .title{font-size:clamp(1.4rem,2vw,2rem);white-space:normal;overflow:visible}
  .brand-text .subtitle{font-size:.95rem;max-width:none}
  .trust-card{grid-template-columns:repeat(3,minmax(0,1fr))}
  .section-head-premium h2{max-width:none}
  .snap-row{grid-auto-columns:minmax(300px,33vw)}
  .gallery-grid{columns:3;column-gap:14px}
}
@media (min-width:980px){
  .gallery-grid{columns:4}
}


/* v5 mobile polish */
@media (max-width: 759px){
  .trust-strip{margin-top:0}
  .section,.section-tight{padding:48px 0}
  .site-header .container{padding:10px 0}
  .brand{gap:10px}
  .brand-mark{width:68px;height:68px;flex-basis:68px;border-radius:18px}
  .brand-text .title{font-size:1.02rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
  .brand-text .subtitle{font-size:.72rem;line-height:1.15;max-width:14ch}
  .icon-btn{width:48px;height:48px;border-radius:16px}

  .section-head-premium{grid-template-columns:1fr;gap:12px}
  .section-head-premium h2{max-width:none}
  .section-link-btn{justify-self:flex-start;padding:12px 16px;border-radius:999px;background:linear-gradient(180deg,#ffffff,#f6f8f9);border:1px solid #d5dee2;box-shadow:0 8px 18px rgba(15,20,26,.06);font-size:.98rem}

  .snap-row,
  .home-review-slider{
    display:grid;
    grid-auto-flow:row;
    grid-auto-columns:auto;
    overflow:visible;
    gap:16px;
    padding:0;
    scroll-snap-type:none;
  }

  .work-card,
  .google-review{width:100%;max-width:100%}
  .work-card{border-radius:26px}
  .work-card img{aspect-ratio:4/4.45}
  .work-card-body{padding:18px}
  .work-card-body h3{font-size:1.3rem;line-height:1.08}
  .work-card-body p{font-size:1rem}

  .home-review-slider .google-review{scroll-snap-align:none}
  .google-review{padding:20px 18px;border-radius:26px}
  .google-review-head{gap:14px}
  .google-avatar{width:54px;height:54px;font-size:1.25rem}
  .google-review h3{font-size:1.18rem}
  .google-review p{font-size:1rem;line-height:1.68}

  .trust-card{gap:16px}
  .trust-item{padding:24px 18px;border-radius:30px}
  .service-icon{width:64px;height:64px;border-radius:22px}
  .service-icon svg{width:28px;height:28px}

  .service-grid{gap:16px}
  .service-card{padding:24px 18px;border-radius:26px}
  .service-card .service-icon{margin:0 auto 18px}
  .service-card h3{font-size:1.26rem}
  .service-card p{font-size:1rem;line-height:1.65}

  .before-after-grid{gap:16px}
  .before-after-card{padding:16px;border-radius:24px}
  .before-after-wrap{grid-template-columns:1fr;gap:12px}

  .gallery-grid{columns:2;column-gap:12px}
  .gallery-grid .gallery-card{margin:0 0 12px}
}


/* final client polish */
.review-photos.three{grid-template-columns:repeat(3,1fr)}
.google-review p{margin-bottom:0}
.review-google-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.review-google-grid .google-review{height:100%}
.section-link-btn{
  background:linear-gradient(180deg,#ffffff,#f4f8fa);
  border-color:#cfdcdf;
  box-shadow:0 14px 26px rgba(15,20,26,.08);
}
.section-link-btn::after{
  content:'→';
  width:28px;height:28px;border-radius:999px;
  display:grid;place-items:center;
  background:#e6f3f6;color:#176f82;font-weight:800;
}
@media (max-width: 759px){
  .review-google-grid{grid-template-columns:1fr;gap:16px}
}


/* final icon centring fix */
.service-card .service-icon{display:flex;align-items:center;justify-content:center;align-self:center;line-height:0;text-align:center;padding-top:4px;box-sizing:border-box}
.service-card .service-icon svg{display:block;margin:auto;flex:0 0 auto;position:relative;top:1px}


/* final icon cleanup */
.service-card .service-icon,.trust-item .service-icon{display:flex;align-items:center;justify-content:center;width:40px;height:40px;background:transparent !important;box-shadow:none !important;border:none !important;padding:0;margin:0 auto 16px;}
.service-card .service-icon svg,.trust-item .service-icon svg{display:block;width:34px;height:34px;stroke-width:1.9;overflow:visible;}
