:root {
  --color-forest-deep: #173626;
  --color-forest: #1e3a1e;
  --color-forest-soft: #2d4a2d;
  --color-forest-moss: #264c2d;
  --color-gold: #c9a84c;
  --color-gold-bright: #e89c30;
  --color-facebook: #1877f2;
  --color-cream: #f5f2ec;
  --color-cream-deep: #e0d5c0;
  --color-cream-warm: #fbf7f1;
  --color-brown: #3d2a0f;
  --color-footer-text: #b8a080;
  --color-text-dark: #444444;
  --color-text-muted: #666666;
  --color-black: #000000;
  --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.18);
  --border-soft: 1px solid rgba(255, 255, 255, 0.18);
  --shell-width: 1140px;
  --header-progress: 0;
  --header-shrink-factor: 0.15;
  --header-scale: calc(1 - (var(--header-progress) * var(--header-shrink-factor)));
  --header-height-base: 6.25rem;
  --header-height: calc(var(--header-height-base) * var(--header-scale));
  --header-gap-base: 1.25rem;
  --header-gap: calc(var(--header-gap-base) * (1 - (var(--header-progress) * 0.12)));
  --header-brand-gap-base: 0.9rem;
  --header-brand-gap: calc(var(--header-brand-gap-base) * (1 - (var(--header-progress) * 0.2)));
  --brand-width-base: 13rem;
  --brand-width: calc(var(--brand-width-base) * var(--header-scale));
  --menu-toggle-size-base: 3rem;
  --menu-toggle-size: calc(var(--menu-toggle-size-base) * (1 - (var(--header-progress) * 0.12)));
  --menu-toggle-padding-base: 0.6rem;
  --menu-toggle-padding: calc(var(--menu-toggle-padding-base) * (1 - (var(--header-progress) * 0.12)));
  --menu-toggle-line-height-base: 0.18rem;
  --menu-toggle-line-height: calc(var(--menu-toggle-line-height-base) * (1 - (var(--header-progress) * 0.12)));
  --header-button-height-base: 2.75rem;
  --header-button-height: calc(var(--header-button-height-base) * (1 - (var(--header-progress) * 0.12)));
  --header-button-padding-inline-base: 1.2rem;
  --header-button-padding-inline: calc(var(--header-button-padding-inline-base) * (1 - (var(--header-progress) * 0.1)));
  --header-button-font-size-base: 0.8125rem;
  --header-button-font-size: calc(var(--header-button-font-size-base) * (1 - (var(--header-progress) * 0.06)));
  --radius-large: 1.25rem;
  --radius-medium: 0.75rem;
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-quick: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-base: 240ms var(--ease-quick);
  --transition-drawer: 420ms var(--ease-smooth);
  --reveal-duration: 820ms;
  --reveal-child-duration: 760ms;
  --reveal-stagger: 90ms;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  color: var(--color-text-dark);
  background: var(--color-cream);
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background: var(--color-gold);
  color: var(--color-black);
}

::-moz-selection {
  background: var(--color-gold);
  color: var(--color-black);
}

body.is-menu-open,
body.is-service-modal-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
fieldset,
legend {
  font: inherit;
}

button {
  cursor: pointer;
}

.shell {
  width: min(calc(100% - 2.5rem), var(--shell-width));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--color-gold-bright);
  color: var(--color-black);
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  isolation: isolate;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background:
    linear-gradient(180deg, rgba(28, 66, 46, 0.92) 0%, rgba(23, 54, 38, 0.9) 100%);
  backdrop-filter: blur(16px) saturate(1.02);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
  transition:
    background-color var(--transition-base),
    box-shadow var(--transition-base),
    backdrop-filter var(--transition-base),
    border-color var(--transition-base);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(201, 168, 76, 0.34), rgba(255, 255, 255, 0));
  opacity: 0.48;
  pointer-events: none;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(201, 168, 76, 0.16);
  background:
    linear-gradient(180deg, rgba(12, 27, 18, 0.96) 0%, rgba(15, 32, 22, 0.9) 100%);
  backdrop-filter: blur(22px) saturate(1.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.header-bar {
  position: relative;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--header-gap);
}

.header-brand-group {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--header-brand-gap);
  padding-right: clamp(1.1rem, 2vw, 2rem);
}

.header-brand-group::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: clamp(2rem, 4vw, 2.7rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(201, 168, 76, 0.42), rgba(255, 255, 255, 0));
  transform: translateY(-50%);
  opacity: 0.9;
}

.brand img {
  width: min(var(--brand-width), 100%);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.16));
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(0.35rem, 0.8vw, 0.85rem);
  padding-inline: clamp(1rem, 2vw, 1.8rem);
  font-family: "Oswald", sans-serif;
  font-size: 0.96rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  color: #ffffff;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: 0.55rem 0.9rem 0.65rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  transition:
    color var(--transition-base),
    background-color var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-base);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.42rem;
  height: 0.12rem;
  background: var(--color-gold-bright);
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: center;
  transition:
    transform var(--transition-base),
    opacity var(--transition-base);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a.is-active,
