:root {
  --enamel: #ea580c;
  --enamel-dark: #7c2d12;
  --leaf: #fb923c;
  --orange: #f97316;
  --cream: #f5f5f5;
  --butter: #fdba74;
  --ice: #262626;
  --chrome: #a3a3a3;
  --charcoal: #f5f5f5;
  --asphalt: #0a0a0a;
  --paper: #111111;
  --muted: #a3a3a3;
  --line: #404040;
  --soft-line: rgba(234, 88, 12, 0.18);
  --glass: rgba(17, 17, 17, 0.88);
  --shadow: rgba(0, 0, 0, 0.45);
  --shadow-strong: rgba(0, 0, 0, 0.65);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--charcoal);
  background:
    linear-gradient(90deg, rgba(234, 88, 12, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(234, 88, 12, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 84% 10%, rgba(249, 115, 22, 0.18), transparent 28rem),
    var(--paper);
  background-size: 42px 42px, 42px 42px, auto, auto;
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 58%, rgba(234, 88, 12, 0.10) 58% 64%, transparent 64%),
    linear-gradient(160deg, transparent 0 74%, rgba(16, 23, 25, 0.05) 74% 76%, transparent 76%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  color: var(--cream);
  font-size: clamp(1.92rem, 4.2vw, 4.08rem);
  overflow-wrap: normal;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.2rem, 2.4vw, 2.49rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 84px;
  padding: 10px 5vw;
  background: rgba(10, 10, 10, 0.88);
  border-bottom: 1px solid rgba(234, 88, 12, 0.25);
  backdrop-filter: blur(18px);
  transition: min-height 0.28s var(--ease-out), background 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out);
}

.site-header.scrolled {
  min-height: 70px;
  background: rgba(28, 28, 28, 0.96);
  box-shadow: 0 16px 40px rgba(15, 36, 30, 0.1);
}

.site-header > * {
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: 218px;
  height: auto;
  transition: width 0.28s var(--ease-out), transform 0.28s var(--ease-out);
}

.site-header.scrolled .brand img {
  width: 188px;
}

.brand:hover img {
  transform: translateY(-2px);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  padding: 11px;
  color: var(--cream);
  background: var(--enamel-dark);
  border: 1px solid rgba(245, 245, 245, 0.25);
  border-radius: 4px;
  cursor: pointer;
}

@media (min-width: 921px) {
  .menu-toggle {
    display: none !important;
  }
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav a,
.header-cta,
.button,
.sticky-quote {
  text-decoration: none;
}

.nav a {
  position: relative;
  padding: 10px 0;
  color: var(--enamel-dark);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s var(--ease-out);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  min-width: 142px;
  padding: 12px 16px;
  color: var(--cream);
  background: var(--asphalt);
  border: 1px solid var(--enamel);
  border-radius: 4px;
  font-weight: 900;
  text-align: center;
  transition: transform 0.24s var(--ease-out), background 0.24s var(--ease-out);
}

.header-cta:hover {
  transform: translateY(-2px);
  background: var(--enamel-dark);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.7fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
  min-height: 760px;
  padding: clamp(72px, 9vw, 120px) 5vw;
  color: var(--cream);
  background:
    linear-gradient(110deg, rgba(124, 45, 18, 0.98), rgba(234, 88, 12, 0.88) 52%, rgba(10, 10, 10, 0.98)),
    var(--enamel-dark);
  overflow: hidden;
  isolation: isolate;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(90deg, rgba(245, 245, 245, 0.08) 0 1px, transparent 1px 7.5vw),
    linear-gradient(120deg, transparent 0 60%, rgba(249, 115, 22, 0.22) 60% 61.4%, transparent 61.4%);
  opacity: 0.75;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  left: 5vw;
  right: 5vw;
  bottom: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--orange), transparent 72%);
}

