/* Level Head Contracting : homepage concept
   Design language: Warm Editorial (type scale, spacing, composition, motion)
   Colour: Level Head Contracting's own logo lockup
     orange  #FF7632  (logo tagline + level body)
     ink     #17140F  (deepened from the logo wordmark #373332)
     slate   #33505E  (deepened from the mascot's overalls #5B8499)
*/

:root {
  --orange:        #ff7632;
  --orange-hi:     #ff8f52;
  --orange-ink:    #a8410c;   /* accent at text weight on light grounds */
  --orange-soft:   rgba(255, 118, 50, 0.14);

  --ink:           #17140f;
  --ink-2:         #221e18;
  --ink-3:         #2f2a22;

  --slate:         #33505e;
  --slate-2:       #294250;
  --slate-hi:      #8fb3c4;

  --paper:         #f4f1ec;
  --paper-2:       #fbfaf8;
  --line:          #ddd7cd;
  --line-dark:     rgba(247, 244, 239, 0.16);

  --text-dark:     #17140f;
  --text-body:     #4a443c;
  --text-muted:    #6e6659;
  --text-light:    #f7f4ef;
  --text-light-2:  rgba(247, 244, 239, 0.72);

  --font-display: "Abril Fatface", Georgia, serif;
  --font-body: "Mulish", "Helvetica Neue", Arial, sans-serif;

  --wrap: min(90%, 1180px);
  --wrap-wide: min(94%, 1480px);
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --band: clamp(4.5rem, 9vw, 8rem);
  --nav-h: 84px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-lift: 0 24px 52px -22px rgba(23, 20, 15, 0.5);
  --shadow-deep: 0 34px 70px -28px rgba(23, 20, 15, 0.62);
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.04;
  color: var(--text-dark);
  margin: 0;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

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

.wrap { width: var(--wrap); margin-inline: auto; }
.wrap-wide { width: var(--wrap-wide); margin-inline: auto; }

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

/* ---------- shared type ---------- */

.kicker {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-ink);
  margin: 0 0 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.kicker::before {
  content: "";
  width: 34px; height: 2px;
  background: var(--orange);
  flex: none;
}
.on-dark .kicker { color: var(--orange); }

.lede { font-size: clamp(1.06rem, 1.5vw, 1.2rem); line-height: 1.6; max-width: 62ch; }

.body-col { max-width: 68ch; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  min-height: 48px;
  transition: background 0.28s var(--ease-soft), color 0.28s var(--ease-soft),
              border-color 0.28s var(--ease-soft), transform 0.28s var(--ease);
}
.btn__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: currentColor; flex: none;
  transition: transform 0.3s var(--ease);
}
.btn:hover .btn__dot { transform: scale(1.65); }

.btn--solid { background: var(--orange); color: #17140f; }
.btn--solid:hover { background: var(--orange-hi); transform: translateY(-2px); }

.btn--line { border-color: rgba(23, 20, 15, 0.32); color: var(--text-dark); }
.btn--line:hover { border-color: var(--text-dark); background: rgba(23, 20, 15, 0.05); }

.on-dark .btn--line { border-color: rgba(247, 244, 239, 0.38); color: var(--text-light); }
.on-dark .btn--line:hover { border-color: var(--text-light); background: rgba(247, 244, 239, 0.09); }

.textlink {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-weight: 700; font-size: 0.9375rem;
  text-decoration: none;
  color: var(--orange-ink);
  border-bottom: 2px solid var(--orange-soft);
  padding-top: 0.85rem;
  padding-bottom: 0.45rem;
  transition: border-color 0.25s var(--ease-soft), gap 0.25s var(--ease);
}
.textlink:hover { border-bottom-color: var(--orange); gap: 0.85rem; }
.on-dark .textlink { color: var(--orange); border-bottom-color: rgba(255, 118, 50, 0.3); }
.on-dark .textlink:hover { border-bottom-color: var(--orange); }
.textlink svg { width: 15px; height: 15px; flex: none; }

/* ---------- header ---------- */

.header {
  position: fixed; inset: 0 0 auto 0;
  height: var(--nav-h);
  display: flex; align-items: center;
  z-index: 100;
  transition: background 0.35s var(--ease-soft), box-shadow 0.35s var(--ease-soft),
              height 0.35s var(--ease-soft);
}
.header::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(23, 20, 15, 0.72), rgba(23, 20, 15, 0));
  opacity: 1;
  transition: opacity 0.35s var(--ease-soft);
  pointer-events: none;
}
.header.is-stuck { background: var(--ink); box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.7); height: 70px; }
.header.is-stuck::before { opacity: 0; }

