/* ==========================================================================
   5th & Oak Autobody — Design System
   Warm Americana editorial: bone paper, heritage red, industrial display type
   ========================================================================== */

:root {
  /* Color */
  --bone: #f4f0e6;
  --bone-2: #ece5d5;
  --card: #faf7f0;
  --ink: #201c17;
  --ink-2: #5f5749;
  --ink-3: #6f6759;
  --red: #c22d1e;
  --red-deep: #8f1d10;
  --red-bright: #ff6a57;
  --coal: #181410;
  --coal-2: #221d17;
  --line: rgba(32, 28, 23, 0.14);
  --line-strong: rgba(32, 28, 23, 0.28);
  --line-light: rgba(244, 240, 230, 0.16);
  --frost: rgba(250, 247, 240, 0.82);

  /* Type */
  --font-display: "Big Shoulders", "Arial Narrow", "Impact", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Fraunces", "Georgia", serif;

  /* Rhythm */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 72px;
  --space-2xl: 120px;
  --space-3xl: 180px;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;

  --max-width: 1280px;
  --nav-height: 76px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

[id] {
  scroll-margin-top: calc(var(--nav-height) + 16px);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bone);
  overflow-x: hidden;
}

::selection {
  background: var(--red);
  color: var(--bone);
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bone-2);
}
::-webkit-scrollbar-thumb {
  background: rgba(32, 28, 23, 0.3);
  border-radius: 4px;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

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

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 300;
  background: var(--ink);
  color: var(--bone);
  padding: 12px 20px;
  border-radius: 0 0 12px 12px;
  font-size: 13px;
  font-weight: 600;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
}

/* Film grain over everything — the analog touch */
.grain::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 250;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 220px 220px;
}

/* ==========================================================================
   Typography
   ========================================================================== */

.display {
  font-family: var(--font-display);
  font-weight: 720;
  font-variation-settings: "opsz" 72;
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: 0.005em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-2);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--red);
}
.eyebrow--bare::before {
  display: none;
}
.eyebrow--light {
  color: rgba(244, 240, 230, 0.65);
}

.serif-note {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 460;
  font-variation-settings: "opsz" 40;
  letter-spacing: 0;
  text-transform: none;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.92;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  letter-spacing: 0.005em;
}

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 56ch;
}

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

/* ==========================================================================
   Layout primitives
   ========================================================================== */

.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

main {
  display: block;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(16px, 3vw, 36px);
  transition: background 0.35s ease, box-shadow 0.35s ease,
    backdrop-filter 0.35s ease;
}
.nav--scrolled {
  background: rgba(244, 240, 230, 0.86);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 1px 0 var(--line), 0 8px 30px rgba(32, 28, 23, 0.06);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.nav__logo {
  width: 52px;
  height: auto;
  flex-shrink: 0;
}
.nav__wordmark {
  font-family: var(--font-display);
  font-weight: 720;
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: 0.02em;
  line-height: 0.9;
  color: var(--ink);
  white-space: nowrap;
}
.nav__wordmark small {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--red);
  margin-top: 3px;
}

.nav__pills {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__links {
  display: flex;
  align-items: center;
  background: var(--frost);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  backdrop-filter: blur(14px) saturate(150%);
  border: 1px solid rgba(32, 28, 23, 0.08);
  border-radius: 100px;
  padding: 5px;
  box-shadow: 0 2px 20px rgba(32, 28, 23, 0.08);
}
.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 20px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
}
.nav__link:hover {
  background: rgba(32, 28, 23, 0.07);
}
.nav__link[aria-current="page"] {
  background: var(--ink);
  color: var(--bone);
}

.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 48px;
  padding: 0 22px;
  border-radius: 100px;
  background: var(--red);
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 20px rgba(194, 45, 30, 0.35);
  transition: transform 0.25s var(--ease-out), background 0.2s ease;
}
.nav__phone:hover {
  background: var(--red-deep);
  transform: translateY(-1px);
}
.nav__phone svg {
  flex-shrink: 0;
}

