/* ==========================================================================
   Omar's Drywall — "Critical Light"
   Critical lighting is the trade term for raking light across a finished wall:
   it exposes every flaw. The page is lit the same way.
   ========================================================================== */

:root {
  /* Surfaces — warm darks, the color of drywall dust in shadow */
  --dust:      #0D0C0A;
  --ink:       #14120F;
  --mud:       #1E1B16;
  --mud-2:     #2A2620;
  --seam:      #38332A;

  /* Light */
  --chalk:     #F2EFE6;
  --chalk-dim: #BDB6A6;
  --steel:     #857E71;

  /* Accents */
  --orange:      #FF6A13;
  --orange-deep: #C24A08;
  --board:       #6FA8A0;   /* unfinished drywall paper, sampled from the hero */

  --font-display: "Archivo Black", "Arial Black", sans-serif;
  --font-cond:    "Saira Condensed", "Arial Narrow", sans-serif;
  --font-body:    "Archivo", system-ui, sans-serif;

  /* Modular scale, 1.25 (major third), 17px base */
  --t--1: 0.8rem;
  --t-0:  1rem;
  --t-1:  1.25rem;
  --t-2:  1.563rem;
  --t-3:  1.953rem;
  --t-4:  2.441rem;

  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --rail:   clamp(0px, 6vw, 7rem);
  --maxw:   78rem;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--chalk-dim);
  background: var(--ink);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

/* Raking light + grain, fixed behind everything ------------------------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(1100px 620px at 4% 104%, rgba(255,106,19,.13), transparent 62%),
    radial-gradient(880px 520px at 98% -4%, rgba(111,168,160,.10), transparent 60%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

main, header, footer { position: relative; z-index: 2; }

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

a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: var(--orange); color: #fff; }

/* Type ------------------------------------------------------------------ */
h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--chalk);
  line-height: 1.02;
  letter-spacing: -.02em;
  margin: 0;
  font-weight: 400;
}

h2 { font-size: clamp(2rem, 5.2vw, 3.4rem); }
h3 { font-size: var(--t-2); letter-spacing: -.01em; line-height: 1.14; }

p { margin: 0 0 1em; }

.lede {
  font-size: clamp(1.05rem, 2.1vw, var(--t-1));
  line-height: 1.55;
  max-width: 46ch;
  color: var(--chalk-dim);
}

/* The condensed job-site voice: nav, buttons, scales, figures.
   Deliberately caps — it is the vernacular of site signage — and kept off
   section headings so the page never shouts through. */