.header__inner {
  width: var(--wrap-wide); margin-inline: auto;
  display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.5rem);
  position: relative;
}

.mark { display: flex; flex-direction: column; text-decoration: none; color: var(--text-light); line-height: 1; }
.mark__name { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: -0.02em; }
.mark__sub {
  font-size: 0.5625rem; font-weight: 800; letter-spacing: 0.34em;
  text-transform: uppercase; color: var(--orange); margin-top: 5px;
}

.nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.9rem); margin-left: auto; }
.nav a {
  text-decoration: none; color: var(--text-light);
  font-size: 0.875rem; font-weight: 600; letter-spacing: 0.02em;
  padding: 0.5rem 0; position: relative;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--orange);
  transition: right 0.3s var(--ease);
}
.nav a:hover::after { right: 0; }

.header__cta { display: flex; align-items: center; gap: 1.1rem; margin-left: clamp(0.75rem, 2vw, 1.75rem); }
.header__tel {
  color: var(--text-light); text-decoration: none;
  font-size: 0.875rem; font-weight: 700; white-space: nowrap;
}
.header__tel:hover { color: var(--orange); }
.header .btn--solid { padding: 0.72rem 1.25rem; min-height: 44px; font-size: 0.875rem; }

.burger {
  display: none;
  width: 46px; height: 46px;
  margin-left: auto;
  background: none; border: 1px solid rgba(247, 244, 239, 0.32);
  border-radius: 50%;
  cursor: pointer;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  padding: 0;
}
.burger span { display: block; width: 17px; height: 2px; background: var(--text-light); }

/* ---------- mobile drawer (own stacking context, close button inside) ---------- */

.drawer {
  position: fixed; inset: 0;
  z-index: 300;
  background: var(--ink);
  display: flex; flex-direction: column;
  padding: 1.4rem var(--gutter) 2.5rem;
  transform: translateY(-100%);
  transition: transform 0.42s var(--ease);
  visibility: hidden;
  overflow-y: auto;
}
.drawer.is-open { transform: translateY(0); visibility: visible; }

.drawer__top { display: flex; align-items: center; justify-content: space-between; min-height: 56px; }
.drawer__close {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(247, 244, 239, 0.32);
  background: none; color: var(--text-light);
  cursor: pointer; font-size: 1.35rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
}
.drawer__close:hover { border-color: var(--orange); color: var(--orange); }

.drawer__nav { display: flex; flex-direction: column; margin-top: 2.2rem; }
.drawer__nav a {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 8vw, 2.4rem);
  color: var(--text-light); text-decoration: none;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line-dark);
}
.drawer__nav a:last-of-type { border-bottom: none; }
.drawer__foot { margin-top: auto; padding-top: 2.2rem; display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.drawer__tel { color: var(--orange); font-weight: 800; font-size: 1.2rem; text-decoration: none; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  background: var(--ink);
  color: var(--text-light);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  min-height: 100vh;
  min-height: 100svh;
}
.hero__text {
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + clamp(2rem, 5vw, 4rem)) clamp(1.5rem, 5vw, 5rem) clamp(3rem, 6vw, 5rem);
  padding-left: max(clamp(1.5rem, 5vw, 5rem), calc((100vw - min(94vw, 1480px)) / 2));
}
.hero__eyebrow {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem 0.8rem;
  font-size: 0.6875rem; font-weight: 800; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: clamp(1.4rem, 3vw, 2.2rem);
}
.hero__eyebrow span:nth-child(2) { width: 1px; height: 13px; background: rgba(255, 118, 50, 0.55); }

.hero h1 {
  font-size: clamp(2.85rem, 5.5vw, 5.1rem);
  color: var(--text-light);
  max-width: 12ch;
  margin-bottom: clamp(1.5rem, 2.6vw, 2.1rem);
}
.hero__sub {
  font-size: clamp(1.02rem, 1.35vw, 1.15rem);
  color: var(--text-light-2);
  max-width: 46ch;
  margin-bottom: clamp(2rem, 3.4vw, 2.8rem);
}
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.6rem; }

