/* =====================================================================
   DRST Trading — Forged Architectural
   Design system v1. All visual decisions are tokenised here.
   ===================================================================== */

/* -------- 1. Reset + base -------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Karla', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--graphite);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; border: 0; background: none; }

ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, h5, h6, p { margin: 0; }

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* -------- 2. Design tokens -------- */
:root {
  --anvil:        #0E0F12;
  --iron:         #1F2227;
  --graphite:     #2A2D33;
  --concrete:     #6E7178;
  --hairline:     #DAD9D6;
  --chalk:        #EFEEE9;
  --bone:         #F7F5F0;
  --forge:        #F5C518;
  --forge-deep:   #D9A800;
  --forge-soft:   #FDF4D3;
  --verified:     #0F766E;

  /* layout */
  --container: 1280px;
  --gutter: 1.25rem;          /* 20px */
  --gutter-md: 1.5rem;        /* 24px */
  --gutter-lg: 2.5rem;        /* 40px */

  /* radii */
  --r-sm: 6px;
  --r-md: 8px;
  --r-lg: 12px;
}

/* -------- 3. Typography classes -------- */
.eyebrow {
  font-family: 'Karla', sans-serif;
  font-size: 0.8125rem;     /* 13px */
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forge);
}

.section-marker {
  font-family: 'Karla', sans-serif;
  font-size: 0.75rem;       /* 12px */
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--concrete);
}

.display-h1 {
  font-family: 'Antonio', Impact, sans-serif;
  font-size: clamp(2.75rem, 9vw, 7rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
  color: var(--anvil);
}

.page-h1 {
  font-family: 'Antonio', Impact, sans-serif;
  font-size: clamp(2.25rem, 6vw, 4.25rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.02;
  color: var(--anvil);
}

.h2 {
  font-family: 'Karla', sans-serif;
  font-size: clamp(1.6rem, 3.4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--anvil);
}

.h3 {
  font-family: 'Karla', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--anvil);
  line-height: 1.3;
}

.lead {
  font-family: 'Karla', sans-serif;
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  line-height: 1.6;
  color: var(--graphite);
}

.body { color: var(--graphite); line-height: 1.65; }
.small { font-size: 0.875rem; color: var(--concrete); }

.tnum { font-variant-numeric: tabular-nums; }

/* On-dark variants */
.on-dark { color: var(--bone); }
.on-dark .lead, .on-dark .body { color: rgba(247,245,240,0.82); }
.on-dark .section-marker { color: rgba(247,245,240,0.65); }

/* -------- 4. Layout -------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
@media (min-width: 640px)  { .container { padding-inline: var(--gutter-md); } }
@media (min-width: 1024px) { .container { padding-inline: var(--gutter-lg); } }

.section { padding-block: 5rem; }
@media (min-width: 768px) { .section { padding-block: 7rem; } }

.section-tight { padding-block: 2.5rem; }
@media (min-width: 768px) { .section-tight { padding-block: 3.5rem; } }

.grid { display: grid; gap: 2rem; }
.grid-12 { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 1024px) {
  .grid-12 { grid-template-columns: repeat(12, 1fr); }
}
.col-5  { grid-column: span 1; }
.col-7  { grid-column: span 1; }
.col-8  { grid-column: span 1; }
.col-4  { grid-column: span 1; }
@media (min-width: 1024px) {
  .col-5 { grid-column: span 5; }
  .col-7 { grid-column: span 7; }
  .col-8 { grid-column: span 8; }
  .col-4 { grid-column: span 4; }
}

/* -------- 5. Blueprint texture (signature) -------- */
.bg-anvil {
  background-color: var(--anvil);
  color: var(--bone);
}
.bg-blueprint {
  background-color: var(--anvil);
  color: var(--bone);
  background-image: radial-gradient(circle, rgba(247, 245, 240, 0.10) 1px, transparent 1px);
  background-size: 24px 24px;
}
.bg-chalk { background-color: var(--chalk); }

/* -------- 6. Skip link + accessibility -------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1.25rem;
  background: var(--anvil);
  color: var(--bone);
  font-weight: 600;
}
.skip-link:focus { left: 1rem; top: 1rem; }

:focus-visible {
  outline: 2px solid var(--forge);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* -------- 7. Header -------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 245, 240, 0.94);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--hairline);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
  gap: 2rem;
}
@media (min-width: 768px) { .site-header__inner { height: 5rem; } }

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Antonio', sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 1.375rem;
  color: var(--anvil);
  text-transform: uppercase;
  line-height: 1;
}
.brand__dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--forge);
  margin-top: 0.1em;
}
.brand__sub {
  font-family: 'Karla', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--concrete);
  text-transform: uppercase;
  margin-left: 0.25rem;
}

.primary-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}
.primary-nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--graphite);
  transition: color 0.2s;
  position: relative;
}
.primary-nav a:hover, .primary-nav a[aria-current="page"] { color: var(--anvil); }
.primary-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1.65rem;
  height: 2px;
  background: var(--forge);
}
@media (min-width: 1024px) { .primary-nav { display: flex; } }

/* Services dropdown */
.has-dropdown { position: relative; }
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--graphite);
}
.dropdown-toggle svg { width: 0.85rem; height: 0.85rem; }
.dropdown-panel {
  position: absolute;
  top: calc(100% + 1.25rem);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--bone);
  border: 1px solid var(--hairline);
  border-top: 2px solid var(--forge);
  border-radius: 0 0 var(--r-md) var(--r-md);
  padding: 0.5rem;
  min-width: 17rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s, transform 0.18s, visibility 0s 0.18s;
  box-shadow: 0 18px 40px -20px rgba(14, 15, 18, 0.18);
}
.has-dropdown:hover .dropdown-panel,
.has-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.18s, transform 0.18s, visibility 0s;
}
.dropdown-panel a {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.7rem 0.9rem;
  border-radius: var(--r-sm);
  color: var(--graphite);
  transition: background 0.15s, color 0.15s;
}
.dropdown-panel a:hover { background: var(--chalk); color: var(--anvil); }
.dropdown-panel a .num {
  font-family: 'Antonio', sans-serif;
  font-size: 0.75rem;
  color: var(--forge);
  font-variant-numeric: tabular-nums;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.header-phone {
  display: none;
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--anvil);
  font-variant-numeric: tabular-nums;
  align-items: center;
  gap: 0.5rem;
}
.header-phone svg { width: 1rem; height: 1rem; color: var(--forge); }
@media (min-width: 768px) { .header-phone { display: inline-flex; } }