.nav__burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(32, 28, 23, 0.08);
  border-radius: 100px;
  background: var(--frost);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(32, 28, 23, 0.08);
}
.nav__burger .line {
  transition: transform 0.3s var(--ease-out), opacity 0.2s ease;
  transform-origin: center;
}
.nav__burger[aria-expanded="true"] .line--1 {
  transform: translateY(5px) rotate(45deg);
}
.nav__burger[aria-expanded="true"] .line--2 {
  opacity: 0;
}
.nav__burger[aria-expanded="true"] .line--3 {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: calc(var(--nav-height) - 4px);
  left: 14px;
  right: 14px;
  z-index: 99;
  background: rgba(250, 247, 240, 0.97);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(32, 28, 23, 0.08);
  border-radius: var(--radius-lg);
  padding: 10px;
  box-shadow: 0 12px 50px rgba(32, 28, 23, 0.18);
  opacity: 0;
  transform: translateY(-8px);
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s var(--ease-out),
    visibility 0.3s;
}
.mobile-menu--open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.mobile-menu__link {
  display: block;
  padding: 15px 18px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink);
  border-bottom: 1px solid rgba(32, 28, 23, 0.08);
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.35s ease, transform 0.35s var(--ease-out);
}
.mobile-menu--open .mobile-menu__link {
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu--open .mobile-menu__link:nth-child(1) { transition-delay: 0.06s; }
.mobile-menu--open .mobile-menu__link:nth-child(2) { transition-delay: 0.12s; }
.mobile-menu--open .mobile-menu__link:nth-child(3) { transition-delay: 0.18s; }
.mobile-menu--open .mobile-menu__link:nth-child(4) { transition-delay: 0.24s; }
.mobile-menu__link[aria-current="page"] {
  color: var(--red);
}
.mobile-menu__call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 14px 8px 8px;
  height: 54px;
  border-radius: 14px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 54px;
  padding: 0 30px;
  border-radius: 100px;
  border: none;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 0.25s var(--ease-out), background 0.2s ease,
    color 0.2s ease, border-color 0.2s ease, box-shadow 0.25s ease;
}
.btn svg {
  transition: transform 0.25s var(--ease-out);
}
.btn:hover svg {
  transform: translateX(3px);
}
.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 24px rgba(194, 45, 30, 0.32);
}
.btn--primary:hover {
  background: var(--red-deep);
  transform: translateY(-2px);
}
.btn--ink {
  background: var(--ink);
  color: var(--bone);
}
.btn--ink:hover {
  background: #000;
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
}
.btn--outline:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.btn--outline-light {
  background: transparent;
  color: var(--bone);
  border: 1.5px solid rgba(244, 240, 230, 0.35);
}
.btn--outline-light:hover {
  border-color: var(--bone);
  transform: translateY(-2px);
}
.btn--light {
  background: var(--bone);
  color: var(--ink);
}
.btn--light:hover {
  background: #fff;
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
  border-bottom: 1.5px solid var(--red);
  padding-bottom: 4px;
  transition: gap 0.25s var(--ease-out), color 0.2s ease;
}
.text-link:hover {
  gap: 13px;
  color: var(--red);
}