.hero__media { position: relative; overflow: hidden; min-height: 46vh; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(23, 20, 15, 0.62), rgba(23, 20, 15, 0) 52%);
  pointer-events: none;
}

/* the level: signature moment */
.level {
  margin-top: clamp(2.4rem, 5vw, 3.6rem);
  width: min(100%, 390px);
}
.level svg { width: 100%; height: auto; display: block; }
.level__case { fill: none; stroke: rgba(247, 244, 239, 0.34); stroke-width: 1.5; }
.level__vial { fill: rgba(247, 244, 239, 0.06); stroke: rgba(247, 244, 239, 0.42); stroke-width: 1.5; }
.level__tick { stroke: rgba(247, 244, 239, 0.42); stroke-width: 1.5; }
.level__bubble { fill: var(--orange); }
.level__caption {
  margin-top: 0.85rem;
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.11em;
  text-transform: uppercase; color: rgba(247, 244, 239, 0.62);
}

/* ---------- intro ---------- */

.intro { background: var(--paper); padding: var(--band) 0; }
.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.intro h2 { font-size: clamp(2rem, 3.5vw, 3.05rem); max-width: 14ch; }
.intro__body { font-size: 1.0625rem; }
.pull {
  margin: clamp(2rem, 3.5vw, 2.8rem) 0 0;
  padding-top: clamp(1.5rem, 2.5vw, 2rem);
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: var(--orange-ink);
  max-width: 22ch;
}

/* ---------- full-bleed band ---------- */

.plate { position: relative; }
.plate img { width: 100%; height: clamp(280px, 46vw, 560px); object-fit: cover; }
.plate figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: clamp(2rem, 5vw, 3.5rem) var(--gutter) clamp(1.1rem, 2vw, 1.6rem);
  background: linear-gradient(to top, rgba(23, 20, 15, 0.92) 0%, rgba(23, 20, 15, 0.7) 45%, rgba(23, 20, 15, 0) 100%);
  color: var(--text-light);
  font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.03em;
}
.plate figcaption span { display: block; width: var(--wrap-wide); margin-inline: auto; }

/* ---------- services ---------- */

.services { background: var(--paper-2); padding: var(--band) 0 0; }
.services__head { max-width: 46ch; margin-bottom: clamp(3rem, 6vw, 5rem); }
.services__head h2 { font-size: clamp(2rem, 3.5vw, 3.05rem); }

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-top: 1px solid var(--line);
}
.feature:first-of-type { border-top: none; padding-top: 0; }
.feature--flip .feature__media { order: -1; }
.feature__media img {
  width: 100%; height: 100%; max-height: 560px; object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow-lift);
}
.feature__index {
  font-size: 0.6875rem; font-weight: 800; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--orange-ink); margin-bottom: 1rem;
}
.feature h3 { font-size: clamp(1.75rem, 2.9vw, 2.5rem); margin-bottom: 1.1rem; }
.feature p { max-width: 48ch; }
.feature .textlink { margin-top: 0.6rem; }

/* ---------- rows ---------- */

.rows { background: var(--paper-2); padding: clamp(3rem, 6vw, 5rem) 0 var(--band); }
.rows h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin-bottom: clamp(2rem, 4vw, 3rem); }
.row {
  display: grid;
  grid-template-columns: 110px minmax(0, 15ch) minmax(0, 1fr);
  gap: clamp(1.2rem, 3vw, 2.5rem);
  align-items: center;
  padding: clamp(1.1rem, 2.2vw, 1.6rem) 0;
  border-top: 1px solid var(--line);
}
.row:last-child { border-bottom: 1px solid var(--line); }
.row__img { width: 110px; height: 110px; object-fit: cover; border-radius: 14px; }
.row h3 { font-size: clamp(1.15rem, 1.9vw, 1.5rem); }
.row p { font-size: 0.96875rem; color: var(--text-muted); max-width: 52ch; }

/* ---------- work ---------- */

.work { background: var(--ink); color: var(--text-light); padding: var(--band) 0; }
.work h2 { color: var(--text-light); font-size: clamp(2rem, 3.5vw, 3.05rem); }
.work__head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1.5rem; margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.work__head p { color: var(--text-light-2); max-width: 40ch; margin: 0; }

