/* ==========================================================================
   North East Air Conditioning — landing page styles
   Mobile-first, conversion-focused
   ========================================================================== */

:root {
  /* Crimson + brass (default) */
  --primary: #B11226;
  --primary-deep: #7d0d1b;
  --primary-soft: #f7e6e7;
  --accent: #C9A24B;
  --accent-deep: #8e7228;
  --bg: #faf7f2;
  --surface: #ffffff;
  --ink: #1a1614;
  --ink-soft: #4a4540;
  --ink-muted: #837d76;
  --line: #e8e1d6;
  --shadow-sm: 0 1px 2px rgba(26,22,20,0.06), 0 1px 1px rgba(26,22,20,0.04);
  --shadow-md: 0 8px 24px -8px rgba(26,22,20,0.18), 0 4px 8px -4px rgba(26,22,20,0.08);
  --shadow-lg: 0 24px 48px -12px rgba(26,22,20,0.22), 0 8px 16px -8px rgba(26,22,20,0.1);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-xl: 24px;
}

/* Palette: Navy + copper */
[data-palette="navy"] {
  --primary: #1a3a5c;
  --primary-deep: #0f2742;
  --primary-soft: #e6ecf3;
  --accent: #C97B3F;
  --accent-deep: #8a4f23;
  --bg: #f7f5f1;
  --line: #e4ddd1;
}

/* Palette: Charcoal + gold */
[data-palette="charcoal"] {
  --primary: #1f1d1b;
  --primary-deep: #0c0b0a;
  --primary-soft: #efece6;
  --accent: #B8893A;
  --accent-deep: #7d5d22;
  --bg: #f5f1ea;
  --line: #e2dccd;
}

/* Palette: Burgundy + gold (richer) */
[data-palette="burgundy"] {
  --primary: #6b0f1a;
  --primary-deep: #410913;
  --primary-soft: #f2e1e3;
  --accent: #D4AF37;
  --accent-deep: #9b7e1e;
  --bg: #faf6ee;
  --line: #ebe2cf;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', Georgia, serif;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== NAV ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bricolage Grotesque', serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--primary);
  display: grid;
  place-items: center;
  color: white;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 2px 6px rgba(177,18,38,0.25);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text .sub { font-family: 'Manrope', sans-serif; font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-muted); margin-top: 2px; }

.nav-links { display: none; gap: 28px; font-size: 14px; font-weight: 500; color: var(--ink-soft); }
.nav-links a:hover { color: var(--primary); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-call {
  display: none;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}
.nav-call .ico { color: var(--primary); }

@media (min-width: 860px) {
  .nav-links { display: flex; }
  .nav-call { display: flex; }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  min-height: 48px;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 6px 16px -4px rgba(177,18,38,0.4), inset 0 1px 0 rgba(255,255,255,0.12);
}
.btn-primary:hover { background: var(--primary-deep); transform: translateY(-1px); box-shadow: 0 10px 24px -6px rgba(177,18,38,0.5); }
.btn-secondary {
  background: var(--surface);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line);
}
.btn-secondary:hover { box-shadow: inset 0 0 0 1px var(--ink); }
.btn-accent {
  background: var(--ink);
  color: var(--bg);
}
.btn-accent:hover { background: var(--primary); }
.btn-lg { padding: 18px 28px; font-size: 16px; min-height: 56px; }
.btn-sm { padding: 10px 16px; font-size: 13px; min-height: 40px; }

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: 56px 0 64px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, color-mix(in oklch, var(--accent) 14%, transparent), transparent 60%),
    radial-gradient(ellipse 80% 60% at 10% 90%, color-mix(in oklch, var(--primary) 8%, transparent), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px 6px 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
}
.hero h1 {
  font-size: clamp(38px, 7vw, 64px);
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--primary); }
.hero h1 .underline {
  position: relative;
  display: inline-block;
}
.hero h1 .underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.04em;
  height: 0.18em;
  background: var(--accent);
  opacity: 0.45;
  z-index: -1;
  border-radius: 2px;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 28px;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { color: var(--primary); flex-shrink: 0; }