/* ==========================================================================
   Hero (home)
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: clamp(24px, 4vh, 56px);
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 60% at 78% 8%, rgba(194, 45, 30, 0.07), transparent 60%),
    radial-gradient(circle, rgba(32, 28, 23, 0.075) 1px, transparent 1px);
  background-size: auto, 26px 26px;
}

.hero__inner {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.hero__eyebrow-row {
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: clamp(14px, 2vh, 26px);
}
.hero__est {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 470;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  color: var(--red);
}

.hero__title {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 750;
  font-variation-settings: "opsz" 72;
  text-transform: uppercase;
  line-height: 0.84;
  letter-spacing: 0.004em;
  font-size: clamp(4.6rem, 15.5vw, 15rem);
  color: var(--ink);
}
.hero__title .row {
  display: block;
  overflow: hidden;
}
.hero__title .word {
  display: inline-block;
  transform: translateY(110%);
  animation: heroRise 0.9s var(--ease-out) forwards;
}
.hero__title .row:nth-child(2) .word {
  animation-delay: 0.12s;
}
.hero__title .amp {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 480;
  text-transform: none;
  font-size: 0.62em;
  vertical-align: baseline;
  color: var(--red);
  letter-spacing: 0;
  margin-inline: 0.02em;
}
@keyframes heroRise {
  to {
    transform: translateY(0);
  }
}

.hero__deck {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr minmax(300px, 480px);
  align-items: end;
  gap: clamp(20px, 3vw, 48px);
  margin-top: clamp(28px, 4.5vh, 56px);
}

.hero__pitch {
  opacity: 0;
  animation: heroFade 0.8s 0.5s ease forwards;
}
.hero__pitch p {
  font-size: clamp(1.02rem, 1.3vw, 1.18rem);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 34ch;
}
.hero__pitch .strong {
  color: var(--ink);
  font-weight: 600;
}
.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.hero__badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  justify-self: center;
  opacity: 0;
  animation: heroFade 0.8s 0.7s ease forwards;
}
.hero__badge-seal {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  animation: sealSpin 26s linear infinite;
}
@keyframes sealSpin {
  to {
    transform: rotate(360deg);
  }
}

.hero__photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(32, 28, 23, 0.28);
  transform: rotate(1.6deg);
  opacity: 0;
  animation: heroCard 1s 0.35s var(--ease-out) forwards;
}
@keyframes heroCard {
  from {
    opacity: 0;
    transform: rotate(1.6deg) translateY(36px);
  }
  to {
    opacity: 1;
    transform: rotate(1.6deg) translateY(0);
  }
}
.hero__photo img {
  width: 100%;
  height: clamp(240px, 30vw, 340px);
  object-fit: cover;
}
.hero__photo-tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: rgba(24, 20, 16, 0.62);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(244, 240, 230, 0.14);
  border-radius: 12px;
  padding: 10px 16px;
  color: var(--bone);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero__photo-tag .serif-note {
  text-transform: none;
  font-size: 13px;
  letter-spacing: 0;
  opacity: 0.85;
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Marquee
   ========================================================================== */

.marquee {
  position: relative;
  z-index: 4;
  background: var(--red);
  color: var(--bone);
  overflow: hidden;
  padding: 15px 0;
  transform: rotate(-1.1deg) scale(1.02);
  border-block: 1px solid rgba(0, 0, 0, 0.12);
}
.marquee__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  padding-inline: 13px;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 21px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee__item::after {
  content: "★";
  font-size: 13px;
  opacity: 0.75;
}
@keyframes marqueeScroll {
  to {
    transform: translateX(-50%);
  }
}
.marquee:hover .marquee__track,
.marquee--paused .marquee__track {
  animation-play-state: paused;
}
.marquee__toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244, 240, 230, 0.45);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  color: var(--bone);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.marquee__toggle:hover {
  background: rgba(0, 0, 0, 0.35);
  border-color: var(--bone);
}
.marquee__toggle .icon-play {
  display: none;
}
.marquee--paused .marquee__toggle .icon-play {
  display: block;
}
.marquee--paused .marquee__toggle .icon-pause {
  display: none;
}

/* ==========================================================================
   Intro (home) — sticky split
   ========================================================================== */

