:root {
  --ink: #10120f;
  --ink-soft: #1a1d18;
  --paper: #f3f1e9;
  --paper-2: #e8e5db;
  --white: #fffef9;
  --lime: #d7ff3f;
  --lime-dark: #b9df25;
  --muted: #6d7069;
  --line: rgba(16, 18, 15, 0.16);
  --radius: 4px;
  --shell: min(1240px, calc(100% - 48px));
  --display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  transform: translateY(-150%);
  padding: 10px 16px;
  color: var(--ink);
  background: var(--lime);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(16, 18, 15, 0.94);
  border-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 34px;
  height: 34px;
  fill: var(--lime);
}

.brand-mark-cut {
  fill: var(--ink);
}

.brand span {
  display: grid;
  line-height: 1;
}

.brand strong {
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: 0.18em;
  transform: scaleX(0.9);
  transform-origin: left;
}

.brand small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 8px;
  letter-spacing: 0.21em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 13px;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  color: rgba(255, 255, 255, 0.76);
}

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 11px 18px;
  color: var(--ink);
  background: var(--lime);
  font-weight: 700;
  border-radius: 2px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
  background: var(--white);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: inherit;
  border: 0;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 1px;
  margin: 7px auto;
  background: currentColor;
  transition: transform 0.2s ease;
}

.hero {
  position: relative;
  min-height: 820px;
  height: 100svh;
  max-height: 980px;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("hero.webp");
  background-size: cover;
  background-position: 54% center;
  transform: scale(1.015);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 11, 9, 0.98) 0%, rgba(10, 11, 9, 0.82) 35%, rgba(10, 11, 9, 0.13) 70%),
    linear-gradient(0deg, rgba(10, 11, 9, 0.72) 0%, transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding-top: clamp(150px, 19vh, 200px);
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  margin: 0 12px 3px 0;
  background: currentColor;
}

.eyebrow-dark {
  color: #687900;
}

h1,
h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.89;
  text-transform: uppercase;
}

h1 {
  max-width: 730px;
  font-size: clamp(64px, 7.5vw, 112px);
}

h1 em,
h2 em {
  color: var(--lime);
  font-style: normal;
}

.hero-copy {
  max-width: 590px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink);
  background: var(--lime);
}

.button-primary:hover {
  background: var(--white);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
}