/* Hamburger */
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--hairline);
  border-radius: var(--r-sm);
  color: var(--anvil);
}
.menu-toggle svg { width: 22px; height: 22px; }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

/* Mobile menu */
.mobile-menu {
  display: none;
  border-top: 1px solid var(--hairline);
  background: var(--bone);
}
.mobile-menu.is-open { display: block; }
.mobile-menu__inner { padding: 1.25rem 0 1.5rem; }
.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 1rem;
  color: var(--anvil);
  font-weight: 500;
}
.mobile-menu .mm-section {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--concrete);
  padding: 1.25rem 0 0.35rem;
  font-weight: 600;
}
.mobile-menu .mm-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding-top: 1.25rem;
}

/* -------- 8. Hero -------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--anvil);
  background-image: radial-gradient(circle, rgba(247, 245, 240, 0.07) 1px, transparent 1px);
  background-size: 26px 26px;
  color: var(--bone);
  border-bottom: 1px solid rgba(245, 197, 24, 0.45);
}
.hero::after {
  /* warm corner glow — heated metal cue */
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at top right, rgba(245, 197, 24,0.22), transparent 60%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding-block: 5rem 5rem;
}
@media (min-width: 768px) { .hero__inner { padding-block: 7rem 7rem; } }
@media (min-width: 1024px) { .hero__inner { padding-block: 9rem 8rem; } }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--forge);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero__eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--forge);
  display: inline-block;
}

.hero h1 {
  margin-top: 1.5rem;
  font-family: 'Antonio', Impact, sans-serif;
  font-size: clamp(2.75rem, 8.5vw, 7rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.012em;
  line-height: 0.94;
  color: var(--bone);
}
.hero h1 .forge-amp { color: var(--forge); font-style: normal; }

.hero__lead {
  margin-top: 1.75rem;
  max-width: 36rem;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.55;
  color: rgba(247,245,240,0.82);
}

.hero__ctas {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Hero schematic decoration (right side, desktop only) */
.hero__schematic {
  display: none;
}
@media (min-width: 1024px) {
  .hero__schematic {
    display: block;
    position: absolute;
    right: -2rem;
    bottom: -2rem;
    width: 30rem;
    max-width: 38vw;
    opacity: 0.65;
    color: rgba(245, 197, 24, 0.55);
    pointer-events: none;
  }
}

/* Sub-page hero (smaller) */
.subhero {
  background: var(--chalk);
  border-bottom: 1px solid var(--hairline);
  padding-block: 3rem 3rem;
}
@media (min-width: 768px) { .subhero { padding-block: 4.5rem 4.5rem; } }

.subhero__breadcrumb {
  font-size: 0.8125rem;
  color: var(--concrete);
  letter-spacing: 0.06em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.subhero__breadcrumb a { color: var(--graphite); }
.subhero__breadcrumb a:hover { color: var(--forge); }
.subhero__breadcrumb .sep { color: var(--hairline); }

.subhero__title {
  margin-top: 1.5rem;
  font-family: 'Antonio', Impact, sans-serif;
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.02;
  color: var(--anvil);
}
.subhero__lead {
  margin-top: 1.25rem;
  max-width: 42rem;
  font-size: clamp(1.0625rem, 1.5vw, 1.2rem);
  line-height: 1.6;
  color: var(--graphite);
}

/* -------- 9. Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0.85rem 1.6rem;
  font-family: 'Karla', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--forge);
  color: var(--anvil);
}
.btn-primary:hover { background: var(--forge-deep); color: var(--anvil); }

.btn-outline-dark {
  background: transparent;
  color: var(--anvil);
  border-color: var(--anvil);
}
.btn-outline-dark:hover { background: var(--anvil); color: var(--bone); }

.btn-outline-light {
  background: transparent;
  color: var(--bone);
  border-color: rgba(247,245,240,0.55);
}
.btn-outline-light:hover {
  background: rgba(247,245,240,0.08);
  border-color: var(--bone);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Karla', sans-serif;
  font-weight: 600;
  color: var(--forge);
  transition: gap 0.2s, color 0.2s;
}
.btn-link:hover { color: var(--forge-deep); gap: 0.7rem; }
.btn-link .arrow { transition: transform 0.2s; }

.btn-block { width: 100%; }

/* -------- 10. Trust strip -------- */
.trust-strip {
  background-color: var(--anvil);
  color: var(--bone);
  background-image: radial-gradient(circle, rgba(247, 245, 240, 0.10) 1px, transparent 1px);
  background-size: 24px 24px;
  border-top: 1px solid rgba(245, 197, 24, 0.45);
  border-bottom: 1px solid rgba(245, 197, 24, 0.45);
}
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
  padding-block: 2.5rem;
}
@media (min-width: 768px) {
  .trust-strip__grid {
    grid-template-columns: repeat(4, 1fr);
    padding-block: 3.5rem;
  }
}
.stat__figure {
  font-family: 'Antonio', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--bone);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
}
.stat__figure .accent { color: var(--forge); margin-left: 0.05em; }
.stat__label {
  margin-top: 0.65rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247,245,240,0.7);
}

/* -------- 11. Service cards -------- */
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bone);
  border-top: 2px solid var(--forge);
  box-shadow: inset 0 0 0 1px var(--hairline);
  border-radius: 0 0 var(--r-md) var(--r-md);
  padding: 1.75rem 1.75rem 1.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
@media (min-width: 768px) {
  .service-card { padding: 2rem; }
}
.service-card:hover {
  box-shadow: inset 0 0 0 1px var(--anvil);
  transform: translateY(-2px);
}
.service-card__num {
  font-family: 'Antonio', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--forge);
  letter-spacing: 0.05em;
}
.service-card__title {
  margin-top: 0.5rem;
  font-family: 'Karla', sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--anvil);
  line-height: 1.2;
}
.service-card__desc {
  margin-top: 0.85rem;
  color: var(--graphite);
  line-height: 1.6;
}
.service-card__list {
  margin-top: 1.35rem;
  display: grid;
  gap: 0.45rem;
}
.service-card__list li {
  font-size: 0.9375rem;
  color: var(--concrete);
  padding-left: 1.1rem;
  position: relative;
}
.service-card__list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--concrete);
}
.service-card__cta {
  margin-top: auto;
  padding-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--forge);
  font-size: 0.95rem;
  transition: gap 0.2s;
}
.service-card:hover .service-card__cta { gap: 0.65rem; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

/* -------- 12. USPs / Why-us block -------- */
.usp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) { .usp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .usp-grid { grid-template-columns: repeat(3, 1fr); } }