.hero-copy,
.hero-machine {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hero-copy,
.hero-copy h1,
.hero-copy .lead,
.hero-actions {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.lead {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(245, 245, 245, 0.90);
  font-size: clamp(1.05rem, 1.6vw, 1.34rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 900;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.24s var(--ease-out), border-color 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.button::after {
  content: "->";
  margin-left: 14px;
  transition: transform 0.24s var(--ease-out);
}

.button:hover {
  transform: translateY(-3px);
}

.button:hover::after {
  transform: translateX(5px);
}

.button.primary {
  color: var(--asphalt);
  background: var(--orange);
  border-color: rgba(245, 245, 245, 0.35);
  box-shadow: 0 18px 34px rgba(240, 138, 34, 0.2);
}

.button.secondary {
  color: var(--cream);
  background: transparent;
  border-color: rgba(249, 115, 22, 0.70);
}

.button.secondary:hover {
  border-color: var(--orange);
}

.hero-machine {
  display: grid;
  gap: 0;
  width: min(100%, 560px);
  margin-left: auto;
  color: var(--cream);
  transform: rotate(-1.2deg);
}

.machine-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 0 0 14px;
  color: var(--butter);
  border-bottom: 2px solid var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.machine-window {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.1 / 1;
  margin-top: 14px;
  background: var(--asphalt);
  border: 1px solid rgba(245, 245, 245, 0.20);
  clip-path: polygon(0 0, 100% 0, 100% 88%, 88% 100%, 0 100%);
  box-shadow: 0 34px 70px var(--shadow-strong);
}

.machine-window::after,
.page-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.10), transparent 28%),
    linear-gradient(0deg, rgba(10, 10, 10, 0.40), transparent 42%);
  pointer-events: none;
  mix-blend-mode: screen;
}

.machine-window img,
.page-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.08);
  transition: transform 0.7s var(--ease-out), filter 0.7s var(--ease-out);
}

.hero-machine:hover .machine-window img,
.page-hero-card:hover img,
.service-card:hover img,
.photo-band figure:hover img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.1);
}

.machine-dials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 1px;
  background: rgba(245, 245, 245, 0.08);
}

.machine-dials div {
  min-height: 96px;
  padding: 16px 12px;
  color: var(--cream);
  background: rgba(124, 45, 18, 0.90);
}

.machine-dials strong,
.machine-dials span {
  display: block;
}

.machine-dials strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.62rem;
  line-height: 1;
}

.machine-dials span {
  margin-top: 8px;
  color: rgba(245, 245, 245, 0.70);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--asphalt);
}

