:root {
  --bg:#f7fafb;
  --surface:#ffffff;
  --surface-alt:#eef4f6;
  --line:#e3eaee;
  --text:#14202a;
  --muted:#62707c;
  --brand:#0c6a54;
  --brand-dark:#094e3f;
  --soft-green:#edf8f4;
  --soft-blue:#eef3fb;
  --soft-purple:#f7f2fb;
  --shadow:0 18px 40px rgba(20,32,42,.06);
  --shadow-soft:0 10px 24px rgba(20,32,42,.045);
  --radius:24px;
  --radius-sm:16px;
  --shell:1240px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;background:var(--bg);color:var(--text);line-height:1.6}
a{color:var(--brand);text-decoration:none}
a:hover{color:var(--brand-dark)}
.shell{max-width:var(--shell);margin:0 auto;padding:0 20px}

.site-header{position:sticky;top:0;z-index:1000;background:rgba(255,255,255,.96);backdrop-filter:saturate(180%) blur(10px);border-bottom:1px solid var(--line)}
.header-inner{min-height:82px;display:grid;grid-template-columns:1fr auto auto;gap:24px;align-items:center}
.brand-title{display:block;font-size:1.3rem;font-weight:800;color:var(--text)}
.brand-tagline{font-size:.9rem;color:var(--muted)}
.desktop-nav{display:flex;gap:22px;align-items:center}
.desktop-nav a{font-weight:700;color:var(--text)}
.desktop-nav a:hover{color:var(--brand)}
.header-actions{display:flex;gap:12px;align-items:center}