.intro {
  padding: clamp(90px, 12vw, 170px) 0 clamp(70px, 9vw, 130px);
}
.intro__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) 1.1fr;
  gap: clamp(36px, 6vw, 100px);
  align-items: start;
}
.intro__left {
  position: sticky;
  top: calc(var(--nav-height) + 32px);
}
.intro__left .section-heading {
  margin-top: 18px;
}
.intro__left .serif-note {
  display: block;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  color: var(--red);
  margin-top: 14px;
}
.intro__body p {
  font-size: clamp(1.04rem, 1.35vw, 1.2rem);
  line-height: 1.75;
  color: var(--ink-2);
  margin-bottom: 1.4em;
}
.intro__body p strong {
  color: var(--ink);
  font-weight: 600;
}
.intro__body .drop::first-letter {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 3.1em;
  float: left;
  line-height: 0.82;
  padding-right: 10px;
  color: var(--red);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  margin-top: clamp(56px, 8vw, 110px);
}
.stat {
  padding: 30px clamp(10px, 2vw, 28px) 6px;
  border-left: 1px solid var(--line);
}
.stat:first-child {
  border-left: none;
  padding-left: 0;
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 720;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1;
  color: var(--ink);
  text-transform: uppercase;
}
.stat__num sup {
  font-size: 0.5em;
  color: var(--red);
}
.stat__label {
  margin-top: 10px;
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-2);
}

/* ==========================================================================
   Services bento (home)
   ========================================================================== */

.services-teaser {
  padding: clamp(70px, 9vw, 130px) 0;
  background: var(--bone-2);
  border-block: 1px solid var(--line);
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(36px, 5vw, 64px);
}
.section-head .section-heading {
  max-width: 15ch;
}
.section-head__aside {
  max-width: 38ch;
  color: var(--ink-2);
  font-size: 1.02rem;
  line-height: 1.65;
  padding-bottom: 8px;
}

.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.bento__card {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid rgba(32, 28, 23, 0.09);
  padding: 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.bento__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(32, 28, 23, 0.05), 0 18px 40px rgba(32, 28, 23, 0.1);
}
.bento__card--photo {
  grid-column: span 2;
  grid-row: span 2;
  padding: 0;
  border: none;
}
.bento__card--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  scale: 1;
  transition: scale 0.7s var(--ease-out);
}
.bento__card--photo:hover img {
  scale: 1.05;
}
.bento__card--photo .bento__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(24, 20, 16, 0.82), rgba(24, 20, 16, 0.05) 55%);
}
.bento__card--photo .bento__content {
  position: relative;
  z-index: 2;
  padding: 26px;
  color: var(--bone);
  margin-top: auto;
}
.bento__card--photo .bento__title {
  color: var(--bone);
}
.bento__card--photo .bento__desc {
  color: rgba(244, 240, 230, 0.8);
}
.bento__card--wide {
  grid-column: span 2;
}
.bento__card--red {
  background: var(--red);
  border-color: transparent;
}
.bento__card--red .bento__title,
.bento__card--red .bento__num {
  color: #fff;
}
.bento__card--red .bento__desc {
  color: rgba(255, 255, 255, 0.85);
}
.bento__card--ink {
  background: var(--coal);
  border-color: transparent;
}
.bento__card--ink .bento__title {
  color: var(--bone);
}
.bento__card--ink .bento__desc {
  color: rgba(244, 240, 230, 0.7);
}
.bento__num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-3);
}
.bento__title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 0.95;
  color: var(--ink);
}
.bento__desc {
  margin-top: 10px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 44ch;
}
.bento__cta {
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  background: transparent;
  border: 1.5px dashed var(--line-strong);
}
.bento__cta:hover .text-link {
  gap: 13px;
  color: var(--red);
}

/* ==========================================================================
   Dark promise section (home)
   ========================================================================== */

.promise {
  background: var(--coal);
  color: var(--bone);
  padding: clamp(80px, 11vw, 160px) 0;
  position: relative;
  overflow: hidden;
}
.promise::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 15% 0%, rgba(194, 45, 30, 0.16), transparent 60%);
  pointer-events: none;
}
.promise .section-heading {
  color: var(--bone);
  max-width: 12ch;
}
.promise__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: clamp(44px, 6vw, 80px);
}
.promise__head .serif-note {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: rgba(244, 240, 230, 0.75);
  max-width: 30ch;
}
.promise__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-light);
}
.promise__item {
  padding: 36px clamp(18px, 2.5vw, 36px) 10px;
  border-left: 1px solid var(--line-light);
}
.promise__item:first-child {
  border-left: none;
  padding-left: 0;
}
.promise__index {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--red-bright);
}
.promise__title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 0.95;
  margin-top: 14px;
}
.promise__body {
  margin-top: 14px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(244, 240, 230, 0.68);
}