.desktop-nav a[aria-current="location"] {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 12px 24px rgba(0, 0, 0, 0.08);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a.is-active::after,
.desktop-nav a[aria-current="location"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-header .button--compact {
  min-height: var(--header-button-height);
  padding-inline: calc(var(--header-button-padding-inline) + 0.18rem);
  border-radius: 0.6rem;
  border: 1px solid rgba(61, 42, 15, 0.14);
  background: linear-gradient(180deg, #f0aa3c 0%, var(--color-gold-bright) 100%);
  font-size: var(--header-button-font-size);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.site-header .button--compact:hover,
.site-header .button--compact:focus-visible {
  box-shadow:
    0 18px 32px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.menu-toggle {
  display: none;
  width: var(--menu-toggle-size);
  height: var(--menu-toggle-size);
  padding: var(--menu-toggle-padding);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition:
    background-color var(--transition-base),
    border-color var(--transition-base),
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: rgba(201, 168, 76, 0.32);
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 24px rgba(0, 0, 0, 0.14);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: var(--menu-toggle-line-height);
  margin: 0.28rem 0;
  background: currentColor;
  border-radius: 999px;
  transform-origin: center;
  transition:
    transform 320ms var(--ease-quick),
    opacity 180ms ease,
    background-color var(--transition-base);
}

body.is-menu-open .menu-toggle {
  background: rgba(255, 255, 255, 0.08);
}

body.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(0.46rem) rotate(45deg);
}

body.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-0.46rem) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.5rem;
  border: 0;
  border-radius: 0.35rem;
  background: var(--color-gold-bright);
  color: var(--color-black);
  font-family: "Roboto", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform var(--transition-base),
    background-color var(--transition-base),
    box-shadow var(--transition-base),
    filter var(--transition-base);
}

.button:hover,
.button:focus-visible {
  background: #f2ab47;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(232, 156, 48, 0.24);
  filter: saturate(1.04);
}

.hero {
  --hero-image-shift: 0px;
  position: relative;
  min-height: clamp(44rem, 92vh, 58rem);
  background-image:
    linear-gradient(90deg, rgba(13, 28, 19, 0.86) 0%, rgba(18, 40, 28, 0.78) 38%, rgba(24, 53, 36, 0.52) 63%, rgba(24, 53, 36, 0.26) 100%),
    url("../images/background-scaled.jpg");
  background-position:
    center,
    center calc(var(--hero-image-shift) * 1);
  background-size: cover;
  background-repeat: no-repeat;
}

.hero__overlay {
  --hero-overlay-shift: 0px;
  position: absolute;
  inset: -4rem 0 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(233, 168, 72, 0.18), transparent 26%),
    radial-gradient(circle at 78% 26%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(12, 26, 18, 0.08), rgba(12, 26, 18, 0.18));
  transform: translate3d(0, var(--hero-overlay-shift), 0);
  pointer-events: none;
  will-change: transform;
}

.hero__content {
  position: relative;
  display: flex;
  align-items: center;
  min-height: inherit;
  padding: clamp(8rem, 14vw, 11rem) 0 4.5rem;
}

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 25rem);
  align-items: end;
  gap: clamp(2rem, 4vw, 4rem);
  width: 100%;
}

.hero__main {
  max-width: 44rem;
}

.hero__topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1rem;
}

.hero__eyebrow {
  font-size: 0.95rem;
  letter-spacing: 0.24em;
}

.hero__status {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-cream-warm);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero__brand {
  margin: 1.25rem 0 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.hero__brand span {
  color: var(--color-gold-bright);
}

.eyebrow {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(0.95rem, 1.25vw, 1.08rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.hero__title,
.section__title,
.value-card h3,
.service-card h3 {
  margin: 0;
  font-family: "Oswald", sans-serif;
}

.hero__title {
  max-width: 12ch;
  margin-top: 1rem;
  font-size: clamp(3rem, 7vw, 5.4rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: #ffffff;
  text-wrap: balance;
}

.hero__title span,
.section__title-accent {
  color: var(--color-gold);
}

.hero__tagline {
  max-width: 39rem;
  margin: 1.5rem 0 0;
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  line-height: 1.7;
  color: var(--color-cream);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.hero__button {
  min-width: 14rem;
  padding-inline: 1.75rem;
}

.hero__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.35rem;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform var(--transition-base),
    background-color var(--transition-base),
    border-color var(--transition-base),
    color var(--transition-base),
    box-shadow var(--transition-base);
}

.hero__secondary:hover,
.hero__secondary:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.15rem;
  max-width: 40rem;
}

.hero__highlights span {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 2.8rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(8, 18, 12, 0.32);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-cream-warm);
  backdrop-filter: blur(8px);
}

.hero__highlights i {
  color: var(--color-gold);
  font-size: 0.95em;
}

.hero__panel {
  justify-self: end;
  width: min(100%, 25rem);
  padding: 1.5rem 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)),
    rgba(9, 19, 13, 0.54);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.hero__panel-eyebrow {
  margin: 0;
  color: var(--color-gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__panel-title {
  margin: 0.75rem 0 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.08;
  color: #ffffff;
}

.hero__panel-points {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.hero__panel-points > div {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__panel-points > div:first-child {
  padding-top: 0;
  border-top: 0;
}

.hero__panel-points strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.hero__panel-points p {
  margin: 0.45rem 0 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--color-cream-deep);
}

.section {
  --section-accent-shift: 0px;
  --section-accent-opacity: 0.16;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.section > .shell {
  position: relative;
  z-index: 1;
}

.section::before,
.section::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
  will-change: transform, opacity;
}

.section--cream {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.82), transparent 32%),
    radial-gradient(circle at bottom right, rgba(201, 168, 76, 0.08), transparent 30%),
    linear-gradient(180deg, var(--color-cream-warm) 0%, var(--color-cream) 48%, #efe7d9 100%);
}

.section--cream::before {
  top: -10rem;
  left: -10%;
  width: min(46rem, 92vw);
  height: min(34rem, 72vw);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.55) 0, rgba(255, 255, 255, 0) 70%);
  opacity: var(--section-accent-opacity);
  transform: translate3d(0, var(--section-accent-shift), 0);
}

.section--cream::after {
  right: -8%;
  bottom: -12rem;
  width: min(26rem, 60vw);
  height: min(26rem, 60vw);
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0, rgba(201, 168, 76, 0) 72%);
  opacity: calc(var(--section-accent-opacity) * 0.85);
  transform: translate3d(0, calc(var(--section-accent-shift) * -0.55), 0);
}

.section--forest {
  background:
    repeating-linear-gradient(
      125deg,
      rgba(255, 255, 255, 0.035) 0,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px,
      transparent 10px
    ),
    radial-gradient(circle at top left, rgba(233, 156, 48, 0.1), transparent 24%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.05), transparent 28%),
    linear-gradient(155deg, var(--color-forest-deep) 0%, var(--color-forest) 52%, var(--color-forest-moss) 100%);
}

.section--forest::before {
  top: -9rem;
  left: -12%;
  width: min(34rem, 76vw);
  height: min(34rem, 76vw);
  background: radial-gradient(circle, rgba(233, 156, 48, 0.18) 0, rgba(233, 156, 48, 0) 72%);
  opacity: calc(var(--section-accent-opacity) * 0.95);
  transform: translate3d(0, var(--section-accent-shift), 0);
}

.section--forest::after {
  right: -10%;
  bottom: -14rem;
  width: min(36rem, 84vw);
  height: min(36rem, 84vw);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0) 72%);
  opacity: calc(var(--section-accent-opacity) * 0.68);
  transform: translate3d(0, calc(var(--section-accent-shift) * -0.45), 0);
}