.work__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.6rem);
}
.shot { margin: 0; position: relative; border-radius: 14px; overflow: hidden; background: var(--ink-2); }
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.shot:hover img { transform: scale(1.035); }
.shot figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 3rem 1.1rem 1rem;
  background: linear-gradient(to top, rgba(23, 20, 15, 0.95) 0%, rgba(23, 20, 15, 0.78) 42%, rgba(23, 20, 15, 0) 100%);
  font-size: 0.8125rem; font-weight: 600; color: var(--text-light);
}
.shot--a { grid-column: span 4; aspect-ratio: 4 / 3; }
.shot--b { grid-column: span 2; aspect-ratio: 3 / 4; }
.shot--c { grid-column: span 2; aspect-ratio: 1 / 1; }
.shot--d { grid-column: span 2; aspect-ratio: 1 / 1; }
.shot--e { grid-column: span 2; aspect-ratio: 1 / 1; }
.shot--f { grid-column: span 6; aspect-ratio: 21 / 9; }

/* ---------- neighborhoods ---------- */

.area { background: var(--slate); color: var(--text-light); padding: var(--band) 0; }
.area h2 { color: var(--text-light); font-size: clamp(2rem, 3.5vw, 3.05rem); max-width: 16ch; }
.area__grid {
  display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem); align-items: start;
}
.area__intro { color: rgba(247, 244, 239, 0.8); margin-top: 1.4rem; max-width: 44ch; }
.places { list-style: none; margin: 0; padding: 0; }
.places li {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 2.05rem);
  letter-spacing: -0.02em;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(247, 244, 239, 0.18);
  display: flex; align-items: baseline; gap: 1rem;
}
.places li:first-child { border-top: 1px solid rgba(247, 244, 239, 0.18); }
.places li::before {
  content: ""; width: 9px; height: 9px; border-radius: 50%;
  background: var(--orange); flex: none; transform: translateY(-4px);
}
.area__addr { margin-top: 1.8rem; font-size: 0.9375rem; color: rgba(247, 244, 239, 0.8); }

/* ---------- reviews ---------- */

.reviews { background: var(--paper); padding: var(--band) 0; }
.reviews h2 { font-size: clamp(2rem, 3.5vw, 3.05rem); margin-bottom: clamp(2.4rem, 5vw, 3.4rem); }
.quote--lead {
  margin: 0 0 clamp(2.4rem, 5vw, 3.4rem);
  padding-left: clamp(1.2rem, 3vw, 2.4rem);
  border-left: 1px solid var(--orange);
  max-width: 40rem;
}
.quote--lead p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.1vw, 1.85rem);
  line-height: 1.2; letter-spacing: -0.02em;
  color: var(--text-dark);
}
.quote--lead .quote__by { font-family: var(--font-body); }
.quote__by { font-size: 0.8125rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-top: 1.2rem; }
.quote__by em { font-style: normal; color: var(--orange-ink); }

.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 0; }
.quotes blockquote {
  margin: 0; padding: clamp(1.4rem, 3vw, 2rem) clamp(1.2rem, 2.5vw, 2rem);
  border-top: 1px solid var(--line);
}
.quotes blockquote p { font-size: 1rem; color: var(--text-body); }
.quotes blockquote:first-child { padding-left: 0; }

/* ---------- contact ---------- */