.proof-item {
  position: relative;
  min-height: 240px;
  padding: 34px 5vw 34px;
  color: var(--cream);
  border-right: 1px solid rgba(245, 245, 245, 0.12);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item span {
  display: block;
  margin-bottom: 46px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
}

.proof-item span::after {
  content: "";
  display: block;
  width: 52px;
  height: 2px;
  margin-top: 12px;
  background: currentColor;
}

.proof-item h2 {
  max-width: 360px;
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.proof-item p {
  max-width: 410px;
  margin-bottom: 0;
  color: rgba(245, 245, 245, 0.70);
}

.section {
  position: relative;
  padding: clamp(68px, 9vw, 118px) 5vw;
}

.section::before {
  content: "";
  position: absolute;
  left: 5vw;
  right: 5vw;
  top: 0;
  height: 1px;
  background: var(--soft-line);
}

.intro,
.process,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.intro {
  background: rgba(28, 28, 28, 0.95);
}

.intro-title h2,
.section-heading h2,
.process-copy h2,
.contact-panel h2 {
  color: var(--enamel-dark);
}

.intro-copy {
  color: var(--muted);
  font-size: 1.08rem;
  column-gap: 34px;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.home-story {
  background:
    linear-gradient(90deg, rgba(234, 88, 12, 0.08), transparent 50%),
    var(--paper);
}

.services {
  background:
    linear-gradient(180deg, rgba(30, 30, 30, 0.95), rgba(17, 17, 17, 0.98)),
    var(--ice);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 42px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--soft-line);
  border-top: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
}

.service-card {
  display: grid;
  grid-template-rows: 220px 1fr;
  min-height: 470px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background: rgba(28, 28, 28, 0.92);
  transition: background 0.24s ease, transform 0.28s var(--ease-out);
}

.service-card:hover {
  z-index: 1;
  background: var(--cream);
  transform: translateY(-6px);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-copy {
  display: grid;
  align-content: start;
  padding: 24px;
  border-top: 4px solid var(--orange);
}

.service-copy span {
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-copy h3 {
  color: var(--enamel-dark);
  font-size: 1.55rem;
}

.service-copy p,
.process-copy p,
.process-steps p,
.contact-panel p,
.contact-details p {
  color: var(--muted);
}

.process {
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(124, 45, 18, 0.95), rgba(234, 88, 12, 0.82)),
    var(--enamel-dark);
}

.process::before {
  background: rgba(245, 245, 245, 0.06);
}

.process .eyebrow,
.process-copy h2 {
  color: var(--butter);
}

.process-copy p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(245, 245, 245, 0.76);
}

.process-steps {
  display: grid;
  gap: 1px;
  background: rgba(245, 245, 245, 0.08);
  border-top: 1px solid rgba(245, 245, 245, 0.10);
}

.process-steps article {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 22px;
  min-height: 126px;
  padding: 22px 0;
  background: transparent;
}

.process-steps strong {
  display: block;
  color: var(--butter);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.process-steps p {
  margin-bottom: 0;
  color: rgba(245, 245, 245, 0.75);
}

.photo-band {
  display: grid;
  grid-template-columns: 1.12fr 0.92fr 1fr;
  gap: 1px;
  background: var(--asphalt);
}

.photo-band figure {
  position: relative;
  min-height: 380px;
  margin: 0;
  overflow: hidden;
}

.photo-band img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 0.7s var(--ease-out), opacity 0.7s var(--ease-out), filter 0.7s var(--ease-out);
}

.photo-band figure:hover img {
  opacity: 1;
}

.photo-band figcaption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  max-width: calc(100% - 44px);
  padding: 9px 0 0;
  color: var(--cream);
  border-top: 3px solid var(--orange);
  font-weight: 900;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.60);
}

.contact {
  background: rgba(28, 28, 28, 0.88);
}

.contact-panel {
  padding: 0 0 0 28px;
  border-left: 6px solid var(--orange);
}

.contact .button.secondary {
  color: var(--enamel-dark);
  border-color: var(--enamel-dark);
  background: transparent;
}

.contact-details {
  display: grid;
  gap: 1px;
  background: var(--soft-line);
  border-top: 1px solid var(--soft-line);
}

.contact-details article {
  display: grid;
  gap: 5px;
  min-height: 126px;
  padding: 24px 0 24px 24px;
  background: rgba(28, 28, 28, 0.92);
  border-left: 3px solid transparent;
  transition: border-color 0.24s ease, background 0.24s ease;
}

.contact-details article:hover {
  background: var(--cream);
  border-left-color: var(--orange);
}