.section--estimate {
  position: relative;
  padding: clamp(4rem, 7vw, 6rem) 0;
  color: #ffffff;
  background:
    radial-gradient(circle at top left, rgba(201, 168, 76, 0.12), transparent 24%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.05), transparent 28%),
    linear-gradient(140deg, #0c150f 0%, var(--color-forest-deep) 42%, var(--color-forest) 100%);
  overflow: hidden;
}

.section--estimate::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.02)),
    repeating-linear-gradient(
      125deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 14px
    );
  opacity: 0.45;
  pointer-events: none;
}

.section--estimate::after {
  right: -10%;
  bottom: -14rem;
  width: min(30rem, 70vw);
  height: min(30rem, 70vw);
  background: radial-gradient(circle, rgba(201, 168, 76, 0.16) 0, rgba(201, 168, 76, 0) 72%);
  opacity: calc(var(--section-accent-opacity) * 0.72);
  transform: translate3d(0, calc(var(--section-accent-shift) * -0.4), 0);
}

.section__stack {
  display: grid;
  gap: 1.35rem;
}

.section__stack--narrow {
  max-width: 47.5rem;
  justify-items: center;
}

.section__title {
  max-width: 13ch;
  margin-inline: auto;
  font-size: clamp(2.15rem, 5vw, 4.15rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: 0.015em;
  text-align: center;
  text-wrap: balance;
  color: #1a2e1a;
}

.section__title--light {
  color: #ffffff;
  text-align: left;
  margin-inline: 0;
}

.copy {
  display: grid;
  gap: 1.2rem;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  font-weight: 400;
  line-height: 1.95;
  letter-spacing: 0.008em;
  color: var(--color-text-dark);
}

.copy p,
.quote,
.difference-list,
.value-card p,
.service-card p,
.site-footer p,
.drawer__intro,
.drawer__label {
  margin: 0;
}

.copy--center {
  text-align: center;
}

.copy--left {
  text-align: left;
}

.copy--light {
  color: #c8d5c0;
  font-size: clamp(1.03rem, 1.25vw, 1.14rem);
  line-height: 1.95;
}

.quote {
  max-width: 16ch;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
  font-weight: 500;
  font-style: normal;
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-align: center;
  color: #1a2e1a;
  text-wrap: balance;
}

.about {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}

.about__intro {
  display: grid;
  justify-items: center;
  gap: 1rem;
  max-width: 46rem;
  margin: 0 auto;
}

.about__title {
  max-width: 16ch;
  font-size: clamp(2.25rem, 5.4vw, 4.6rem);
}

.about__lede {
  margin: 0;
  max-width: 40rem;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.9;
  letter-spacing: 0.006em;
  text-align: center;
  color: var(--color-text-muted);
}

.about__layout {
  display: grid;
  grid-template-columns: minmax(16rem, 21rem) minmax(0, 1fr);
  gap: clamp(1.3rem, 3vw, 2rem);
  align-items: stretch;
}

.about__panel {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: clamp(1.35rem, 2.4vw, 1.9rem);
  border: 1px solid rgba(26, 46, 26, 0.08);
  border-radius: 1.1rem;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.72));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 22px 38px rgba(28, 44, 25, 0.08);
}

.about__panel-kicker {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.about__badges {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about__badges li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 3rem;
  padding: 0.75rem 0.95rem 0.75rem 2.3rem;
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.56);
  font-family: "Montserrat", sans-serif;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.006em;
  color: #1a2e1a;
}

.about__badges li::before {
  content: "";
  position: absolute;
  left: 0.95rem;
  width: 0.68rem;
  height: 0.68rem;
  border-radius: 999px;
  background: var(--color-gold-bright);
  box-shadow: 0 0 0 0.25rem rgba(232, 156, 48, 0.12);
}

.about__quote {
  position: relative;
  display: grid;
  gap: 0.85rem;
  margin: 0.35rem 0 0;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(26, 46, 26, 0.12);
}

.about__quote::before {
  content: "\201C";
  position: absolute;
  top: -0.2rem;
  left: 0;
  font-family: "Oswald", sans-serif;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--color-gold);
}

.about__quote p {
  margin: 0;
  padding-left: 1.25rem;
  max-width: 15ch;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.55rem, 2.15vw, 2.15rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0.01em;
  color: #1a2e1a;
  text-wrap: balance;
}

.about__quote cite {
  padding-left: 1.25rem;
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.05em;
  color: rgba(26, 46, 26, 0.76);
}

.about__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: stretch;
}

.about-card {
  display: grid;
  grid-template-rows: auto minmax(3.15rem, auto) 1fr;
  gap: 0.9rem;
  align-content: start;
  height: 100%;
  padding: 1.45rem 1.3rem 1.35rem;
  border: 1px solid rgba(26, 46, 26, 0.08);
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76)),
    rgba(255, 255, 255, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 20px 34px rgba(28, 44, 25, 0.08);
  transition:
    transform var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.about-card:hover,
.about-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 24px 40px rgba(28, 44, 25, 0.12);
}

.about-card__eyebrow {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.about-card h3 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.5rem, 2vw, 1.8rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0.012em;
  color: #1a2e1a;
}

.about-card p:last-child {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.006em;
  color: var(--color-text-muted);
}

.team {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}

.team__intro {
  display: grid;
  justify-items: center;
  gap: 1rem;
  max-width: 48rem;
  margin: 0 auto;
}

.team__title {
  max-width: 11ch;
}

.team__lede {
  margin: 0;
  max-width: 42rem;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.9;
  letter-spacing: 0.006em;
  text-align: center;
  color: var(--color-text-muted);
}

.team__layout {
  display: grid;
  grid-template-columns: minmax(16rem, 21rem) minmax(0, 1fr);
  gap: clamp(1.35rem, 3vw, 2.25rem);
  align-items: stretch;
}

.team__panel,
.team__story {
  border: 1px solid rgba(26, 46, 26, 0.08);
  border-radius: 1.1rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 22px 38px rgba(28, 44, 25, 0.08);
}

.team__panel {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: clamp(1.35rem, 2.4vw, 1.95rem);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0) 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.74));
}

.team__icon {
  width: 4.6rem;
  height: 4.6rem;
  background: rgba(233, 156, 48, 0.14);
}

.team__icon svg {
  width: 2.05rem;
  height: 2.05rem;
}