.usp {
  background: var(--bone);
  padding: 1.75rem;
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
}
.usp__num {
  font-family: 'Antonio', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--forge);
  letter-spacing: 0.05em;
}
.usp__title {
  margin-top: 0.4rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--anvil);
  line-height: 1.3;
}
.usp__body { margin-top: 0.7rem; color: var(--graphite); line-height: 1.6; font-size: 0.9375rem; }

/* -------- 13. Pull-quote testimonial -------- */
.pullquote {
  position: relative;
  background: var(--chalk);
  border-radius: var(--r-md);
  padding: 2.25rem 1.75rem;
}
@media (min-width: 768px) { .pullquote { padding: 2.5rem; } }

.pullquote__mark {
  position: absolute;
  top: -0.65rem;
  left: 1.25rem;
  font-family: 'Antonio', sans-serif;
  font-size: 6rem;
  color: var(--forge);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.pullquote__body {
  font-family: 'Karla', sans-serif;
  font-size: clamp(1.125rem, 1.7vw, 1.375rem);
  line-height: 1.4;
  color: var(--anvil);
  font-style: normal;
  margin: 0;
  position: relative;
}
.pullquote__cite {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.pullquote__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--anvil);
  color: var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}
.pullquote__who { font-weight: 600; color: var(--anvil); font-size: 0.95rem; }
.pullquote__meta { font-size: 0.8125rem; color: var(--concrete); font-variant-numeric: tabular-nums; margin-top: 0.1rem; }

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 768px) { .testimonial-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }

/* -------- 14. Areas / town chips -------- */
.town-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 2rem;
}
.town-chip {
  display: inline-block;
  padding: 0.65rem 1rem;
  background: var(--chalk);
  border: 1px solid var(--hairline);
  color: var(--anvil);
  font-weight: 500;
  font-size: 0.9375rem;
  border-radius: var(--r-sm);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.town-chip:hover {
  background: var(--forge-soft);
  border-color: var(--forge);
  color: var(--anvil);
}

/* -------- 15. CTA banner (pre-footer) -------- */
.cta-banner {
  background-color: var(--anvil);
  color: var(--bone);
  background-image: radial-gradient(circle, rgba(247, 245, 240, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  border-top: 1px solid rgba(245, 197, 24, 0.45);
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(245, 197, 24,0.18), transparent 50%);
  pointer-events: none;
}
.cta-banner__inner {
  position: relative;
  padding-block: 4rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 1024px) {
  .cta-banner__inner {
    grid-template-columns: 1.4fr 1fr;
    padding-block: 5rem;
  }
}
.cta-banner h2 {
  font-family: 'Antonio', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.cta-banner p {
  margin-top: 1rem;
  max-width: 32rem;
  color: rgba(247,245,240,0.82);
  font-size: 1.0625rem;
  line-height: 1.55;
}
.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-self: start;
}
@media (min-width: 1024px) { .cta-banner__actions { justify-self: end; } }

/* -------- 16. Footer -------- */
.site-footer {
  background: var(--iron);
  color: rgba(247,245,240,0.8);
  border-top: 1px solid rgba(245, 197, 24, 0.35);
  padding-block: 3.5rem 2.5rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 3rem; }
}
.footer-brand {
  font-family: 'Antonio', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--bone);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-brand .brand__dot { background: var(--forge); }
.footer-tag {
  margin-top: 1rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(247,245,240,0.7);
  max-width: 22rem;
}
.footer-h {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 1rem;
}
.footer-list { display: grid; gap: 0.6rem; }
.footer-list a { font-size: 0.9375rem; color: rgba(247,245,240,0.72); transition: color 0.15s; }
.footer-list a:hover { color: var(--forge); }
.footer-contact { display: grid; gap: 0.65rem; font-size: 0.9375rem; }
.footer-contact a { color: rgba(247,245,240,0.85); }
.footer-contact a:hover { color: var(--forge); }
.footer-contact .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(247,245,240,0.55);
  margin-bottom: 0.2rem;
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.7rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--verified);
  background: rgba(15, 118, 110, 0.12);
  border: 1px solid rgba(15, 118, 110, 0.35);
  border-radius: var(--r-sm);
  font-weight: 600;
}
.footer-badge svg { width: 0.85rem; height: 0.85rem; }
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(247,245,240,0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: rgba(247,245,240,0.6);
}

/* -------- 17. Sticky mobile CTA bar -------- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 45;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--anvil);
  border-top: 2px solid var(--forge);
}
.sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1rem;
  font-family: 'Karla', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone);
  min-height: 56px;
}
.sticky-cta a svg { width: 1rem; height: 1rem; }
.sticky-cta a + a { background: var(--forge); }
body.has-sticky { padding-bottom: 64px; }
@media (min-width: 1024px) {
  .sticky-cta { display: none; }
  body.has-sticky { padding-bottom: 0; }
}

/* -------- 18. Service page content -------- */
.service-content { padding-block: 4rem; }
@media (min-width: 768px) { .service-content { padding-block: 6rem; } }

.service-content__body p {
  color: var(--graphite);
  line-height: 1.7;
  font-size: 1.0625rem;
}
.service-content__body p + p { margin-top: 1rem; }
.service-content__body h2 {
  font-family: 'Karla', sans-serif;
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--anvil);
  letter-spacing: -0.01em;
  margin-top: 2.5rem;
}
.service-content__body h2:first-child { margin-top: 0; }
.service-content__body h2 + p { margin-top: 1rem; }

.feature-list {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}
.feature-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: baseline;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--graphite);
}
.feature-list li .feature-num {
  font-family: 'Antonio', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--forge);
  font-variant-numeric: tabular-nums;
}
.feature-list li strong {
  color: var(--anvil);
  font-weight: 600;
  display: block;
  margin-bottom: 0.15rem;
}

.spec-panel {
  position: sticky;
  top: 6rem;
  background: var(--chalk);
  border-radius: var(--r-md);
  border-top: 2px solid var(--forge);
  padding: 1.75rem;
}
.spec-panel h3 {
  font-family: 'Antonio', sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--anvil);
  margin-bottom: 1.25rem;
}
.spec-panel dl { display: grid; gap: 0.85rem; }
.spec-panel dt {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--concrete);
}
.spec-panel dd {
  margin: 0.2rem 0 0;
  font-size: 0.95rem;
  color: var(--anvil);
  font-weight: 500;
}
.spec-panel .panel-cta { margin-top: 1.5rem; display: grid; gap: 0.6rem; }