/* ==========================================================================
   Reviews (home)
   ========================================================================== */

.reviews {
  padding: clamp(80px, 11vw, 160px) 0;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start;
}
.review-card {
  background: var(--card);
  border: 1px solid rgba(32, 28, 23, 0.09);
  border-radius: var(--radius-lg);
  padding: 30px 28px 26px;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(32, 28, 23, 0.05), 0 18px 40px rgba(32, 28, 23, 0.1);
}
.review-card:nth-child(2) {
  margin-top: 34px;
}
.review-card:nth-child(3) {
  margin-top: 68px;
}
.review-card__stars {
  color: var(--red);
  letter-spacing: 4px;
  font-size: 15px;
}
.review-card__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 440;
  font-size: clamp(1.08rem, 1.4vw, 1.22rem);
  line-height: 1.55;
  color: var(--ink);
  margin-top: 16px;
}
.review-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.review-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.review-card__name {
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.2;
}
.review-card__source {
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}

/* ==========================================================================
   Loaner callout (home + about)
   ========================================================================== */

.loaner {
  padding-bottom: clamp(80px, 11vw, 160px);
}
.loaner__panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  border-radius: calc(var(--radius-lg) + 6px);
  overflow: hidden;
  background: var(--red);
  color: #fff;
}
.loaner__content {
  padding: clamp(36px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.loaner__content .section-heading {
  color: #fff;
  max-width: 13ch;
}
.loaner__content .serif-note {
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  color: rgba(255, 255, 255, 0.9);
  margin-top: 20px;
  max-width: 34ch;
  line-height: 1.5;
}
.loaner__content p.small {
  margin-top: 16px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  max-width: 46ch;
}
.loaner__content .btn {
  margin-top: 30px;
}
.loaner__media {
  position: relative;
  min-height: 380px;
}
.loaner__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.loaner__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(194, 45, 30, 0.28), transparent 45%);
}

/* ==========================================================================
   Page hero (inner pages)
   ========================================================================== */

.page-hero {
  padding: calc(var(--nav-height) + clamp(56px, 9vw, 120px)) 0 clamp(44px, 6vw, 80px);
  background:
    radial-gradient(ellipse 80% 70% at 85% 0%, rgba(194, 45, 30, 0.07), transparent 60%),
    radial-gradient(circle, rgba(32, 28, 23, 0.07) 1px, transparent 1px);
  background-size: auto, 26px 26px;
}
.page-hero__title {
  font-family: var(--font-display);
  font-weight: 740;
  text-transform: uppercase;
  line-height: 0.86;
  font-size: clamp(3.4rem, 10.5vw, 8.8rem);
  margin-top: 20px;
}
.page-hero__title .serif-note {
  font-size: 0.42em;
  color: var(--red);
  display: block;
  margin-top: 14px;
  line-height: 1.2;
}
.page-hero__lede {
  margin-top: 26px;
  max-width: 62ch;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.7;
  color: var(--ink-2);
}

/* ==========================================================================
   Services page
   ========================================================================== */

.service-list {
  padding: clamp(40px, 6vw, 80px) 0 clamp(80px, 10vw, 140px);
}
.service-row {
  display: grid;
  grid-template-columns: 110px 1fr minmax(220px, 300px);
  gap: clamp(20px, 4vw, 60px);
  align-items: baseline;
  padding: clamp(30px, 4vw, 46px) 16px;
  margin-inline: -16px;
  border-radius: var(--radius-sm);
  border-top: 1px solid var(--line);
  transition: background 0.3s ease;
}
.service-row:hover {
  background: rgba(32, 28, 23, 0.035);
}
.service-row:last-of-type {
  border-bottom: 1px solid var(--line);
}
.service-row__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 460;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  color: var(--red);
}
.service-row__title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1.9rem, 3.6vw, 3.2rem);
  line-height: 0.94;
}
.service-row__desc {
  font-size: 0.99rem;
  line-height: 1.7;
  color: var(--ink-2);
  align-self: start;
}