.contact { background: var(--ink); color: var(--text-light); padding: var(--band) 0; }
.contact__grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: clamp(2rem, 5vw, 5rem); align-items: end; }
.contact h2 { color: var(--text-light); font-size: clamp(2rem, 3.8vw, 3.3rem); max-width: 15ch; }
.contact p { color: var(--text-light-2); max-width: 42ch; margin-top: 1.4rem; }
.contact__lines { display: flex; flex-direction: column; gap: 1.5rem; }
.contact__line { display: flex; flex-direction: column; gap: 0.35rem; }
.contact__label { font-size: 0.6875rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(247, 244, 239, 0.55); }
.contact__val {
  font-family: var(--font-display); font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  color: var(--text-light); text-decoration: none; letter-spacing: -0.02em;
  word-break: break-word;
}
a.contact__val:hover { color: var(--orange); }
.contact__actions { margin-top: clamp(2rem, 4vw, 2.8rem); display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---------- footer ---------- */

.footer { background: var(--ink-2); color: var(--text-light-2); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; font-size: 0.9375rem; }
.footer__grid { display: grid; grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 1fr)); gap: clamp(1.75rem, 4vw, 3rem); }
.footer .mark { color: var(--text-light); }
.footer__tag { margin-top: 1.1rem; max-width: 30ch; color: rgba(247, 244, 239, 0.6); font-size: 0.9375rem; }
.footer h4 { font-family: var(--font-body); font-size: 0.6875rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(247, 244, 239, 0.55); margin: 0 0 1rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.footer li a { text-decoration: none; padding-block: 0.65rem; display: inline-block; }
.footer li a:hover { color: var(--orange); }
.footer__base {
  margin-top: clamp(2.5rem, 5vw, 3.5rem); padding-top: 1.6rem;
  border-top: 1px solid var(--line-dark);
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; justify-content: space-between;
  font-size: 0.8125rem; color: rgba(247, 244, 239, 0.5);
}
.footer__base a { display: inline-block; padding-block: 0.65rem; text-decoration: none; }
.footer__base a:hover { color: var(--orange); }

/* ---------- 404 ---------- */

.error {
  background: var(--ink); color: var(--text-light);
  min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 3rem) var(--gutter) 4rem;
}
.error__code { font-family: var(--font-display); font-size: clamp(5rem, 18vw, 11rem); line-height: 1; color: rgba(255, 118, 50, 0.22); }
.error h1 { color: var(--text-light); font-size: clamp(1.9rem, 4.5vw, 3rem); margin: 0.5rem 0 1.2rem; }
.error p { color: var(--text-light-2); max-width: 46ch; margin-bottom: 2rem; }

/* ---------- motion ---------- */

html.js .reveal { opacity: 0; transform: translateY(22px); }
html.js .reveal-img { clip-path: inset(0 0 100% 0); }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; }
  html.js .reveal-img { clip-path: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- responsive ---------- */

@media (max-width: 1040px) {
  .nav, .header__cta { display: none; }
  .burger { display: flex; }
  .hero { grid-template-columns: minmax(0, 1fr); min-height: 0; }
  .hero__text { padding-left: clamp(1.5rem, 6vw, 3rem); padding-top: calc(var(--nav-h) + 2.5rem); }
  .hero__media { min-height: 52vh; order: 2; }
  .hero__media::after { background: linear-gradient(to bottom, rgba(23, 20, 15, 0.5), rgba(23, 20, 15, 0) 45%); }
  .intro__grid, .area__grid, .contact__grid { grid-template-columns: minmax(0, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .work__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .shot--a { grid-column: span 4; }
  .shot--b, .shot--c, .shot--d, .shot--e { grid-column: span 2; }
  .shot--f { grid-column: span 4; }
}

@media (max-width: 780px) {
  .feature { grid-template-columns: minmax(0, 1fr); gap: 1.5rem; }
  .feature--flip .feature__media { order: 0; }
  .feature__media img { max-height: 340px; }
  .row { grid-template-columns: 78px minmax(0, 1fr); grid-template-areas: "img name" "img copy"; row-gap: 0.35rem; align-items: start; }
  .row__img { width: 78px; height: 78px; grid-area: img; }
  .row h3 { grid-area: name; }
  .row p { grid-area: copy; }
  .quotes { grid-template-columns: minmax(0, 1fr); }
  .quotes blockquote { padding-left: 0; padding-right: 0; }
  .work__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shot--a, .shot--f { grid-column: span 2; }
  .shot--b, .shot--c, .shot--d, .shot--e { grid-column: span 1; }
  .shot--b { aspect-ratio: 3 / 4; }
  .footer__grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 480px) {
  .hero h1 { max-width: none; }
  .hero__eyebrow span:nth-child(1), .hero__eyebrow span:nth-child(2) { display: none; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .shot--a { aspect-ratio: 4 / 3; }
  .shot--f { aspect-ratio: 16 / 9; }
}

/* Balance the local-service headline inside the split hero. */
@media (min-width: 1041px) {
  .hero h1 {
    font-size: 3.8rem;
    max-width: 15ch;
    text-wrap: balance;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.35rem;
    max-width: 16ch;
    text-wrap: balance;
  }
}
/* Samoya QA: keep the homepage hero to exactly one browser viewport. */
.hero{height:100vh;height:100svh;min-height:0;max-height:100svh;overflow:hidden}