/* Cross-link cards (smaller service teasers) */
.cross-links {
  background: var(--chalk);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.cross-links__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .cross-links__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cross-links__grid { grid-template-columns: repeat(4, 1fr); } }

.cross-link {
  background: var(--bone);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 1.25rem 1.25rem 1.35rem;
  transition: border-color 0.2s, transform 0.2s;
}
.cross-link:hover { border-color: var(--forge); transform: translateY(-2px); }
.cross-link__num {
  font-family: 'Antonio', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--forge);
}
.cross-link__title {
  margin-top: 0.35rem;
  font-weight: 600;
  color: var(--anvil);
  font-size: 1.0625rem;
  line-height: 1.25;
}
.cross-link__arrow {
  display: inline-flex;
  margin-top: 0.85rem;
  color: var(--forge);
  font-weight: 600;
  font-size: 0.875rem;
}

/* -------- 19. Contact page -------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1.3fr 1fr; gap: 4rem; }
}

.contact-form {
  background: var(--bone);
  border: 1px solid var(--hairline);
  border-top: 2px solid var(--forge);
  border-radius: 0 0 var(--r-md) var(--r-md);
  padding: 2rem;
}
@media (min-width: 768px) { .contact-form { padding: 2.5rem; } }
.contact-form h2 {
  font-family: 'Antonio', sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--anvil);
  margin-bottom: 0.5rem;
}
.contact-form .form-lead {
  font-size: 0.95rem;
  color: var(--graphite);
  margin-bottom: 1.75rem;
}
.field { display: grid; gap: 0.45rem; margin-bottom: 1.25rem; }
.field label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--anvil);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: var(--bone);
  border: 1px solid var(--hairline);
  border-radius: var(--r-sm);
  padding: 0.85rem 1rem;
  font-size: 1rem;
  color: var(--anvil);
  min-height: 44px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field textarea { min-height: 140px; resize: vertical; line-height: 1.55; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--forge);
  box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.18);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .field-row { grid-template-columns: 1fr 1fr; } }
.field-row .field { margin-bottom: 0; }

.form-microcopy {
  font-size: 0.8125rem;
  color: var(--concrete);
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.form-microcopy svg { width: 0.95rem; height: 0.95rem; color: var(--verified); flex-shrink: 0; }

.contact-info { display: grid; gap: 2rem; align-content: start; }
.info-block {
  border-top: 1px solid var(--hairline);
  padding-top: 1.5rem;
}
.info-block:first-child { border-top: 0; padding-top: 0; }
.info-block__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--concrete);
  margin-bottom: 0.7rem;
}
.info-block__value {
  font-family: 'Karla', sans-serif;
  font-size: 1.1875rem;
  color: var(--anvil);
  font-weight: 500;
  line-height: 1.4;
  font-variant-numeric: tabular-nums;
}
.info-block__value a:hover { color: var(--forge); }
.info-block__sub { font-size: 0.9375rem; color: var(--graphite); margin-top: 0.35rem; line-height: 1.5; }

.hours-list { display: grid; gap: 0.5rem; margin-top: 0.5rem; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.9375rem;
  color: var(--graphite);
  padding-block: 0.35rem;
  border-bottom: 1px dashed var(--hairline);
  font-variant-numeric: tabular-nums;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list li .day { font-weight: 500; color: var(--anvil); }
.hours-list li.closed .hours { color: var(--concrete); }

/* -------- 20. Section heading block (asymmetric) -------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .section-head { grid-template-columns: 5fr 7fr; gap: 4rem; align-items: start; }
}
.section-head__lhs .section-marker { display: block; margin-bottom: 0.75rem; }
.section-head__lhs h2 { max-width: 22rem; }
.section-head__rhs { padding-top: 0.25rem; }

/* -------- 21. Utility -------- */
.divider-rule {
  height: 1px;
  background: var(--hairline);
  border: 0;
  margin-block: 0;
}
.rule-forge {
  width: 40px;
  height: 2px;
  background: var(--forge);
  border: 0;
  margin: 0 0 1.5rem;
}

/* ============================================================
   PPC ADDITIONS — May 2026
   FAQ, process steps, audience cards, file upload, thank-you,
   privacy policy, PPC hero variant
   ============================================================ */

/* FAQ accordion */
.faq-list { display: grid; gap: 0.75rem; margin-top: 1.5rem; }
.faq-item {
  border: 1px solid var(--hairline);
  background: #fff;
  border-radius: 4px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.faq-item[open] {
  border-color: var(--forge);
  box-shadow: 0 1px 0 0 var(--forge) inset, 0 8px 24px -16px rgba(14,15,18,0.12);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-family: 'Antonio', sans-serif;
  font-weight: 500;
  font-size: 1.0625rem;
  letter-spacing: 0.01em;
  color: var(--anvil);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: 'Antonio', sans-serif;
  font-weight: 400;
  color: var(--forge);
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item .faq-body {
  padding: 0 1.25rem 1.25rem;
  color: var(--graphite);
  line-height: 1.65;
  font-size: 0.9375rem;
}
.faq-item .faq-body p { margin: 0; }
.faq-item .faq-body p + p { margin-top: 0.85rem; }

/* Process steps */
.process-steps {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
  list-style: none;
  padding: 0;
}
.process-steps li {
  position: relative;
  padding: 1rem 1.1rem 1rem 3.75rem;
  background: var(--chalk);
  border: 1px solid var(--hairline);
  border-left: 2px solid var(--forge);
  border-radius: 2px;
}
.process-steps li .step-num {
  position: absolute;
  left: 1.1rem;
  top: 1rem;
  font-family: 'Antonio', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--forge);
  letter-spacing: 0.02em;
  line-height: 1;
}
.process-steps li strong {
  display: block;
  font-family: 'Antonio', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--anvil);
  letter-spacing: 0.01em;
  margin-bottom: 0.3rem;
}
.process-steps li p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--graphite);
  line-height: 1.55;
}