.team__panel-kicker,
.team__story-kicker {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.team__name {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: 0.012em;
  color: #1a2e1a;
}

.team__role {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.006em;
  color: var(--color-text-muted);
}

.team__highlights {
  display: grid;
  gap: 0.75rem;
  margin: 0.15rem 0 0;
  padding: 0;
  list-style: none;
}

.team__highlights li {
  position: relative;
  min-height: 3rem;
  padding: 0.85rem 0.95rem 0.85rem 2.3rem;
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 0.82rem;
  background: rgba(255, 255, 255, 0.58);
  font-family: "Montserrat", sans-serif;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.006em;
  color: #1a2e1a;
}

.team__highlights li::before {
  content: "";
  position: absolute;
  top: 1.28rem;
  left: 0.95rem;
  width: 0.68rem;
  height: 0.68rem;
  border-radius: 999px;
  background: var(--color-gold-bright);
  box-shadow: 0 0 0 0.25rem rgba(232, 156, 48, 0.12);
}

.team__story {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: clamp(1.55rem, 2.8vw, 2.15rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.8)),
    rgba(255, 255, 255, 0.9);
}

.team__copy.copy--left {
  gap: 1.25rem;
  text-align: left;
}

.team__copy p {
  margin: 0;
}

.team__copy p:first-child {
  font-size: clamp(1.04rem, 1.25vw, 1.13rem);
  line-height: 1.92;
  color: #1a2e1a;
}

.team__copy p + p {
  padding-top: 1.15rem;
  border-top: 1px solid rgba(26, 46, 26, 0.08);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 26rem);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.story-grid__content {
  display: grid;
  gap: 1.2rem;
}

.story-grid__media {
  margin: 0;
  padding: 2.5rem;
  border-radius: 0.5rem;
  background: var(--color-forest-soft);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.story-grid__media img {
  width: 100%;
  border-radius: 0.4rem;
  transform: translate3d(0, var(--media-parallax, 0px), 0) scale(1.04);
  transform-origin: center;
  will-change: transform;
}

.icon-badge {
  display: inline-grid;
  place-items: center;
  width: 5rem;
  height: 5rem;
  border-radius: 999px;
  background: rgba(233, 156, 48, 0.12);
  color: var(--color-forest-deep);
}

.icon-badge svg {
  width: 2.3rem;
  height: 2.3rem;
  fill: currentColor;
}

.icon-badge--small {
  width: 4rem;
  height: 4rem;
}

.icon-badge--small svg {
  width: 1.9rem;
  height: 1.9rem;
}

.difference-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  list-style: none;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: 0.008em;
  color: #c8d5c0;
}

.difference-list li {
  position: relative;
  padding-left: 1.7rem;
}

.difference-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--color-gold);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: stretch;
}

.values__intro {
  display: grid;
  justify-items: center;
  gap: 1rem;
  max-width: 46rem;
  margin: 0 auto;
}

.values__lede {
  margin: 0;
  max-width: 39rem;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 1.18vw, 1.08rem);
  line-height: 1.85;
  letter-spacing: 0.006em;
  text-align: center;
  color: var(--color-text-muted);
}

.value-card {
  display: grid;
  grid-template-rows: auto minmax(3.2rem, auto) 1fr;
  gap: 1rem;
  align-content: start;
  justify-items: start;
  height: 100%;
  padding: 1.7rem 1.45rem 1.5rem;
  border: 1px solid rgba(26, 46, 26, 0.08);
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78)),
    rgba(255, 255, 255, 0.88);
  text-align: left;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 18px 36px rgba(28, 44, 25, 0.08);
  transition:
    transform var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    background-color var(--transition-base);
}

.value-card::before {
  content: "";
  width: 3.1rem;
  height: 0.2rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-gold), rgba(201, 168, 76, 0.12));
}

.value-card:hover,
.value-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 24px 42px rgba(28, 44, 25, 0.12);
}

.value-card .icon-badge--small {
  width: 4.35rem;
  height: 4.35rem;
  border: 1px solid rgba(201, 168, 76, 0.16);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0) 68%),
    rgba(233, 156, 48, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 10px 18px rgba(201, 168, 76, 0.12);
}

.value-card .icon-badge--small svg {
  width: 1.75rem;
  height: 1.75rem;
}

.value-card h3 {
  font-size: 1.36rem;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #1a2e1a;
}

.value-card p {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.006em;
  color: var(--color-text-muted);
}

.services {
  display: grid;
  gap: clamp(2rem, 3.5vw, 3rem);
}

.services__intro {
  display: grid;
  gap: 1rem;
  max-width: 47rem;
}

.services__title {
  max-width: 12ch;
  text-wrap: balance;
}

.services__lede {
  margin: 0;
  max-width: 43rem;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.9;
  color: var(--color-cream-deep);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.reviews {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}

.reviews__header {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 24rem);
  gap: clamp(1.35rem, 3vw, 2.2rem);
  align-items: stretch;
}

.reviews__intro {
  display: grid;
  gap: 1rem;
  align-content: start;
  max-width: 44rem;
}

.reviews__title {
  max-width: 12ch;
  margin-inline: 0;
  text-align: left;
}

.reviews__lede {
  margin: 0;
  max-width: 39rem;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 1.18vw, 1.08rem);
  line-height: 1.9;
  letter-spacing: 0.006em;
  color: var(--color-text-muted);
}

.reviews__spotlight {
  position: relative;
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: clamp(1.45rem, 2.7vw, 2rem);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 1.1rem;
  background:
    radial-gradient(circle at top right, rgba(24, 119, 242, 0.14), transparent 34%),
    radial-gradient(circle at top left, rgba(232, 156, 48, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(26, 53, 37, 0.98) 0%, rgba(13, 24, 17, 0.98) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 26px 50px rgba(10, 19, 13, 0.18);
  overflow: hidden;
}

.reviews__spotlight::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: inherit;
  pointer-events: none;
}

.reviews__spotlight-badge {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 0.65rem;
  min-height: 2.3rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(24, 119, 242, 0.22);
  border-radius: 999px;
  background: rgba(24, 119, 242, 0.12);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reviews__spotlight-badge i {
  color: #8ec3ff;
}

.reviews__spotlight-kicker {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.reviews__spotlight-title {
  margin: 0;
  max-width: 12ch;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 600;
  line-height: 0.98;
  color: #ffffff;
}

.reviews__spotlight-copy {
  margin: 0;
  max-width: 28rem;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(245, 242, 236, 0.86);
}

.reviews__spotlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  padding-top: 0.25rem;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.review-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 0.9rem;
  align-content: start;
  height: 100%;
  padding: 1.5rem 1.35rem 1.4rem;
  border: 1px solid rgba(26, 46, 26, 0.08);
  border-radius: 1rem;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0) 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 18px 36px rgba(28, 44, 25, 0.08);
  transition:
    transform var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.review-card::before {
  content: "";
  width: 3.1rem;
  height: 0.2rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(24, 119, 242, 0.92), rgba(24, 119, 242, 0.12));
}

.review-card:hover,
.review-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(24, 119, 242, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 24px 42px rgba(28, 44, 25, 0.12);
}

.review-card__icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.8rem;
  background: rgba(24, 119, 242, 0.1);
  color: var(--color-facebook);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.review-card__kicker {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-facebook);
}