.button-ghost:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.hero-proof {
  position: absolute;
  right: 0;
  bottom: 44px;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 690px;
  margin: 0;
  padding: 24px 0 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-proof span {
  margin-right: 6px;
  color: var(--lime);
}

.concept-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(16, 18, 15, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.trust-strip {
  color: var(--white);
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-grid {
  min-height: 68px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.trust-grid p {
  margin: 0;
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
}

.trust-grid p:first-child {
  padding-left: 0;
  text-align: left;
}

.trust-grid p:last-child {
  border-right: 0;
  padding-right: 0;
  text-align: right;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(215, 255, 63, 0.11);
}

.section {
  padding: 128px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.section-heading h2,
.craft-copy h2,
.process-heading h2,
.coverage-copy h2,
.faq-intro h2,
.quote-copy h2 {
  font-size: clamp(50px, 5.8vw, 82px);
}

.section-heading h2 em,
.process-heading h2 em,
.faq-intro h2 em {
  color: #778a00;
}

.section-heading > p,
.results-heading > p {
  max-width: 460px;
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 15px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.service-card {
  position: relative;
  min-height: 540px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(16, 18, 15, 0.1);
}

.service-card-featured {
  color: var(--white);
  background: var(--ink-soft);
  border-color: var(--ink-soft);
}

.popular-label {
  position: absolute;
  top: 0;
  right: 0;
  padding: 9px 14px;
  color: var(--ink);
  background: var(--lime);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-index {
  color: #92968c;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
}

.service-kicker {
  margin: 62px 0 8px;
  color: #7b811c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-card-featured .service-kicker,
.service-card-featured .service-index {
  color: var(--lime);
}

.service-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 29px;
  letter-spacing: -0.035em;
  line-height: 1.05;
  text-transform: uppercase;
}

.service-summary {
  margin: 16px 0 24px;
  color: var(--muted);
  font-size: 14px;
}

.service-card-featured .service-summary {
  color: rgba(255, 255, 255, 0.62);
}

.service-card ul {
  margin: 0;
  padding: 20px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.service-card-featured ul {
  border-color: rgba(255, 255, 255, 0.15);
}

.service-card li {
  position: relative;
  margin: 9px 0;
  padding-left: 18px;
  color: #494d45;
  font-size: 12px;
}

.service-card-featured li {
  color: rgba(255, 255, 255, 0.68);
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 5px;
  height: 5px;
  background: #91a50d;
  border-radius: 50%;
}

.service-price {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 0 8px;
  margin-top: auto;
  padding-top: 28px;
}

.service-price span {
  grid-column: 1;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-price strong {
  grid-column: 1;
  font-family: var(--display);
  font-size: 46px;
  letter-spacing: -0.05em;
  line-height: 1;
}

.service-price small {
  grid-column: 2;
  grid-row: 2;
  padding-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
}

.service-card-featured .service-price span,
.service-card-featured .service-price small {
  color: rgba(255, 255, 255, 0.54);
}

.price-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: right;
}

.craft {
  color: var(--white);
  background: var(--ink);
}

.craft-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(56px, 8vw, 120px);
  align-items: center;
}

.craft-image {
  margin: 0;
}

.craft-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
}

.craft-image figcaption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.craft-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin: 30px 0 44px;
  color: rgba(255, 255, 255, 0.6);
}

.feature-list article {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.feature-list article > span {
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
}

.feature-list h3 {
  margin: 0 0 5px;
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.feature-list p {
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.results {
  color: var(--white);
  background: var(--ink-soft);
}

.results-heading h2 {
  color: var(--white);
}

.results-heading > p {
  color: rgba(255, 255, 255, 0.52);
}

.gallery {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-rows: repeat(2, 310px);
  gap: 10px;
}

.gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.gallery-main {
  grid-row: 1 / 3;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gallery figure:hover img {
  transform: scale(1.03);
}

.gallery figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding: 18px 20px;
  background: linear-gradient(0deg, rgba(7, 8, 7, 0.84), transparent);
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
}

.gallery figcaption span {
  color: var(--lime);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process {
  background: var(--paper);
}

.process-heading {
  max-width: 760px;
  margin-bottom: 64px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-grid article {
  position: relative;
  min-height: 340px;
  padding: 34px;
  border-right: 1px solid var(--line);
}

.process-grid article:last-child {
  border-right: 0;
}

.process-grid article > span {
  color: #8f938a;
  font-size: 10px;
  font-weight: 800;
}

.process-icon {
  width: 58px;
  height: 58px;
  margin: 54px 0 34px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
}

.process-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.process-grid h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 23px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.process-grid p {
  max-width: 310px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.coverage {
  padding: 128px 0;
  color: var(--white);
  background: #191b17;
  overflow: hidden;
}

.coverage-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(500px, 1.28fr);
  gap: 80px;
  align-items: center;
}

.coverage-copy > p:not(.eyebrow) {
  max-width: 470px;
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.58);
}

.coverage-copy ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
  margin: 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  list-style: none;
}

.coverage-copy li {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.coverage-copy li::before {
  content: "↗";
  margin-right: 9px;
  color: var(--lime);
}

.coverage-map {
  position: relative;
  min-height: 560px;
  background:
    linear-gradient(36deg, transparent 0 49%, rgba(255, 255, 255, 0.05) 49.2% 49.8%, transparent 50%),
    linear-gradient(130deg, transparent 0 40%, rgba(255, 255, 255, 0.04) 40.2% 40.8%, transparent 41%),
    radial-gradient(circle at center, #252821, #1d201b);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.coverage-map::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
}

.map-ring {
  position: absolute;
  border: 1px solid rgba(215, 255, 63, 0.28);
  border-radius: 50%;
}

.map-ring-one {
  width: 360px;
  height: 360px;
  top: 95px;
  left: 26%;
}

.map-ring-two {
  width: 250px;
  height: 250px;
  top: 150px;
  left: 35%;
}

.map-road {
  position: absolute;
  width: 680px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  transform-origin: left;
}

.road-a { top: 120px; left: 10px; transform: rotate(38deg); }
.road-b { top: 420px; left: 40px; transform: rotate(-25deg); }
.road-c { top: 260px; left: 0; transform: rotate(8deg); }

.map-pin {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-pin b {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border: 2px solid #1d201b;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(215, 255, 63, 0.16);
}

.pin-main { top: 47%; left: 47%; color: var(--white); font-weight: 800; }
.pin-main b { width: 12px; height: 12px; }
.pin-one { top: 66%; left: 58%; }
.pin-two { top: 74%; left: 28%; }
.pin-three { top: 84%; left: 48%; }

.faq {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
}

.faq-intro > p:last-child {
  max-width: 360px;
  margin: 28px 0 0;
  color: var(--muted);
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  list-style: none;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  cursor: pointer;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  background: var(--lime);
  border-radius: 50%;
  font-family: var(--body);
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.accordion details[open] summary span {
  transform: rotate(45deg);
}

.accordion details p {
  max-width: 650px;
  margin: -4px 52px 28px 0;
  color: var(--muted);
  font-size: 13px;
}

.quote-section {
  padding: 128px 0;
  color: var(--white);
  background: var(--ink);
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.quote-copy > p:not(.eyebrow) {
  max-width: 460px;
  margin: 30px 0;
  color: rgba(255, 255, 255, 0.58);
}

.contact-details {
  display: grid;
  gap: 6px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-details a {
  color: var(--lime);
  font-size: 13px;
}

.contact-details span {
  color: rgba(255, 255, 255, 0.44);
  font-size: 11px;
}

.quote-form {
  padding: 36px;
  color: var(--ink);
  background: var(--white);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: #565a52;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  padding: 14px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid #c9cbc4;
  border-radius: 0;
  outline: none;
  font-size: 14px;
  line-height: 1.4;
  text-transform: none;
  transition: border-color 0.2s ease;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: #849700;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #a1a49c;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
  border: 0;
}

.form-note {
  margin: 12px 0 0;
  color: #83877e;
  font-size: 10px;
  text-align: center;
}

.form-success {
  margin-top: 18px;
  padding: 16px;
  color: var(--ink);
  background: #eef7c8;
  border-left: 3px solid #829600;
}

.form-success strong,
.form-success span {
  display: block;
}

.form-success strong {
  font-size: 13px;
}

.form-success span {
  margin-top: 2px;
  color: #5c6350;
  font-size: 11px;
}

.site-footer {
  padding: 60px 0 28px;
  color: var(--white);
  background: #0b0d0a;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 40px;
  padding-bottom: 48px;
}

.brand-footer .brand-mark-cut {
  fill: #0b0d0a;
}

.footer-top > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
}

.back-top {
  color: var(--lime);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.34);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 36px, 820px);
  }

  .main-nav {
    gap: 20px;
  }

  .main-nav > a:not(.nav-cta):nth-child(3),
  .main-nav > a:not(.nav-cta):nth-child(4) {
    display: none;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(10, 11, 9, 0.96) 0%, rgba(10, 11, 9, 0.72) 58%, rgba(10, 11, 9, 0.25) 100%),
      linear-gradient(0deg, rgba(10, 11, 9, 0.82), transparent 46%);
  }

  .section-heading,
  .craft-grid,
  .coverage-grid,
  .faq-grid,
  .quote-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 470px;
  }

  .craft-image img {
    aspect-ratio: 16 / 10;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-grid article:last-child {
    border-bottom: 0;
  }

  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .coverage-map {
    min-height: 480px;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100% - 30px);
  }

  html {
    scroll-padding-top: 72px;
  }

  body {
    padding-bottom: 68px;
  }

  .nav-wrap {
    min-height: 70px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .brand strong {
    font-size: 17px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    min-height: 100svh;
    padding: 112px 28px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    color: var(--white);
    background: var(--ink);
    transform: translateY(-105%);
    transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
  }

  .main-nav.is-open {
    transform: translateY(0);
  }

  .main-nav > a:not(.nav-cta),
  .main-nav > a:not(.nav-cta):nth-child(3),
  .main-nav > a:not(.nav-cta):nth-child(4) {
    display: block;
    width: 100%;
    padding: 16px 0;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-family: var(--display);
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .nav-cta {
    width: 100%;
    margin-top: 18px;
    padding: 16px 18px;
    text-align: center;
  }

  .hero {
    min-height: 790px;
    height: 100svh;
    max-height: 900px;
  }

  .hero-media {
    background-position: 63% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(10, 11, 9, 0.94) 0%, rgba(10, 11, 9, 0.68) 66%, rgba(10, 11, 9, 0.28) 100%),
      linear-gradient(0deg, rgba(10, 11, 9, 0.94) 0%, rgba(10, 11, 9, 0.2) 55%);
  }

  .hero-content {
    padding-top: 128px;
  }

  h1 {
    max-width: 520px;
    font-size: clamp(54px, 17vw, 80px);
    line-height: 0.91;
  }

  .hero-copy {
    max-width: 480px;
    font-size: 14px;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    bottom: 26px;
    grid-template-columns: 1fr;
    gap: 5px;
    padding-top: 15px;
    font-size: 9px;
  }

  .concept-badge {
    display: none;
  }

  .trust-grid {
    min-height: 52px;
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid p {
    padding: 7px 9px;
    border: 0;
    text-align: left !important;
    font-size: 8px;
  }

  .section,
  .coverage,
  .quote-section {
    padding: 88px 0;
  }

  .section-heading {
    gap: 28px;
    margin-bottom: 42px;
  }

  .section-heading h2,
  .craft-copy h2,
  .process-heading h2,
  .coverage-copy h2,
  .faq-intro h2,
  .quote-copy h2 {
    font-size: clamp(45px, 14vw, 62px);
  }

  .service-card {
    min-height: 500px;
    padding: 26px;
  }

  .service-kicker {
    margin-top: 50px;
  }

  .craft-grid,
  .faq-grid,
  .quote-grid {
    gap: 40px;
  }

  .craft-image img {
    aspect-ratio: 4 / 5;
  }

  .gallery {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 360px repeat(2, 250px);
  }

  .gallery-main {
    grid-row: auto;
  }

  .process-heading {
    margin-bottom: 42px;
  }

  .process-grid article {
    min-height: 300px;
    padding: 28px 12px;
  }

  .process-icon {
    margin: 42px 0 28px;
  }

  .coverage-copy ul {
    gap: 10px 16px;
  }

  .coverage-map {
    min-height: 380px;
  }

  .map-ring-one {
    width: 300px;
    height: 300px;
    top: 50px;
    left: 8%;
  }

  .map-ring-two {
    width: 190px;
    height: 190px;
    top: 105px;
    left: 25%;
  }

  .pin-main { top: 44%; left: 38%; }
  .pin-one { top: 64%; left: 55%; }
  .pin-two { top: 73%; left: 16%; }
  .pin-three { top: 84%; left: 44%; }

  .accordion summary {
    min-height: 74px;
    font-size: 16px;
  }

  .quote-form {
    padding: 24px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-top {
    grid-template-columns: 1fr auto;
  }

  .footer-top > p {
    display: none;
  }

  .footer-bottom {
    display: grid;
  }

  .mobile-cta {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 90;
    min-height: 50px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--ink);
    background: var(--lime);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
    font-size: 13px;
    font-weight: 800;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
