/* ==========================================================================
   TOP Reno — Design System
   Bold industrial: charcoal + safety orange, condensed display type.
   Mobile-first. No frameworks, no build step.
   ========================================================================== */

/* --- Tokens ------------------------------------------------------------- */
:root {
  /* Surfaces */
  --ink:        #0D0E10;
  --ink-2:      #141619;
  --steel:      #1C1F24;
  --steel-2:    #262A31;
  --line:       #33383F;
  --line-soft:  #E2E0DB;

  /* Text */
  --smoke:      #8B919A;
  --smoke-2:    #B7BCC4;
  --paper:      #F5F4F1;
  --paper-2:    #E9E7E2;
  --white:      #FFFFFF;

  /* Brand */
  --orange:     #FF5A1F;
  --orange-d:   #E4460D;
  --orange-t:   rgba(255, 90, 31, 0.12);
  --amber:      #FFB800;
  --green:      #22C55E;
  --red:        #EF4444;

  /* Accessible text colours.
     #FF5A1F only reaches 3.1:1 on light surfaces, so orange *text* on paper or
     white uses --orange-ink instead. The brand orange is still used at full
     strength for fills and for text on dark surfaces, where it clears 6:1. */
  --orange-ink: #C2410C;  /* 4.7:1 on --paper, 5.2:1 on white */
  --muted:      #5E6672;  /* secondary text on light surfaces, 5.3:1 */
  --step-num:   #5A616B;  /* large numerals on --ink, 3.3:1 */
  --index-num:  #8A867C;  /* large numerals on --paper, 3.3:1 */

  /* Surface-aware roles. Dark sections re-point these below, so a component
     never has to know which background it landed on. */
  --accent-text: var(--orange-ink);
  --lead-text:   var(--steel-2);
  --muted-text:  var(--muted);

  /* Type */
  --font-display: 'Barlow Condensed', 'Arial Narrow', Impact, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Fluid scale */
  --fs-hero:  clamp(2.75rem, 9vw, 6rem);
  --fs-h1:    clamp(2.25rem, 6.5vw, 4.25rem);
  --fs-h2:    clamp(1.875rem, 4.6vw, 3.25rem);
  --fs-h3:    clamp(1.375rem, 2.6vw, 1.875rem);
  --fs-h4:    clamp(1.125rem, 1.9vw, 1.375rem);
  --fs-body:  clamp(1rem, 1.15vw, 1.0625rem);
  --fs-lead:  clamp(1.0625rem, 1.7vw, 1.3125rem);
  --fs-small: 0.875rem;
  --fs-micro: 0.75rem;

  /* Layout */
  --wrap:     1220px;
  --wrap-narrow: 820px;
  --gutter:   clamp(1.25rem, 4vw, 2.5rem);
  --section:  clamp(4rem, 9vw, 7.5rem);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur:  0.5s;

  --header-h: 68px;
}

/* --- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); letter-spacing: 0.01em; }

p { margin: 0 0 1.15em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }

ul, ol { margin: 0 0 1.15em; padding-left: 1.25em; }
li { margin-bottom: 0.4em; }

strong { font-weight: 700; }

:focus-visible {
  /* --accent-text is inherited, so the ring darkens on light surfaces and stays
     bright on dark ones — 4.7:1 and 6.2:1, both clearing the 3:1 minimum for
     focus indicators. Plain --orange was only 2.8:1 on --paper. */
  outline: 3px solid var(--accent-text);
  outline-offset: 3px;
  border-radius: 2px;
}

/* --- Layout helpers ----------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.wrap-narrow { max-width: var(--wrap-narrow); }

.section { padding-block: var(--section); }
.section-sm { padding-block: clamp(3rem, 6vw, 5rem); }

.dark { background: var(--ink); color: var(--paper); }
.dark h1, .dark h2, .dark h3, .dark h4 { color: var(--white); }
.steel { background: var(--steel); color: var(--paper); }
.steel h2, .steel h3 { color: var(--white); }

/* Every dark surface, whether it uses the .dark/.steel utilities or paints its
   own background. Re-pointing the roles here is what keeps text legible — the
   light-surface defaults are near-black and vanish on these. */
.dark, .steel, .hero, .page-hero, .cta-band, .err-page,
.stat-band, .process, .site-header, .site-footer, .card-dark, .faq {
  --accent-text: var(--orange);
  --lead-text:   var(--smoke-2);
  --muted-text:  var(--smoke);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--orange);
  color: var(--ink);
  padding: 0.75rem 1.25rem;
  font-weight: 700;
}
.skip-link:focus { left: 0; }

/* --- Motifs ------------------------------------------------------------- */
/* Hazard stripe — the recurring industrial accent */
.stripe {
  height: 6px;
  background: repeating-linear-gradient(
    -45deg,
    var(--orange) 0 12px,
    transparent 12px 24px
  );
  background-color: var(--ink-2);
}
.stripe-thin { height: 4px; }