.review-card h3 {
  margin: 0;
  max-width: 14ch;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.65rem, 2.2vw, 2rem);
  font-weight: 600;
  line-height: 1.02;
  color: #1a2e1a;
}

.review-card p:last-child {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.98rem;
  line-height: 1.8;
  letter-spacing: 0.006em;
  color: var(--color-text-muted);
}

.service-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1.2rem;
  height: 100%;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(9, 19, 13, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 22px 44px rgba(0, 0, 0, 0.12);
  transition:
    transform var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    background-color var(--transition-base);
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 28px 52px rgba(0, 0, 0, 0.18);
}

.service-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 0.85rem;
  aspect-ratio: 4 / 3;
  background: rgba(255, 255, 255, 0.04);
}

.service-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(7, 15, 9, 0.42));
  pointer-events: none;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 420ms var(--ease-smooth);
}

.service-card:hover img,
.service-card:focus-within img {
  transform: scale(1.07);
}

.service-card__number {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.35rem;
  min-height: 2.35rem;
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(7, 15, 9, 0.52);
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  backdrop-filter: blur(10px);
}

.service-card__body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.95rem;
  height: 100%;
}

.service-card__kicker {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.service-card h3 {
  font-size: clamp(1.9rem, 2.5vw, 2.45rem);
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
}

.service-card__summary {
  margin: 0;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(245, 242, 236, 0.92);
}

.service-card__list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card__list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--color-cream-deep);
}

.service-card__list li::before {
  content: "";
  position: absolute;
  top: 0.68rem;
  left: 0;
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 999px;
  background: var(--color-gold-bright);
  box-shadow: 0 0 0 0.22rem rgba(232, 156, 48, 0.12);
}

.service-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.25rem;
}

.service-card__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    transform var(--transition-base),
    background-color var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.service-card__more::after {
  content: "\2197";
  font-size: 0.95rem;
  line-height: 1;
}

.service-card__more:hover,
.service-card__more:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(201, 168, 76, 0.28);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.12);
}

.service-card__cta {
  flex: 1 0 auto;
  min-width: 11.5rem;
  border-radius: 0.65rem;
}

.service-card p {
  color: var(--color-cream-deep);
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 0.75rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity var(--transition-drawer),
    visibility 0s linear var(--transition-drawer);
}

.service-modal[hidden] {
  display: none;
}

.service-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity var(--transition-drawer),
    visibility 0s linear 0s;
}

.service-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(201, 168, 76, 0.12), transparent 24%),
    rgba(5, 10, 7, 0.8);
  opacity: 0;
  transition: opacity var(--transition-drawer);
}

.service-modal.is-open .service-modal__backdrop {
  opacity: 1;
}

.service-modal__dialog {
  position: relative;
  width: min(66rem, 100%);
  max-height: calc(100vh - 1.5rem);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 1.1rem;
  background:
    radial-gradient(circle at top right, rgba(201, 168, 76, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(18, 38, 26, 0.98) 0%, rgba(10, 19, 13, 0.98) 100%);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.32);
  overflow: auto;
  opacity: 0;
  transform: translate3d(0, 1rem, 0) scale(0.985);
  transition:
    opacity var(--transition-drawer),
    transform var(--transition-drawer);
}

.service-modal.is-open .service-modal__dialog {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.service-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  min-height: 2.35rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(7, 15, 9, 0.48);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  transition:
    background-color var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.service-modal__close:hover,
.service-modal__close:focus-visible {
  border-color: rgba(201, 168, 76, 0.34);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.18);
}

.service-modal__layout {
  display: grid;
  grid-template-columns: minmax(17rem, 22rem) minmax(0, 1fr);
  min-height: min(34rem, calc(100vh - 1.5rem));
}

.service-modal__media {
  margin: 0;
  min-height: 100%;
  background: rgba(255, 255, 255, 0.04);
}

.service-modal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-modal__content {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: clamp(1.4rem, 3vw, 2.35rem);
}

.service-modal__eyebrow {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.service-modal__title {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.96;
  color: #ffffff;
}

.service-modal__lede {
  margin: 0;
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  line-height: 1.85;
  color: var(--color-cream);
}

.service-modal__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.service-modal__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.55rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-cream-warm);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-modal__copy {
  display: grid;
  gap: 1rem;
}

.service-modal__copy p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--color-cream-deep);
}

.service-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 0.25rem;
}

.service-modal__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition:
    transform var(--transition-base),
    background-color var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.service-modal__secondary:hover,
.service-modal__secondary:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(201, 168, 76, 0.28);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.14);
}

.estimate {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(22rem, 1fr);
  gap: clamp(2rem, 5vw, 4.25rem);
  align-items: start;
}

.estimate__intro {
  display: grid;
  gap: 1.4rem;
  align-content: start;
  padding-top: clamp(0.35rem, 1.6vw, 1.75rem);
}

.estimate__eyebrow {
  text-align: left;
  color: var(--color-gold);
}

.estimate__title {
  margin: 0;
  max-width: 10ch;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.85rem, 6vw, 5.25rem);
  font-weight: 500;
  line-height: 0.94;
  text-transform: uppercase;
  color: #ffffff;
}

.estimate__lede,
.estimate__details > div > p:last-child {
  margin: 0;
  color: rgba(245, 242, 236, 0.88);
}

.estimate__lede {
  max-width: 35rem;
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  line-height: 1.9;
}

.estimate__divider {
  width: min(100%, 32rem);
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.5), transparent);
}

.estimate__details {
  display: grid;
  gap: 1rem;
  max-width: 34rem;
}

.estimate__details > div {
  display: grid;
  gap: 0.28rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(201, 168, 76, 0.28);
}

