:root {
  --green-950: #041f14;
  --green-900: #00412a;
  --green-800: #005331;
  --green-700: #00643d;
  --green-600: #0e7a4c;
  --lime-700: #568900;
  --lime-600: #6fae0a;
  --lime-500: #7fbd12;
  --lime-100: #edf8d7;
  --orange-700: #c85a00;
  --orange-600: #eb6a00;
  --orange-500: #ff7a00;
  --orange-400: #ff8c1a;
  --orange-100: #fff0df;
  --gray-950: #0d110d;
  --gray-900: #121712;
  --gray-800: #1f261f;
  --gray-700: #333d33;
  --gray-600: #4e5a4e;
  --gray-500: #6e7c6e;
  --gray-300: #c2cdc2;
  --gray-200: #dce3dc;
  --gray-100: #ecf0ec;
  --gray-50: #f6f8f5;
  --white: #ffffff;
  --cream: #fff8ef;
  --font-display: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Mulish", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow-soft: 0 24px 70px rgba(0, 65, 42, 0.15);
  --shadow-card: 0 18px 48px rgba(0, 65, 42, 0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --container: 1180px;
  --section-y: 104px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--gray-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(255, 122, 0, 0.58);
  outline-offset: 4px;
}

::selection {
  color: var(--green-900);
  background: var(--orange-100);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: var(--radius-pill);
  background: var(--orange-500);
  color: var(--green-950);
  padding: 10px 14px;
  font-weight: 800;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 50;
  transition: transform 220ms var(--ease);
}

.nav-shell {
  width: min(calc(100% - 32px), 1240px);
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-pill);
  background: rgba(4, 31, 20, 0.08);
  box-shadow: none;
  backdrop-filter: blur(8px);
  transition: min-height 220ms var(--ease), border-color 220ms var(--ease), background-color 220ms var(--ease), box-shadow 220ms var(--ease), backdrop-filter 220ms var(--ease);
}

.site-header.is-scrolled .nav-shell,
.menu-open .nav-shell {
  min-height: 66px;
  border-color: rgba(220, 227, 220, 0.9);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 42px rgba(0, 65, 42, 0.12);
  backdrop-filter: blur(18px);
}

.brand-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  min-width: 84px;
}

.brand-logo {
  width: 100%;
  max-height: 64px;
  object-fit: contain;
  transition: opacity 180ms var(--ease);
}

.brand-logo-color {
  position: absolute;
  inset: 0;
  margin: auto;
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-light,
.menu-open .brand-logo-light {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-color,
.menu-open .brand-logo-color {
  opacity: 1;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  border-radius: var(--radius-pill);
  padding: 10px 13px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms var(--ease), background-color 180ms var(--ease);
}

.site-header.is-scrolled .site-nav a,
.menu-open .site-nav a {
  color: var(--green-900);
}

.site-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}

.site-header.is-scrolled .site-nav a:hover,
.menu-open .site-nav a:hover {
  color: var(--green-700);
  background: var(--orange-100);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius-pill);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 900;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: border-color 180ms var(--ease), background-color 180ms var(--ease), color 180ms var(--ease);
}

.site-header.is-scrolled .phone-link,
.menu-open .phone-link {
  border-color: var(--gray-200);
  color: var(--green-900);
  background: var(--white);
}

