:root{
  --ink:#1C1A17;
  --ink-soft:#4A443B;
  --paper:#FBF8F3;
  --paper-dim:#F3EDE1;
  --gold:#C99A3E;
  --gold-light:#E4BE72;
  --bronze:#8B5E23;
  --bronze-dark:#6B4A1C;
  --pine:#3F4A45;
  --line:#E6DCC7;
  --white:#FFFFFF;
  --shadow: 0 12px 30px -14px rgba(28,26,23,0.28);
  --radius: 10px;
  --maxw: 1180px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth; scroll-padding-top:149px;}
@media (max-width:1080px){
  html{scroll-padding-top:114px;}
}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important;}
}

body{
  margin:0;
  font-family:'Work Sans', sans-serif;
  color:var(--ink);
  background:var(--paper);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}

h1,h2,h3,h4{
  font-family:'Zilla Slab', serif;
  color:var(--ink);
  margin:0 0 0.4em 0;
  line-height:1.15;
  font-weight:600;
}

p{margin:0 0 1em 0; color:var(--ink-soft);}
a{color:inherit;}
img{max-width:100%; display:block;}

.wrap{max-width:var(--maxw); margin:0 auto; padding:0 24px;}

section{padding:80px 0;}
@media (max-width:720px){ section{padding:52px 0;} }

.section-head{max-width:640px; margin-bottom:44px;}
.section-head p{font-size:18px;}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 26px;
  border-radius:6px;
  font-family:'Work Sans', sans-serif;
  font-weight:600;
  font-size:16px;
  text-decoration:none;
  border:2px solid transparent;
  cursor:pointer;
  transition:transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  line-height:1;
}
.btn:focus-visible{outline:3px solid var(--pine); outline-offset:2px;}
.btn-primary{
  background:linear-gradient(135deg, var(--gold-light), var(--gold));
  color:var(--ink);
  box-shadow:0 8px 20px -8px rgba(139,94,35,0.55);
}
.btn-primary:hover{transform:translateY(-2px); box-shadow:0 12px 24px -8px rgba(139,94,35,0.6);}
.btn-outline{
  background:transparent;
  border-color:var(--ink);
  color:var(--ink);
}
.btn-outline:hover{background:var(--ink); color:var(--paper);}
.btn-outline.on-dark{border-color:var(--paper); color:var(--paper);}
.btn-outline.on-dark:hover{background:var(--paper); color:var(--ink);}

/* Header */
header{
  position:sticky; top:0; z-index:50;
  background:rgba(251,248,243,0.92);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}
.nav-row{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
  gap:16px;
}
.brand{display:flex; align-items:center; gap:10px; text-decoration:none;}
.brand img{height:104px; width:auto;}
nav.primary-nav{display:flex; gap:20px; align-items:center;}
nav.primary-nav a{
  text-decoration:none; color:var(--ink-soft); font-weight:500; font-size:14.5px;
  transition:color 0.15s ease; white-space:nowrap;
}
nav.primary-nav a:hover{color:var(--bronze-dark);}
.header-actions{display:flex; align-items:center; gap:14px;}
.call-link{
  display:flex; align-items:center; gap:8px;
  font-weight:600; text-decoration:none; color:var(--ink);
  font-size:15px;
}
.call-link svg{flex-shrink:0;}
.menu-toggle{display:none; background:none; border:none; cursor:pointer; padding:6px; color:var(--ink);}
.menu-toggle:focus-visible{outline:3px solid var(--pine); outline-offset:2px;}

.mobile-nav{
  display:none;
  flex-direction:column;
  border-top:1px solid var(--line);
  background:var(--paper);
  max-height:0;
  overflow:hidden;
  transition:max-height 0.25s ease;
}
.mobile-nav.open{max-height:480px;}
.mobile-nav a{
  padding:16px 24px;
  text-decoration:none;
  color:var(--ink-soft);
  font-weight:600;
  border-bottom:1px solid var(--line);
}

@media (max-width:1080px){
  nav.primary-nav{display:none;}
  .header-actions .btn-primary{padding:10px 16px; font-size:14px;}
  .brand img{height:68px;}
  .menu-toggle{display:inline-flex;}
  .mobile-nav{display:flex;}
}