/* Hero visual card */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 480px;
  width: 100%;
  justify-self: center;
  background: linear-gradient(155deg, var(--primary-deep), var(--primary));
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, transparent 0 22px, rgba(255,255,255,0.04) 22px 23px);
}
.hero-visual::after {
  content: "";
  position: absolute;
  bottom: -30%; right: -20%;
  width: 80%; aspect-ratio: 1;
  background: radial-gradient(circle, color-mix(in oklch, var(--accent) 50%, transparent), transparent 60%);
  filter: blur(8px);
}
.hero-visual .label {
  position: absolute;
  top: 24px; left: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-visual .ac-unit {
  position: absolute;
  inset: 50% 18% auto 18%;
  transform: translateY(-50%);
  aspect-ratio: 3.6/1;
  background: linear-gradient(180deg, #fafafa, #e8e6e0 60%, #d4d0c8);
  border-radius: 18px 18px 22px 22px;
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,0.5),
    inset 0 2px 0 rgba(255,255,255,0.6),
    inset 0 -8px 18px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  padding: 0 16px;
}
.hero-visual .ac-vent {
  width: 100%;
  height: 8px;
  background: repeating-linear-gradient(90deg, #1a1614 0 6px, transparent 6px 12px);
  border-radius: 2px;
  opacity: 0.7;
}
.hero-visual .ac-display {
  position: absolute;
  top: 14px; right: 18px;
  background: #1a1614;
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.1em;
}
.hero-visual .breeze {
  position: absolute;
  top: calc(50% + 30px);
  left: 30%; right: 30%;
  height: 30%;
  background:
    radial-gradient(ellipse at top, rgba(255,255,255,0.18), transparent 70%);
  filter: blur(6px);
}
.hero-visual .caption {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  color: white;
  font-family: 'Bricolage Grotesque', serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
}
.hero-visual .caption .big {
  font-size: 28px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-visual .caption .sm { color: rgba(255,255,255,0.65); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; }

@media (min-width: 920px) {
  .hero { padding: 80px 0 100px; }
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
  }
}

/* ========== TRUST BAR ========== */
.trustbar {
  background: var(--ink);
  color: var(--bg);
  padding: 22px 0;
}
.trustbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 32px;
  font-size: 13px;
  font-weight: 500;
}
.trustbar .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
}
.trustbar .pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* ========== SECTIONS ========== */
section { padding: 72px 0; }
.section-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 680px;
  margin-bottom: 40px;
}
.section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--primary);
}
.section-head h2 {
  font-size: clamp(30px, 5vw, 44px);
}
.section-head p {
  font-size: 17px;
  color: var(--ink-soft);
}

/* ========== SERVICES ========== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
}
.service-card h3 {
  font-size: 22px;
  font-family: 'Bricolage Grotesque', serif;
}
.service-card p { color: var(--ink-soft); font-size: 15px; }
.service-card .more {
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}

/* ========== WHY US ========== */
.whyus {
  background: var(--ink);
  color: var(--bg);
  border-radius: 0;
}
.whyus .section-eyebrow { color: var(--accent); }
.whyus .section-eyebrow::before { background: var(--accent); }
.whyus .section-head p { color: rgba(250,247,242,0.7); }

.whyus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.why-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 0 28px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.why-num {
  font-family: 'Bricolage Grotesque', serif;
  font-size: 44px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
}
.why-item h3 { font-size: 18px; color: var(--bg); }
.why-item p { color: rgba(250,247,242,0.65); font-size: 14px; }

@media (min-width: 720px) {
  .whyus-grid { grid-template-columns: repeat(2, 1fr); gap: 0 48px; }
}
@media (min-width: 1000px) {
  .whyus-grid { grid-template-columns: repeat(4, 1fr); }
  .why-item { border-top: 1px solid rgba(255,255,255,0.1); padding-right: 24px; }
}

/* ========== AREAS ========== */
.areas-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
.areas-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
}
.areas-list li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--ink-soft);
  font-weight: 500;
}
.areas-list li::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}
.areas-map {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  min-height: 320px;
  overflow: hidden;
}
.areas-map .map-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
}
.areas-map .map-title {
  font-family: 'Bricolage Grotesque', serif;
  font-size: 28px;
  margin-top: 4px;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.areas-map .map-shape {
  position: absolute;
  inset: auto 0 -10% 0;
  height: 70%;
  background:
    radial-gradient(circle at 60% 40%, color-mix(in oklch, var(--primary) 22%, transparent), transparent 50%),
    repeating-linear-gradient(45deg, var(--line) 0 1px, transparent 1px 14px);
  opacity: 0.5;
  mask: radial-gradient(ellipse at 50% 50%, black 40%, transparent 80%);
  -webkit-mask: radial-gradient(ellipse at 50% 50%, black 40%, transparent 80%);
}
.areas-map .pin {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px color-mix(in oklch, var(--primary) 20%, transparent);
}
.areas-map .pin::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(3.5); opacity: 0; }
}
.areas-map .pin.p1 { top: 55%; left: 38%; }
.areas-map .pin.p2 { top: 70%; left: 52%; animation-delay: 0.8s; }
.areas-map .pin.p3 { top: 62%; left: 65%; animation-delay: 1.6s; }