.phone-link i,
.btn i,
.intro-item i,
.trust-grid i,
.service-icon i,
.contact-methods i,
.floating-note i,
.route-top i {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border: 0;
  border-radius: var(--radius-pill);
  padding: 0 18px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background-color 180ms var(--ease), color 180ms var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.btn:active {
  transform: translateY(0) scale(0.99);
}

.btn-accent {
  color: var(--green-950);
  background: var(--orange-500);
  box-shadow: 0 14px 34px rgba(255, 122, 0, 0.3);
}

.btn-accent:hover {
  background: var(--orange-400);
}

.btn-primary {
  color: var(--white);
  background: var(--green-700);
}

.btn-primary:hover {
  background: var(--green-800);
}

.btn-outline {
  color: var(--green-900);
  border: 1px solid var(--gray-200);
  background: var(--white);
}

.btn-outline:hover {
  border-color: rgba(255, 122, 0, 0.46);
  background: var(--orange-100);
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn-large {
  min-height: 56px;
  padding: 0 24px;
}

.btn-full {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  transition: background-color 180ms var(--ease), color 180ms var(--ease);
}

.site-header.is-scrolled .nav-toggle,
.menu-open .nav-toggle {
  color: var(--green-900);
  background: var(--orange-100);
}

.nav-toggle i {
  width: 22px;
  height: 22px;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 160px 0 68px;
  color: var(--white);
  isolation: isolate;
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  background: var(--green-900);
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: calc(100% + 60px);
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, var(--hero-shift, 0), 0) scale(1.04);
}

.hero-media video {
  display: block;
}

.hero-poster {
  display: none;
}

.hero-scrim {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 31, 20, 0.64) 0%, rgba(0, 65, 42, 0.44) 38%, rgba(0, 65, 42, 0.08) 72%),
    linear-gradient(0deg, rgba(4, 31, 20, 0.42) 0%, rgba(0, 65, 42, 0.02) 45%);
}

.hero-content {
  max-width: 1180px;
  --hero-text-shadow: 0 3px 14px rgba(0, 0, 0, 0.48), 0 1px 2px rgba(0, 0, 0, 0.42);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--lime-500);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero .eyebrow {
  text-shadow: var(--hero-text-shadow);
}

.hero h1,
.section-copy h2,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  color: var(--green-950);
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero h1 {
  max-width: 780px;
  color: var(--white);
  font-size: 4.75rem;
  text-shadow: var(--hero-text-shadow);
}

.hero-lede {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.22rem;
  line-height: 1.7;
  text-shadow: var(--hero-text-shadow);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.proof-bar {
  width: min(100%, 880px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 46px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.proof-bar div {
  min-height: 98px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
}

.proof-bar strong,
.proof-bar span {
  display: block;
  text-shadow: var(--hero-text-shadow);
}

.proof-bar strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
}

.proof-bar span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
}

.intro-band {
  position: relative;
  z-index: 2;
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  gap: 22px;
  align-items: stretch;
  padding: 34px 0;
}

.intro-copy h2 {
  max-width: 520px;
  margin: 0;
  color: var(--green-900);
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.intro-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 112px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 22px;
  color: var(--gray-700);
  background: var(--gray-50);
}

.intro-item i {
  flex: 0 0 auto;
  color: var(--green-700);
}

.intro-item span {
  font-weight: 800;
}

.section {
  padding: var(--section-y) 0;
}

.section-about {
  background: var(--gray-50);
}

.section-services {
  background: var(--white);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 74px;
  align-items: center;
}

.media-stack {
  position: relative;
}

.photo-frame {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--orange-100);
  box-shadow: var(--shadow-soft);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-frame-tall {
  aspect-ratio: 4 / 5;
}

.floating-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: var(--radius-md);
  padding: 16px 18px;
  color: var(--green-950);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 40px rgba(0, 65, 42, 0.16);
  backdrop-filter: blur(16px);
}

.floating-note i {
  color: var(--lime-700);
}

.floating-note span {
  font-weight: 900;
}

.section-copy h2,
.section-heading h2,
.contact-copy h2 {
  font-size: 3.1rem;
}

.section-copy p,
.section-heading p,
.contact-copy p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--gray-600);
  font-size: 1.06rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.trust-grid div {
  min-height: 150px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 22px;
  background: var(--white);
}

.trust-grid i {
  color: var(--green-700);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  margin-top: 18px;
  color: var(--green-900);
  font-family: var(--font-display);
  font-size: 1rem;
}

.trust-grid span {
  margin-top: 7px;
  color: var(--gray-600);
  font-size: 0.94rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.58fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 44px;
}

.section-heading p {
  margin-top: 0;
}

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

.service-card {
  display: flex;
  min-height: 462px;
  flex-direction: column;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px;
  background: var(--gray-50);
  box-shadow: 0 10px 30px rgba(0, 65, 42, 0.05);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 122, 0, 0.6);
  box-shadow: var(--shadow-card);
}

.service-card.featured {
  color: rgba(255, 255, 255, 0.82);
  border-color: var(--green-800);
  background: var(--green-900);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green-900);
  background: var(--orange-500);
}