.estimate__detail-label,
.estimate__card-kicker {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.estimate__details > div > p:last-child {
  font-size: 1rem;
  line-height: 1.75;
}

.estimate__card {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.75rem);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 0.5rem;
  background:
    linear-gradient(180deg, rgba(45, 74, 45, 0.98) 0%, rgba(30, 58, 30, 0.98) 100%);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

.estimate__card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: inherit;
  pointer-events: none;
}

.estimate__card-header {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1.6rem;
}

.estimate__card-title {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 500;
  line-height: 0.98;
  text-transform: uppercase;
  color: #ffffff;
}

.estimate__card-copy {
  margin: 0;
  max-width: 32rem;
  color: rgba(224, 213, 192, 0.82);
  line-height: 1.75;
}

.estimate-form {
  display: grid;
  gap: 1.4rem;
}

.estimate-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.estimate-form label,
.contact-methods,
.address-group {
  display: grid;
  gap: 0.75rem;
}

.estimate-form span,
.contact-methods legend,
.address-group legend {
  font-family: "Oswald", sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.92);
}

.estimate-form input,
.estimate-form textarea {
  width: 100%;
  padding: 0 0 0.9rem;
  border: 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.34);
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  caret-color: var(--color-gold-bright);
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    color var(--transition-base);
}

.estimate-form input::placeholder,
.estimate-form textarea::placeholder {
  color: rgba(224, 213, 192, 0.52);
}

.estimate-form input:focus,
.estimate-form textarea:focus {
  outline: 0;
  border-color: var(--color-gold-bright);
  box-shadow: 0 1px 0 0 var(--color-gold-bright);
}

.estimate-form textarea {
  resize: vertical;
  min-height: 8rem;
  padding-top: 0.15rem;
}

.estimate-form__grid {
  display: grid;
  gap: 1.25rem;
}

.estimate-form__grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.estimate-form__grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-methods,
.address-group {
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  row-gap: 1rem;
  column-gap: 0.75rem;
}

.contact-methods legend {
  width: 100%;
  margin-bottom: 0.35rem;
}

.contact-methods label {
  position: relative;
  display: inline-flex;
  margin: 0;
}

.contact-methods input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.contact-methods span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.8rem 1.1rem;
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(245, 242, 236, 0.9);
  font-family: "Roboto", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background-color var(--transition-base),
    border-color var(--transition-base),
    color var(--transition-base),
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.contact-methods input:checked + span {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-forest-deep);
  box-shadow: 0 14px 24px rgba(201, 168, 76, 0.2);
}

.contact-methods input:focus-visible + span {
  outline: 2px solid rgba(232, 156, 48, 0.9);
  outline-offset: 3px;
}

.address-group {
  gap: 1rem;
}

.estimate-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1.25rem;
  padding-top: 0.35rem;
}

.estimate-form__note {
  margin: 0;
  color: rgba(224, 213, 192, 0.76);
  line-height: 1.75;
}

.button--submit {
  width: fit-content;
  min-height: 3.15rem;
  padding-inline: 1.5rem;
  border-radius: 0.3rem;
}

.button--submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
  filter: none;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--color-gold);
  font-weight: 500;
}

.form-status[data-state="loading"] {
  color: var(--color-cream);
}

.form-status[data-state="error"] {
  color: #ffd0c9;
}

.form-status[data-state="success"] {
  color: #f7c86a;
}

.estimate-form input:-webkit-autofill,
.estimate-form textarea:-webkit-autofill {
  -webkit-text-fill-color: #ffffff;
  box-shadow: inset 0 0 0 1000px rgba(30, 58, 30, 0.98);
  transition: background-color 9999s ease-out 0s;
}

.site-footer {
  position: relative;
  padding: 0;
  background: linear-gradient(180deg, #09140d 0%, #000000 100%);
  overflow: hidden;
}

.site-footer::before {
  content: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  top: -6rem;
  left: 50%;
  width: min(62rem, 100vw);
  height: 12rem;
  background: radial-gradient(circle, rgba(50, 92, 54, 0.28) 0, rgba(50, 92, 54, 0) 74%);
  transform: translateX(-50%);
  pointer-events: none;
}

.site-footer__inner {
  display: grid;
  justify-items: center;
  width: 100%;
}

.site-footer__panel {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 1.1rem;
  width: 100%;
  padding: 2.7rem 2.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background:
    radial-gradient(circle at 50% 0%, rgba(88, 128, 81, 0.16) 0%, rgba(88, 128, 81, 0) 42%),
    linear-gradient(180deg, rgba(25, 45, 28, 0.98) 0%, rgba(6, 11, 7, 0.98) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.02),
    inset 0 -28px 80px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  isolation: isolate;
}

.site-footer__panel::after {
  content: none;
}

.site-footer__kicker {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.site-footer img {
  position: relative;
  z-index: 1;
  width: min(15rem, 68vw);
  margin: 0.9rem 0 0.55rem;
}

.site-footer__rule {
  display: none;
}

.site-footer__meta {
  margin: 0;
  max-width: 30rem;
}

.site-footer p {
  font-size: 0.8125rem;
  line-height: 1.7;
  text-align: center;
  color: rgba(224, 213, 192, 0.86);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.22);
}

.site-footer__meta--small {
  color: rgba(184, 160, 128, 0.88);
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity var(--transition-drawer),
    visibility 0s linear var(--transition-drawer);
}

.drawer[hidden] {
  display: none;
}

.drawer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity var(--transition-drawer),
    visibility 0s linear 0s;
}

.drawer__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(201, 168, 76, 0.12), transparent 26%),
    rgba(5, 10, 7, 0.82);
  opacity: 0;
  transition: opacity 320ms var(--ease-quick);
}

.drawer.is-open .drawer__backdrop {
  opacity: 1;
}

.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  align-content: start;
  gap: 1rem;
  width: min(25rem, 88vw);
  min-height: 100vh;
  padding: 4rem 2rem 2rem;
  border-left: 1px solid rgba(201, 168, 76, 0.18);
  background:
    radial-gradient(circle at top right, rgba(201, 168, 76, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(26, 53, 37, 0.98) 0%, rgba(9, 18, 12, 0.98) 100%);
  box-shadow: -18px 0 42px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  opacity: 0;
  transform: translate3d(2rem, 0, 0) scale(0.985);
  transition:
    transform var(--transition-drawer),
    opacity 320ms var(--ease-quick);
}

.drawer.is-open .drawer__panel {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.drawer__close {
  justify-self: end;
  min-height: 2.35rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    background-color var(--transition-base),
    border-color var(--transition-base),
    color var(--transition-base);
}

.drawer__close:hover,
.drawer__close:focus-visible {
  border-color: rgba(201, 168, 76, 0.32);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-cream-warm);
}