.btn{display:inline-flex;align-items:center;justify-content:center;padding:14px 20px;border-radius:999px;font-weight:700;transition:.2s ease;border:1px solid transparent;cursor:pointer;font-size:1rem}
.btn-solid{background:var(--brand);color:#fff}
.btn-solid:hover{background:var(--brand-dark);color:#fff}
.btn-ghost{background:#fff;border-color:var(--line);color:var(--text)}
.btn-ghost:hover{border-color:#c9d5db;color:var(--text)}
.btn-full{width:100%}

.hero-section{padding:72px 0 26px;background:linear-gradient(180deg,#ffffff 0%,#f8fbfc 100%)}
.hero-grid{display:grid;grid-template-columns:minmax(0,1.12fr) minmax(340px,.88fr);gap:34px;align-items:start}
.eyebrow,.section-kicker{display:inline-block;padding:7px 12px;border-radius:999px;background:var(--soft-green);color:var(--brand);font-size:.82rem;font-weight:800;letter-spacing:.02em;text-transform:uppercase}
.section-kicker-small{font-size:.75rem;padding:6px 10px}
.hero-copy h1{font-size:clamp(2.45rem,5vw,4.4rem);line-height:1.03;margin:16px 0 16px;max-width:12ch}
.lead{font-size:1.1rem;color:var(--muted);max-width:58ch}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin:26px 0 12px}
.hero-mobile-note{margin:0;color:var(--muted);font-size:.96rem}
.hero-stack{display:grid;gap:16px}
.hero-panel .stat-card{background:var(--surface);border:1px solid var(--line);border-radius:28px;padding:28px;box-shadow:var(--shadow)}
.compact-proof-card h2,.booking-card h2{margin:12px 0 10px;font-size:1.35rem;line-height:1.15}
.compact-proof-card p,.booking-card p{margin:0;color:var(--muted)}
.panel-icon{width:54px;height:54px;border-radius:50%;background:var(--soft-green);color:var(--brand);display:flex;align-items:center;justify-content:center;font-size:1.4rem;font-weight:800}
.proof-points{list-style:none;padding:0;margin:14px 0 0;display:grid;gap:10px;color:#31424e;font-weight:700}
.proof-points li{display:flex;gap:10px;align-items:flex-start}
.proof-points li::before{content:"•";color:var(--brand);font-weight:900}

.booking-card-wrap{align-self:start}
.booking-form{display:grid;gap:12px;margin-top:16px}
.booking-form label{display:grid;gap:6px}
.booking-form span{font-size:.9rem;font-weight:700;color:#30414d}
.booking-form input,
.booking-form select,
.booking-form textarea{
  width:100%;
  padding:12px 14px;
  border:1px solid #d7e0e5;
  border-radius:999px;
  background:#fff;
  font:inherit;
  color:var(--text);
  box-sizing:border-box;
  -webkit-appearance:none;
  appearance:none;
}
.booking-form select{
  padding-right:44px;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 20 20' fill='none'><path d='M5 7.5L10 12.5L15 7.5' stroke='%2362707c' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat:no-repeat;
  background-position:right 14px center;
  background-size:18px 18px;
}
.booking-form textarea{
  border-radius:24px;
  resize:none;
  min-height:96px;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus{
  outline:none;
  border-color:#9dbeb5;
  box-shadow:0 0 0 3px rgba(12,106,84,.08);
}
.booking-form-row--two{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.form-status{margin-top:14px;padding:12px 14px;border-radius:14px;background:var(--soft-green);color:var(--brand-dark);font-weight:700}

.trust-strip{padding:14px 0;border-top:1px solid var(--line);border-bottom:1px solid var(--line);background:#fff}
.trust-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;font-weight:700;color:#31424e;text-align:center}

.section{padding:68px 0}
.section-alt{background:var(--surface)}
.align-center{text-align:center}
.section-head{max-width:760px;margin:0 auto 30px}
.section-head h2{font-size:clamp(2rem,4vw,3rem);line-height:1.08;margin:16px 0 10px}
.section-head p{color:var(--muted);margin:0}
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:start}
.about-grid h2{font-size:clamp(2rem,4vw,3rem);line-height:1.08;margin:18px 0 0}
.about-editorial-copy p{margin:0 0 16px;color:#354651}
.about-facts{list-style:none;padding:0;margin:10px 0 0;display:grid;gap:10px}
.about-facts li{display:flex;align-items:flex-start;gap:10px;font-weight:700;color:#30414d}
.about-facts li::before{content:"✓";width:22px;height:22px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;background:var(--soft-green);color:var(--brand);font-size:.85rem;flex:0 0 22px;margin-top:1px}

.section-subgroup{margin:28px 0 14px}
.section-subgroup h3{margin:0;font-size:1.1rem;color:var(--text)}
.subgroup-icon{display:inline-flex;width:28px;height:28px;border-radius:50%;align-items:center;justify-content:center;background:var(--soft-green);color:var(--brand);font-size:.95rem;margin-right:8px;vertical-align:middle}
.count-pill{display:inline-flex;align-items:center;justify-content:center;min-width:44px;padding:4px 10px;border-radius:999px;background:#edf3f6;color:#546675;font-size:.8rem;font-weight:800;vertical-align:middle;margin-left:8px}
.count-pill-small{min-width:38px;padding:3px 8px;font-size:.74rem}

.list-card{background:#fff;border:1px solid var(--line);border-radius:24px;padding:18px 20px;box-shadow:var(--shadow-soft)}
.list-card-v14-darker{background:#fbfcfd}
.list-card-compact{padding-top:14px;padding-bottom:14px}
.master-list{display:grid;gap:6px 16px}
.master-list-services{grid-template-columns:repeat(3,minmax(0,1fr))}
.master-list-cities{grid-template-columns:repeat(3,minmax(0,1fr))}
.master-list-brands{grid-template-columns:repeat(4,minmax(0,1fr))}
.master-list-item{display:flex;align-items:flex-start;gap:10px;padding:5px 0;color:var(--text);border-bottom:1px solid rgba(227,234,238,.75)}
.master-list-item:hover{color:var(--brand)}
.master-list-icon{flex:0 0 20px;width:20px;height:20px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;background:#f0f6f7;color:var(--brand);font-size:.72rem;font-weight:800;margin-top:2px}
.master-list-icon-city{background:var(--soft-blue);color:#3d5f8f}
.master-list-icon-brand{background:var(--soft-purple);color:#6f4b92}
.master-list-label{font-size:.95rem;line-height:1.28;font-weight:650}

.reason-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}
.reason-card{background:#fff;border:1px solid var(--line);border-radius:20px;padding:22px;box-shadow:0 8px 18px rgba(20,32,42,.04)}
.reason-card h3{margin:0 0 8px;font-size:1.08rem}
.reason-card p{margin:0;color:var(--muted)}

.section-flow{background:linear-gradient(180deg,#ffffff 0%,#f8fbfb 100%)}
.flow-row{display:grid;grid-template-columns:1fr auto 1fr auto 1fr auto 1fr;gap:18px;align-items:center}
.flow-step{background:#fff;border:1px solid var(--line);border-radius:24px;padding:24px 18px;box-shadow:var(--shadow);text-align:center;min-height:200px;display:flex;flex-direction:column;justify-content:flex-start}
.flow-icon{width:56px;height:56px;border-radius:50%;background:var(--soft-green);color:var(--brand);display:flex;align-items:center;justify-content:center;font-size:1.5rem;margin:0 auto 16px;font-weight:700}
.flow-step h3{margin:0 0 8px;font-size:1.14rem}
.flow-step p{margin:0;color:var(--muted)}
.flow-arrow{font-size:2rem;color:#90a4ae;font-weight:800}

.section-proof{padding-top:28px;padding-bottom:24px;background:linear-gradient(180deg,#fbfcfd 0%,#f4f8fa 100%)}
.proof-head{margin-bottom:22px}
.proof-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.proof-card{background:#fff;border:1px solid var(--line);border-radius:20px;padding:20px 18px;box-shadow:0 10px 24px rgba(20,32,42,.04)}
.proof-icon{width:38px;height:38px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:var(--soft-green);color:var(--brand);font-weight:800;margin-bottom:12px}
.proof-card h3{margin:0 0 6px;font-size:1.04rem}
.proof-card p{margin:0;color:var(--muted);font-size:.96rem}

.section-cta{padding-top:34px}
.cta-box{position:relative;overflow:hidden;background:#fff;border:1px solid var(--line);border-radius:28px;box-shadow:var(--shadow);padding:34px;display:grid;grid-template-columns:1.2fr .8fr;gap:24px;align-items:center}
.cta-box:after{content:"";position:absolute;right:-40px;top:-40px;width:180px;height:180px;background:radial-gradient(circle,var(--soft-green) 0%,rgba(237,248,244,0) 70%);pointer-events:none}
.cta-box h2{font-size:clamp(1.8rem,3.2vw,2.8rem);line-height:1.08;margin:14px 0 10px}
.cta-box p{margin:0;color:var(--muted)}
.cta-actions{display:flex;gap:12px;flex-wrap:wrap;justify-content:flex-end}

.faq-shell{max-width:920px}
.faq-list{display:grid;gap:14px}
.faq-list details{background:#fff;border:1px solid var(--line);border-radius:18px;padding:18px 20px;box-shadow:0 8px 18px rgba(20,32,42,.03)}
.faq-list summary{cursor:pointer;font-weight:800}
.faq-list p{margin:12px 0 0;color:var(--muted)}

.site-footer{border-top:1px solid var(--line);background:#fff;padding:52px 0 34px;margin-top:24px}
.footer-grid{display:grid;grid-template-columns:1.2fr .8fr .8fr;gap:28px}
.site-footer h3{margin-top:0}
.site-footer p,.footer-links{color:var(--muted);margin:0;padding:0;list-style:none}
.footer-links li+li{margin-top:8px}

.content-shell{padding:56px 20px}
.page-standard,.page-canvas{background:#fff;border:1px solid var(--line);border-radius:24px;padding:34px;box-shadow:var(--shadow)}
.page-header h1{margin-top:0;font-size:clamp(2rem,4vw,3rem);line-height:1.08}
.page-content > *:first-child,.page-canvas > *:first-child{margin-top:0}

.mobile-call{display:none;position:fixed;left:14px;right:14px;bottom:14px;z-index:999}
.mobile-call a{display:block;background:var(--brand);color:#fff;text-align:center;padding:15px 18px;border-radius:999px;font-weight:800;box-shadow:0 14px 28px rgba(20,32,42,.18)}

@media (max-width:1100px){
  .header-inner{grid-template-columns:1fr auto}
  .desktop-nav{display:none}
  .hero-grid,.two-col,.cta-box,.footer-grid{grid-template-columns:1fr}
  .trust-grid{grid-template-columns:repeat(2,1fr);text-align:left}
  .master-list-services{grid-template-columns:repeat(2,minmax(0,1fr))}
  .master-list-cities{grid-template-columns:repeat(2,minmax(0,1fr))}
  .master-list-brands{grid-template-columns:repeat(3,minmax(0,1fr))}
  .flow-row{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
  .flow-arrow{display:none}
  .proof-grid{grid-template-columns:1fr 1fr}
  .cta-actions{justify-content:flex-start}
}

@media (max-width:782px){
  body{padding-bottom:84px}
  .hero-section{padding:46px 0 20px}
  .hero-copy h1{max-width:none;font-size:clamp(2.05rem,7vw,2.85rem)}
  .lead{font-size:1rem}
  .hero-actions{display:grid;grid-template-columns:1fr;gap:10px}
  .hero-actions .btn{width:100%}
  .desktop-booking-card{display:none}
  .trust-grid{grid-template-columns:1fr;gap:8px;font-size:.96rem}
  .section{padding:56px 0}
  .section-head{margin-bottom:24px}
  .master-list-services,.master-list-cities,.master-list-brands{grid-template-columns:1fr}
  .reason-grid{grid-template-columns:1fr;gap:14px}
  .flow-row{grid-template-columns:repeat(2,minmax(0,1fr))}
  .flow-step{min-height:180px;padding:20px 16px}
  .proof-grid{grid-template-columns:1fr}
  .mobile-call{display:block}
  .header-actions .btn-ghost{display:none}
  .content-shell{padding:28px 20px}
  .page-standard,.page-canvas{padding:22px}
  .booking-form-row--two{grid-template-columns:1fr 1fr;gap:10px}
}

@media (max-width:560px){
  .shell{padding:0 16px}
  .header-actions .btn-solid{padding:12px 14px;font-size:.92rem}
  .hero-panel .stat-card{padding:22px}
  .trust-strip{padding:12px 0}
  .list-card{padding:14px 14px}
  .master-list-label{font-size:.94rem}
  .flow-row{grid-template-columns:1fr}
  .flow-step{min-height:0}
  .proof-card,.reason-card,.faq-list details{padding:18px 16px}
  .section-proof{padding-top:16px;padding-bottom:10px}
}

.hero-grid-v14{align-items:start}
.hero-copy-v14{display:flex;flex-direction:column;justify-content:flex-start}
.hero-proof-under{margin-top:20px;max-width:560px}
.hero-proof-under .stat-card{padding:22px 24px}
.about-lead{font-size:1.04rem;color:#31424e;max-width:52ch}
.about-illustration-wrap{display:flex;justify-content:flex-end;margin:0 0 18px}
.about-illustration{width:min(100%,360px);height:auto;display:block}
.about-editorial-copy{display:flex;flex-direction:column}
.master-list-item{padding:7px 0}
.master-list-cities .master-list-item,.master-list-brands .master-list-item{padding:4px 0}
.trust-grid-v14 div{padding:2px 0}
.proof-grid-v14 .proof-card{min-height:0}
.booking-card p{max-width:42ch}
.mobile-call{opacity:0;transform:translateY(16px);pointer-events:none;transition:opacity .2s ease, transform .2s ease}
body.scrolled-hero .mobile-call{opacity:1;transform:translateY(0);pointer-events:auto}

@media (min-width:1101px){
  .hero-grid-v14{grid-template-columns:minmax(0,1.16fr) minmax(300px,.84fr)}
}

@media (max-width:782px){
  .hero-proof-under{margin-top:18px;max-width:none}
  .hero-proof-under .stat-card{padding:18px 18px}
  .hero-proof-under h2{font-size:1.15rem}
  .hero-proof-under .proof-points{gap:8px;font-size:.96rem}
  .hero-mobile-note{margin-top:2px}
  .section-flow .section-head p,
  .section-proof .section-head p,
  .section-cta p{max-width:34ch;margin-left:auto;margin-right:auto}
  .about-illustration-wrap{justify-content:center;margin:2px 0 14px}
  .about-illustration{width:min(100%,280px)}
}

.desktop-only{display:block}
.trustindex-panel .stat-card{padding:16px 18px}
.trustindex-card{min-height:0}
.hero-stack{gap:14px}
.hero-proof-under .proof-points li{font-size:.98rem}
.hero-proof-under .stat-card{background:linear-gradient(180deg,#ffffff 0%,#fbfcfd 100%)}
.about-illustration-v14{width:min(100%,420px)}
.about-illustration-wrap{justify-content:center}
.about-grid-v14{align-items:center}
.about-editorial-copy{gap:4px}
.about-editorial-copy p{font-size:1.02rem;line-height:1.75}
.booking-card h2{font-size:1.5rem}
.booking-card p{font-size:.98rem;line-height:1.65}
.trust-grid-v14 div{font-size:.95rem}
.hero-mobile-note{max-width:38ch}

@media (min-width:1101px){
  .hero-copy-v14{padding-right:8px}
}

@media (max-width:782px){
  .desktop-only{display:none}
  .about-editorial-copy p{font-size:1rem;line-height:1.72}
  .about-illustration-v14{width:min(100%,260px)}
  .hero-copy-v14 .hero-proof-under{display:none}
}

.section-copy{
  max-width: 920px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}
.flow-row-three{grid-template-columns:1fr auto 1fr auto 1fr;align-items:stretch}
.flow-step-illustrated{min-height:220px}
.flow-icon-graphic{background:#fff;border:0;position:relative;width:74px;height:74px;margin-bottom:18px}
.flow-icon-graphic::before,.flow-icon-graphic::after{content:"";position:absolute;display:block}
.flow-icon-van::before{left:10px;top:22px;width:42px;height:24px;border:4px solid var(--brand);border-radius:8px 8px 6px 6px;background:#fff}
.flow-icon-van::after{left:46px;top:30px;width:18px;height:16px;border:4px solid var(--brand);border-left:0;border-radius:0 8px 8px 0;background:#fff;box-shadow:-34px 30px 0 -24px #fff, -12px 30px 0 -24px #fff}
.flow-icon-van{box-shadow: inset 0 0 0 999px rgba(237,248,244,.55); border-radius:50%;}
.flow-icon-van span{display:none}
.flow-icon-wrench{box-shadow: inset 0 0 0 999px rgba(238,243,251,.7); border-radius:50%;}
.flow-icon-wrench::before{left:18px;top:36px;width:34px;height:6px;background:var(--brand);border-radius:4px;transform:rotate(-32deg)}
.flow-icon-wrench::after{left:18px;top:15px;width:18px;height:18px;border:4px solid var(--brand);border-right-color:transparent;border-bottom-color:transparent;border-radius:50%;transform:rotate(45deg)}
.flow-icon-check{box-shadow: inset 0 0 0 999px rgba(247,242,251,.9); border-radius:50%;}
.flow-icon-check::before{left:21px;top:33px;width:14px;height:28px;border-right:6px solid var(--brand);border-bottom:6px solid var(--brand);transform:rotate(45deg)}
.proof-grid-v14 .proof-card{min-height:190px}
.about-editorial-copy p + p{margin-top:2px}
@media (max-width:1100px){
  .flow-row-three{grid-template-columns:1fr 1fr 1fr;gap:14px}
  .flow-row-three .flow-arrow{display:none}
}
@media (max-width:782px){
  .section-copy{font-size:.98rem;line-height:1.72}
  .flow-row-three{grid-template-columns:1fr}
  .flow-step-illustrated{min-height:0}
}

.flow-illustration-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:var(--shadow-soft);
  padding:18px 18px 8px;
  margin:0 auto 20px;
}
.flow-illustration-image{
  width:100%;
  height:auto;
  display:block;
}
.flow-row-captions{
  margin-top:0;
}
.flow-step-caption{
  min-height:0;
  padding:18px 18px 16px;
  box-shadow:0 8px 18px rgba(20,32,42,.035);
}
.flow-step-caption h3{margin-bottom:6px}
.flow-step-caption p{font-size:.97rem;line-height:1.65}

@media (max-width:1100px){
  .flow-illustration-card{padding:14px 14px 6px}
}

@media (max-width:782px){
  .flow-illustration-card{padding:12px 12px 2px;margin-bottom:16px}
  .flow-row-captions{grid-template-columns:1fr;gap:12px}
  .flow-step-caption{padding:16px 16px 14px}
}

.about-logo-v14{width:min(100%,320px);filter:none;}
@media (max-width: 782px){.about-logo-v14{width:min(100%,240px);}}

.mobile-only{display:none}
.mobile-review-panel{margin-top:14px}
.mobile-review-panel .stat-card{padding:14px 16px;background:linear-gradient(180deg,#ffffff 0%,#fbfcfd 100%)}
.mobile-review-panel .section-kicker{margin-bottom:8px}
.mobile-review-panel iframe,.mobile-review-panel .ti-widget,.mobile-review-panel .ti-widget-container{max-width:100%}

@media (max-width:782px){
  .mobile-only{display:block}
  .mobile-review-panel{display:block}
}

.brand-title-mobile{display:none;}
@media (max-width:782px){
  .site-header{backdrop-filter:none;}
  .header-inner{min-height:64px;gap:12px;padding-top:8px;padding-bottom:8px;}
  .brand-title-desktop{display:none;}
  .brand-title-mobile{display:block;font-size:1.05rem;line-height:1.15;font-weight:800;}
  .brand-tagline{display:none;}
  .header-actions .btn-solid{padding:11px 14px;font-size:.95rem;}
}
.trustindex-card,
.trustindex-card *{pointer-events:none !important;}
.mobile-review-panel .section-kicker{display:none !important;}

@media (max-width:782px){
  .header-inner{min-height:56px;gap:10px;padding-top:6px;padding-bottom:6px;}
  .brand-wrap{min-width:0;}
  .brand-title-mobile{font-size:.98rem;line-height:1.1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:100%;}
  .header-actions .btn-solid{padding:10px 12px;font-size:.9rem;min-height:42px;}
  .mobile-review-panel .trustindex-card{padding:12px 14px;}
}
.trustindex-card a,
.trustindex-card button{
  pointer-events:none !important;
}
.mobile-review-panel{
  overflow:hidden;
}
.mobile-review-panel [class*="review"],
.mobile-review-panel [class*="Review"],
.mobile-review-panel [class*="reviews"],
.mobile-review-panel [class*="Reviews"]{
  text-transform:none;
}
.section-copy-trust{
  margin-top:18px;
}

.services-icons-ref{
  padding: 6px 0 2px;
}
.services-icons-grid-ref{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:34px 20px;
  align-items:start;
}
.service-icon-link-ref{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  text-align:center;
  gap:12px;
  color:var(--text);
}
.service-icon-link-ref:hover{
  color:var(--brand);
}
.service-icon-art-ref{
  width:66px;
  height:66px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.service-icon-art-ref svg{
  width:56px;
  height:56px;
  stroke:currentColor;
  fill:none;
  stroke-width:1.6;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.service-icon-label-ref{
  font-size:17px;
  line-height:1.15;
  letter-spacing:.04em;
  font-weight:500;
  text-transform:uppercase;
  color:var(--text);
}
.service-icon-link-ref:hover .service-icon-label-ref{
  color:var(--brand);
}
@media (max-width:1100px){
  .services-icons-grid-ref{
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:28px 16px;
  }
  .service-icon-label-ref{font-size:15px}
}
@media (max-width:782px){
  .services-icons-ref{padding-top:2px}
  .services-icons-grid-ref{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:24px 14px;
  }
  .service-icon-art-ref{width:58px;height:58px}
  .service-icon-art-ref svg{width:48px;height:48px}
  .service-icon-label-ref{font-size:13px}
}

.brand-logo-link{display:inline-flex;align-items:center;text-decoration:none}
.brand-logo-img{display:block;height:42px;width:auto;max-width:260px}
.desktop-nav a{font-size:19px;line-height:1.3}
.review-image-card{background:#fff;border:1px solid var(--line);border-radius:22px;padding:10px;box-shadow:var(--shadow-soft);max-width:380px;margin-left:auto;margin-right:auto}
.review-image-link{display:block;text-decoration:none}
.review-image{display:block;width:100%;height:auto;border-radius:14px}
.commercial-subgroup,.brands-subgroup{text-align:center}
.commercial-list-card,.brands-list-card{max-width:1080px;margin-left:auto;margin-right:auto}
.commercial-list-card .master-list,.brands-list-card .master-list{justify-items:center}
.commercial-list-card .master-list-item,.brands-list-card .master-list-item{max-width:340px;width:100%}
@media (max-width:782px){
  .brand-logo-img{height:32px;max-width:190px}
  .brand-tagline{display:none}
  .header-inner{min-height:58px}
  .hero-copy h1,.hero-copy-v14 h1{text-align:center;margin-left:auto;margin-right:auto}
  .hero-copy .lead,.hero-copy-v14 .lead,.hero-mobile-note{text-align:center;margin-left:auto;margin-right:auto}
  .desktop-nav a{font-size:16px}
  .commercial-list-card .master-list,.brands-list-card .master-list{justify-items:stretch}
}

.seo-template-shell{padding-top:44px;padding-bottom:8px}
.seo-template-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(320px,380px);gap:28px;align-items:start}
.seo-template-article{min-width:0}
.seo-template-sidebar{display:grid;gap:16px;position:sticky;top:106px}
.seo-template-sidebar .stat-card{border-radius:22px}
.seo-review-card{max-width:100%;padding:10px}
.seo-booking-panel .booking-card{padding:24px}
.service-template-trust .section-head,
.service-template-proof .section-head,
.service-template-faq .section-head{text-align:center}
.service-template-reasons .reason-card p,
.service-template-proof .proof-card p,
.service-template-faq .faq-list p{color:var(--muted)}
#services .section-subgroup,
#brands .section-subgroup,
#services .section-head,
#brands .section-head,
#services .list-card,
#brands .list-card{text-align:center}
#services .master-list-services,
#brands .master-list-brands{justify-items:center}
#services .master-list-item,
#brands .master-list-item{max-width:340px;width:100%}
#services .master-list-item{text-align:left}
#brands .master-list-item{text-align:left}
@media (max-width:1100px){
  .seo-template-grid{grid-template-columns:1fr}
  .seo-template-sidebar{position:static}
}
@media (max-width:782px){
  .brand-wrap{align-items:center}
  .brand-tagline{display:none}
  .hero-copy h1,.hero-copy-v14 h1{text-align:center;margin-left:auto;margin-right:auto}
  .seo-template-shell{padding-top:26px}
  .seo-template-sidebar .review-image-card{max-width:360px;margin:0 auto}
}
.review-image-card img{display:block}
.review-image-card::after{display:none!important}

.seo-template-intro{display:flex;justify-content:space-between;gap:18px;align-items:flex-start;padding:18px 20px 20px;margin-bottom:22px;border:1px solid var(--line);border-radius:20px;background:linear-gradient(180deg,#ffffff 0%,#f8fbfc 100%)}
.seo-template-intro-head{max-width:680px}
.seo-template-intro-copy{margin:8px 0 0;font-size:1rem;line-height:1.65;color:var(--muted)}
.seo-template-intro-actions{display:flex;gap:12px;flex-wrap:wrap;justify-content:flex-end}
.seo-template-article .page-title, .seo-template-article > h1:first-child{margin-top:0}
.seo-template-trust .section-head p,.service-template-faq .section-head p{max-width:760px;margin-left:auto;margin-right:auto}
@media (max-width: 1024px){
  .seo-template-intro{padding:16px 18px}
}
@media (max-width: 767px){
  .seo-template-intro{display:block;padding:16px 16px 18px;margin-bottom:18px}
  .seo-template-intro-actions{margin-top:14px;justify-content:flex-start}
  .seo-template-intro-actions .btn{width:100%;justify-content:center}
}

.workflow-faq-shell{margin-top:40px}.workflow-faq-shell .section-head{margin-bottom:18px}.workflow-faq-shell .faq-list details+details{margin-top:0}.workflow-faq-shell .faq-list summary{list-style:none}.workflow-faq-shell .faq-list summary::-webkit-details-marker{display:none}.workflow-faq-shell .faq-list details[open]{box-shadow:0 12px 28px rgba(20,32,42,.05)}

.seo-template-intro-actions .btn-solid{padding:10px 16px;font-size:.96rem;white-space:nowrap}
.workflow-primary-heading h1,
.seo-template-article > h1:first-child,
.seo-template-article .page-title{text-align:center;max-width:none;margin-left:auto;margin-right:auto}
.workflow-primary-heading{margin:0 0 18px}
.seo-mobile-support{display:none}
.desktop-sidebar-review .review-image-card,
.desktop-sidebar-booking .booking-card{margin-left:auto;margin-right:auto}
@media (min-width:783px){
  .seo-template-sidebar{grid-template-areas:"review" "booking" "proof"}
  .desktop-sidebar-review{grid-area:review}
  .desktop-sidebar-booking{grid-area:booking}
  .seo-proof-panel{grid-area:proof}
}
@media (max-width:782px){
  .seo-template-intro-actions .btn-solid{padding:9px 14px;font-size:.92rem}
  .seo-mobile-support{display:grid;gap:16px;margin:0 0 22px}
  .seo-template-sidebar .desktop-sidebar-review,
  .seo-template-sidebar .desktop-sidebar-booking{display:none}
  .workflow-primary-heading{margin-bottom:14px}
  .workflow-primary-heading h1{font-size:clamp(2rem,8vw,2.85rem);text-align:center}
  .seo-mobile-support .review-image-card,
  .seo-mobile-support .booking-card{margin-left:auto;margin-right:auto}
}

.seo-template-article h1,
.workflow-primary-heading h1{ text-align:center !important; max-width:none !important; margin-left:auto !important; margin-right:auto !important; }
.workflow-faq-shell{display:block !important; margin-top:40px !important;}
.workflow-faq-shell .faq-list{display:grid; gap:14px;}
.workflow-faq-shell .faq-list details{display:block !important; overflow:hidden;}
.workflow-faq-shell .faq-list .faq-answer{padding-top:10px;}

.site-footer-v2{padding:0 0 26px;margin-top:32px;background:#fff;border-top:1px solid var(--line)}
.footer-top-cta{padding:28px 0;border-bottom:1px solid var(--line);background:linear-gradient(180deg,#fbfcfd 0%,#f5f8fa 100%)}
.footer-top-cta-inner{display:grid;grid-template-columns:1.15fr .85fr;gap:24px;align-items:center}
.footer-top-copy h2{margin:14px 0 10px;font-size:clamp(1.8rem,3vw,2.7rem);line-height:1.08}
.footer-top-copy p{margin:0;color:var(--muted);max-width:62ch}
.footer-top-actions{display:flex;gap:12px;flex-wrap:wrap;justify-content:flex-end}

.footer-grid-v2{grid-template-columns:1.15fr .8fr 1fr .9fr;padding-top:34px}
.footer-column{display:grid;align-content:start;gap:14px}
.footer-logo-link{display:inline-flex;align-items:center}
.footer-logo-img{height:40px;width:auto}
.footer-brand-copy{color:var(--muted);margin:0;max-width:44ch}
.footer-trust-list{list-style:none;padding:0;margin:0;display:grid;gap:8px;color:#31424e;font-weight:600}
.footer-trust-list li{display:flex;gap:10px;align-items:flex-start}
.footer-trust-list li:before{content:"•";color:var(--brand);font-weight:900}
.footer-chip-list{display:flex;flex-wrap:wrap;gap:10px}
.footer-chip{display:inline-flex;align-items:center;justify-content:center;padding:10px 13px;border-radius:999px;border:1px solid rgba(20,32,42,.12);background:#fff;color:var(--text);font-weight:650}
.footer-chip:hover{border-color:rgba(20,32,42,.24);color:var(--brand-dark)}
.footer-small-note,.footer-contact-note{margin:0;color:var(--muted);font-size:.95rem}
.footer-contact-col p{margin:0;color:var(--muted)}
.footer-contact-col strong{color:var(--text)}
.footer-bottom-bar{margin-top:24px;padding-top:18px;border-top:1px solid var(--line);display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap}
.footer-bottom-bar p{margin:0;color:var(--muted)}
.footer-bottom-links{display:flex;gap:14px;flex-wrap:wrap}
.footer-bottom-links a{font-weight:650;color:var(--text)}

@media (max-width:1100px){
  .footer-top-cta-inner,.footer-grid-v2{grid-template-columns:1fr}
  .footer-top-actions{justify-content:flex-start}
}

@media (max-width:782px){
  .site-footer-v2{padding-bottom:18px}
  .footer-top-cta{padding:24px 0}
  .footer-grid-v2{padding-top:28px}
  .footer-bottom-bar{align-items:flex-start}
}

@media (min-width: 1101px) {
  .hero-grid.hero-grid-v14 {
    grid-template-columns: minmax(0, 1.86fr) minmax(320px, 1fr);
    gap: 28px;
  }
  .hero-copy.hero-copy-v14 h1 {
    max-width: none;
  }
  .desktop-booking-card .stat-card.booking-card {
    max-width: 100%;
    width: 100%;
    margin-left: auto;
    padding: 22px 20px;
  }
}
.bastion-city-nowrap,
.bastion-home-hero-city {
  white-space: nowrap !important;
  display: inline-block;
}
.hero-copy.hero-copy-v14 h1 .bastion-city-nowrap {
  white-space: nowrap !important;
}
.bastion-home-accordion,
.bastion-home-accordion.bastion-v2-accordion-list {
  margin-top: 18px;
  border-top: 1px solid rgba(16,24,40,.08);
  padding-top: 14px;
}
.bastion-home-accordion > summary,
.bastion-home-accordion.bastion-v2-accordion-list > summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: #1f2937;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
  border: 0;
  text-align: center;
}
.bastion-home-accordion > summary::-webkit-details-marker,
.bastion-home-accordion.bastion-v2-accordion-list > summary::-webkit-details-marker {
  display: none;
}
.bastion-home-accordion .bastion-v2-accordion-count {
  color: #6b7280;
  font-weight: 600;
}
@media (max-width: 1100px) {
  .hero-copy.hero-copy-v14 h1 {
    max-width: 12.8ch;
  }
}

@media (min-width: 1101px) {
  .hero-grid,
  .hero-grid.hero-grid-v14,
  .bastion-v2-hero-grid {
    grid-template-columns: minmax(0, 1.86fr) minmax(320px, 1fr) !important;
    gap: 30px;
  }
}

.desktop-booking-card,
.hero-panel.booking-card-wrap,
.bastion-v2-booking-wrap--city {
  width: 100%;
  max-width: 100%;
}

.desktop-booking-card .booking-card,
.hero-panel.booking-card-wrap .booking-card,
.bastion-v2-booking-wrap--city .booking-card,
.booking-card {
  width: 100%;
  max-width: 100% !important;
  margin-left: auto;
}

.hero-copy h1 .bastion-city-nowrap,
.hero-copy-v14 h1 .bastion-city-nowrap,
.bastion-v2-hero-copy h1 .bastion-city-nowrap,
.bastion-home-hero-city,
.bastion-v2-final-cta h2 .bastion-city-nowrap,
.bastion-v2-city-intro-section h2 .bastion-city-nowrap,
.bastion-v2-city-body-intro-head h2 .bastion-city-nowrap {
  white-space: nowrap !important;
  display: inline-block;
}

.bastion-city-nowrap,
.bastion-home-hero-city,
h1 .bastion-city-nowrap,
h2 .bastion-city-nowrap,
h3 .bastion-city-nowrap,
.master-list-label .bastion-city-nowrap,
a .bastion-city-nowrap {
  white-space: nowrap !important;
  display: inline-block;
}

@media (min-width: 1101px) {
  .hero-grid,
  .hero-grid.hero-grid-v14,
  .bastion-v2-hero-grid,
  .bastion-v2-two-col,
  .bastion-v2-side-layout,
  .bastion-v2-city-intro-grid--text-only {
    grid-template-columns: minmax(0, 1.86fr) minmax(320px, 1fr) !important;
    gap: 30px;
  }
}

.desktop-booking-card,
.hero-panel.booking-card-wrap,
.bastion-v2-booking-wrap--city,
.bastion-v2-hero-stack,
.bastion-v2-hero-stack--city,
.bastion-v2-city-intro-copy-only {
  width: 100%;
  max-width: 100%;
}

.desktop-booking-card .booking-card,
.hero-panel.booking-card-wrap .booking-card,
.bastion-v2-booking-wrap--city .booking-card,
.booking-card {
  width: 100%;
  max-width: 100% !important;
  margin-left: auto;
}

.bastion-city-nowrap,
.bastion-home-hero-city,
h1 .bastion-city-nowrap,
h2 .bastion-city-nowrap,
h3 .bastion-city-nowrap,
.master-list-label .bastion-city-nowrap,
a .bastion-city-nowrap {
  white-space: nowrap !important;
  display: inline-block;
}

@media (min-width: 1101px) {
  .hero-grid,
  .hero-grid.hero-grid-v14,
  .bastion-v2-hero-grid,
  .bastion-v2-two-col,
  .bastion-v2-city-intro-grid--text-only {
    grid-template-columns: minmax(0, 1.86fr) minmax(320px, 1fr) !important;
    gap: 30px;
    align-items: start;
  }
}

.desktop-booking-card,
.hero-panel.booking-card-wrap,
.bastion-v2-booking-wrap--city,
.bastion-v2-hero-stack--city,
.bastion-v2-city-intro-copy-only {
  width: 100%;
  max-width: 100%;
}

.desktop-booking-card .booking-card,
.hero-panel.booking-card-wrap .booking-card,
.bastion-v2-booking-wrap--city .booking-card,
.booking-card {
  width: 100%;
  max-width: 100% !important;
  margin-left: auto;
}

.bastion-city-nowrap,
.bastion-home-hero-city,
h1 .bastion-city-nowrap,
h2 .bastion-city-nowrap,
h3 .bastion-city-nowrap,
.master-list-label .bastion-city-nowrap,
a .bastion-city-nowrap {
  white-space: nowrap !important;
  display: inline-block;
}

@media (max-width: 1100px) {
  .hero-grid,
  .hero-grid.hero-grid-v14,
  .bastion-v2-hero-grid,
  .bastion-v2-two-col,
  .bastion-v2-city-intro-grid--text-only {
    grid-template-columns: 1fr !important;
  }
}

@media (min-width: 1101px) {
  .hero-grid,
  .hero-grid.hero-grid-v14,
  .bastion-v2-hero-grid,
  .bastion-v2-city-intro-grid--text-only {
    grid-template-columns: minmax(0, 1.86fr) minmax(320px, 1fr) !important;
    gap: 30px;
  }
}

.desktop-booking-card,
.hero-panel.booking-card-wrap,
.bastion-v2-booking-wrap--city,
.bastion-v2-city-intro-copy-only {
  width: 100%;
  max-width: 100%;
}

.desktop-booking-card .booking-card,
.hero-panel.booking-card-wrap .booking-card,
.bastion-v2-booking-wrap--city .booking-card,
.booking-card {
  width: 100%;
  max-width: 100% !important;
  margin-left: auto;
}

.bastion-city-nowrap,
.bastion-home-hero-city,
h1 .bastion-city-nowrap,
h2 .bastion-city-nowrap,
h3 .bastion-city-nowrap,
.master-list-label .bastion-city-nowrap,
a .bastion-city-nowrap {
  white-space: nowrap !important;
  display: inline-block;
}

@media (max-width: 1100px) {
  .hero-grid,
  .hero-grid.hero-grid-v14,
  .bastion-v2-hero-grid,
  .bastion-v2-city-intro-grid--text-only {
    grid-template-columns: 1fr !important;
  }
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.bastion-modal-open {
  overflow: hidden;
}

.bastion-booking-modal[hidden] {
  display: none !important;
}

.bastion-booking-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
}

.bastion-booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 32, 42, 0.45);
}

.bastion-booking-modal__dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(92vw, 560px);
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(20,32,42,.22);
  overflow: hidden;
}

.bastion-booking-modal__content {
  padding: 24px;
  display: grid;
  gap: 14px;
}

.bastion-booking-modal__content h3 {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.1;
}

.bastion-booking-modal__content p {
  margin: 0;
  color: var(--muted);
}

.bastion-booking-modal__content label {
  display: grid;
  gap: 8px;
}

.bastion-booking-modal__content textarea {
  width: 100%;
  min-height: 110px;
  padding: 14px 16px;
  border: 1px solid #d7e0e5;
  border-radius: 22px;
  background: #fff;
  font: inherit;
  color: var(--text);
  resize: vertical;
}

.bastion-booking-modal__content textarea:focus {
  outline: none;
  border-color: #9dbeb5;
  box-shadow: 0 0 0 3px rgba(12,106,84,.08);
}

.bastion-booking-consent {
  display: grid !important;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
}

.bastion-booking-consent input {
  margin-top: 3px;
}

.bastion-booking-consent span {
  font-size: .96rem;
  line-height: 1.6;
  color: #30414d;
  font-weight: 500;
}

.bastion-booking-modal__actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 6px;
}

.bastion-booking-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #5f6b76;
}

@media (max-width: 782px) {
  .bastion-booking-modal__dialog {
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    width: 100%;
    transform: none;
    border-radius: 24px 24px 0 0;
  }

  .bastion-booking-modal__content {
    padding: 22px 18px 18px;
  }

  .bastion-booking-modal__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}