.service-card:not(.featured) .service-icon {
  color: var(--green-700);
  background: var(--orange-100);
}

.service-card h3 {
  margin: 26px 0 0;
  color: var(--green-950);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.service-card.featured h3 {
  color: var(--white);
}

.service-card p {
  margin: 16px 0 0;
  color: var(--gray-600);
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 26px 0 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 24px;
  color: var(--gray-700);
  font-size: 0.94rem;
  font-weight: 700;
}

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

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange-500);
  transform: translateY(-50%);
}

.visual-band {
  padding: 28px 0 112px;
  background: var(--white);
}

.visual-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
}

.visual-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-lg);
  background: var(--green-900);
  box-shadow: var(--shadow-soft);
}

.visual-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 31, 20, 0.82), rgba(0, 65, 42, 0.1) 58%);
}

.visual-card figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  color: var(--white);
}

.visual-card span {
  display: block;
  color: var(--orange-400);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.visual-card strong {
  display: block;
  max-width: 460px;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.22;
}

.section-process {
  background: var(--cream);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.process-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  min-height: 148px;
  border: 1px solid rgba(194, 205, 194, 0.8);
  border-radius: var(--radius-md);
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
}

.process-list > li > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green-950);
  background: var(--orange-500);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
}

.process-list h3 {
  margin: 0;
  color: var(--green-950);
  font-family: var(--font-display);
  font-size: 1.18rem;
  letter-spacing: 0;
}

.process-list p {
  margin: 8px 0 0;
  color: var(--gray-600);
}

.metrics-band {
  color: var(--white);
  background: var(--green-900);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 36px 0;
}

.metric {
  min-height: 150px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  color: var(--orange-500);
  font-family: var(--font-display);
  font-size: 3.75rem;
  line-height: 1;
}

.metric span:last-child {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

.section-region {
  background:
    linear-gradient(180deg, var(--gray-50), var(--white));
}

.region-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  gap: 68px;
  align-items: center;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.area-list span {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-pill);
  padding: 10px 14px;
  color: var(--green-900);
  font-weight: 900;
  background: var(--white);
}

.region-panel {
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 122, 0, 0.18), rgba(127, 189, 18, 0.16)),
    var(--green-900);
  box-shadow: var(--shadow-soft);
}

.route-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.route-top .eyebrow {
  margin: 0;
}

.route-top i {
  color: var(--lime-500);
}

.route-number {
  margin-top: 34px;
  color: var(--orange-500);
  font-family: var(--font-display);
  font-size: 7.4rem;
  font-weight: 900;
  line-height: 0.86;
}

.region-panel p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.route-actions {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.section-contact {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(4, 31, 20, 0.96), rgba(0, 65, 42, 0.9)),
    var(--green-900);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.76fr);
  gap: 70px;
  align-items: start;
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-methods {
  display: grid;
  gap: 12px;
  max-width: 420px;
  margin-top: 30px;
}

.contact-methods a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-pill);
  padding: 0 18px;
  color: var(--white);
  font-weight: 900;
  background: rgba(255, 255, 255, 0.08);
  overflow-wrap: anywhere;
}

.contact-methods i {
  color: var(--orange-500);
}

.estimate-form {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

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

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 15px 15px;
  color: var(--green-950);
  background: rgba(255, 255, 255, 0.95);
}

textarea {
  min-height: 136px;
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--orange-400);
  font-weight: 800;
}

.prepared-sms {
  display: inline-flex;
  justify-content: center;
  min-height: 46px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-pill);
  color: var(--white);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.prepared-sms[hidden] {
  display: none;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--green-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(150px, 0.7fr));
  gap: 46px;
  padding: 56px 0 42px;
}

.footer-logo {
  display: inline-flex;
  width: 142px;
  overflow: hidden;
}

.footer-grid p {
  max-width: 410px;
  margin: 20px 0 0;
}

.footer-grid h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.footer-grid a:hover,
.footer-bottom a:hover {
  color: var(--orange-400);
}

.footer-bottom {
  width: min(calc(100% - 40px), var(--container));
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 0 30px;
  font-size: 0.92rem;
}

.footer-bottom a {
  color: var(--orange-400);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
}

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

.js .service-grid .reveal:nth-child(2),
.js .trust-grid .reveal:nth-child(2) {
  transition-delay: 80ms;
}