.drawer__brand img {
  width: min(68%, 16rem);
}

.drawer__intro {
  max-width: 18rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(245, 242, 236, 0.82);
}

.drawer__label {
  font-family: "Oswald", sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.drawer__divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(201, 168, 76, 0.26), rgba(255, 255, 255, 0.08));
}

.drawer__nav {
  display: grid;
  justify-items: stretch;
  gap: 0.35rem;
}

.drawer__nav a {
  display: flex;
  align-items: center;
  min-height: 3rem;
  padding: 0.8rem 0.95rem;
  border-radius: 0.7rem;
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  transition:
    color var(--transition-base),
    background-color var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-base);
}

.drawer__nav a:hover,
.drawer__nav a:focus-visible,
.drawer__nav a.is-active,
.drawer__nav a[aria-current="location"] {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 14px 26px rgba(0, 0, 0, 0.14);
}

.drawer__cta {
  width: 100%;
  margin-top: 0.4rem;
  border-radius: 0.7rem;
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.js [data-reveal] {
  --reveal-delay: 0ms;
  --reveal-distance-x: 0px;
  --reveal-distance-y: 26px;
  --reveal-scale: 0.985;
  --reveal-blur: 10px;
  opacity: 0;
  filter: blur(var(--reveal-blur));
  transform: translate3d(var(--reveal-distance-x), var(--reveal-distance-y), 0) scale(var(--reveal-scale));
  transition:
    opacity var(--reveal-duration) var(--ease-smooth) var(--reveal-delay),
    transform var(--reveal-duration) var(--ease-smooth) var(--reveal-delay),
    filter var(--reveal-duration) var(--ease-smooth) var(--reveal-delay);
  will-change: opacity, transform, filter;
}

.js [data-reveal="soft"] {
  --reveal-distance-y: 14px;
  --reveal-scale: 0.995;
  --reveal-blur: 6px;
}

.js [data-reveal="left"] {
  --reveal-distance-x: -40px;
  --reveal-distance-y: 8px;
}

.js [data-reveal="right"] {
  --reveal-distance-x: 40px;
  --reveal-distance-y: 8px;
}

.js [data-reveal="scale"] {
  --reveal-distance-y: 20px;
  --reveal-scale: 0.94;
  --reveal-blur: 8px;
}

.js .hero__content[data-reveal],
.js .section__stack[data-reveal],
.js .estimate[data-reveal] {
  --reveal-distance-y: 20px;
  --reveal-blur: 8px;
}

.js .story-grid__content[data-reveal] {
  --reveal-distance-x: -44px;
  --reveal-distance-y: 6px;
}

.js .story-grid__media[data-reveal] {
  --reveal-distance-x: 44px;
  --reveal-distance-y: 6px;
}

.js .value-card[data-reveal] {
  --reveal-distance-y: 24px;
  --reveal-scale: 0.96;
  --reveal-blur: 8px;
}

.js .service-card[data-reveal] {
  --reveal-distance-x: -34px;
  --reveal-distance-y: 18px;
}

.js .review-card[data-reveal] {
  --reveal-distance-y: 18px;
  --reveal-scale: 0.985;
  --reveal-blur: 7px;
}

.js .service-card[data-reveal]:nth-of-type(even) {
  --reveal-distance-x: 34px;
}

.js .estimate-form[data-reveal] {
  --reveal-distance-y: 16px;
  --reveal-blur: 6px;
}

.js [data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.js [data-reveal][data-reveal-children] > *:not([data-reveal]) {
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(0, 18px, 0);
  transition:
    opacity var(--reveal-child-duration) var(--ease-smooth),
    transform var(--reveal-child-duration) var(--ease-smooth),
    filter var(--reveal-child-duration) var(--ease-smooth);
  transition-delay: calc(var(--reveal-delay) + (var(--child-index, 0) * var(--reveal-stagger)));
}

.js [data-reveal][data-reveal-children].is-visible > *:not([data-reveal]) {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.js [data-reveal][data-reveal-children] > *:not([data-reveal]):nth-child(1) { --child-index: 0; }
.js [data-reveal][data-reveal-children] > *:not([data-reveal]):nth-child(2) { --child-index: 1; }
.js [data-reveal][data-reveal-children] > *:not([data-reveal]):nth-child(3) { --child-index: 2; }
.js [data-reveal][data-reveal-children] > *:not([data-reveal]):nth-child(4) { --child-index: 3; }
.js [data-reveal][data-reveal-children] > *:not([data-reveal]):nth-child(5) { --child-index: 4; }
.js [data-reveal][data-reveal-children] > *:not([data-reveal]):nth-child(6) { --child-index: 5; }
.js [data-reveal][data-reveal-children] > *:not([data-reveal]):nth-child(7) { --child-index: 6; }
.js [data-reveal][data-reveal-children] > *:not([data-reveal]):nth-child(8) { --child-index: 7; }
.js [data-reveal][data-reveal-children] > *:not([data-reveal]):nth-child(9) { --child-index: 8; }
.js [data-reveal][data-reveal-children] > *:not([data-reveal]):nth-child(10) { --child-index: 9; }

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0ms !important;
  }

  .drawer,
  .drawer__backdrop,
  .drawer__panel,
  .js [data-reveal],
  .js [data-reveal][data-reveal-children] > *:not([data-reveal]) {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1024px) {
  .hero__layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero__panel {
    justify-self: start;
    width: min(100%, 34rem);
  }

  .section__title--light {
    text-align: center;
  }

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

  .estimate__intro {
    padding-top: 0;
  }

  .estimate__title,
  .estimate__lede,
  .estimate__details {
    max-width: none;
  }

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

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

  .about__panel {
    max-width: 40rem;
    justify-self: center;
  }

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

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

  .reviews__spotlight {
    max-width: 42rem;
    width: 100%;
    justify-self: center;
  }

  .team__panel,
  .team__story {
    max-width: 42rem;
    width: 100%;
    justify-self: center;
  }

  .story-grid__content {
    justify-items: center;
  }

  .copy--left {
    text-align: center;
  }

  .about__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .service-modal__media {
    max-height: 18rem;
  }

  .js .story-grid__content[data-reveal],
  .js .story-grid__media[data-reveal],
  .js .service-card[data-reveal] {
    --reveal-distance-x: 0px;
    --reveal-distance-y: 22px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height-base: 5.2rem;
    --brand-width-base: 8.5rem;
  }

  .header-bar {
    grid-template-columns: auto 1fr auto;
    gap: clamp(0.25rem, 1.2vw, 0.5rem);
  }

  .desktop-nav {
    display: none;
  }

  .header-brand-group {
    display: contents;
    padding-right: 0;
  }

  .header-brand-group::after {
    content: none;
  }

  .menu-toggle {
    display: inline-block;
    grid-column: 1;
    justify-self: start;
    z-index: 2;
  }

  .brand {
    position: absolute;
    left: 50%;
    top: 50%;
    display: flex;
    justify-content: center;
    transform: translate(-50%, -50%);
    z-index: 1;
  }

  .brand img {
    width: min(var(--brand-width), calc(100vw - 11rem));
  }

  .site-header .button--compact {
    grid-column: 3;
    justify-self: end;
    min-width: 5.9rem;
    padding-inline: 0.35rem;
    white-space: nowrap;
    text-align: center;
    line-height: 1;
    z-index: 2;
  }

}

@media (max-width: 767px) {
  .shell {
    width: min(calc(100% - 1.25rem), var(--shell-width));
  }

  :root {
    --brand-width-base: 7.4rem;
    --header-brand-gap-base: 0.45rem;
    --header-button-height-base: 2.4rem;
    --header-button-padding-inline-base: 0.7rem;
    --header-button-font-size-base: 0.75rem;
  }

  .site-header .button--compact {
    min-height: 2.3rem;
    min-width: 5.7rem;
    padding-inline: 0.24rem;
    font-size: 0.57rem;
    letter-spacing: 0.02em;
  }

  .hero {
    min-height: auto;
    background-image:
      linear-gradient(180deg, rgba(13, 28, 19, 0.86) 0%, rgba(18, 40, 28, 0.72) 42%, rgba(24, 53, 36, 0.38) 100%),
      url("../images/background-scaled.jpg");
  }

  .hero__content {
    align-items: flex-start;
    padding-top: clamp(5.85rem, 24vw, 7rem);
    padding-bottom: 2.75rem;
  }

  .hero__layout {
    justify-items: center;
    gap: 1.35rem;
  }

  .hero__main {
    display: grid;
    justify-items: center;
    max-width: 34rem;
    text-align: center;
  }

  .hero__topline {
    justify-content: center;
    gap: 0.75rem;
  }

  .hero__brand {
    margin-top: 0.95rem;
    font-size: 0.95rem;
    letter-spacing: 0.14em;
  }

  .hero__title {
    max-width: 9ch;
    margin-top: 0.8rem;
    font-size: clamp(2.3rem, 10.5vw, 3.35rem);
  }

  .hero__tagline {
    max-width: 31rem;
    margin-top: 1.1rem;
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .hero__actions {
    justify-content: center;
    align-items: stretch;
    gap: 0.8rem;
    margin-top: 1.5rem;
  }

  .hero__button,
  .hero__secondary {
    width: 100%;
    max-width: 19.5rem;
  }

  .hero__highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
    width: min(100%, 22rem);
    margin-top: 1.45rem;
  }

  .hero__highlights span {
    justify-content: center;
    min-height: 0;
    padding: 0.65rem 0.95rem;
    text-align: center;
  }

  .hero__panel {
    justify-self: center;
    width: min(100%, 22rem);
    padding: 1.05rem 0.95rem;
    text-align: center;
  }

  .hero__panel-title {
    font-size: clamp(1.35rem, 7vw, 1.7rem);
  }

  .hero__panel-points {
    gap: 0.85rem;
    margin-top: 1rem;
    text-align: left;
  }

  .section {
    padding: 3.25rem 0;
  }

  .section--estimate {
    padding: 3.5rem 0;
  }

  .eyebrow {
    font-size: 1rem;
  }

  .copy,
  .difference-list,
  .value-card p,
  .service-card p {
    font-size: 0.95rem;
  }

  .values-grid,
  .about__cards,
  .services__grid,
  .reviews__grid,
  .estimate-form__grid--two,
  .estimate-form__grid--three {
    grid-template-columns: 1fr;
  }

  .about__quote p {
    max-width: 100%;
    font-size: clamp(1.5rem, 7.4vw, 2rem);
  }

  .about__quote cite {
    font-size: 0.8rem;
  }

  .about__title {
    max-width: 13ch;
  }

  .team__title {
    max-width: 10ch;
  }

  .team__panel,
  .team__story {
    padding: 1.25rem 1rem;
  }

  .team__name {
    font-size: clamp(1.85rem, 8.8vw, 2.4rem);
  }

  .team__copy p:first-child {
    font-size: clamp(1rem, 4.9vw, 1.08rem);
  }

  .services__title {
    max-width: 13ch;
  }

  .reviews__title {
    max-width: 13ch;
    text-align: center;
    margin-inline: auto;
  }

  .reviews__intro {
    justify-items: center;
    text-align: center;
  }

  .reviews__spotlight {
    padding: 1.3rem 1rem;
  }

  .reviews__spotlight-title {
    max-width: none;
    font-size: clamp(1.95rem, 8vw, 2.45rem);
  }

  .reviews__spotlight-actions {
    display: grid;
  }

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

  .service-card__actions,
  .service-modal__actions {
    display: grid;
  }

  .service-card__more,
  .service-card__cta,
  .service-modal__actions .button,
  .service-modal__secondary {
    width: 100%;
  }

  .service-modal {
    padding: 0.5rem;
  }

  .service-modal__dialog {
    max-height: calc(100vh - 1rem);
  }

  .service-modal__layout {
    min-height: auto;
  }

  .service-modal__media {
    max-height: 14rem;
  }

  .service-modal__content {
    padding: 1.2rem 1rem 1rem;
  }

  .service-modal__chips span {
    width: 100%;
    justify-content: center;
  }

  .estimate {
    gap: 1.75rem;
  }

  .estimate__card {
    padding: 1.35rem;
  }

  .estimate__title {
    max-width: 11ch;
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .contact-methods span,
  .button--submit,
  .form-status {
    width: 100%;
  }

  .estimate-form__actions {
    align-items: stretch;
  }

  .hero__highlights span {
    white-space: normal;
  }

  .drawer__panel {
    width: 100%;
  }

  .site-footer {
    padding: 0;
  }

  .site-footer__panel {
    padding: 1.6rem 1rem 1.4rem;
  }
}