@media (min-width: 880px) {
  .areas-wrap { grid-template-columns: 1.1fr 1fr; gap: 56px; }
  .areas-list { grid-template-columns: repeat(2, 1fr); }
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: var(--primary-soft);
}
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.testi {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testi .stars {
  color: var(--accent);
  letter-spacing: 2px;
  font-size: 16px;
}
.testi .quote {
  font-family: 'Bricolage Grotesque', serif;
  font-size: 19px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.testi .person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.testi .avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 14px;
}
.testi .name { font-weight: 600; font-size: 14px; }
.testi .where { font-size: 12px; color: var(--ink-muted); }

@media (min-width: 760px) {
  .testi-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ========== CTA STRIP ========== */
.cta-strip {
  background: var(--primary);
  color: white;
  padding: 48px 0;
  text-align: center;
}
.cta-strip::before { background: linear-gradient(90deg, transparent, var(--accent), transparent); content:""; display:block; height:1px; margin-bottom: 32px; opacity: 0.4;}
.cta-strip h2 {
  font-size: clamp(28px, 4.5vw, 40px);
  margin-bottom: 12px;
}
.cta-strip p { color: rgba(255,255,255,0.85); margin-bottom: 24px; font-size: 17px; }
.cta-strip .btn-primary { background: white; color: var(--primary); box-shadow: 0 6px 16px -4px rgba(0,0,0,0.2); }
.cta-strip .btn-primary:hover { background: var(--bg); }
.cta-strip .btn-secondary { background: transparent; color: white; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.4); }
.cta-strip .btn-secondary:hover { background: rgba(255,255,255,0.1); box-shadow: inset 0 0 0 1px white; }
.cta-row { display: inline-flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ========== CONTACT ========== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info .info-block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info .info-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.info-block h4 { font-family: 'Manrope', sans-serif; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-muted); font-weight: 600; margin-bottom: 4px; }
.info-block .big-link { font-family: 'Bricolage Grotesque', serif; font-size: 26px; letter-spacing: -0.02em; color: var(--ink); font-weight: 600; }
.info-block .big-link:hover { color: var(--primary); }
.info-block p { font-size: 15px; color: var(--ink-soft); }

.form-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.form-card h3 { font-size: 24px; margin-bottom: 6px; }
.form-card .form-sub { color: var(--ink-soft); font-size: 14px; margin-bottom: 22px; }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg);
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--primary) 18%, transparent);
}
.field textarea { resize: vertical; min-height: 96px; }
.field .err { color: var(--primary); font-size: 12px; font-weight: 500; display: none; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: var(--primary); }
.field.is-invalid .err { display: block; }

.form-bottom {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-fineprint { font-size: 12px; color: var(--ink-muted); }
.form-success {
  display: none;
  padding: 28px;
  text-align: center;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.form-success.show { display: flex; }
.form-success .check {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: color-mix(in oklch, #22c55e 18%, transparent);
  color: #16a34a;
  display: grid;
  place-items: center;
}
.form-success h3 { color: var(--ink); }

@media (min-width: 880px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .field.full { grid-column: 1 / -1; }
  .contact-wrap { grid-template-columns: 0.85fr 1.15fr; gap: 56px; }
}

/* ========== FAQ ========== */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq summary {
  padding: 20px 24px;
  font-family: 'Bricolage Grotesque', serif;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  color: var(--primary);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 24px 22px; color: var(--ink-soft); font-size: 15px; }

/* ========== FOOTER ========== */
.footer {
  background: var(--ink);
  color: rgba(250,247,242,0.7);
  padding: 56px 0 28px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-brand .brand { color: white; }
.footer-brand .brand-text .sub { color: rgba(250,247,242,0.5); }
.footer-brand p { margin-top: 12px; max-width: 280px; }
.footer h5 { color: white; font-family: 'Manrope', sans-serif; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer ul a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: rgba(250,247,242,0.5);
}

@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; }
}

/* ========== STICKY MOBILE CALL BAR ========== */
.mobile-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 60;
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.05);
}
.mobile-bar .btn { width: 100%; padding: 14px 12px; min-height: 52px; }
@media (min-width: 860px) {
  .mobile-bar { display: none; }
  body { padding-bottom: 0 !important; }
}
body { padding-bottom: 80px; }