.contact-details span {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-details strong {
  color: var(--enamel-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.36rem;
}

.contact-details a {
  color: var(--charcoal);
  text-decoration-color: rgba(249, 115, 22, 0.50);
  text-underline-offset: 4px;
}

.contact-details p {
  margin-bottom: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  padding: 54px 5vw 30px;
  color: var(--cream);
  background:
    linear-gradient(135deg, var(--asphalt), #1a0500),
    var(--asphalt);
  border-top: 6px solid var(--orange);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  grid-column: 1 / -1;
}

.footer-brand img {
  width: 86px;
  height: auto;
  background: var(--paper);
  border-radius: 4px;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.24rem;
}

.footer-brand span,
.footer-info,
.footer-legal {
  color: rgba(245, 245, 245, 0.70);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a,
.footer-info a {
  color: rgba(245, 245, 245, 0.85);
  text-decoration: none;
}

.footer-links a:hover,
.footer-info a:hover {
  color: var(--orange);
}

.footer-info {
  display: grid;
  gap: 6px;
  text-align: right;
}

.footer-legal {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(245, 245, 245, 0.10);
  text-align: center;
  font-size: 0.86rem;
}

.sticky-quote {
  display: none;
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  color: var(--asphalt);
  background: var(--orange);
  border: 1px solid var(--cream);
  border-radius: 4px;
  font-weight: 900;
  transform: translateY(16px);
  box-shadow: 0 16px 34px rgba(16, 23, 25, 0.24);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s var(--ease-out);
}

body.show-sticky .sticky-quote {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Deep answer pages */
.deep-page {
  background:
    linear-gradient(90deg, rgba(234, 88, 12, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(234, 88, 12, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
}

.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  padding: clamp(68px, 8vw, 108px) 5vw;
  color: var(--cream);
  background:
    linear-gradient(118deg, rgba(124, 45, 18, 0.98), rgba(234, 88, 12, 0.86) 58%, rgba(16, 23, 25, 0.98)),
    var(--enamel-dark);
  overflow: hidden;
  isolation: isolate;
}

.page-hero-copy,
.page-hero-card {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.page-hero h1 {
  max-width: 960px;
  margin-bottom: 22px;
  color: var(--cream);
  font-size: clamp(1.59rem, 3.6vw, 3.36rem);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: rgba(245, 245, 245, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--orange);
}

.page-hero-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  color: var(--cream);
  border: 1px solid rgba(245, 245, 245, 0.4);
  clip-path: polygon(0 0, 100% 0, 100% 90%, 86% 100%, 0 100%);
  box-shadow: 0 30px 64px var(--shadow-strong);
}

.page-hero-card img {
  aspect-ratio: 1.12 / 0.9;
}

.page-hero-card span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: block;
  padding-top: 10px;
  border-top: 3px solid var(--orange);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.page-content {
  display: grid;
  gap: clamp(28px, 4vw, 46px);
}

.answer-panel,
.content-panel,
.index-card {
  background: rgba(17, 17, 17, 0.76);
  border-top: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
}

.answer-panel {
  padding: clamp(26px, 5vw, 54px) 0;
}

.answer-panel h2 {
  max-width: 1120px;
  margin-bottom: 0;
  color: var(--enamel-dark);
  font-size: clamp(1.2rem, 2.64vw, 2.76rem);
}

.answer-large h2 {
  font-size: clamp(1.26rem, 2.88vw, 3rem);
}

.two-column-detail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--soft-line);
  border-top: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
}

.story-grid,
.story-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
}

.story-grid {
  background: var(--soft-line);
  border-top: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
}

.story-band {
  padding: 0;
  color: var(--cream);
  background: rgba(245, 245, 245, 0.18);
}

.story-band article {
  padding: clamp(26px, 4vw, 42px);
  background:
    linear-gradient(145deg, rgba(124, 45, 18, 0.96), rgba(234, 88, 12, 0.82)),
    var(--enamel-dark);
}

.story-band h2 {
  color: var(--butter);
  font-size: clamp(1rem, 1.8vw, 1.53rem);
}

.story-band p {
  margin-bottom: 0;
  color: rgba(245, 245, 245, 0.76);
}

.content-panel {
  padding: clamp(26px, 4vw, 42px);
  background: rgba(28, 28, 28, 0.88);
}

.content-panel h2 {
  color: var(--enamel-dark);
  font-size: clamp(1rem, 1.8vw, 1.47rem);
}

.content-panel p {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.74em;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--orange);
}

.quote-intake {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 1px;
  background: var(--soft-line);
  border-top: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
}

.quote-note,
.quote-form-panel {
  padding: clamp(26px, 4vw, 44px);
  background: rgba(28, 28, 28, 0.9);
}

.quote-note h2,
.quote-form-panel h2 {
  color: var(--enamel-dark);
  font-size: clamp(1.08rem, 1.9vw, 1.72rem);
}

.quote-note p,
.quote-form-panel p {
  color: var(--muted);
}

.quote-form {
  display: grid;
  gap: 15px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--cream);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--cream);
  background: rgba(10, 10, 10, 0.72);
  border: 1px solid rgba(245, 245, 245, 0.18);
  border-radius: 4px;
  font: inherit;
  outline: 0;
}

.quote-form textarea {
  min-height: 144px;
  resize: vertical;
}

.quote-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.18);
}