.js .service-grid .reveal:nth-child(3) {
  transition-delay: 140ms;
}

.js .service-grid .reveal:nth-child(4) {
  transition-delay: 200ms;
}

@media (max-width: 1120px) {
  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 102px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 16px;
  }

  .nav-toggle {
    display: inline-flex;
  }

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

@media (max-width: 960px) {
  :root {
    --section-y: 78px;
  }

  .nav-quote,
  .phone-link {
    display: none;
  }

  .hero {
    min-height: 86svh;
    padding-top: 132px;
  }

  .hero h1 {
    font-size: 3.75rem;
  }

  .hero-lede {
    font-size: 1.08rem;
  }

  .proof-bar,
  .intro-grid,
  .split,
  .section-heading,
  .visual-grid,
  .process-layout,
  .region-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .proof-bar {
    width: 100%;
  }

  .intro-grid {
    gap: 14px;
  }

  .split,
  .process-layout,
  .region-grid,
  .contact-grid {
    gap: 44px;
  }

  .section-copy h2,
  .section-heading h2,
  .contact-copy h2 {
    font-size: 2.45rem;
  }

  .media-stack {
    max-width: 620px;
  }

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

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    top: 10px;
  }

  .nav-shell {
    width: min(calc(100% - 20px), 1240px);
    min-height: 64px;
    padding: 8px 8px 8px 14px;
  }

  .brand-link {
    width: 72px;
  }

  .site-nav {
    left: 10px;
    right: 10px;
    top: 84px;
  }

  .hero {
    min-height: 88svh;
    padding: 120px 0 38px;
  }

  .hero h1 {
    font-size: 2.68rem;
  }

  .hero-actions,
  .route-actions {
    display: grid;
  }

  .btn-large {
    min-height: 52px;
    padding: 0 18px;
  }

  .proof-bar {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .proof-bar div {
    min-height: 86px;
  }

  .intro-copy h2 {
    font-size: 1.5rem;
  }

  .section-copy h2,
  .section-heading h2,
  .contact-copy h2 {
    font-size: 2rem;
  }

  .trust-grid,
  .service-grid,
  .metrics-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

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

  .visual-card,
  .visual-card img {
    min-height: 340px;
  }

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

  .metric {
    min-height: 122px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .route-number {
    font-size: 5.4rem;
  }

  .estimate-form,
  .region-panel {
    padding: 22px;
    border-radius: var(--radius-md);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@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;
  }

  .hero-media video {
    display: none;
  }

  .hero-poster {
    display: block;
  }

  .hero-media img {
    transform: scale(1.04);
  }
}

/* Language Selector */
.lang-selector {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  padding: 3px;
}

.lang-selector a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, 0.8) !important;
  transition: all 180ms var(--ease);
}

.lang-selector a:hover {
  color: var(--white) !important;
  background: rgba(255, 255, 255, 0.12);
}

.lang-selector a.active {
  color: var(--green-950) !important;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* Scrolled/Open states for header language selector */
.site-header.is-scrolled .lang-selector,
.menu-open .lang-selector {
  background: var(--gray-100);
  border-color: var(--gray-200);
}

.site-header.is-scrolled .lang-selector a,
.menu-open .lang-selector a {
  color: var(--gray-700) !important;
}

.site-header.is-scrolled .lang-selector a:hover,
.menu-open .lang-selector a:hover {
  color: var(--green-900) !important;
  background: rgba(0, 0, 0, 0.06);
}

.site-header.is-scrolled .lang-selector a.active,
.menu-open .lang-selector a.active {
  color: var(--white) !important;
  background: var(--green-800);
}

.footer-langs {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-langs a {
  color: var(--gray-300) !important;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: none !important;
  letter-spacing: normal !important;
  transition: color 150ms var(--ease);
}

.footer-langs a:hover {
  color: var(--white) !important;
}

.footer-langs a.active-lang {
  color: var(--lime-500) !important;
  font-weight: 700;
}

@media (max-width: 960px) {
  .site-header .lang-selector {
    margin-right: 8px;
  }
}

@media (max-width: 480px) {
  .footer-langs {
    justify-content: center;
    margin: 8px 0;
  }
}