/* Hero (homepage) */
.hero{
  padding:64px 0 40px;
  overflow:hidden;
  background:
    radial-gradient(ellipse 900px 500px at 85% 15%, rgba(201,154,62,0.10), transparent 60%),
    radial-gradient(ellipse 700px 500px at 5% 90%, rgba(63,74,69,0.06), transparent 60%);
}
.hero .wrap{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:56px;
  align-items:center;
}
@media (max-width:900px){
  .hero .wrap{grid-template-columns:1fr; gap:40px;}
  .hero{padding:40px 0 24px;}
}
.hero-copy h1{font-size:clamp(34px,5vw,54px); max-width:15ch;}
.hero-tagline{
  font-family:'Work Sans',sans-serif; font-size:14.5px; font-weight:700;
  letter-spacing:0.04em; text-transform:uppercase; color:var(--bronze-dark);
  margin:0 0 10px; display:flex; align-items:center; gap:10px;
}
.hero-tagline::before{content:''; width:26px; height:2px; background:var(--gold); display:inline-block;}
.hero-copy .lede{font-size:19px; max-width:46ch; color:var(--ink-soft);}
.hero-ctas{display:flex; flex-wrap:wrap; gap:14px; margin:28px 0 32px;}
.trust-chips{display:flex; flex-wrap:wrap; gap:10px;}
.chip{
  display:inline-flex; align-items:center; gap:6px;
  background:var(--white);
  border:1px solid var(--line);
  padding:8px 14px;
  border-radius:999px;
  font-size:13.5px;
  font-weight:600;
  color:var(--ink-soft);
  text-decoration:none;
}
.chip svg{flex-shrink:0; color:var(--bronze);}