.cond {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: .10em;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section { padding-block: clamp(4.5rem, 11vw, 9rem); }

/* A section divider drawn as a taped joint: chalk band, feathered edges. */
.seam {
  height: 3px;
  border: 0;
  margin: 0;
  background: linear-gradient(90deg,
    transparent, var(--seam) 12%, var(--chalk-dim) 48%, var(--seam) 86%, transparent);
  opacity: .34;
}

/* Buttons --------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-weight: 700;
  font-size: 1.02rem;
  padding: .95rem 1.7rem;
  border: 2px solid transparent;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color .28s var(--ease), border-color .28s var(--ease);
}
.btn span { position: relative; z-index: 1; }

.btn-primary { background: var(--orange); color: #14120F; }
.btn-primary::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--chalk);
  transform: translateY(101%);
  transition: transform .34s var(--ease);
}
.btn-primary:hover::before, .btn-primary:focus-visible::before { transform: translateY(0); }

.btn-ghost { border-color: var(--seam); color: var(--chalk); }
.btn-ghost:hover, .btn-ghost:focus-visible { border-color: var(--chalk); }

/* Header ---------------------------------------------------------------- */
.masthead {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: .85rem var(--gutter);
  background: rgba(13,12,10,.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--seam);
}

.logo {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  text-decoration: none;
  font-family: var(--font-display);
  color: var(--chalk);
  font-size: 1.06rem;
  letter-spacing: -.02em;
  white-space: nowrap;
}
.logo b { color: var(--orange); font-weight: 400; }

.nav { display: flex; gap: 1.6rem; margin-left: auto; }
.nav a {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .9rem;
  font-weight: 600;
  color: var(--chalk-dim);
  text-decoration: none;
  padding-block: .3rem;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav a:hover { color: var(--chalk); border-bottom-color: var(--orange); }

.masthead .btn { padding: .62rem 1.15rem; font-size: .92rem; }

.lang {
  display: flex;
  border: 1px solid var(--seam);
  border-radius: 2px;
  overflow: hidden;
  flex: none;
}
.lang button {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  font-size: .82rem;
  padding: .42rem .7rem;
  background: none;
  border: 0;
  color: var(--steel);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.lang button[aria-pressed="true"] { background: var(--chalk); color: var(--ink); }

/* Hero ------------------------------------------------------------------ */
.hero {
  position: relative;
  padding-block: clamp(3.5rem, 9vw, 7rem) 0;
  overflow: hidden;
}

.hero-grid {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .76fr);
  column-gap: clamp(2rem, 5vw, 4.5rem);
  row-gap: clamp(1.8rem, 4vw, 3rem);
  align-items: end;
}

/* The headline runs the full measure; copy and photograph share the row below. */
.hero-copy   { grid-column: 1 / -1; }
.hero-body   { grid-column: 1; padding-bottom: .5rem; }
.hero-figure { grid-column: 2; grid-row: 2; }

.hero h1 {
  font-size: clamp(2.6rem, 9.5vw, 8.5rem);
  line-height: .86;
  letter-spacing: -.045em;
  margin-bottom: 0;
  /* Raking light across the letterforms */
  background: linear-gradient(104deg, #FFFFFF 0%, var(--chalk) 26%, #9C947F 52%, var(--chalk) 74%, #FFFFFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero h1 span { display: block; }

.hero-sub {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: clamp(.88rem, 1.9vw, 1.05rem);
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 1.5rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.8rem 0 0; }

.hero-figure { position: relative; align-self: stretch; min-height: 19rem; margin: 0; }
.hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  filter: saturate(.86) contrast(1.06) brightness(.82);
}
.hero-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(190deg, rgba(13,12,10,.55), transparent 42%, rgba(13,12,10,.72));
  border-radius: 2px;
}

/* Credentials strip under the hero */
.creds {
  max-width: var(--maxw);
  margin: clamp(2.5rem, 6vw, 4rem) auto 0;
  padding: 1.35rem var(--gutter);
  border-top: 1px solid var(--seam);
  border-bottom: 1px solid var(--seam);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem clamp(1.5rem, 5vw, 4rem);
  align-items: baseline;
}
.cred { display: flex; align-items: baseline; gap: .6rem; }
.cred dt {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--chalk);
  letter-spacing: -.03em;
}
.cred dd {
  margin: 0;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .82rem;
  font-weight: 600;
  color: var(--steel);
  max-width: 14ch;
  line-height: 1.25;
}

/* Section heads --------------------------------------------------------- */
.head { max-width: 62ch; margin-bottom: clamp(2.5rem, 5vw, 3.6rem); }
.head p { margin-top: 1.1rem; }

/* ==========================================================================
   Before / After — the proof
   ========================================================================== */
.proof { background: var(--dust); }

.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 27rem), 1fr));
  gap: clamp(1.6rem, 3.4vw, 2.6rem);
}

.ba-card { display: flex; flex-direction: column; }

.ba {
  position: relative;
  --pos: 50%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 2px;
  background: var(--mud);
  isolation: isolate;
  touch-action: pan-y;
  cursor: ew-resize;
}

.ba img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}

/* The "before" layer is wiped away to reveal the finished wall beneath. */
.ba .before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); z-index: 2; }
.ba .after  { z-index: 1; }

.ba-tag {
  position: absolute;
  bottom: .85rem;
  z-index: 4;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .74rem;
  font-weight: 700;
  padding: .3rem .6rem;
  border-radius: 2px;
  background: rgba(13,12,10,.78);
  backdrop-filter: blur(6px);
  pointer-events: none;
  transition: opacity .25s;
}
.ba-tag.is-before { left: .85rem; color: var(--chalk-dim); }
.ba-tag.is-after  { right: .85rem; color: var(--board); }

/* Handle styled as a taping knife: chalk blade, orange grip. */
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 2px;
  z-index: 5;
  background: var(--chalk);
  transform: translateX(-1px);
  pointer-events: none;
  box-shadow: 0 0 22px rgba(0,0,0,.65);
}
.ba-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--orange);
  border: 2px solid var(--chalk);
  box-shadow: 0 6px 20px rgba(0,0,0,.55);
}
.ba-handle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 20px;
  height: 2px;
  transform: translate(-50%, -50%);
  background: var(--ink);
  box-shadow: 0 -5px 0 var(--ink), 0 5px 0 var(--ink);
}

/* The range input is the real control — keyboard and screen-reader native —
   sitting invisibly over the image. */
