:root{
  --bg:#13110F;
  --surface:#1C1A17;
  --surface-2:#221F1B;
  --paper:#EDE6D9;
  --paper-2:#E2D9C7;
  --ink:#F2EFE9;
  --muted:#9C9488;
  --line:#34302A;
  --accent:#D9622B;
  --accent-2:#E8895C;
  --ok:#6E9B62;
  --radius:14px;
  --display: 'Space Grotesk', sans-serif;
  --body: 'Inter', sans-serif;
  --mono: 'JetBrains Mono', monospace;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--bg);
  color:var(--ink);
  font-family:var(--body);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
body::before{
  content:"";
  position:fixed; inset:0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events:none;
  z-index:0;
}
a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}
.wrap{max-width:1120px; margin:0 auto; padding:0 24px; position:relative; z-index:1;}
h1,h2,h3{font-family:var(--display); font-weight:600; letter-spacing:-0.01em;}
.eyebrow{
  font-family:var(--mono); font-size:12.5px; letter-spacing:0.12em; text-transform:uppercase;
  color:var(--accent-2); display:flex; align-items:center; gap:10px; margin-bottom:14px;
}
.eyebrow::before{content:""; width:18px; height:1px; background:var(--accent); display:inline-block;}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family:var(--body); font-weight:600; font-size:15px;
  padding:13px 22px; border-radius:10px; border:1px solid transparent;
  cursor:pointer; transition:transform .15s ease, background .15s ease, border-color .15s ease;
  white-space:nowrap;
}
.btn:active{transform:scale(0.97);}
.btn-primary{background:var(--accent); color:#15110D;}
.btn-primary:hover{background:var(--accent-2);}
.btn-ghost{background:transparent; border-color:var(--line); color:var(--ink);}
.btn-ghost:hover{border-color:var(--accent);}
.btn-paper{background:var(--paper); color:#1A1712;}
.btn-paper:hover{background:var(--paper-2);}

/* Header */
header{
  position:sticky; top:0; z-index:50;
  background:rgba(19,17,15,0.88); backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{display:flex; align-items:center; justify-content:space-between; padding:16px 0; position:relative;}
.logo{font-family:var(--display); font-weight:700; font-size:19px; display:flex; align-items:center; gap:10px;}
.logo-mark{
  width:32px; height:32px; border-radius:8px; background:var(--accent);
  display:flex; align-items:center; justify-content:center; color:#15110D; font-family:var(--mono); font-weight:600; font-size:13px;
}
.nav-links{display:flex; gap:28px; font-size:14.5px; color:var(--muted);}
.nav-links a:hover{color:var(--ink);}
.nav-cta{display:flex; gap:12px; align-items:center;}
.nav-phone{font-family:var(--mono); font-weight:600; font-size:15px; color:var(--ink);}
.burger{display:none; background:none; border:1px solid var(--line); color:var(--ink); width:40px; height:40px; border-radius:8px; font-size:18px; cursor:pointer; align-items:center; justify-content:center;}
@media(max-width:880px){
  .nav-links{
    display:flex; flex-direction:column; gap:0;
    position:absolute; top:100%; left:0; right:0;
    background:var(--surface); border-bottom:1px solid var(--line);
    max-height:0; overflow:hidden; transition:max-height .25s ease;
  }
  .nav-links.open{max-height:360px;}
  .nav-links a{padding:14px 24px; border-top:1px solid var(--line);}
  .nav-phone{display:none;}
  .burger{display:flex;}
}

/* Hero */
.hero{padding:72px 0 56px; position:relative;}
.hero-grid{display:grid; grid-template-columns:1.1fr 0.9fr; gap:56px; align-items:center;}
@media(max-width:880px){.hero-grid{grid-template-columns:1fr;}}
.hero h1{font-size:clamp(30px,4.2vw,48px); line-height:1.1; margin-bottom:20px;}
.hero h1 em{font-style:normal; color:var(--accent);}
.hero p.lead{color:var(--muted); font-size:17px; max-width:50ch; margin-bottom:30px;}
.hero-actions{display:flex; flex-wrap:wrap; gap:12px; margin-bottom:34px;}
.hero-stats{display:flex; gap:28px; flex-wrap:wrap;}
.stat .num{font-family:var(--mono); font-size:26px; font-weight:600; color:var(--accent-2);}
.stat .label{font-size:13px; color:var(--muted);}

/* Ticket card */
.ticket{
  background:var(--paper); color:#1A1712; border-radius:var(--radius);
  padding:26px 26px 22px; position:relative; box-shadow:0 30px 60px -20px rgba(0,0,0,0.55);
  transform:rotate(1.2deg);
  font-family:var(--mono);
}
.ticket-stamp{
  position:absolute; top:34px; right:26px; transform:rotate(-14deg);
  font-family:var(--mono); font-weight:700; font-size:11px; color:var(--ok); letter-spacing:0.06em;
  border:2px solid var(--ok); border-radius:50%; width:60px; height:60px;
  display:flex; align-items:center; justify-content:center; text-align:center; line-height:1.1;
}
.ticket-head{font-size:11px; letter-spacing:0.1em; text-transform:uppercase; color:#6b6354; margin-bottom:4px;}
.ticket-title{font-family:var(--display); font-size:20px; font-weight:700; margin-bottom:18px; max-width:70%;}
.ticket-row{display:flex; justify-content:space-between; font-size:13px; padding:9px 0; border-top:1px dashed #c9bea7;}
.ticket-row span:first-child{color:#6b6354;}
.ticket-row span:last-child{font-weight:600;}
.ticket-foot{margin-top:16px; padding-top:14px; border-top:1px dashed #c9bea7; font-size:12px; color:#6b6354;}

/* Trust bar */
.trustbar{border-top:1px solid var(--line); border-bottom:1px solid var(--line); padding:22px 0; background:var(--surface);}
.trustbar .wrap{display:flex; flex-wrap:wrap; gap:18px 40px; justify-content:space-between;}
.trust-item{display:flex; align-items:center; gap:10px; font-size:14px; color:var(--muted);}
.trust-item b{color:var(--ink); font-weight:600;}
.dot{width:6px; height:6px; border-radius:50%; background:var(--accent); flex-shrink:0;}

section{padding:84px 0;}
.section-head{display:flex; justify-content:space-between; align-items:flex-end; gap:24px; margin-bottom:44px; flex-wrap:wrap;}
.section-head h2{font-size:clamp(26px,3vw,34px);}
.section-head p{color:var(--muted); max-width:48ch;}

/* Services */
.services-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden;}
@media(max-width:880px){.services-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:560px){.services-grid{grid-template-columns:1fr;}}
.service{background:var(--surface); padding:28px 24px; transition:background .15s ease;}
.service:hover{background:var(--surface-2);}
.service .tag{font-family:var(--mono); font-size:12px; color:var(--accent-2); margin-bottom:12px; display:block;}
.service h3{font-size:17px; margin-bottom:8px; font-weight:600;}
.service p{font-size:14px; color:var(--muted);}
.service a.service-link{display:block;}

/* Pricing */
.price-table{border:1px solid var(--line); border-radius:var(--radius); overflow:hidden;}
.price-row{
  display:flex; justify-content:space-between; align-items:center; gap:20px;
  padding:20px 26px; border-bottom:1px solid var(--line); background:var(--surface);
}
.price-row:last-child{border-bottom:none;}
.price-row:nth-child(even){background:var(--surface-2);}
.price-name{font-weight:500;}
.price-name small{display:block; color:var(--muted); font-size:13px; margin-top:3px; font-weight:400;}
.price-val{font-family:var(--mono); font-weight:600; color:var(--accent-2); white-space:nowrap; font-size:16px;}
.price-note{margin-top:18px; font-size:13.5px; color:var(--muted);}

/* Reviews */
.reviews-top{display:flex; gap:16px; flex-wrap:wrap; margin-bottom:36px;}
.review-badge{
  display:flex; align-items:center; gap:12px; border:1px solid var(--line); border-radius:12px;
  padding:14px 18px; background:var(--surface);
}
.review-badge .score{font-family:var(--mono); font-size:20px; font-weight:700; color:var(--accent-2);}
.review-badge .meta{font-size:12.5px; color:var(--muted);}
.reviews-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:20px;}
@media(max-width:880px){.reviews-grid{grid-template-columns:1fr;}}
.review-card{background:var(--surface); border:1px solid var(--line); border-radius:var(--radius); padding:24px;}
.review-stars{color:var(--accent); font-size:14px; margin-bottom:12px; letter-spacing:2px;}
.review-card p{font-size:14.5px; color:var(--ink); margin-bottom:16px;}
.review-author{display:flex; justify-content:space-between; font-size:13px; color:var(--muted); font-family:var(--mono);}

/* Coverage map */
.coverage{display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:center;}
@media(max-width:880px){.coverage{grid-template-columns:1fr;}}
.map-frame{border-radius:var(--radius); overflow:hidden; border:1px solid var(--line); aspect-ratio:4/3;}
.map-frame iframe{width:100%; height:100%; border:0; filter:grayscale(0.3) invert(0.92) contrast(0.9);}
.coverage-list{display:flex; flex-direction:column; gap:14px; margin-top:20px;}
.coverage-list li{display:flex; gap:12px; align-items:flex-start; font-size:14.5px; color:var(--muted); list-style:none;}
.coverage-list b{color:var(--ink);}

/* Contact */
.contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:48px;}
@media(max-width:880px){.contact-grid{grid-template-columns:1fr;}}
.contact-methods{display:flex; flex-direction:column; gap:12px;}
.method{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  border:1px solid var(--line); border-radius:12px; padding:18px 20px; background:var(--surface);
  transition:border-color .15s ease;
}
.method:hover{border-color:var(--accent);}
.method-info{display:flex; align-items:center; gap:14px;}
.method-icon{width:40px; height:40px; border-radius:10px; background:var(--surface-2); display:flex; align-items:center; justify-content:center; flex-shrink:0;}
.method-name{font-weight:600; font-size:15px;}
.method-sub{font-size:12.5px; color:var(--muted); font-family:var(--mono);}

form{display:flex; flex-direction:column; gap:14px;}
.field label{display:block; font-size:13px; color:var(--muted); margin-bottom:6px; font-family:var(--mono);}
.field input, .field textarea{
  width:100%; background:var(--surface); border:1px solid var(--line); border-radius:10px;
  padding:13px 14px; color:var(--ink); font-family:var(--body); font-size:14.5px; outline:none;
  transition:border-color .15s ease;
}
.field input:focus, .field textarea:focus{border-color:var(--accent);}
.field textarea{resize:vertical; min-height:96px;}
.consent{display:flex; gap:10px; align-items:flex-start; font-size:12.5px; color:var(--muted); margin-top:4px;}
.consent input{margin-top:3px; accent-color:var(--accent);}
.consent a{color:var(--accent-2); text-decoration:underline;}
.form-status{font-size:13.5px; min-height:18px;}
.form-status.ok{color:var(--ok);}
.form-status.err{color:#d96b6b;}

footer{border-top:1px solid var(--line); padding:48px 0 32px; background:var(--surface);}
.footer-grid{display:flex; justify-content:space-between; gap:24px; flex-wrap:wrap; margin-bottom:28px;}
.footer-col h4{font-family:var(--mono); font-size:12px; text-transform:uppercase; letter-spacing:0.08em; color:var(--muted); margin-bottom:12px;}
.footer-col a, .footer-col p{display:block; font-size:14px; color:var(--ink); margin-bottom:8px;}
.footer-bottom{display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; padding-top:24px; border-top:1px solid var(--line); font-size:12.5px; color:var(--muted);}
.footer-bottom a{color:var(--muted); text-decoration:underline;}

/* Floating contact dock */
.dock{
  position:fixed; bottom:18px; right:18px; z-index:60;
  display:flex; flex-direction:column; gap:10px; align-items:flex-end;
}
.dock-btn{
  width:52px; height:52px; border-radius:50%; background:var(--surface); border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center; box-shadow:0 10px 24px -8px rgba(0,0,0,0.5);
  transition:transform .15s ease, border-color .15s ease;
}
.dock-btn:hover{transform:translateY(-2px) scale(1.04); border-color:var(--accent);}
.dock-btn.main{width:58px; height:58px; background:var(--accent);}
.dock-btn svg{width:24px; height:24px;}

/* Cookie notice */
.cookie-bar{
  position:fixed; left:18px; right:18px; bottom:18px; z-index:70;
  max-width:560px; margin:0 auto; background:var(--surface); border:1px solid var(--line);
  border-radius:14px; padding:18px 20px; display:none; gap:14px; align-items:center; flex-wrap:wrap;
  box-shadow:0 20px 50px -15px rgba(0,0,0,0.6);
}
.cookie-bar.show{display:flex;}
.cookie-bar p{font-size:13px; color:var(--muted); flex:1; min-width:220px;}
.cookie-bar a{color:var(--accent-2); text-decoration:underline;}

.reveal{opacity:0; transform:translateY(16px); transition:opacity .6s ease, transform .6s ease;}
.reveal.in{opacity:1; transform:translateY(0);}

/* ---- New: landing page utilities (service & district pages) ---- */
.breadcrumbs{
  padding:18px 0 0; font-family:var(--mono); font-size:12.5px; color:var(--muted);
  display:flex; gap:8px; flex-wrap:wrap; align-items:center;
}
.breadcrumbs a{color:var(--muted);}
.breadcrumbs a:hover{color:var(--accent-2);}
.breadcrumbs span{color:var(--line);}

.article{padding-top:48px;}
.article p{color:var(--ink); font-size:15.5px; max-width:74ch; margin-bottom:18px;}
.article p.muted-lead{color:var(--muted); font-size:17px; max-width:60ch;}
.article h2{font-size:24px; margin:40px 0 16px;}
.article ul{margin:0 0 20px 20px; color:var(--ink); font-size:15px;}
.article ul li{margin-bottom:8px; color:var(--muted);}
.article ul li b{color:var(--ink);}

.cta-banner{
  border:1px solid var(--line); border-radius:var(--radius); background:var(--surface);
  padding:32px; display:flex; justify-content:space-between; align-items:center; gap:20px; flex-wrap:wrap;
  margin:44px 0;
}
.cta-banner h3{font-size:19px; margin-bottom:6px;}
.cta-banner p{color:var(--muted); font-size:14px; margin:0;}
.cta-actions{display:flex; gap:12px; flex-wrap:wrap;}

.related-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:14px;}
@media(max-width:880px){.related-grid{grid-template-columns:1fr 1fr;}}
@media(max-width:560px){.related-grid{grid-template-columns:1fr;}}
.related-card{
  border:1px solid var(--line); border-radius:12px; padding:18px 20px; background:var(--surface);
  font-size:14px; transition:border-color .15s ease;
}
.related-card:hover{border-color:var(--accent);}
.related-card b{display:block; margin-bottom:4px; font-size:15px;}
.related-card span{color:var(--muted); font-size:13px;}

.district-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:14px;}
@media(max-width:880px){.district-grid{grid-template-columns:1fr 1fr;}}
@media(max-width:560px){.district-grid{grid-template-columns:1fr;}}