.service-band {
  position: relative;
  height: clamp(280px, 44vw, 520px);
  border-radius: calc(var(--radius-lg) + 6px);
  overflow: hidden;
  margin: clamp(40px, 6vw, 72px) 0;
}
.service-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-band__caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(24, 20, 16, 0.62);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(244, 240, 230, 0.14);
  color: var(--bone);
  border-radius: 12px;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.process {
  background: var(--coal);
  color: var(--bone);
  padding: clamp(80px, 10vw, 150px) 0;
  position: relative;
  overflow: hidden;
}
.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 85% 100%, rgba(194, 45, 30, 0.14), transparent 60%);
  pointer-events: none;
}
.process .section-heading {
  color: var(--bone);
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: clamp(40px, 6vw, 70px);
  counter-reset: step;
}
.process__step {
  position: relative;
  background: rgba(244, 240, 230, 0.045);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px 26px;
}
.process__step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--red-bright);
}
.process__title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.5rem;
  margin-top: 12px;
  line-height: 1;
}
.process__body {
  margin-top: 12px;
  font-size: 0.93rem;
  line-height: 1.65;
  color: rgba(244, 240, 230, 0.66);
}

/* ==========================================================================
   About page
   ========================================================================== */

.timeline {
  padding: clamp(50px, 7vw, 100px) 0 clamp(70px, 9vw, 120px);
}
.timeline__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) 1.15fr;
  gap: clamp(36px, 6vw, 100px);
  align-items: start;
}
.timeline__sticky {
  position: sticky;
  top: calc(var(--nav-height) + 32px);
}
.timeline__sticky .section-heading {
  margin-top: 18px;
  max-width: 12ch;
}
.timeline__sticky .serif-note {
  display: block;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--red);
  margin-top: 16px;
  max-width: 24ch;
  line-height: 1.35;
}
.timeline__items {
  display: flex;
  flex-direction: column;
}
.timeline__item {
  position: relative;
  padding: clamp(28px, 4vw, 44px) 0 clamp(28px, 4vw, 44px) clamp(28px, 4vw, 52px);
  border-left: 2px solid var(--line);
}
.timeline__item::before {
  content: "";
  position: absolute;
  left: -7px;
  top: clamp(40px, 5vw, 58px);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px var(--bone);
}
.timeline__year {
  font-family: var(--font-display);
  font-weight: 730;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.9;
  color: var(--ink);
}
.timeline__place {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: var(--red);
  margin-top: 8px;
}
.timeline__body {
  margin-top: 12px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 52ch;
}

.family-photo {
  padding-bottom: clamp(70px, 9vw, 130px);
}
.family-photo figure {
  position: relative;
  border-radius: calc(var(--radius-lg) + 6px);
  overflow: hidden;
}
.family-photo img {
  width: 100%;
  height: clamp(320px, 52vw, 640px);
  object-fit: cover;
}
.family-photo figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(24, 20, 16, 0.62);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(244, 240, 230, 0.14);
  color: var(--bone);
  border-radius: 12px;
  padding: 10px 18px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ==========================================================================
   Contact page
   ========================================================================== */

.contact {
  padding: clamp(40px, 6vw, 80px) 0 clamp(80px, 10vw, 150px);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.form-card {
  background: var(--card);
  border: 1px solid rgba(32, 28, 23, 0.09);
  border-radius: calc(var(--radius-lg) + 4px);
  padding: clamp(28px, 4vw, 48px);
}
.form-card h2 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  line-height: 0.95;
}
.form-card > p {
  margin-top: 12px;
  color: var(--ink-2);
  font-size: 0.98rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field--full {
  grid-column: 1 / -1;
}
.form-field label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-2);
}
.form-field label .req {
  color: var(--red);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--ink);
  background: var(--bone);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