/* Quote requirements grid */
.quote-reqs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  margin-top: 1.5rem;
  list-style: none;
  padding: 0;
}
@media (min-width: 640px) {
  .quote-reqs { grid-template-columns: 1fr 1fr; }
}
.quote-reqs li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.75rem 0.95rem;
  background: #fff;
  border: 1px solid var(--hairline);
  font-size: 0.9375rem;
  color: var(--anvil);
  line-height: 1.45;
}
.quote-reqs li::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  background: var(--forge);
  flex-shrink: 0;
  margin-top: 0.45em;
  border-radius: 1px;
}

/* Audience cards (who it's for) */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .audience-grid { grid-template-columns: repeat(3, 1fr); }
}
.audience-card {
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid var(--hairline);
  border-top: 2px solid var(--forge);
}
.audience-card strong {
  display: block;
  font-family: 'Antonio', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--anvil);
  letter-spacing: 0.01em;
  margin-bottom: 0.3rem;
}
.audience-card span {
  display: block;
  font-family: 'Karla', sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--graphite);
  line-height: 1.45;
}

/* Capability chips (what we fabricate) */
.cap-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  list-style: none;
  padding: 0;
}
.cap-chips li {
  padding: 0.5rem 0.85rem;
  background: var(--chalk);
  border: 1px solid var(--hairline);
  font-family: 'Antonio', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  color: var(--anvil);
  border-radius: 2px;
}

/* File upload */
.field input[type="file"] {
  padding: 0.55rem;
  background: var(--chalk);
  cursor: pointer;
  font-family: 'Karla', sans-serif;
  font-size: 0.9375rem;
}
.field input[type="file"]::file-selector-button {
  margin-right: 0.85rem;
  padding: 0.5rem 0.85rem;
  background: var(--anvil);
  color: var(--bone);
  border: 0;
  font-family: 'Antonio', sans-serif;
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s;
}
.field input[type="file"]::file-selector-button:hover { background: var(--forge); }
.field .field-hint {
  font-size: 0.8125rem;
  color: var(--concrete);
  margin-top: 0.4rem;
  line-height: 1.4;
}

/* Thank-you page */
.thanks-hero {
  background: var(--bone);
  padding-block: 4.5rem 3rem;
  text-align: center;
  border-bottom: 1px solid var(--hairline);
}
.thanks-hero__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--forge);
  color: var(--bone);
  margin-bottom: 1.5rem;
}
.thanks-hero__icon svg { width: 44px; height: 44px; }
.thanks-hero__eyebrow {
  font-family: 'Antonio', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forge);
  margin-bottom: 0.85rem;
}
.thanks-hero h1 {
  font-family: 'Antonio', sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.04;
  color: var(--anvil);
  letter-spacing: -0.01em;
  max-width: 38rem;
  margin: 0 auto;
}
.thanks-hero p {
  margin-top: 1.25rem;
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--graphite);
}
.thanks-hero__actions {
  margin-top: 2rem;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.thanks-next { padding-block: 4rem; }
.thanks-next__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .thanks-next__grid { grid-template-columns: repeat(3, 1fr); }
}
.thanks-next__card {
  padding: 1.75rem;
  background: #fff;
  border: 1px solid var(--hairline);
  border-top: 2px solid var(--forge);
}
.thanks-next__num {
  font-family: 'Antonio', sans-serif;
  font-weight: 600;
  color: var(--forge);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 0.5rem;
}
.thanks-next__card h3 {
  font-family: 'Antonio', sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--anvil);
  margin-bottom: 0.5rem;
}
.thanks-next__card p {
  font-size: 0.9375rem;
  color: var(--graphite);
  line-height: 1.6;
}

/* Privacy / legal prose */
.legal-content { padding-block: 3rem 4rem; }
.legal-content__body { max-width: 44rem; }
.legal-content__body h2 {
  font-family: 'Antonio', sans-serif;
  font-weight: 500;
  font-size: 1.375rem;
  letter-spacing: 0.01em;
  color: var(--anvil);
  margin-top: 2.5rem;
  margin-bottom: 0.85rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline);
}
.legal-content__body h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.legal-content__body h3 {
  font-family: 'Antonio', sans-serif;
  font-weight: 500;
  font-size: 1.0625rem;
  color: var(--anvil);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.legal-content__body p {
  font-size: 0.9375rem;
  color: var(--graphite);
  line-height: 1.7;
}
.legal-content__body p + p { margin-top: 0.85rem; }
.legal-content__body ul {
  margin-top: 0.85rem;
  padding-left: 1.25rem;
}
.legal-content__body ul li {
  font-size: 0.9375rem;
  color: var(--graphite);
  line-height: 1.65;
  padding-left: 0.35rem;
}
.legal-content__body ul li + li { margin-top: 0.4rem; }
.legal-content__body a {
  color: var(--forge);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.legal-content__body .updated {
  font-size: 0.8125rem;
  color: var(--concrete);
  margin-bottom: 2rem;
  font-variant-numeric: tabular-nums;
}

/* PPC hero variant (service+location, trust strip embedded) */
.ppc-hero {
  background: var(--bone);
  padding-block: 2.5rem 0;
  border-bottom: 1px solid var(--hairline);
}
.ppc-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  padding-bottom: 3rem;
}
@media (min-width: 1024px) {
  .ppc-hero__inner {
    grid-template-columns: 1.45fr 1fr;
    gap: 3rem;
  }
}
.ppc-hero h1 {
  font-family: 'Antonio', sans-serif;
  font-weight: 600;
  font-size: clamp(1.875rem, 4.5vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--anvil);
  margin: 0.5rem 0 1.25rem;
}
.ppc-hero h1 span.forge { color: var(--forge); }
.ppc-hero__sub {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--graphite);
  max-width: 36rem;
}
.ppc-hero__ctas {
  margin-top: 1.75rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.ppc-hero__trust {
  background: var(--anvil);
  color: var(--bone);
  padding: 1.75rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.ppc-hero__trust::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(247,245,240,0.06) 1px, transparent 1px);
  background-size: 16px 16px;
  pointer-events: none;
}
.ppc-hero__trust h2 {
  font-family: 'Antonio', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forge);
  margin-bottom: 1.25rem;
  position: relative;
}
.ppc-hero__trust ul {
  position: relative;
  display: grid;
  gap: 0.85rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.ppc-hero__trust li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: rgba(247,245,240,0.88);
  line-height: 1.45;
}
.ppc-hero__trust li svg {
  width: 1rem;
  height: 1rem;
  color: var(--forge);
  flex-shrink: 0;
  margin-top: 0.15em;
}
.ppc-hero__trust li strong {
  font-weight: 600;
  color: var(--bone);
  font-family: 'Antonio', sans-serif;
  letter-spacing: 0.01em;
}
.ppc-hero__breadcrumb {
  font-family: 'Antonio', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--concrete);
}
.ppc-hero__breadcrumb a { color: var(--graphite); }
.ppc-hero__breadcrumb a:hover { color: var(--forge); }
.ppc-hero__breadcrumb .sep { margin: 0 0.5rem; color: var(--hairline); }