.ba-range {
  position: absolute;
  inset: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
  background: none;
}
.ba-range::-webkit-slider-thumb { -webkit-appearance: none; width: 54px; height: 100%; }
.ba-range::-moz-range-thumb { width: 54px; height: 400px; border: 0; opacity: 0; }
.ba:has(.ba-range:focus-visible) { outline: 3px solid var(--orange); outline-offset: 3px; }

.ba-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1rem;
  align-items: baseline;
  padding-top: 1.1rem;
}
.ba-meta h3 { font-size: var(--t-1); }
.ba-meta .where {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--orange);
}
.ba-meta p { flex: 1 1 100%; margin: .3rem 0 0; font-size: .94rem; color: var(--steel); }

.proof-note {
  margin-top: 2.6rem;
  font-size: .86rem;
  color: var(--steel);
  max-width: 62ch;
}

/* ==========================================================================
   Finish levels — a real ordinal scale (ASTM C840), so it earns numerals
   ========================================================================== */
.levels-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .78fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.scale { border-top: 1px solid var(--seam); }

.level {
  display: grid;
  grid-template-columns: 3.2rem minmax(0, 1fr);
  gap: 1.2rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--seam);
  align-items: baseline;
}
.level dt {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--seam);
  letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
}
.level dd { margin: 0; }
.level b {
  display: block;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .88rem;
  color: var(--chalk-dim);
  font-weight: 600;
}
.level span { font-size: .92rem; color: var(--steel); }

.level.is-ours { border-bottom-color: var(--orange); }
.level.is-ours dt { color: var(--orange); }
.level.is-ours b { color: var(--chalk); }

.levels-aside img { border-radius: 2px; filter: saturate(.85) brightness(.9); }
.levels-aside p { margin-top: 1.2rem; font-size: .94rem; color: var(--steel); }

/* ==========================================================================
   Services — asymmetric mosaic, not a card grid
   ========================================================================== */
.mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(.9rem, 1.8vw, 1.4rem);
}

.svc {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 11rem;
  padding: 1.5rem;
  border: 1px solid var(--seam);
  border-radius: 2px;
  background: var(--mud);
  overflow: hidden;
  transition: border-color .3s var(--ease);
}
.svc:hover { border-color: var(--steel); }

.svc-img { grid-column: span 3; min-height: 19rem; border-color: transparent; }
.svc-img > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.5) saturate(.8);
  transition: transform .8s var(--ease), filter .5s;
}
.svc-img:hover > img { transform: scale(1.045); filter: brightness(.58) saturate(.9); }
.svc-img > img { z-index: 0; }
/* Scrim sits between photograph and caption so text stays readable over a
   bright window or a pale ceiling. */
.svc-img::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 70%;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(13,12,10,.88));
}
.svc-img > * { position: relative; z-index: 2; }

.svc-sm { grid-column: span 3; }
.svc-third { grid-column: span 2; }

.svc h3 { font-size: var(--t-1); margin-bottom: .5rem; }
.svc p { margin: 0; font-size: .93rem; color: var(--steel); }
.svc-img p { color: var(--chalk-dim); }

/* ==========================================================================
   Colorado — the local-expertise block
   ========================================================================== */
.colorado { background: var(--dust); }

.co-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.4rem);
  margin-top: 3rem;
}
.co-item { border-top: 2px solid var(--orange); padding-top: 1.2rem; }
.co-item h3 { font-size: var(--t-1); margin-bottom: .6rem; }
.co-item p { margin: 0; font-size: .94rem; color: var(--steel); }

/* ==========================================================================
   Process — a genuine 5-step sequence
   ========================================================================== */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 11rem), 1fr));
  gap: clamp(1rem, 2.2vw, 1.6rem);
  counter-reset: step;
}
.step { counter-increment: step; }
.step figure { margin: 0 0 1rem; position: relative; overflow: hidden; border-radius: 2px; }
.step img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; filter: saturate(.8) brightness(.8); }
.step figure::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  z-index: 2;
  top: .55rem;
  left: .7rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--chalk);
  letter-spacing: -.03em;
  text-shadow: 0 1px 6px rgba(13,12,10,.8);
}
.step figure::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 42%;
  z-index: 1;
  background: linear-gradient(180deg, rgba(13,12,10,.8), transparent);
}
.step h3 { font-size: 1.06rem; margin-bottom: .35rem; }
.step p { font-size: .9rem; color: var(--steel); margin: 0; }

/* ==========================================================================
   Service area
   ========================================================================== */