.form-field textarea {
  resize: vertical;
  min-height: 130px;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(194, 45, 30, 0.14);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--ink-3);
}
.form-note {
  grid-column: 1 / -1;
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.6;
}
/* Always rendered so the aria-live region announces reliably */
.form-status {
  grid-column: 1 / -1;
  display: block;
  margin: -9px 0;
  border-radius: 12px;
  padding: 0;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.55;
}
.form-status--ok {
  margin: 0;
  padding: 14px 18px;
  background: rgba(38, 115, 62, 0.12);
  color: #1e5c33;
  border: 1px solid rgba(38, 115, 62, 0.3);
}
.form-status--err {
  margin: 0;
  padding: 14px 18px;
  background: rgba(194, 45, 30, 0.09);
  color: var(--red-deep);
  border: 1px solid rgba(194, 45, 30, 0.3);
}
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-card {
  background: var(--coal);
  color: var(--bone);
  border-radius: calc(var(--radius-lg) + 4px);
  padding: clamp(28px, 3.5vw, 40px);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 100% 0%, rgba(194, 45, 30, 0.2), transparent 60%);
  pointer-events: none;
}
.contact-card > * {
  position: relative;
}
.contact-card__label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(244, 240, 230, 0.55);
}
.contact-card__phone {
  display: block;
  font-family: var(--font-display);
  font-weight: 720;
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  line-height: 1;
  color: var(--bone);
  margin-top: 10px;
  transition: color 0.2s ease;
}
.contact-card__phone:hover {
  color: #ff6a57;
}
.contact-card__rows {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
}
.contact-card__row {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line-light);
  font-size: 0.96rem;
  line-height: 1.6;
  color: rgba(244, 240, 230, 0.8);
}
.contact-card__row svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--red);
}
.contact-card__row a {
  border-bottom: 1px solid rgba(244, 240, 230, 0.3);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.contact-card__row a:hover {
  color: #fff;
  border-color: #fff;
}
.map-card {
  border-radius: calc(var(--radius-lg) + 4px);
  overflow: hidden;
  border: 1px solid rgba(32, 28, 23, 0.12);
  background: var(--bone-2);
}
.map-card iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
  filter: saturate(0.82) contrast(1.02);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--coal);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 45% at 50% 0%, rgba(194, 45, 30, 0.13), transparent 65%);
  pointer-events: none;
}
.footer__cta {
  position: relative;
  text-align: center;
  padding: clamp(80px, 11vw, 160px) 24px clamp(60px, 8vw, 110px);
}
.footer__cta .serif-note {
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  color: rgba(244, 240, 230, 0.7);
}
.footer__cta-title {
  font-family: var(--font-display);
  font-weight: 740;
  text-transform: uppercase;
  line-height: 0.88;
  font-size: clamp(3rem, 9vw, 8rem);
  margin-top: 18px;
}
.footer__cta-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 460;
  text-transform: none;
  font-size: 0.85em;
  color: #ff6a57;
}
.footer__cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}
.footer__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 60px);
  padding: clamp(44px, 6vw, 70px) 0;
  border-top: 1px solid var(--line-light);
}
.footer__brand img {
  width: 120px;
  height: auto;
}
.footer__brand p {
  margin-top: 18px;
  font-size: 0.94rem;
  line-height: 1.7;
  color: rgba(244, 240, 230, 0.6);
  max-width: 34ch;
}
.footer__col h3 {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(244, 240, 230, 0.5);
  margin-bottom: 18px;
}
.footer__col ul {
  list-style: none;
}
.footer__col li {
  margin-bottom: 12px;
}
.footer__col a {
  font-size: 0.97rem;
  color: rgba(244, 240, 230, 0.82);
  transition: color 0.2s ease;
}
.footer__col a:hover {
  color: #ff6a57;
}
.footer__col address {
  font-style: normal;
  font-size: 0.97rem;
  line-height: 1.8;
  color: rgba(244, 240, 230, 0.82);
}
.footer__col address a {
  display: inline-block;
  margin-top: 8px;
  border-bottom: 1px solid rgba(244, 240, 230, 0.3);
}
.footer__bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0 30px;
  border-top: 1px solid var(--line-light);
  font-size: 13px;
  color: rgba(244, 240, 230, 0.58);
}
.footer__bottom .serif-note {
  color: rgba(244, 240, 230, 0.55);
}

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */

/* Hidden state only applies once main.js has run (html.js) — content stays
   visible when scripting is unavailable or the script fails to load. */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s var(--ease-out);
}
.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-group .reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal-group .reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal-group .reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal-group .reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal-group .reveal:nth-child(6) { transition-delay: 0.4s; }
.reveal-group .reveal:nth-child(7) { transition-delay: 0.48s; }
.reveal-group .reveal:nth-child(8) { transition-delay: 0.56s; }

/* ==========================================================================
   Reduced motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__title .word {
    transform: none;
  }
  .hero__pitch,
  .hero__badges,
  .hero__photo {
    opacity: 1;
  }
  .marquee__track {
    animation: none;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1080px) {
  .hero__deck {
    grid-template-columns: 1fr minmax(280px, 420px);
  }
  .hero__badges {
    display: none;
  }
  .service-row {
    grid-template-columns: 70px 1fr;
  }
  .service-row__desc {
    grid-column: 2;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .nav__links {
    display: none;
  }
  /* Phone stays one tap away on mobile — icon-only pill next to the burger */
  .nav__phone .nav__phone-num {
    display: none;
  }
  .nav__phone {
    width: 46px;
    height: 46px;
    padding: 0;
  }
  .nav__phone svg {
    width: 17px;
    height: 17px;
  }
  .nav__burger {
    display: flex;
  }
  .intro__grid,
  .timeline__grid {
    grid-template-columns: 1fr;
  }
  .intro__left,
  .timeline__sticky {
    position: static;
  }
  .bento {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 190px;
  }
  .bento__card--photo {
    grid-column: span 2;
  }
  .promise__grid {
    grid-template-columns: 1fr;
  }
  .promise__item {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--line-light);
    padding-top: 28px;
  }
  .promise__item:first-child {
    border-top: none;
  }
  .reviews__grid {
    grid-template-columns: 1fr;
  }
  .review-card:nth-child(2),
  .review-card:nth-child(3) {
    margin-top: 0;
  }
  .loaner__panel {
    grid-template-columns: 1fr;
  }
  .loaner__media {
    min-height: 300px;
    order: -1;
  }
  .loaner__media::after {
    background: linear-gradient(to top, rgba(194, 45, 30, 0.35), transparent 50%);
  }
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .process__grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat-row {
    grid-template-columns: 1fr 1fr;
  }
  .stat {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--line);
  }
  .stat:first-child,
  .stat:nth-child(2) {
    border-top: none;
  }
}

@media (max-width: 640px) {
  .nav__loc {
    display: none;
  }
  .hero {
    padding-top: calc(var(--nav-height) + 20px);
  }
  .hero__deck {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .hero__photo {
    transform: rotate(0.8deg);
    order: -1;
  }
  .hero__photo img {
    height: 220px;
  }
  .hero__photo-tag .serif-note {
    display: none;
  }
  .marquee__item {
    font-size: 17px;
  }
  .bento {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .bento__card {
    min-height: 170px;
  }
  .bento__card--photo {
    grid-column: span 1;
    min-height: 300px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .process__grid {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .service-band {
    border-radius: var(--radius-md);
  }
  .stat-row {
    grid-template-columns: 1fr 1fr;
  }
  .stat__num {
    font-size: 2.2rem;
  }
}