/* Service area block */
.service-area-block {
  background: var(--chalk);
  border-left: 2px solid var(--forge);
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
}
.service-area-block p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--anvil);
  line-height: 1.6;
}
.service-area-block p + p { margin-top: 0.6rem; }
.service-area-block strong {
  font-family: 'Antonio', sans-serif;
  font-weight: 500;
  color: var(--anvil);
}

/* Field full row (single-column) helper */
.field-full { grid-column: 1 / -1; }

/* Required-field asterisk indicator on form labels */
.field label .req {
  color: var(--forge);
  font-weight: 700;
  margin-left: 0.15em;
}

/* ============================================================
   IMAGE COMPONENTS (added when integrating real photography)
   ============================================================ */

/* Hero rework — two-column at lg+, photo on the right */
@media (min-width: 1024px) {
  .hero__inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4.5rem;
    align-items: center;
  }
  .hero h1 {
    /* tighten max font size so it fits the narrower text column */
    font-size: clamp(2.75rem, 5.5vw, 5.5rem);
  }
}

.hero__text { min-width: 0; } /* prevent text overflow in grid */

.hero__media { display: none; }
@media (min-width: 1024px) {
  .hero__media {
    display: block;
    position: relative;
  }
  .hero__media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    border: 1px solid rgba(245, 197, 24, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  }
  /* Engineering-style corner brackets to echo the design system */
  .hero__media::before,
  .hero__media::after {
    content: "";
    position: absolute;
    width: 36px;
    height: 36px;
    border: 1px solid var(--forge);
    pointer-events: none;
  }
  .hero__media::before {
    top: -10px;
    left: -10px;
    border-right: none;
    border-bottom: none;
  }
  .hero__media::after {
    bottom: -10px;
    right: -10px;
    border-left: none;
    border-top: none;
  }
}

/* About section full-bleed workshop image band */
.about-image-band {
  margin-top: 3.5rem;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--chalk);
}
.about-image-band img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

/* Capability band — 4-up image grid section on homepage */
.capability-band {
  padding-block: 5rem;
  background: var(--bone);
  border-bottom: 1px solid var(--hairline);
}
@media (min-width: 768px) { .capability-band { padding-block: 6.5rem; } }

.capability-band__head {
  max-width: 44rem;
  margin-bottom: 2.5rem;
}
.capability-band__head .section-marker { display: inline-block; margin-bottom: 0.5rem; }
.capability-band__head h2 { margin-bottom: 1rem; }
.capability-band__head .lead {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--graphite);
}

.capability-band__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .capability-band__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}
.capability-band__grid figure { margin: 0; }
.capability-band__grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--hairline);
  transition: transform 0.4s ease;
}
.capability-band__grid figure:hover img { transform: scale(1.015); }
.capability-band__grid figcaption {
  margin-top: 0.6rem;
  font-family: 'Karla', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--graphite);
}

/* Image strip — flush-width image section between hero and content on service pages */
.image-strip {
  margin: 0;
  padding: 0;
  background: var(--anvil);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
}
.image-strip img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 480px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
@media (max-width: 767px) {
  .image-strip img { max-height: 280px; aspect-ratio: 16 / 10; }
}

/* In-body content figure — inline image with caption in service-content body */
.content-figure {
  margin: 2.75rem 0;
}
.content-figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--hairline);
  border-radius: 2px;
}
.content-figure figcaption {
  margin-top: 0.7rem;
  padding-left: 0.85rem;
  border-left: 2px solid var(--forge);
  font-family: 'Karla', sans-serif;
  font-style: italic;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--graphite);
}

/* Spec-panel sidebar image */
.spec-panel__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--hairline);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

/* Contact page side image (desktop only) */
.contact-side-image {
  display: none;
}
@media (min-width: 768px) {
  .contact-side-image {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 1px solid var(--hairline);
    border-radius: 2px;
    margin-bottom: 2rem;
  }
}

/* ============================================================
   HERO OPTION A — full-bleed background image with overlay
   Override + replace the previous two-column hero layout
   ============================================================ */
.hero--bg {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  isolation: isolate; /* contain z-index stacking */
  overflow: hidden;
  /* drop the dotted texture background — image takes over */
  background: var(--anvil);
  background-image: none;
}
@media (min-width: 768px) {
  .hero--bg { min-height: 660px; }
}
@media (min-width: 1024px) {
  .hero--bg { min-height: 780px; }
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    /* dark left-side gradient for text legibility */
    linear-gradient(
      90deg,
      rgba(14, 15, 18, 0.92) 0%,
      rgba(14, 15, 18, 0.78) 35%,
      rgba(14, 15, 18, 0.50) 65%,
      rgba(14, 15, 18, 0.40) 100%
    ),
    /* subtle bottom darkening so CTAs sit on a darker patch */
    linear-gradient(
      180deg,
      rgba(14, 15, 18, 0.0) 50%,
      rgba(14, 15, 18, 0.45) 100%
    );
}

/* On mobile, fade more heavily across the whole frame so text reads clearly */
@media (max-width: 767px) {
  .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(14, 15, 18, 0.78) 0%,
      rgba(14, 15, 18, 0.72) 50%,
      rgba(14, 15, 18, 0.82) 100%
    );
  }
}

/* Override the prior two-column grid — hero is now single text column */
.hero--bg .hero__inner {
  display: block;
  max-width: 56rem; /* keep text from running too wide on huge screens */
}
@media (min-width: 1024px) {
  .hero--bg .hero__inner {
    display: block; /* explicitly override the 1.1fr 0.9fr grid */
    grid-template-columns: none;
  }
}

/* Hide the old media block in case anywhere still references it */
.hero--bg .hero__media { display: none !important; }