.quote-form .button {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.faq-block {
  display: grid;
  gap: 28px;
  padding: clamp(30px, 5vw, 58px);
  color: var(--cream);
  background:
    linear-gradient(135deg, var(--asphalt), #052016),
    var(--asphalt);
}

.faq-block h2 {
  color: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(245, 245, 245, 0.18);
}

.faq-grid article {
  padding: 24px;
  background: rgba(16, 23, 25, 0.82);
}

.faq-grid h3 {
  color: var(--butter);
}

.faq-grid p {
  margin-bottom: 0;
  color: rgba(245, 245, 245, 0.75);
}

.internal-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--soft-line);
  border-top: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
}

.internal-links > div {
  padding: clamp(24px, 4vw, 40px);
  background: rgba(28, 28, 28, 0.88);
}

.pill-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
}

.pill-links a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 28px 10px 0;
  color: var(--enamel-dark);
  border-bottom: 1px solid rgba(124, 45, 18, 0.18);
  font-weight: 900;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.24s var(--ease-out);
}

.pill-links a::after {
  content: "->";
  position: absolute;
  right: 0;
  color: var(--orange);
  transition: transform 0.24s var(--ease-out);
}

.pill-links a:hover {
  color: var(--orange);
  padding-left: 8px;
}

.pill-links a:hover::after {
  transform: translateX(4px);
}

.card-index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--soft-line);
  border-top: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
}

.index-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 330px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background: rgba(28, 28, 28, 0.92);
  transition: background 0.24s ease, transform 0.28s var(--ease-out);
}

.index-card:hover {
  z-index: 1;
  background: var(--cream);
  transform: translateY(-5px);
}

.index-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out), filter 0.7s var(--ease-out);
}

.index-card:hover img {
  transform: scale(1.04);
}

.index-card span {
  margin: 22px 24px 0;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.index-card h2 {
  margin: 0 24px;
  color: var(--enamel-dark);
  font-size: clamp(1.5rem, 2.3vw, 2.15rem);
}

.index-card p {
  margin: 0 24px 26px;
  color: var(--muted);
}

.location-index-card {
  min-height: 270px;
  padding-top: 6px;
}

.home-deep-links {
  background: rgba(17, 17, 17, 0.8);
}

.deep-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--soft-line);
  border-top: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
}

.deep-link-card {
  display: grid;
  gap: 10px;
  min-height: 230px;
  padding: clamp(24px, 4vw, 36px);
  color: inherit;
  text-decoration: none;
  background: rgba(28, 28, 28, 0.92);
  transition: background 0.24s ease, transform 0.28s var(--ease-out);
}

.deep-link-card:hover {
  background: var(--cream);
  transform: translateY(-5px);
}