/* Blueprint grid backdrop */
.grid-bg { position: relative; overflow: hidden; isolation: isolate; }
.grid-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 35%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 35%, transparent 100%);
}

/* Eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--accent-text);
  flex: none;
}
.eyebrow-plain { color: var(--muted-text); }
.eyebrow-plain::before { background: var(--muted-text); }

.lead {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--lead-text);
  max-width: 62ch;
}

.accent { color: var(--accent-text); }

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.9rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease),
              border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.btn svg { flex: none; transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--orange);
  color: var(--ink);   /* 6.2:1 on --orange; white would only be 3.1:1 */
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-d); border-color: var(--orange-d); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.28);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }

.btn-dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn-dark:hover { background: var(--steel-2); border-color: var(--steel-2); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--white); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 2rem;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--accent-text);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.arrow-link svg { transition: transform 0.25s var(--ease); }
.arrow-link:hover svg { transform: translateX(4px); }
.arrow-link:hover { text-decoration: underline; }

/* --- Header ------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: background-color 0.3s var(--ease);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--white);
  flex: none;
}
.logo-mark { width: 30px; height: 30px; flex: none; }
.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1;
}
.logo-text span { color: var(--orange); }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0 10px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--ink);
  padding: 1.5rem var(--gutter) 3rem;
  overflow-y: auto;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.35s var(--ease), visibility 0.35s;
}
.nav-open .site-nav { transform: translateX(0); visibility: visible; }

.site-nav ul {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
}
.site-nav li { margin: 0; border-bottom: 1px solid var(--line); }
/* Scoped to `ul` so the drawer styles don't leak onto .nav-cta / .nav-phone,
   which sit outside the list and carry their own display rules. */
.site-nav ul a {
  display: block;
  padding: 1rem 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--paper);
  text-decoration: none;
}
.site-nav ul a:hover, .site-nav ul a[aria-current="page"] { color: var(--orange); }

.nav-cta { display: block; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  color: var(--smoke-2);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
}
.nav-phone:hover { color: var(--orange); }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .site-nav {
    position: static;
    inset: auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0;
    overflow: visible;
    transform: none;
    visibility: visible;
    background: none;
  }
  .site-nav ul {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    margin: 0;
  }
  .site-nav li { border: none; }
  .site-nav ul a {
    padding: 0;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--smoke-2);
    position: relative;
  }
  .site-nav ul a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -6px;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s var(--ease);
  }
  .site-nav ul a:hover::after,
  .site-nav ul a[aria-current="page"]::after { transform: scaleX(1); }
  .site-nav ul a:hover, .site-nav ul a[aria-current="page"] { color: var(--white); }
  .nav-cta { order: 2; }
  .nav-cta .btn { min-height: 42px; padding: 0.55rem 1.15rem; font-size: 0.875rem; }
  .nav-phone {
    order: 1;
    margin-top: 0;
    font-size: 0.875rem;
    white-space: nowrap;
    color: var(--white);
  }
}

/* --- Hero --------------------------------------------------------------- */
.hero {
  background: var(--ink);
  color: var(--paper);
  padding-block: clamp(3.5rem, 10vw, 7rem) clamp(3.5rem, 8vw, 6rem);
  position: relative;
}
.hero h1 {
  font-size: var(--fs-hero);
  max-width: 15ch;
  margin-bottom: 1.5rem;
}
.hero .lead { max-width: 54ch; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  font-size: var(--fs-small);
  color: var(--smoke);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-meta svg { color: var(--orange); flex: none; }

/* Inner-page hero */
.page-hero {
  background: var(--ink);
  color: var(--paper);
  padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(2.75rem, 6vw, 4.5rem);
}
.page-hero h1 { max-width: 20ch; margin-bottom: 1.25rem; }

.breadcrumbs {
  font-size: var(--fs-micro);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 1.5rem;
}
.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}
.breadcrumbs li { margin: 0; display: flex; align-items: center; gap: 0.5rem; }
.breadcrumbs li:not(:last-child)::after { content: '/'; color: var(--line); }
.breadcrumbs a { color: var(--smoke); text-decoration: none; }
.breadcrumbs a:hover { color: var(--orange); }
.breadcrumbs [aria-current="page"] { color: var(--paper); }

/* --- Stat band ---------------------------------------------------------- */
.stat-band { background: var(--steel); color: var(--paper); }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.stat {
  background: var(--steel);
  padding: 1.75rem 1.25rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 3.75rem);
  font-weight: 800;
  line-height: 1;
  color: var(--orange);
  display: block;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: var(--fs-small);
  color: var(--smoke-2);
  line-height: 1.45;
  margin: 0;
}
@media (min-width: 780px) {
  .stat-grid { grid-template-columns: repeat(4, 1fr); }
  .stat { padding: 2.25rem 1.5rem; }
}