/* Add a forge corner-bracket detail to anchor the design */
.hero--bg::after {
  content: "";
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 60px;
  height: 60px;
  border-bottom: 1px solid var(--forge);
  border-right: 1px solid var(--forge);
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 768px) {
  .hero--bg::after {
    width: 90px;
    height: 90px;
    bottom: 2.5rem;
    right: 2.5rem;
  }
}

/* ============================================================
   BRAND LOGO IMAGE (replaces text wordmark)
   ============================================================ */
.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.brand-logo {
  display: block;
  height: 32px;      /* compact header */
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
@media (min-width: 768px) {
  .brand-logo { height: 38px; max-width: 220px; }
}

.footer-brand {
  display: inline-block;
  line-height: 0;
}
.footer-logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

/* ============================================================
   IMAGE PLACEMENT REFINEMENTS
   ============================================================ */

/* Capability band: less aggressive crop — 5:4 sits between landscape and square */
.capability-band__grid img {
  aspect-ratio: 5 / 4;
}
@media (min-width: 768px) {
  /* slightly wider 4:3 on desktop where each tile has more horizontal space */
  .capability-band__grid img { aspect-ratio: 4 / 3; }
}

/* About image band: keep dramatic but cap height differently per breakpoint */
.about-image-band img {
  aspect-ratio: 16 / 9;
  max-height: 380px;
}
@media (min-width: 768px) { .about-image-band img { max-height: 460px; } }
@media (min-width: 1280px) { .about-image-band img { max-height: 540px; } }

/* Image strip on PPC/service pages — slightly taller on desktop for impact */
@media (min-width: 1024px) {
  .image-strip img { max-height: 540px; }
}

/* Content figures — add a subtle yellow accent corner like the hero */
.content-figure {
  position: relative;
}
.content-figure::before {
  content: "";
  position: absolute;
  top: -6px; left: -6px;
  width: 24px; height: 24px;
  border-top: 1px solid var(--forge);
  border-left: 1px solid var(--forge);
  pointer-events: none;
}

/* Spec panel sidebar image — slightly tighter, more product-shot proportioned */
.spec-panel__image {
  aspect-ratio: 3 / 2;
}

/* ============================================================
   ROUND-2 FIXES — dark header, bigger logo, image sizing,
   form simplification (May 2026)
   ============================================================ */

/* --- DARK HEADER (always) — matches drsttrading.co.uk style --- */
.site-header {
  background: var(--anvil) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.site-header .primary-nav a,
.site-header .dropdown-toggle {
  color: var(--bone) !important;
}
.site-header .primary-nav a:hover,
.site-header .primary-nav a[aria-current="page"],
.site-header .dropdown-toggle:hover {
  color: var(--forge) !important;
}
.site-header .primary-nav a[aria-current="page"]::after {
  background: var(--forge);
}
.site-header .header-phone {
  color: var(--bone);
}
.site-header .header-phone:hover { color: var(--forge); }
.site-header .menu-toggle {
  color: var(--bone);
}
/* Dropdown panel stays dark too with light text */
.dropdown-panel {
  background: var(--iron) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
}
.dropdown-panel a {
  color: var(--bone) !important;
}
.dropdown-panel a:hover {
  background: var(--graphite) !important;
  color: var(--forge) !important;
}
/* Mobile menu also dark */
.mobile-menu {
  background: var(--anvil) !important;
  color: var(--bone);
}
.mobile-menu a,
.mobile-menu .mm-section {
  color: var(--bone) !important;
}
.mobile-menu .mm-section {
  color: var(--concrete) !important;
}

/* --- BIGGER LOGO --- */
.brand-logo {
  height: 42px !important;
  max-width: 200px !important;
}
@media (min-width: 768px) {
  .brand-logo {
    height: 52px !important;
    max-width: 260px !important;
  }
}

/* --- SIDEBAR IMAGE HEIGHT CAPS (the main bug fix) --- */
/* Spec-panel image — fix to a sensible height, no overflow */
.spec-panel__image {
  width: 100% !important;
  height: 200px !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  border: 1px solid var(--hairline);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .spec-panel__image { height: 220px !important; }
}

/* Contact side image — same fix, capped height */
.contact-side-image {
  display: none;
}
@media (min-width: 768px) {
  .contact-side-image {
    display: block !important;
    width: 100% !important;
    height: 280px !important;
    aspect-ratio: auto !important;
    object-fit: cover !important;
    position: static !important; /* drop the sticky behaviour — was causing overflow */
    border: 1px solid var(--hairline);
    border-radius: 2px;
    margin-bottom: 2rem;
  }
}

/* Visual anchor band — full-bleed image strip used to break up long pages */
.visual-anchor-band {
  margin: 0;
  padding: 0;
  background: var(--anvil);
  overflow: hidden;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.visual-anchor-band img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center 40%;
}
@media (min-width: 768px) { .visual-anchor-band img { height: 380px; } }
@media (min-width: 1024px) { .visual-anchor-band img { height: 440px; } }

/* Also fix capability band so the column wrap is a bit more readable on mobile */
.capability-band__grid {
  gap: 0.75rem;
}
@media (min-width: 768px) { .capability-band__grid { gap: 1.25rem; } }

/* ============================================================
   ROUND-3 FIXES (May 2026)
   - 2x2 landscape capability grid
   - Larger header logo
   - Dropdown active-line bug fix
   ============================================================ */

/* --- CAPABILITY BAND: 2x2 landscape grid with forced aspect --- */
.capability-band__grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 1.25rem !important;
}
@media (min-width: 768px) {
  .capability-band__grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem !important;
  }
}
@media (min-width: 1280px) {
  .capability-band__grid { gap: 2rem !important; }
}

.capability-band__grid figure {
  margin: 0 !important;
  display: flex;
  flex-direction: column;
}
.capability-band__grid img {
  width: 100% !important;
  height: 260px !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  display: block !important;
  border: 1px solid var(--hairline) !important;
  transition: transform 0.4s ease;
}
@media (min-width: 768px) {
  .capability-band__grid img { height: 320px !important; }
}
@media (min-width: 1024px) {
  .capability-band__grid img { height: 380px !important; }
}
@media (min-width: 1280px) {
  .capability-band__grid img { height: 440px !important; }
}
.capability-band__grid figure:hover img { transform: scale(1.01); }

.capability-band__grid figcaption {
  margin-top: 0.85rem !important;
  font-family: 'Karla', sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: var(--graphite) !important;
  padding-left: 0.75rem !important;
  border-left: 2px solid var(--forge) !important;
}