.deep-link-card span {
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.deep-link-card h3 {
  color: var(--enamel-dark);
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
}

.deep-link-card p {
  margin-bottom: 0;
  color: var(--muted);
}

body.motion-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

body.motion-ready .reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

body.motion-ready .hero-machine.reveal {
  transform: translateY(24px) rotate(-1.2deg);
}

body.motion-ready .hero-machine.reveal.revealed {
  transform: translateY(0) rotate(-1.2deg);
}

.hero .eyebrow,
.page-hero .eyebrow {
  animation: liveLine 6s ease-in-out infinite;
}

@keyframes liveLine {
  0%,
  100% {
    opacity: 0.82;
  }
  50% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  body.motion-ready .reveal,
  body.motion-ready .hero-machine.reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-machine {
    max-width: 720px;
    margin-left: 0;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-steps article {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 920px) {
  .site-header {
    display: flex;
    justify-content: space-between;
    gap: 14px;
  }

  .brand img,
  .site-header.scrolled .brand img {
    width: 184px;
  }

  button.menu-toggle {
    display: flex !important;
    flex: 0 0 48px;
    position: absolute;
    top: 50%;
    right: 5vw;
    z-index: 4;
    justify-self: end;
    margin-left: auto;
    transform: translateY(-50%);
  }

  .nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 8px 5vw 18px;
    background: rgba(17, 17, 17, 0.98);
    border-bottom: 1px solid var(--soft-line);
    box-shadow: 0 20px 40px rgba(15, 36, 30, 0.13);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease, transform 0.24s var(--ease-out);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(124, 45, 18, 0.12);
  }

  .intro,
  .process,
  .contact,
  .proof-strip,
  .photo-band,
  .page-hero,
  .two-column-detail,
  .quote-intake,
  .story-grid,
  .story-band,
  .internal-links,
  .card-index-grid,
  .deep-link-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .proof-item {
    border-right: 0;
    border-bottom: 1px solid rgba(245, 245, 245, 0.12);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .photo-band figure,
  .photo-band img {
    min-height: 260px;
  }

  .pill-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 72px;
    gap: 12px;
    padding: 8px 18px;
  }

  .brand {
    max-width: calc(100vw - 96px);
  }

  .brand img,
  .site-header.scrolled .brand img {
    width: clamp(128px, 42vw, 154px);
  }

  .header-cta {
    display: none;
  }

  .hero,
  .page-hero {
    display: block;
    padding: 54px 24px 62px;
  }

  button.menu-toggle {
    display: flex !important;
    position: absolute;
    top: 50%;
    right: 18px;
    z-index: 42;
    justify-self: end;
    flex: 0 0 48px;
    color: var(--cream);
    background: var(--enamel-dark);
    border-color: rgba(245, 245, 245, 0.42);
    transform: translateY(-50%);
  }

  .hero-copy,
  .page-hero-copy,
  .hero-actions {
    width: 100%;
    max-width: 21.5rem;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(1.2rem, 5.4vw, 1.53rem);
    line-height: 1.14;
    hyphens: auto;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(1.2rem, 6vw, 1.68rem);
  }

  .lead,
  .intro-copy {
    max-width: 100%;
    font-size: 1rem;
    overflow-wrap: anywhere;
  }

  .hero-actions .button,
  .contact-actions .button {
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
    white-space: normal;
  }

  .hero-machine {
    width: 100%;
    max-width: 100%;
    margin-top: 38px;
    transform: none;
  }

  body.motion-ready .hero-machine.reveal,
  body.motion-ready .hero-machine.reveal.revealed {
    transform: none;
  }

  .machine-top {
    display: grid;
    gap: 4px;
  }

  .machine-window {
    aspect-ratio: 1 / 0.86;
  }

  .machine-dials {
    grid-template-columns: 1fr;
  }

  .machine-dials div {
    min-height: 74px;
  }

  .page-hero-card {
    min-height: 250px;
    margin-top: 34px;
  }

  .section {
    padding: 62px 5vw;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-rows: 210px 1fr;
    min-height: 0;
  }

  .contact-panel {
    padding-left: 18px;
  }

  .answer-panel,
  .content-panel,
  .faq-block,
  .internal-links > div,
  .story-band article {
    padding-left: 22px;
    padding-right: 22px;
  }

  .answer-panel h2,
  .answer-large h2 {
    font-size: clamp(1.11rem, 5.4vw, 1.62rem);
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-info {
    text-align: center;
  }

  .sticky-quote {
    display: inline-flex;
    left: 5vw;
    right: 5vw;
    width: auto;
  }
}

@media (max-width: 540px) {
  button.menu-toggle {
    right: clamp(18px, calc(100vw - 372px), 112px);
  }
}