/* --- Section headers ---------------------------------------------------- */
.section-head { margin-bottom: clamp(2.25rem, 5vw, 3.5rem); max-width: 65ch; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .lead { margin-inline: auto; }

.head-split {
  display: grid;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: clamp(2.25rem, 5vw, 3.5rem);
}
@media (min-width: 880px) {
  .head-split { grid-template-columns: 1.1fr 1fr; gap: 3rem; }
  .head-split .lead { margin-bottom: 0.4rem; }
}

/* --- Cards -------------------------------------------------------------- */
.card-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 720px) { .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  padding: clamp(1.5rem, 3vw, 2rem);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
              border-color 0.3s var(--ease);
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  box-shadow: 0 14px 34px rgba(13, 14, 16, 0.1);
}
.card:hover::before { transform: scaleX(1); }
.card h3 { margin-bottom: 0.6rem; }
.card p { color: var(--lead-text); font-size: 0.9375rem; }

.card-num {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent-text);
  display: block;
  margin-bottom: 0.9rem;
}

.card-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--orange-t);
  border-radius: 2px;
  color: var(--orange);
  margin-bottom: 1.1rem;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  border-top: 1px solid var(--line-soft);
  padding-top: 1rem;
}
.card-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.9375rem;
  margin-bottom: 0.6rem;
}
.card-list li:last-child { margin-bottom: 0; }
.card-list svg { flex: none; color: var(--accent-text); margin-top: 5px; }

/* Dark card variant */
.card-dark {
  background: var(--steel);
  border-color: var(--line);
  color: var(--paper);
}
.card-dark p { color: var(--smoke-2); }
.card-dark .card-list { border-top-color: var(--line); }
.card-dark:hover { border-color: var(--orange); box-shadow: none; }

/* --- Service detail blocks ---------------------------------------------- */
.svc-block {
  display: grid;
  gap: 2rem;
  padding-block: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--line-soft);
}
.svc-block:first-of-type { border-top: none; padding-top: 0; }
@media (min-width: 900px) {
  .svc-block { grid-template-columns: 0.85fr 1.15fr; gap: 3.5rem; }
}
.svc-block h2 { margin-bottom: 0.75rem; }
.svc-tag {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--index-num);  /* 3.3:1 on --paper — reads as a section index, not a ghost */
  display: block;
  margin-bottom: 0.5rem;
}
.svc-items {
  display: grid;
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
@media (min-width: 620px) { .svc-items { grid-template-columns: repeat(2, 1fr); } }
.svc-item {
  background: var(--paper);
  padding: 1.5rem 1.35rem;
  transition: background-color 0.25s var(--ease);
}
.svc-item:hover { background: var(--white); }
.svc-item h3 {
  font-size: 1.125rem;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.svc-item h3 svg { color: var(--orange); flex: none; }
.svc-item p { font-size: 0.9rem; color: var(--lead-text); margin: 0; }

/* --- Process ------------------------------------------------------------ */
.process {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 640px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .process { grid-template-columns: repeat(4, 1fr); } }

.step {
  background: var(--ink);
  padding: clamp(1.5rem, 3vw, 2.25rem) 1.5rem;
  position: relative;
  overflow: hidden;
}
.step::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.step:hover::after { transform: scaleX(1); }
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--step-num);
  display: block;
  margin-bottom: 0.75rem;
  transition: color 0.3s var(--ease);
}
.step:hover .step-num { color: var(--orange); }
.step h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 0.5rem; }
.step p { color: var(--smoke); font-size: 0.9375rem; margin: 0; }

/* --- Value / feature rows ----------------------------------------------- */
.value-grid {
  display: grid;
  gap: 2rem 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }

.value { display: flex; gap: 1rem; align-items: flex-start; }
.value-mark {
  flex: none;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 2px solid var(--orange);
  border-radius: 2px;
  color: var(--orange);
}
.value h3 { font-size: 1.25rem; margin-bottom: 0.35rem; }
.value p { font-size: 0.9375rem; margin: 0; color: var(--lead-text); }

/* --- Location grid ------------------------------------------------------ */
.loc-grid {
  display: grid;
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  grid-template-columns: 1fr;
}
@media (min-width: 560px) { .loc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .loc-grid { grid-template-columns: repeat(3, 1fr); } }