/* Paint fan graphic */
.fan-wrap{
  position:relative;
  height:420px;
  display:flex; align-items:flex-end; justify-content:center;
}
.fan-chip{
  position:absolute;
  bottom:20px;
  width:88px; height:280px;
  border-radius:14px;
  box-shadow:var(--shadow);
  transform-origin:bottom center;
  border:1px solid rgba(255,255,255,0.35);
}
.fan-chip span{
  position:absolute; bottom:14px; left:50%; transform:translateX(-50%);
  font-size:10px; letter-spacing:0.01em; color:rgba(28,26,23,0.6);
  font-weight:600; white-space:nowrap; text-align:center; line-height:1.5;
}
.fan-chip span b{display:block; font-size:10.5px; font-weight:700;}
.fan-1{background:#E0CFB0; transform:rotate(-34deg); left:calc(50% - 190px);}
.fan-2{background:#D2B084; transform:rotate(-17deg); left:calc(50% - 120px);}
.fan-3{background:#BC934D; transform:rotate(0deg); left:calc(50% - 44px);}
.fan-4{background:#906A3A; transform:rotate(17deg); left:calc(50% + 20px); color:var(--paper);}
.fan-4 span{color:rgba(251,248,243,0.85);}
.fan-5{background:#3D5541; transform:rotate(34deg); left:calc(50% + 90px); color:var(--paper);}
.fan-5 span{color:rgba(251,248,243,0.85);}

@media (prefers-reduced-motion: no-preference){
  .fan-chip{animation:fanOpen 0.9s cubic-bezier(.2,.8,.2,1) both;}
  .fan-1{animation-delay:0.02s;}
  .fan-2{animation-delay:0.10s;}
  .fan-3{animation-delay:0.18s;}
  .fan-4{animation-delay:0.26s;}
  .fan-5{animation-delay:0.34s;}
}
@keyframes fanOpen{
  from{ transform:rotate(0deg) scaleY(0.85); opacity:0; }
}
.fan-logo{
  position:relative; z-index:2;
  background:var(--white);
  border-radius:999px;
  padding:16px;
  box-shadow:var(--shadow);
  width:136px; height:136px;
  display:flex; align-items:center; justify-content:center;
}
.fan-logo img{width:100%; height:100%; object-fit:contain;}
@media (max-width:900px){
  .fan-wrap{height:300px;}
  .fan-chip{width:66px; height:210px;}
  .fan-1{left:calc(50% - 140px);}
  .fan-2{left:calc(50% - 88px);}
  .fan-3{left:calc(50% - 33px);}
  .fan-4{left:calc(50% + 15px);}
  .fan-5{left:calc(50% + 65px);}
}

/* Before/After slider */
.before-after-slider{
  position:relative; aspect-ratio:4/3; border-radius:var(--radius); overflow:hidden;
  grid-column:span 2; grid-row:span 2; border:1px solid var(--line); user-select:none;
}
@media (max-width:900px){ .before-after-slider{grid-column:span 2;} }
@media (max-width:600px){ .before-after-slider{grid-column:span 1;} }
.ba-panel{
  position:absolute; inset:0; display:flex; align-items:flex-end; justify-content:flex-start;
}
.ba-panel img{width:100%; height:100%; object-fit:cover; display:block;}
.ba-after-panel{background:var(--paper-dim);}
.ba-before-panel{background:var(--paper-dim);}
.ba-corner-label{
  position:relative; z-index:2; margin:14px;
  background:rgba(28,26,23,0.75); color:#fff; font-size:11.5px; font-weight:700;
  letter-spacing:0.04em; padding:5px 12px; border-radius:6px;
}
.ba-before{position:absolute; inset:0; overflow:hidden; clip-path:inset(0 50% 0 0);}
.ba-handle{
  position:absolute; top:0; bottom:0; left:50%; width:0; transform:translateX(-50%);
  pointer-events:none;
}
.ba-handle::before{
  content:''; position:absolute; top:0; bottom:0; left:0; width:3px; background:#fff;
  box-shadow:0 0 8px rgba(0,0,0,0.3);
}
.ba-handle-grip{
  position:absolute; top:50%; left:0; transform:translate(-50%,-50%);
  width:40px; height:40px; border-radius:50%; background:#fff;
  display:flex; align-items:center; justify-content:center; box-shadow:0 2px 10px rgba(0,0,0,0.3);
  color:var(--ink);
}
.ba-range{
  position:absolute; inset:0; width:100%; height:100%; margin:0; opacity:0;
  cursor:ew-resize; -webkit-appearance:none; appearance:none;
}
.ba-badge{
  position:absolute; bottom:12px; left:50%; transform:translateX(-50%);
  background:rgba(28,26,23,0.75); color:#fff; font-size:11.5px; font-weight:600;
  padding:5px 12px; border-radius:999px; pointer-events:none; white-space:nowrap;
}

/* Projects map */
.map-layout{
  display:flex; flex-direction:column; gap:36px;
}
.map-panel{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  padding:18px; box-shadow:var(--shadow);
}
.leaflet-map-container{
  width:100%; height:520px; border-radius:8px; overflow:hidden;
  background:var(--paper-dim);
}
@media (max-width:600px){ .leaflet-map-container{height:400px;} }

/* Teardrop-style pins: outer element rotated into a teardrop, inner content counter-rotated upright */
.leaflet-town-pin{ position:relative; }
.leaflet-town-pin .pin-drop{
  width:30px; height:30px;
  border-radius:50% 50% 50% 0;
  transform:rotate(-45deg);
  box-shadow:0 3px 8px rgba(0,0,0,0.45), 0 0 0 2px rgba(255,255,255,0.9);
  transition:transform 0.15s ease, box-shadow 0.15s ease;
}
.leaflet-town-pin:hover .pin-drop{ transform:rotate(-45deg) scale(1.15); box-shadow:0 5px 12px rgba(0,0,0,0.5), 0 0 0 2px #fff; }
.leaflet-town-pin .pin-num{
  position:absolute; top:0; left:0; width:30px; height:30px;
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:11.5px; font-weight:700; font-family:'Work Sans', sans-serif;
  text-shadow:0 1px 2px rgba(0,0,0,0.35);
}

.map-caption{font-size:12.5px; color:var(--ink-soft); text-align:center; margin:14px 0 0;}

/* Legend as a card grid instead of a cramped scrollbox */
.map-legend-grid{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:20px;
}
@media (max-width:960px){ .map-legend-grid{grid-template-columns:repeat(2, 1fr);} }
@media (max-width:640px){ .map-legend-grid{grid-template-columns:1fr;} }
.legend-group{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  padding:20px 20px 16px;
}
.legend-group h4{
  font-family:'Zilla Slab',serif; font-size:16px; font-weight:700;
  color:var(--ink); display:flex; align-items:center; gap:9px; margin-bottom:14px;
  padding-bottom:12px; border-bottom:1px solid var(--line);
}
.legend-dot{width:11px; height:11px; border-radius:50%; display:inline-block; flex-shrink:0;}
.legend-chips{display:flex; flex-wrap:wrap; gap:8px;}
.legend-chip{
  display:inline-flex; align-items:center; gap:6px;
  background:var(--paper-dim); border:1px solid transparent;
  padding:6px 10px 6px 6px; border-radius:999px; font-size:13px; color:var(--ink-soft); font-weight:600;
  cursor:pointer; transition:background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.legend-chip:hover{background:var(--white); border-color:var(--gold); transform:translateY(-1px);}
.legend-num{
  width:19px; height:19px; border-radius:50%; color:#fff; font-size:10px; font-weight:700;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.job-count{
  font-size:10.5px; font-weight:700; color:var(--bronze-dark);
  background:var(--white); padding:1px 7px; border-radius:999px;
}
.legend-chip:hover .job-count{background:var(--paper-dim);}

/* Mini quote form (hero) */
.mini-quote-card{
  margin-top:26px;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px 20px;
  max-width:640px;
}
.mini-quote-label{
  font-size:12.5px; font-weight:700; text-transform:uppercase; letter-spacing:0.04em;
  color:var(--bronze-dark); margin-bottom:12px;
}
.mini-quote-form{
  display:flex; flex-wrap:wrap; gap:10px;
}
.mini-quote-form input, .mini-quote-form select{
  flex:1 1 160px;
  min-width:140px;
  font-family:'Work Sans',sans-serif;
  font-size:14.5px;
  padding:11px 12px;
  border:1.5px solid var(--line);
  border-radius:7px;
  background:var(--paper);
  color:var(--ink);
}
.mini-quote-form select{flex:1 1 200px;}
.mini-quote-form input:focus, .mini-quote-form select:focus{
  outline:none; border-color:var(--gold); box-shadow:0 0 0 3px rgba(201,154,62,0.25);
}
.mini-quote-form button{flex:0 0 auto; white-space:nowrap;}
@media (max-width:520px){
  .mini-quote-form input, .mini-quote-form select, .mini-quote-form button{flex:1 1 100%;}
}

/* Page hero (services / town pages) */
.page-hero{
  padding:56px 0 48px;
  background:
    radial-gradient(ellipse 800px 400px at 90% 0%, rgba(201,154,62,0.12), transparent 60%),
    var(--paper-dim);
  border-bottom:1px solid var(--line);
}
.breadcrumb{font-size:13px; color:var(--ink-soft); margin-bottom:14px;}
.breadcrumb a{color:var(--bronze-dark); text-decoration:none; font-weight:600;}
.breadcrumb a:hover{text-decoration:underline;}
.page-hero h1{font-size:clamp(28px,4.2vw,42px); max-width:22ch;}
.page-hero .lede{font-size:17.5px; max-width:60ch;}
.page-hero .hero-ctas{margin-top:22px; margin-bottom:20px;}

/* Brush divider + differentiators */
.brush-divider{line-height:0; margin-top:-1px;}
.brush-divider svg{width:100%; height:44px; display:block;}
.diff-strip{background:var(--ink); padding:34px 0;}
.diff-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:24px;
}
@media (max-width:900px){ .diff-grid{grid-template-columns:repeat(2,1fr);} }
@media (max-width:560px){ .diff-grid{grid-template-columns:1fr;} }
.diff-item{display:flex; gap:14px; align-items:flex-start; color:var(--paper);}
.diff-item svg{color:var(--gold-light); flex-shrink:0; margin-top:2px;}
.diff-item strong{display:block; font-size:14.5px; margin-bottom:3px; color:var(--paper);}
.diff-item span{font-size:13px; color:#B9B2A2; line-height:1.4;}

/* Card hover depth */
.service-card, .process-step, .gallery-card, .town-card{
  transition:transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.service-card:hover, .gallery-card:hover, .town-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow);
  border-color:transparent;
}
.process-step:hover{border-color:var(--gold);}

/* Services grid */
.services-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}
@media (max-width:900px){ .services-grid{grid-template-columns:repeat(2, 1fr);} }
@media (max-width:600px){ .services-grid{grid-template-columns:1fr;} }

.service-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  display:flex; flex-direction:column;
  text-decoration:none;
}
.service-strip{height:6px; width:100%;}
.service-body{padding:24px;}
.service-icon{
  width:44px; height:44px;
  border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:16px;
  background:var(--paper-dim);
  color:var(--bronze-dark);
}
.service-body h3{font-size:19px; margin-bottom:8px; color:var(--ink);}
.service-body p{font-size:15px; margin-bottom:0;}

/* Process */
.process-list{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
}
@media (max-width:960px){ .process-list{grid-template-columns:repeat(2,1fr);} }
@media (max-width:560px){ .process-list{grid-template-columns:1fr;} }
.process-step{
  position:relative;
  padding:28px 20px 22px;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
}
.step-num{
  font-family:'Zilla Slab', serif;
  font-size:34px;
  font-weight:700;
  color:var(--gold);
  display:block;
  margin-bottom:10px;
}
.process-step h3{font-size:17px; margin-bottom:6px;}
.process-step p{font-size:14.5px; margin-bottom:0;}

/* Gallery */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
@media (max-width:900px){ .gallery-grid{grid-template-columns:repeat(2,1fr);} }
@media (max-width:600px){ .gallery-grid{grid-template-columns:1fr;} }
.gallery-card{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  background:var(--white);
}
.gallery-card.real{grid-column:span 2; grid-row:span 2;}
@media (max-width:900px){ .gallery-card.real{grid-column:span 2;} }
@media (max-width:600px){ .gallery-card.real{grid-column:span 1;} }
.gallery-card img{width:100%; height:100%; object-fit:cover; aspect-ratio:4/3;}
.gallery-card.real img{aspect-ratio:16/11;}
.gallery-caption{padding:14px 16px;}
.gallery-caption .tag{
  display:inline-block; font-size:11.5px; font-weight:700; letter-spacing:0.02em;
  background:var(--paper-dim); color:var(--bronze-dark); padding:3px 9px; border-radius:5px;
  margin-bottom:8px;
}
.gallery-caption h4{font-family:'Work Sans',sans-serif; font-size:15px; font-weight:600; margin:0; color:var(--ink);}
.gallery-placeholder{
  aspect-ratio:4/3;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:10px;
  background:
    repeating-linear-gradient(135deg, var(--paper-dim) 0 14px, #EEE4CE 14px 28px);
  color:var(--bronze-dark);
}
.gallery-placeholder .plus{
  width:38px; height:38px; border-radius:50%;
  border:2px dashed var(--bronze);
  display:flex; align-items:center; justify-content:center;
  font-size:20px; font-weight:700;
}
.gallery-placeholder span{font-size:13px; font-weight:600;}

/* About */
.about-wrap{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:56px;
  align-items:start;
}
@media (max-width:900px){ .about-wrap{grid-template-columns:1fr;} }
.stat-grid{
  display:grid; grid-template-columns:repeat(2,1fr); gap:16px;
}
@media (min-width:701px){ .stat-grid{grid-template-columns:repeat(5,1fr);} }
@media (max-width:700px) and (min-width:521px){ .stat-grid{grid-template-columns:repeat(3,1fr);} }
.stat-card{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  padding:20px;
}
.stat-card .num{font-family:'Zilla Slab',serif; font-size:30px; font-weight:700; color:var(--bronze-dark); display:block;}
.stat-card .label{font-size:13.5px; color:var(--ink-soft); font-weight:500;}

/* Testimonials */
.dark-section{background:var(--ink); color:var(--paper);}
.dark-section h2{color:var(--paper);}
.dark-section .section-head p{color:#C9C3B6;}
.testi-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px;
}
@media (max-width:900px){ .testi-grid{grid-template-columns:1fr;} }
.testi-card{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:var(--radius);
  padding:26px;
}
.testi-card p{color:#E7E2D6; font-size:16px;}
.testi-name{display:flex; align-items:center; gap:12px; margin-top:18px;}
.testi-avatar{
  width:38px; height:38px; border-radius:50%;
  background:linear-gradient(135deg,var(--gold-light),var(--bronze));
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:14px; color:var(--ink);
}
.testi-avatar svg{width:100%; height:100%;}
.testi-name .who{font-size:14px; font-weight:600; color:var(--paper);}
.testi-name .where{font-size:12.5px; color:#B3AC9C;}

/* Google badge */
.google-badge{
  display:inline-flex; align-items:center; gap:12px; background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.14); border-radius:10px; padding:12px 18px;
  text-decoration:none; margin-top:8px;
}
.google-badge .g-name{display:block; font-weight:700; color:var(--paper); font-size:15px;}
.google-badge .g-rating{display:block; font-size:13.5px; color:#C9C3B6;}
.google-badge .g-stars{color:var(--gold-light); letter-spacing:1px;}

/* Service area chips / county accordion */
.area-chips{display:flex; flex-wrap:wrap; gap:10px;}
.area-chip{
  background:var(--white); border:1px solid var(--line);
  padding:10px 18px; border-radius:999px; font-weight:600; font-size:14.5px;
  text-decoration:none; color:var(--ink);
}
.area-chip.plus{background:var(--pine); color:var(--paper); border-color:var(--pine);}
.county-list{margin-top:28px; max-width:900px;}
.county-item{border-bottom:1px solid var(--line);}
.county-q{
  width:100%; text-align:left; background:none; border:none; cursor:pointer;
  padding:16px 0; display:flex; justify-content:space-between; align-items:center; gap:16px;
  font-family:'Zilla Slab',serif; font-size:17px; font-weight:600; color:var(--ink);
}
.county-q:focus-visible{outline:3px solid var(--pine); outline-offset:2px;}
.county-item[open] .faq-icon{transform:rotate(45deg);}
.county-towns{padding:0 0 18px 0; margin:0; font-size:14.5px; color:var(--ink-soft); line-height:1.9;}
.county-towns a{color:var(--bronze-dark); text-decoration:none; font-weight:600;}
.county-towns a:hover{text-decoration:underline;}
.county-towns .sep{color:var(--line); margin:0 2px;}

/* FAQ */
.faq-list{max-width:760px;}
.faq-item{border-bottom:1px solid var(--line);}
.faq-q{
  width:100%; text-align:left; background:none; border:none; cursor:pointer;
  padding:20px 0; display:flex; justify-content:space-between; align-items:center; gap:16px;
  font-family:'Zilla Slab',serif; font-size:18px; font-weight:600; color:var(--ink);
}
.faq-q:focus-visible{outline:3px solid var(--pine); outline-offset:2px;}
.faq-icon{flex-shrink:0; transition:transform 0.2s ease; color:var(--bronze);}
.faq-item[open] .faq-icon{transform:rotate(45deg);}
.faq-a{padding:0 0 20px 0; margin:0;}
details > summary{list-style:none;}
details > summary::-webkit-details-marker{display:none;}

/* Quote form */
.quote-section{background:var(--paper-dim);}
.quote-wrap{
  display:grid; grid-template-columns:0.85fr 1.15fr; gap:48px; align-items:start;
}
@media (max-width:900px){ .quote-wrap{grid-template-columns:1fr;} }
.quote-info .info-row{display:flex; gap:12px; align-items:flex-start; margin-bottom:20px;}
.quote-info .info-row svg{color:var(--bronze-dark); flex-shrink:0; margin-top:2px;}
.quote-info .info-row div strong{display:block; font-size:15px; margin-bottom:2px;}
.quote-info .info-row div span{font-size:14.5px; color:var(--ink-soft);}

form.quote-form{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  padding:32px;
  display:grid; gap:18px;
}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:18px;}
@media (max-width:560px){ .form-row{grid-template-columns:1fr;} }
label{display:block; font-size:14px; font-weight:600; margin-bottom:6px; color:var(--ink);}
input, select, textarea{
  width:100%;
  font-family:'Work Sans',sans-serif;
  font-size:15px;
  padding:12px 14px;
  border:1.5px solid var(--line);
  border-radius:7px;
  background:var(--paper);
  color:var(--ink);
}
input:focus, select:focus, textarea:focus{
  outline:none; border-color:var(--gold); box-shadow:0 0 0 3px rgba(201,154,62,0.25);
}
textarea{resize:vertical; min-height:100px;}
.form-note{font-size:13px; color:var(--ink-soft); margin-top:-4px;}
#form-status{font-size:14.5px; font-weight:600; margin-top:6px; min-height:1.2em;}

/* Footer */
footer{background:var(--bronze-dark); color:#F1E7D4; padding:56px 0 28px;}
.footer-grid{
  display:grid; grid-template-columns:1.3fr 1fr 1fr 1fr; gap:36px;
}
@media (max-width:800px){ .footer-grid{grid-template-columns:1fr 1fr;} }
@media (max-width:520px){ .footer-grid{grid-template-columns:1fr;} }
footer h4{color:#F6EFDF; font-family:'Work Sans',sans-serif; font-size:14px; letter-spacing:0.02em; margin-bottom:14px;}
footer .foot-brand{display:flex; align-items:center; gap:10px; margin-bottom:14px;}
footer .foot-brand img{height:40px; background:var(--paper); border-radius:8px; padding:4px;}
footer .foot-tagline{
  font-weight:700; font-style:italic; color:var(--gold-light);
  font-size:13.5px; margin-bottom:10px;
}
footer p, footer a, footer li{color:#DDD0B4; font-size:14px;}
footer ul{list-style:none; padding:0; margin:0; display:grid; gap:9px;}
footer a{text-decoration:none;}
footer a:hover{color:var(--gold-light);}
.foot-bottom{
  border-top:1px solid rgba(255,255,255,0.15);
  margin-top:40px; padding-top:20px;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  font-size:13px; color:#BFAF8C;
}

/* Sticky mobile bar */
.mobile-bar{
  display:none;
  position:fixed; bottom:0; left:0; right:0; z-index:60;
  background:var(--white);
  border-top:1px solid var(--line);
  box-shadow:0 -8px 20px -12px rgba(0,0,0,0.25);
  padding:10px 14px;
  gap:10px;
}
@media (max-width:720px){
  .mobile-bar{display:flex;}
  body{padding-bottom:74px;}
}
.mobile-bar .btn{flex:1; padding:12px; font-size:14.5px;}

/* Town/service link cards used on hub pages */
.link-card-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:14px;}
@media (max-width:900px){ .link-card-grid{grid-template-columns:repeat(3,1fr);} }
@media (max-width:640px){ .link-card-grid{grid-template-columns:repeat(2,1fr);} }
.link-card{
  display:block; background:var(--white); border:1px solid var(--line); border-radius:8px;
  padding:14px 16px; text-decoration:none; color:var(--ink); font-weight:600; font-size:14.5px;
  transition:transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.link-card:hover{transform:translateY(-2px); box-shadow:var(--shadow); border-color:transparent;}

.visually-hidden{
  position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap;
}

.skip-link{
  position:absolute; left:-9999px; top:0; z-index:200;
  background:var(--ink); color:var(--paper); padding:12px 20px;
  font-weight:600; text-decoration:none; border-radius:0 0 8px 0;
}
.skip-link:focus{left:0;}

.back-to-top{
  position:fixed; right:20px; bottom:88px; z-index:55;
  width:46px; height:46px; border-radius:50%;
  background:var(--ink); color:var(--paper);
  display:flex; align-items:center; justify-content:center;
  border:none; cursor:pointer; box-shadow:0 6px 16px rgba(0,0,0,0.25);
  opacity:0; visibility:hidden; transform:translateY(10px);
  transition:opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.back-to-top.visible{opacity:1; visibility:visible; transform:translateY(0);}
.back-to-top:hover{background:var(--bronze-dark);}
.back-to-top:focus-visible{outline:3px solid var(--gold); outline-offset:2px;}
@media (max-width:720px){ .back-to-top{bottom:84px; right:16px;} }