.area-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.hoods { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.6rem; padding: 0; }
.hoods li {
  list-style: none;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .82rem;
  font-weight: 600;
  color: var(--chalk-dim);
  border: 1px solid var(--seam);
  border-radius: 2px;
  padding: .34rem .66rem;
}
.area-img { border-radius: 2px; filter: saturate(.85) contrast(1.05) brightness(.78); }
.zips { margin-top: 1.8rem; font-size: .88rem; color: var(--steel); font-variant-numeric: tabular-nums; }

/* ==========================================================================
   Reviews
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: clamp(1.4rem, 3vw, 2.2rem);
}
.review { border-left: 2px solid var(--seam); padding-left: 1.4rem; }
.review blockquote {
  margin: 0 0 1rem;
  font-size: var(--t-1);
  line-height: 1.45;
  color: var(--chalk);
  font-family: var(--font-body);
}
.review figcaption {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--steel);
}
.review h3 { font-size: var(--t-1); margin-bottom: .6rem; }
.review p { margin: 0; font-size: .94rem; color: var(--steel); }

/* ==========================================================================
   Estimate form
   ========================================================================== */
.quote { background: var(--dust); }
.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .8rem;
  font-weight: 600;
  color: var(--chalk-dim);
  margin-bottom: .4rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--chalk);
  background: var(--mud);
  border: 1px solid var(--seam);
  border-radius: 2px;
  padding: .8rem .9rem;
  transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--orange); }
.field textarea { min-height: 7rem; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

.form-note { font-size: .82rem; color: var(--steel); margin-top: 1rem; }

.contact-block { border-top: 2px solid var(--orange); padding-top: 1.4rem; margin-bottom: 2rem; }
.contact-block a.tel {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.4vw, 2.4rem);
  color: var(--chalk);
  text-decoration: none;
  letter-spacing: -.03em;
  display: inline-block;
  margin-bottom: .5rem;
}
.contact-block a.tel:hover { color: var(--orange); }
.hours { font-size: .92rem; color: var(--steel); }

/* ==========================================================================
   Footer + sticky mobile call bar
   ========================================================================== */
.site-foot {
  border-top: 1px solid var(--seam);
  padding-block: 3rem 7rem;
  font-size: .88rem;
  color: var(--steel);
}
.foot-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  align-items: baseline;
  justify-content: space-between;
}
.site-foot a { text-decoration: none; }
.site-foot a:hover { color: var(--chalk); }

.callbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: none;
  gap: 1px;
  background: var(--seam);
  border-top: 1px solid var(--seam);
}
.callbar a {
  flex: 1;
  text-align: center;
  padding: .95rem .5rem;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
  font-size: .94rem;
  text-decoration: none;
}
.callbar .c-call { background: var(--orange); color: #14120F; }
.callbar .c-quote { background: var(--mud); color: var(--chalk); }

/* ==========================================================================
   Hero load sequence — the page's one non-interactive motion
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
  .reveal > * { opacity: 0; transform: translateY(14px); animation: rise .85s var(--ease) forwards; }
  .reveal > *:nth-child(1) { animation-delay: .05s; }
  .reveal > *:nth-child(2) { animation-delay: .16s; }
  .reveal > *:nth-child(3) { animation-delay: .27s; }
  .reveal > *:nth-child(4) { animation-delay: .38s; }
  .creds { opacity: 0; animation: rise .9s var(--ease) .55s forwards; }
}
@keyframes rise { to { opacity: 1; transform: none; } }

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

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1000px) {
  .hero-grid, .levels-layout, .area-layout, .quote-layout { grid-template-columns: 1fr; }
  .hero-copy, .hero-body, .hero-figure { grid-column: 1; grid-row: auto; }
  .hero-figure { min-height: 15rem; }
  .hero h1 { font-size: clamp(2.5rem, 10.5vw, 4.6rem); }
  .svc-img, .svc-sm, .svc-third { grid-column: span 3; }
}

@media (max-width: 860px) {
  .nav { display: none; }
  .masthead .btn-primary { margin-left: auto; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .mosaic { grid-template-columns: 1fr; }
  .co-grid { grid-template-columns: 1fr; }
  .svc-img, .svc-sm, .svc-third { grid-column: auto; }
  .field-row { grid-template-columns: 1fr; }
  .callbar { display: flex; }
  .site-foot { padding-bottom: 6rem; }
  .ba-handle::after { width: 40px; height: 40px; }
  .masthead { gap: .7rem; }
  .masthead .btn { padding: .55rem .8rem; font-size: .84rem; }
}