/* ========== TWEAKS HOOKS ========== */
.tweaks-hidden { display: none !important; }

/* ==========================================================================
   Inner-page styles (services, why-us, areas, contact, area/service pages)
   ========================================================================== */

/* Page-hero: smaller than home hero, image-led */
.page-hero {
  position: relative;
  padding: 56px 0 64px;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, color-mix(in oklch, var(--accent) 14%, transparent), transparent 60%),
    radial-gradient(ellipse 80% 60% at 10% 90%, color-mix(in oklch, var(--primary) 8%, transparent), transparent 60%);
  pointer-events: none;
}
.page-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.page-hero-eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 18px;
}
.page-hero h1 {
  font-size: clamp(32px, 5.5vw, 52px);
  margin-bottom: 18px;
}
.page-hero h1 .accent { color: var(--primary); }
.page-hero p.lead {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--ink-soft);
  max-width: 580px;
  margin-bottom: 24px;
}
.page-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-hero-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  max-width: 480px;
  width: 100%;
  justify-self: center;
  box-shadow: var(--shadow-lg);
  background: var(--ink);
}
.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-image .badge {
  position: absolute;
  top: 18px; left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,22,20,0.7);
  backdrop-filter: blur(6px);
  color: white;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.page-hero-image .badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
}

@media (min-width: 920px) {
  .page-hero { padding: 80px 0 88px; }
  .page-hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
  }
}

/* Page-hero variant: full-bleed background image */
.page-hero-bg {
  position: relative;
  min-height: 320px;
  padding: 72px 0;
  color: white;
  overflow: hidden;
  isolation: isolate;
}
.page-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: var(--bg-image);
  z-index: -2;
}
.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,22,20,0.55), rgba(26,22,20,0.78));
  z-index: -1;
}
.page-hero-bg h1 {
  font-size: clamp(34px, 6vw, 56px);
  max-width: 800px;
  margin-bottom: 12px;
}
.page-hero-bg h1 .accent { color: var(--accent); }
.page-hero-bg .lead {
  color: rgba(255,255,255,0.85);
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(16px, 2vw, 19px);
}

/* Content rows: alternating image + text */
.content-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 56px;
}
.content-row:last-child { margin-bottom: 0; }
.content-row .text h2 {
  font-size: clamp(26px, 4vw, 36px);
  margin-bottom: 14px;
}
.content-row .text p {
  color: var(--ink-soft);
  font-size: 16px;
  margin-bottom: 14px;
}
.content-row .text ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.content-row .text ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 15px;
}
.content-row .text ul li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary-soft);
  background-image: linear-gradient(135deg, transparent 0%, transparent 50%, var(--primary) 50%);
  flex-shrink: 0;
  margin-top: 3px;
  position: relative;
}
.content-row .image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--ink);
  box-shadow: var(--shadow-md);
}
.content-row .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 880px) {
  .content-row { grid-template-columns: 1fr 1fr; gap: 56px; }
  .content-row.reverse .image { order: 2; }
}

/* Feature list (used on service detail pages) */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 28px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.feature-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.feature-card p {
  color: var(--ink-soft);
  font-size: 14px;
}
.feature-card .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--primary);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
@media (min-width: 720px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Pricing strip */
.pricing-strip {
  background: var(--primary-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  margin: 32px 0;
}
.pricing-strip .price {
  font-family: 'Bricolage Grotesque', serif;
  font-size: 36px;
  letter-spacing: -0.02em;
  color: var(--primary);
  line-height: 1;
}
.pricing-strip .price-sub {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 4px;
}
.pricing-strip .price-cta { justify-self: start; }
@media (min-width: 720px) {
  .pricing-strip { grid-template-columns: 1fr auto; }
  .pricing-strip .price-cta { justify-self: end; }
}

/* Areas page: card grid */
.areas-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 12px;
}
.area-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.area-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.area-card .thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--ink);
}
.area-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.area-card .body { padding: 22px 24px 24px; }
.area-card .postcode {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 6px;
}
.area-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.area-card p {
  color: var(--ink-soft);
  font-size: 14px;
  margin-bottom: 14px;
}
.area-card .more {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}
@media (min-width: 720px) {
  .areas-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .areas-cards { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}

/* Breadcrumbs */
.crumbs {
  font-size: 13px;
  color: var(--ink-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.crumbs a { color: var(--ink-muted); }
.crumbs a:hover { color: var(--primary); }
.crumbs .sep { color: var(--line); }

/* Active nav state */
.nav-links a.active { color: var(--primary); }