.loc {
  background: var(--white);
  padding: 1.6rem 1.5rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: background-color 0.25s var(--ease);
  position: relative;
}
.loc:hover { background: var(--ink); color: var(--paper); }
.loc:hover .loc-sub { color: var(--smoke); }
.loc:hover .loc-name { color: var(--orange); }
.loc-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  transition: color 0.25s var(--ease);
}
.loc-name svg { flex: none; opacity: 0; transform: translateX(-6px); transition: all 0.25s var(--ease); }
.loc:hover .loc-name svg { opacity: 1; transform: translateX(0); }
.loc-sub { font-size: var(--fs-small); color: var(--muted-text); margin: 0; transition: color 0.25s var(--ease); }

/* --- Callout / quote ---------------------------------------------------- */
.callout {
  border-left: 4px solid var(--orange);
  padding: 0.35rem 0 0.35rem 1.5rem;
  margin-block: 2rem;
}
.callout p {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  margin: 0;
}

/* --- FAQ ---------------------------------------------------------------- */
.faq { border-top: 1px solid var(--line-soft); }
.faq details {
  border-bottom: 1px solid var(--line-soft);
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2.2vw, 1.4rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '';
  flex: none;
  width: 14px; height: 14px;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(45deg) translateY(-3px);
  transition: transform 0.3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg) translateY(-3px); }
.faq summary:hover { color: var(--orange); }
.faq-body { padding-bottom: 1.5rem; max-width: 70ch; }
.faq-body p { font-size: 0.9688rem; color: var(--lead-text); }

/* --- CTA band ----------------------------------------------------------- */
.cta-band {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
}
.cta-band h2 { max-width: 18ch; margin-inline: auto; }
.cta-band .lead { margin-inline: auto; }
.cta-band .btn-row { justify-content: center; }

/* --- Contact / form ----------------------------------------------------- */
.contact-layout {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
}
@media (min-width: 940px) {
  .contact-layout { grid-template-columns: 1fr 1.2fr; }
}

.contact-detail {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.contact-detail:first-of-type { border-top: 1px solid var(--line-soft); }
.contact-detail svg { flex: none; color: var(--orange); margin-top: 3px; }
.contact-detail dt {
  font-size: var(--fs-micro);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-text);
  font-weight: 700;
  margin-bottom: 0.15rem;
}
.contact-detail dd {
  margin: 0;
  font-weight: 600;
  font-size: 1.0625rem;
}
.contact-detail dd a { text-decoration: none; }
.contact-detail dd a:hover { color: var(--accent-text); text-decoration: underline; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
}

.form-grid { display: grid; gap: 1.15rem; }
@media (min-width: 620px) { .form-grid.two { grid-template-columns: repeat(2, 1fr); } }

.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-2);
}
.field .req { color: var(--orange-ink); }

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  padding: 0.85rem 0.95rem;
  min-height: 50px;
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23FF5A1F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  background: var(--white);
  border-color: var(--orange);
  outline: none;
  box-shadow: 0 0 0 3px var(--orange-t);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }

/* Honeypot — hidden from humans, visible to naive bots */
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

.form-footer { margin-top: 1.75rem; }
.form-note {
  font-size: var(--fs-small);
  color: var(--muted-text);
  margin: 1rem 0 0;
}
.btn-submit { width: 100%; }
@media (min-width: 620px) { .btn-submit { width: auto; min-width: 220px; } }

.form-msg {
  display: none;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 1.25rem;
  padding: 0.9rem 1rem;
  border-radius: 2px;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.5;
}
.form-msg svg { flex: none; margin-top: 3px; }
.form-msg.show { display: flex; }
.form-msg.ok { background: rgba(34, 197, 94, 0.1); color: #15803D; border: 1px solid rgba(34, 197, 94, 0.35); }
.form-msg.err { background: rgba(239, 68, 68, 0.08); color: #B91C1C; border: 1px solid rgba(239, 68, 68, 0.3); }

/* --- Footer ------------------------------------------------------------- */
.site-footer { background: var(--ink); color: var(--smoke); }
.footer-top {
  display: grid;
  gap: 2.5rem;
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
@media (min-width: 780px) {
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; }
}
.footer-brand .logo { margin-bottom: 1.1rem; }
.footer-brand p { font-size: 0.9375rem; max-width: 38ch; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  color: var(--smoke);
  text-decoration: none;
  font-size: 0.9375rem;
}
.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: var(--fs-small);
}
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--smoke);
  transition: all 0.2s var(--ease);
}
.footer-social a:hover { border-color: var(--orange); color: var(--orange); }

/* --- Reveal animation --------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-1 { transition-delay: 0.08s; }
.reveal-2 { transition-delay: 0.16s; }
.reveal-3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* --- 404 ---------------------------------------------------------------- */
.err-page {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--ink);
  color: var(--paper);
  padding-block: 5rem;
}
.err-code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 20vw, 11rem);
  font-weight: 800;
  line-height: 0.85;
  color: var(--orange);
  margin: 0 0 1rem;
}