/* --- LOGO: larger, better balanced with the rest of the header --- */
.brand-logo {
  height: 48px !important;
  max-width: 220px !important;
}
@media (min-width: 768px) {
  .brand-logo {
    height: 64px !important;
    max-width: 320px !important;
  }
}
.site-header__inner {
  height: 5rem;
}
@media (min-width: 768px) {
  .site-header__inner { height: 5.5rem; }
}

/* --- DROPDOWN ACTIVE-LINE BUG: kill the ::after on dropdown items --- */
.dropdown-panel a::after,
.dropdown-panel a[aria-current="page"]::after {
  display: none !important;
  content: none !important;
}
.dropdown-panel a[aria-current="page"] {
  color: var(--forge) !important;
  background: rgba(245, 197, 24, 0.08) !important;
}

/* Netlify Forms honeypot — invisible to humans, visible to bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/* ============================================================
   FINAL BUILD CSS (May 2026)
   Logo sized to match button height, header vertical alignment
   ============================================================ */

/* Header inner — proper vertical centering on ALL viewports */
.site-header__inner {
  display: flex !important;
  align-items: center !important;
  height: 4.5rem !important;
}
@media (min-width: 768px) {
  .site-header__inner { height: 5rem !important; }
}

/* Brand wrapper centers the logo vertically in the header */
.brand {
  display: inline-flex !important;
  align-items: center !important;
  height: 100% !important;
  line-height: 0;
}

/* Logo sized to match the "Get A Quote" button height */
/* Mobile: button ~38px tall (padding 0.6rem 1.1rem on ~14px text), logo ~38px */
/* Desktop: button ~44px tall (padding 0.7rem 1.4rem on ~14px text), logo ~44px */
.brand-logo {
  height: 38px !important;
  width: auto !important;
  max-width: 180px !important;
  display: block !important;
  object-fit: contain !important;
}
@media (min-width: 768px) {
  .brand-logo {
    height: 44px !important;
    max-width: 220px !important;
  }
}
@media (min-width: 1024px) {
  .brand-logo {
    height: 48px !important;
    max-width: 240px !important;
  }
}

/* Make sure the right-side cluster (nav + phone + button) is also vertically aligned */
.site-header__inner > nav,
.site-header__inner > .header-actions,
.site-header__inner > .header-phone,
.site-header__inner > .btn {
  display: inline-flex;
  align-items: center;
}

/* Header phone link — vertically aligned with its icon */
.header-phone {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.45rem;
}

/* ============================================================
   FIX PASS (May 20 2026)
   - Kill horizontal scroll on mobile
   - Logo matched to button height + vertically centred
   - Dropdown panel never shows on mobile
   - Hero eyebrow wraps instead of overflowing
   ============================================================ */

/* 1) HORIZONTAL SCROLL GUARD — definitive fix for sideways scroll on mobile.
      `clip` prevents horizontal scroll WITHOUT creating a scroll container
      (so the sticky header keeps working). `hidden` is the older fallback. */
html, body {
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
}
/* Prevent flex/grid children from forcing the page wider than the viewport */
.hero__inner > *, .container > *, .site-header__inner > * { min-width: 0; }

/* 2) HERO EYEBROW — was display:inline-flex with wide letter-spacing and would
      not wrap, pushing the page wider than the phone screen. Allow wrapping. */
.hero__eyebrow {
  flex-wrap: wrap !important;
  max-width: 100% !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.14em !important;
  line-height: 1.5 !important;
}
@media (min-width: 768px) {
  .hero__eyebrow {
    font-size: 0.8125rem !important;
    letter-spacing: 0.2em !important;
  }
}

/* 3) DROPDOWN PANEL — explicitly never render below the desktop breakpoint
      (belt-and-braces; primary-nav is already display:none on mobile) */
@media (max-width: 1023px) {
  .dropdown-panel { display: none !important; }
  .primary-nav { display: none !important; }
}

/* 4) LOGO — match the GET A QUOTE button height and vertically centre.
      Button is min-height 44px + 0.85rem padding ≈ 50px tall.
      Tight-cropped logo (ratio 1.94) fills its height now, so set heights
      that visually match the button. */
.site-header__inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between;
}
.brand {
  display: inline-flex !important;
  align-items: center !important;
  height: auto !important;       /* don't stretch full height — let flexbox centre it */
  line-height: 0 !important;
  align-self: center !important;
}
.brand-logo {
  height: 38px !important;          /* mobile */
  width: auto !important;
  max-width: 170px !important;
  display: block !important;
  object-fit: contain !important;
  align-self: center !important;
}
@media (min-width: 768px) {
  .brand-logo {
    height: 46px !important;        /* desktop: matches the ~48px button height */
    max-width: 220px !important;
  }
}
@media (min-width: 1024px) {
  .brand-logo {
    height: 48px !important;
    max-width: 240px !important;
  }
}

/* 5) Make sure no full-bleed image section can exceed viewport width */
.image-strip, .visual-anchor-band, .about-image-band, .hero--bg {
  max-width: 100vw !important;
  overflow: hidden !important;
}


/* ============================================================
   FIX (May 20 2026 #2)
   Remove the stray yellow corner bracket + warm glow on the hero,
   fix logo box ratio alignment
   ============================================================ */
.hero--bg::after,
.hero--bg::before {
  content: none !important;
  display: none !important;
  background: none !important;
}
/* tidy: remove dead two-column-hero bracket rules' effect */
.hero--bg .hero__media::before,
.hero--bg .hero__media::after {
  content: none !important;
  display: none !important;
}

/* ============================================================
   FIX (May 20 2026 #3) — MOBILE HEADER
   Below 1024px collapse to logo + hamburger only.
   Phone + Get A Quote are redundant on mobile (sticky bottom bar
   + mobile menu already carry them) and were overflowing the header.
   ============================================================ */
@media (max-width: 1023px) {
  .site-header .header-phone { display: none !important; }
  .site-header .header-actions .btn,
  .site-header .header-actions .btn-primary { display: none !important; }
  .menu-toggle { display: inline-flex !important; }
  .header-actions { gap: 0 !important; }
}
@media (min-width: 1024px) {
  .menu-toggle { display: none !important; }
  .site-header .header-phone { display: inline-flex !important; }
  .site-header .header-actions .btn-primary { display: inline-flex !important; }
}

/* Slightly larger logo on mobile for presence */
@media (max-width: 767px) {
  .brand-logo { height: 40px !important; max-width: 150px !important; }
}
