:root {
  --ink: #14201a;
  --muted: #627064;
  --canopy: #0b4a35;
  --canopy-2: #123f38;
  --night: #0b120e;
  --leaf: #4e8a4f;
  --sun: #d49a2a;
  --champagne: #f1c769;
  --clay: #9b5942;
  --steel: #38515d;
  --sky: #e6f2ef;
  --mist: #f4f7f2;
  --paper: #ffffff;
  --line: #dce4dc;
  --hairline: rgba(20, 32, 26, 0.1);
  --shadow: 0 18px 50px rgba(20, 32, 26, 0.14);
  --radius: 8px;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-padding-top: 86px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(20, 32, 26, 0.025) 1px, transparent 1px) 0 0 / 96px 96px,
    radial-gradient(circle at 20% 0%, rgba(212, 154, 42, 0.08), transparent 34rem),
    linear-gradient(180deg, #ffffff, #f7faf7 45rem);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: clip;
}

::selection {
  background: rgba(212, 154, 42, 0.28);
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button,
input,
textarea,
select,
.button,
.media-filter,
.quote-option span {
  min-width: 0;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 10px 14px;
  box-shadow: var(--shadow);
}

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

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 30;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sun), #f1c769, var(--leaf));
  box-shadow: 0 0 20px rgba(212, 154, 42, 0.5);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  max-width: min(860px, calc(100vw - 36px));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(16, 23, 18, 0.9);
  color: var(--paper);
  padding: 12px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cta strong,
.sticky-cta span {
  display: block;
}

.sticky-cta strong {
  font-size: 0.96rem;
  line-height: 1.2;
}

.sticky-cta span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.sticky-phone {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  color: var(--paper);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  box-shadow: 0 1px 24px rgba(20, 32, 26, 0.1);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100vw - 32px));
  min-height: 76px;
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 178px;
  min-width: 150px;
  transform: translateZ(0);
}

.brand img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1) drop-shadow(0 8px 20px rgba(0, 0, 0, 0.26));
}

.site-header.is-scrolled .brand img,
.site-header.is-open .brand img {
  filter: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a,
.mobile-nav a {
  position: relative;
}

.nav a::after,
.mobile-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--sun);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after,
.mobile-nav a:hover::after,
.mobile-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(114, 177, 255, 0.55);
  border-radius: 999px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #f8fbff;
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.26);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(147, 197, 253, 0.85);
  background: linear-gradient(135deg, #4f93ff, #2f6fed);
  box-shadow: 0 22px 38px rgba(37, 99, 235, 0.32);
}

.site-header.is-scrolled .header-cta,
.site-header.is-open .header-cta {
  border-color: rgba(59, 130, 246, 0.4);
  color: #f8fbff;
}

.phone-link {
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 0.9rem;
  font-weight: 800;
}

.site-header.is-scrolled .phone-link,
.site-header.is-open .phone-link {
  border-color: var(--line);
  color: var(--canopy);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: rgba(7, 26, 18, 0.26);
  color: inherit;
}

.site-header.is-scrolled .menu-button,
.site-header.is-open .menu-button {
  background: var(--paper);
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.mobile-nav {
  display: none;
  width: min(1240px, calc(100vw - 32px));
  margin: 0 auto 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 18px;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.mobile-header-cta {
  width: 100%;
  margin-top: 6px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 120px 120px;
  content: "";
  mask-image: linear-gradient(90deg, black, transparent 75%);
  pointer-events: none;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-overlay {
  background:
    radial-gradient(circle at 78% 26%, rgba(212, 154, 42, 0.18), transparent 20rem),
    linear-gradient(90deg, rgba(7, 26, 18, 0.9), rgba(7, 26, 18, 0.54) 46%, rgba(56, 81, 93, 0.16)),
    linear-gradient(0deg, rgba(7, 26, 18, 0.76), rgba(7, 26, 18, 0.06) 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  width: var(--container);
  margin: 0 auto;
  padding: 150px 0 86px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.intro h2,
.tree-copy h2,
.contact h2 {
  margin: 0;
  line-height: 1.02;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3rem, 8vw, 7.2rem);
  overflow-wrap: normal;
  text-wrap: balance;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.hero h1 span {
  display: block;
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
}

.hero-panel {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  padding: 22px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.hero-panel::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 45%);
  content: "";
  pointer-events: none;
}

.hero-panel p {
  position: relative;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
}

.hero-panel-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.hero-panel-grid span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 10px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 900;
}

.hero-panel a,
.hero-panel .availability-link {
  position: relative;
  display: inline-flex;
  margin-top: 18px;
  border: 0;
  background: transparent;
  padding: 0;
  color: #f1c769;
  font-weight: 900;
}

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

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-assurance span {
  border-left: 2px solid var(--sun);
  padding-left: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 900;
}

.button,
.filter-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
  text-align: center;
  overflow-wrap: anywhere;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible,
.filter-button:hover,
.filter-button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  border: 1px solid var(--sun);
  background: linear-gradient(135deg, var(--champagne), var(--sun));
  color: #172019;
  box-shadow: 0 16px 30px rgba(212, 154, 42, 0.26);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
  color: var(--paper);
}

.hero-project-rail {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1080px, calc(100vw - 40px));
  margin: 0 auto 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(7, 26, 18, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.hero-project-rail div {
  padding: 14px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-project-rail div:last-child {
  border-right: 0;
}

.hero-project-rail span {
  display: block;
}

.hero-project-rail span:first-child {
  color: var(--paper);
  font-weight: 900;
}

.hero-project-rail span:last-child {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(980px, calc(100vw - 40px));
  margin: 0 auto -1px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 0;
  border-radius: var(--radius) var(--radius) 0 0;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(16px);
}

.hero-stats div {
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  font-size: clamp(1.15rem, 2.5vw, 1.8rem);
  line-height: 1.1;
}

.hero-stats span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
}

section {
  padding: 96px 0;
}

.trust-strip {
  padding: 0;
  border-block: 1px solid var(--line);
  background: #101712;
  color: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.conversion-snapshot {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(11, 74, 53, 0.04), rgba(212, 154, 42, 0.05), rgba(56, 81, 93, 0.04)),
    var(--paper);
}

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

.snapshot-grid article {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(230, 242, 239, 0.54), rgba(255, 255, 255, 0.92)),
    var(--paper);
  padding: 22px;
  box-shadow: 0 14px 32px rgba(20, 32, 26, 0.07);
  overflow: hidden;
}

.snapshot-grid article::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--sun), var(--leaf), var(--steel));
  content: "";
}

.snapshot-grid span {
  display: inline-flex;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--canopy);
  color: var(--paper);
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 950;
}

.snapshot-grid h2 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.08;
}

.snapshot-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.snapshot-cta {
  background:
    linear-gradient(135deg, rgba(212, 154, 42, 0.2), transparent 56%),
    var(--canopy) !important;
  color: var(--paper);
}

.snapshot-cta h2 {
  color: var(--paper);
}

.snapshot-cta .button {
  margin-top: 22px;
}

.marquee {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  min-width: 200%;
  animation: marquee 36s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  min-height: 72px;
  align-items: center;
  padding: 0 30px;
  color: rgba(255, 255, 255, 0.76);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 2.2vw, 1.6rem);
  white-space: nowrap;
}

.marquee-track span::before {
  width: 7px;
  height: 7px;
  margin-right: 30px;
  border-radius: 999px;
  background: var(--sun);
  content: "";
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section-band {
  background:
    linear-gradient(135deg, rgba(230, 242, 239, 0.8), rgba(244, 247, 242, 0.92)),
    var(--mist);
}

.intro-grid,
.tree-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
}

.intro-lede {
  position: sticky;
  top: 112px;
}

.intro h2,
.section-heading h2,
.tree-copy h2,
.contact h2 {
  font-size: clamp(2rem, 4.6vw, 4rem);
}

.intro-copy {
  display: grid;
  gap: 18px;
  border-left: 1px solid var(--line);
  padding-left: clamp(24px, 4vw, 52px);
}

.legacy-card {
  position: relative;
  margin-top: 34px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.legacy-card img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}

.legacy-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 26, 18, 0.86), transparent 58%);
  content: "";
}

.legacy-card div {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  color: var(--paper);
}

.legacy-card span {
  display: block;
  margin-bottom: 4px;
  color: #f1c769;
  font-size: 2rem;
  font-weight: 950;
  line-height: 1;
}

.legacy-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
}

.intro-copy p,
.tree-copy p,
.contact p,
.section-heading p,
.service-card p,
.team-card p,
.quote-card blockquote {
  margin: 0;
  color: var(--muted);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

.section-heading.split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 28px;
  align-items: end;
}

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

.project-standard {
  position: relative;
  padding: 110px 0;
  background:
    linear-gradient(135deg, rgba(212, 154, 42, 0.12), transparent 34%),
    linear-gradient(180deg, #101712, var(--canopy-2));
  color: var(--paper);
  overflow: hidden;
}

.project-standard::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 108px 108px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, black 18%, black 78%, transparent);
  pointer-events: none;
}

.standard-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.standard-media {
  position: relative;
  min-height: 560px;
}

.standard-media img {
  position: absolute;
  width: min(72%, 440px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.standard-media img:first-child {
  inset: 0 auto auto 0;
  height: 430px;
}

.standard-media img:nth-child(2) {
  right: 0;
  bottom: 0;
  height: 320px;
}

.standard-badge {
  position: absolute;
  right: 32px;
  top: 48px;
  width: min(240px, 48%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.11);
  padding: 18px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.standard-badge span,
.standard-badge strong {
  display: block;
}

.standard-badge span {
  margin-bottom: 8px;
  color: var(--champagne);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.standard-badge strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.8vw, 2.25rem);
  line-height: 1;
}

.standard-copy h2 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 5vw, 4.9rem);
  line-height: 0.98;
}

.standard-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.04rem;
}

.standard-steps {
  display: grid;
  gap: 1px;
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.standard-steps div {
  display: grid;
  grid-template-columns: 54px minmax(140px, 0.58fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.standard-steps span {
  color: var(--champagne);
  font-weight: 950;
}

.standard-steps strong {
  color: var(--paper);
  font-size: 1rem;
}

.standard-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.bid-fit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.bid-fit h2 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.4vw, 4rem);
  line-height: 1.02;
}

.bid-fit p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.bid-checklist {
  display: grid;
  gap: 12px;
}

.bid-checklist div {
  position: relative;
  display: grid;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 18px 18px 18px 52px;
  box-shadow: 0 14px 32px rgba(20, 32, 26, 0.07);
}

.bid-checklist div::before {
  position: absolute;
  left: 18px;
  top: 21px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, var(--champagne), var(--sun));
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.72);
  content: "";
}

.bid-checklist strong {
  color: var(--canopy);
  font-size: 1.03rem;
}

.bid-checklist span {
  color: var(--muted);
}

.service-card,
.project-card,
.team-card,
.quote-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 16px 38px rgba(20, 32, 26, 0.08);
  overflow: hidden;
}

.service-card {
  position: relative;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card::after {
  position: absolute;
  inset: auto 22px 0;
  height: 4px;
  border-radius: 99px 99px 0 0;
  background: linear-gradient(90deg, var(--sun), var(--leaf), var(--steel));
  content: "";
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
}

.service-card div {
  padding: 24px;
}

.service-card h3,
.project-card h3,
.team-card h3,
.contact-form h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.filter-button {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.filter-button.active {
  border-color: var(--canopy);
  background: var(--canopy);
  color: var(--paper);
}

.project-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  gap: 0;
  margin: 0 0 28px;
  border: 1px solid rgba(20, 32, 26, 0.12);
  border-radius: var(--radius);
  background: #101712;
  color: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.spotlight-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.spotlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 180ms ease, transform 700ms ease;
}

.spotlight-media.is-switching img {
  opacity: 0.35;
  transform: scale(1.04);
}

.spotlight-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 45%, rgba(16, 23, 18, 0.72));
  content: "";
}

.spotlight-media span {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  padding: 9px 13px;
  color: var(--paper);
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.spotlight-content {
  display: grid;
  align-content: center;
  padding: clamp(26px, 5vw, 52px);
  background:
    linear-gradient(135deg, rgba(78, 138, 79, 0.18), transparent 45%),
    #101712;
}

.spotlight-content h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.spotlight-content p {
  margin: 0;
}

.spotlight-content [data-spotlight-location] {
  margin-top: 8px;
  color: #f1c769;
  font-weight: 900;
}

.spotlight-content [data-spotlight-copy] {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.76);
}

.spotlight-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.spotlight-button {
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 900;
}

.spotlight-button.active,
.spotlight-button:hover,
.spotlight-button:focus-visible {
  border-color: var(--sun);
  background: var(--sun);
  color: var(--ink);
}

.media-library {
  background: linear-gradient(180deg, #101712, #14201a 55%, #0d1510);
  color: var(--paper);
}

.media-library .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.media-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}

.media-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.media-filter {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  padding: 9px 14px;
  font-size: 0.88rem;
  font-weight: 900;
}

.media-filter.active,
.media-filter:hover,
.media-filter:focus-visible {
  border-color: var(--sun);
  background: var(--sun);
  color: var(--ink);
}

.media-search {
  display: grid;
  gap: 8px;
}

.media-search span {
  color: #f1c769;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.media-search input {
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--paper);
  padding: 0 16px;
  outline: none;
}

.media-search input::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.media-stats {
  min-height: 26px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.media-carousel {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 12px;
  align-items: center;
}

.media-grid {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-padding: 2px;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 16px;
  -webkit-overflow-scrolling: touch;
}

.media-grid:focus-visible {
  outline: 2px solid var(--sun);
  outline-offset: 6px;
}

.media-grid::-webkit-scrollbar {
  height: 8px;
}

.media-grid::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.media-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(241, 199, 105, 0.75);
}

.media-card {
  position: relative;
  flex: 0 0 clamp(244px, 28vw, 340px);
  scroll-snap-align: start;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.media-card img,
.media-card video {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
}

.media-card video {
  object-fit: contain;
}

.media-file {
  display: grid;
  min-height: 190px;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(212, 154, 42, 0.16), rgba(78, 138, 79, 0.12));
}

.media-file strong {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 8px 12px;
  color: #f1c769;
}

.media-card figcaption {
  display: grid;
  gap: 8px;
  padding: 13px;
}

.media-card h3 {
  margin: 0;
  color: var(--paper);
  font-size: 0.92rem;
  line-height: 1.2;
}

.media-card span {
  width: fit-content;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
}

.media-card a {
  color: #f1c769;
  font-weight: 900;
}

.media-arrow {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--paper);
  font-size: 1.35rem;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, opacity 180ms ease;
}

.media-arrow:hover,
.media-arrow:focus-visible {
  background: var(--sun);
  color: var(--ink);
  transform: translateY(-2px);
}

.media-arrow:disabled {
  opacity: 0.38;
  cursor: default;
  transform: none;
}

.media-arrow[hidden] {
  display: none;
}

.media-card[hidden] {
  display: none;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.project-card {
  position: relative;
  min-height: 270px;
  isolation: isolate;
  cursor: pointer;
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.project-card[hidden] {
  display: none;
}

.project-card:hover,
.project-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.project-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(6, 21, 15, 0.82), rgba(6, 21, 15, 0.04) 64%);
  content: "";
}

.project-card div {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  color: var(--paper);
}

.project-card h3 {
  margin: 0;
  color: var(--paper);
}

.project-card p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.tree-grid {
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
}

.tree-copy {
  display: grid;
  gap: 18px;
}

.tree-copy .button {
  width: fit-content;
  margin-top: 8px;
}

.tree-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 128px;
  gap: 12px;
}

.tree-gallery img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 16px 36px rgba(20, 32, 26, 0.12);
}

.tree-gallery img:nth-child(1) {
  grid-column: span 4;
  grid-row: span 2;
}

.tree-gallery img:nth-child(2) {
  grid-column: span 2;
  grid-row: span 2;
}

.tree-gallery img:nth-child(3),
.tree-gallery img:nth-child(4),
.tree-gallery img:nth-child(5) {
  grid-column: span 2;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.team-card {
  padding: 24px;
}

.team-card:nth-child(1),
.team-card:nth-child(5) {
  grid-column: span 2;
}

.team-card:nth-child(2),
.team-card:nth-child(3),
.team-card:nth-child(4) {
  grid-column: span 2;
}

.team-card span {
  display: inline-flex;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--sky);
  padding: 6px 10px;
  color: var(--canopy);
  font-size: 0.82rem;
  font-weight: 900;
}

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

.quote-card {
  position: relative;
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 24px;
}

.quote-card::before {
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sun), var(--leaf));
  content: "";
}

.quote-card blockquote {
  font-size: 0.98rem;
}

.quote-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.partner-wall {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin: -10px 0 26px;
}

.partner-wall img {
  width: 100%;
  height: 86px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  object-fit: contain;
  padding: 14px;
  box-shadow: 0 12px 28px rgba(20, 32, 26, 0.06);
  filter: saturate(0.9);
  transition: transform 160ms ease, filter 160ms ease;
}

.partner-wall img:hover {
  transform: translateY(-3px);
  filter: saturate(1.1);
}

.quote-card img {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 999px;
  object-fit: contain;
  background: var(--paper);
  border: 1px solid var(--line);
}

.search-field {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.search-field span {
  color: var(--canopy);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.search-field input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--ink);
  outline: none;
}

.search-field input:focus {
  border-color: var(--canopy);
  box-shadow: 0 0 0 4px rgba(78, 138, 79, 0.15);
}

.reference-panels {
  display: grid;
  gap: 14px;
}

.reference-note {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(212, 154, 42, 0.12), rgba(230, 242, 239, 0.44)),
    var(--paper);
  padding: 18px 20px;
  box-shadow: 0 12px 28px rgba(20, 32, 26, 0.06);
}

.reference-note strong {
  color: var(--canopy);
}

.reference-note span {
  color: var(--muted);
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
}

summary {
  padding: 18px 20px;
  color: var(--canopy);
  font-weight: 900;
  cursor: pointer;
}

.table-wrap {
  max-height: 520px;
  overflow: auto;
  border-top: 1px solid var(--line);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
  font-size: 0.92rem;
}

th,
td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: var(--canopy);
  color: var(--paper);
}

tbody tr:nth-child(even) {
  background: rgba(230, 242, 239, 0.36);
}

.contact {
  background:
    linear-gradient(135deg, rgba(212, 154, 42, 0.12), transparent 34%),
    linear-gradient(180deg, var(--canopy-2), #101712);
  color: var(--paper);
}

.contact .eyebrow {
  color: #f1c769;
}

.contact p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  align-items: start;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.contact-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.contact-proof div {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  padding: 16px;
}

.contact-proof strong,
.contact-proof span {
  display: block;
}

.contact-proof strong {
  color: var(--champagne);
}

.contact-proof span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.contact-list a,
.contact-list div {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-list strong {
  color: #f1c769;
}

.contact-list span {
  color: rgba(255, 255, 255, 0.82);
}

.contact-form {
  position: relative;
  display: grid;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 26px;
  color: var(--ink);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact-form::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--sun), var(--leaf), var(--steel));
  content: "";
}

.contact-form h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.05;
}

.contact-form p {
  color: var(--muted);
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: var(--paper);
  color: var(--ink);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 4px rgba(78, 138, 79, 0.16);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .button {
  border: 0;
}

.quote-form {
  min-height: 620px;
  align-content: start;
}

.quote-progress {
  display: grid;
  gap: 9px;
  margin-bottom: 4px;
}

.quote-progress > span {
  color: var(--canopy);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.quote-progress div {
  height: 7px;
  border-radius: 999px;
  background: var(--mist);
  overflow: hidden;
}

.quote-progress div span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--sun), var(--leaf));
  transition: width 220ms ease;
}

.quote-step {
  display: none;
  gap: 16px;
  min-height: 410px;
  margin: 0;
  border: 0;
  padding: 0;
}

.quote-step.is-active {
  display: grid;
  animation: quoteStepIn 220ms ease both;
}

@keyframes quoteStepIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quote-grid {
  display: grid;
  gap: 14px;
}

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

.quote-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.quote-option {
  position: relative;
  display: block !important;
  color: var(--ink);
  font-weight: 900;
}

.quote-option input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.quote-option span {
  display: flex;
  min-height: 66px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
  padding: 14px;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.quote-option input:focus-visible + span {
  box-shadow: 0 0 0 4px rgba(78, 138, 79, 0.16);
}

.quote-option input:checked + span {
  border-color: var(--canopy);
  background: var(--canopy);
  color: var(--paper);
}

.quote-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: auto;
}

.quote-nav .button[hidden] {
  display: none;
}

.quote-nav .button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.quote-result {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(212, 154, 42, 0.12), rgba(230, 242, 239, 0.44)),
    var(--paper);
  padding: 16px;
}

.quote-result[hidden] {
  display: none;
}

.form-kicker {
  color: var(--canopy) !important;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button-secondary.dark {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--canopy);
}

.form-note {
  color: var(--muted) !important;
  font-size: 0.86rem;
}

.prepared-inquiry {
  max-height: 180px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
  padding: 14px;
  color: var(--ink);
  font: 0.82rem/1.5 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  white-space: pre-wrap;
  overflow: auto;
}

.form-status {
  min-height: 24px;
  font-weight: 800;
}

.form-status.is-ready {
  color: var(--canopy);
}

.site-footer {
  background: #101712;
  color: rgba(255, 255, 255, 0.82);
  padding: 34px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.site-footer img {
  width: 170px;
  margin-bottom: 12px;
}

.site-footer h2 {
  margin: 0 0 8px;
  color: var(--paper);
  font-size: 1rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  color: var(--paper);
  font-weight: 800;
}

.project-dialog {
  width: min(940px, calc(100vw - 32px));
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.availability-dialog {
  width: min(1040px, calc(100vw - 32px));
  max-height: min(86vh, 760px);
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  background: #101712;
  color: var(--paper);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  overflow: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 680ms ease, transform 680ms ease;
}

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

.project-dialog::backdrop {
  background: rgba(7, 26, 18, 0.72);
}

.availability-dialog::backdrop {
  background: rgba(7, 26, 18, 0.78);
}

.availability-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
  gap: 0;
  min-height: 560px;
  background:
    linear-gradient(135deg, rgba(212, 154, 42, 0.14), transparent 38%),
    linear-gradient(180deg, #101712, var(--canopy-2));
}

.availability-copy {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(28px, 5vw, 58px);
}

.availability-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.availability-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.availability-highlights {
  display: grid;
  gap: 10px;
}

.availability-highlights div {
  border-left: 2px solid var(--sun);
  padding-left: 14px;
}

.availability-highlights strong,
.availability-highlights span {
  display: block;
}

.availability-highlights strong {
  color: var(--paper);
}

.availability-highlights span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.availability-panel {
  display: grid;
  align-content: center;
  gap: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  padding: clamp(24px, 4vw, 42px);
}

.availability-panel h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.05;
}

.availability-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.76);
}

.availability-actions {
  display: grid;
  gap: 10px;
}

.project-dialog img {
  width: 100%;
  max-height: 62vh;
  object-fit: cover;
}

.project-dialog div {
  padding: 24px;
}

.project-dialog h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4rem);
}

.project-dialog p:last-child {
  margin: 8px 0 0;
  color: var(--muted);
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
}

@media (max-width: 1120px) {
  .nav,
  .phone-link,
  .header-cta:not(.mobile-header-cta) {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-nav.is-open {
    display: grid;
    gap: 14px;
  }
}

@media (max-width: 1020px) {
  .nav,
  .phone-link,
  .header-cta:not(.mobile-header-cta) {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-nav.is-open {
    display: grid;
    gap: 14px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-bottom: 44px;
  }

  .hero-panel {
    max-width: 540px;
  }

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

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

  .section-heading.split,
  .intro-grid,
  .tree-grid,
  .contact-grid,
  .project-spotlight,
  .standard-grid,
  .bid-fit-grid,
  .availability-layout {
    grid-template-columns: 1fr;
  }

  .availability-panel {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .sticky-phone {
    grid-column: auto;
  }

  .intro-lede {
    position: static;
  }

  .intro-copy {
    border-left: 0;
    padding-left: 0;
  }

  .spotlight-media {
    min-height: 420px;
  }

  .spotlight-media::after {
    background: linear-gradient(0deg, rgba(16, 23, 18, 0.56), transparent 55%);
  }

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

  .team-card:nth-child(n) {
    grid-column: span 1;
  }

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

  .partner-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .media-toolbar {
    grid-template-columns: 1fr;
  }

  .media-card {
    flex-basis: clamp(236px, 42vw, 330px);
  }

  .standard-media {
    min-height: 500px;
    max-width: 720px;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100vw - 28px, 1180px);
  }

  .header-inner {
    min-height: 68px;
  }

  .brand {
    width: 148px;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-content {
    padding: 116px 0 28px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 10.8vw, 3.2rem);
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    display: none;
  }

  .hero-project-rail {
    display: none;
  }

  .hero-stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px;
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .sticky-cta {
    bottom: 10px;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px;
  }

  .sticky-cta div {
    grid-column: 1 / -1;
  }

  .sticky-cta strong {
    font-size: 0.9rem;
  }

  .sticky-cta span {
    display: none;
  }

  .sticky-cta .button {
    width: 100%;
    min-height: 42px;
    padding: 10px;
    font-size: 0.84rem;
  }

  section {
    padding: 72px 0;
  }

  .service-grid,
  .project-grid,
  .testimonial-grid,
  .team-grid,
  .contact-list,
  .snapshot-grid,
  .contact-proof,
  .quote-grid.two,
  .quote-options {
    grid-template-columns: 1fr;
  }

  .quote-form {
    min-height: 0;
  }

  .quote-step {
    min-height: 0;
  }

  .quote-nav .button {
    width: 100%;
  }

  .media-carousel {
    grid-template-columns: 1fr;
  }

  .media-arrow {
    display: none;
  }

  .media-grid {
    padding-bottom: 14px;
  }

  .media-card {
    flex-basis: min(82vw, 320px);
  }

  .media-stats {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .availability-dialog {
    width: min(100vw - 20px, 1040px);
  }

  .availability-layout {
    min-height: 0;
  }

  .conversion-snapshot {
    padding: 14px 0;
  }

  .project-standard {
    padding: 78px 0;
  }

  .standard-media {
    min-height: auto;
    display: grid;
    gap: 12px;
  }

  .standard-media img {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 1.3;
  }

  .standard-badge {
    position: static;
    width: 100%;
  }

  .standard-steps div {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .standard-steps p {
    grid-column: 2;
  }

  .project-card {
    min-height: 240px;
  }

  .tree-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }

  .tree-gallery img:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .tree-gallery img:nth-child(1) {
    grid-column: span 2;
  }

  .spotlight-media {
    min-height: 280px;
  }

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

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

  .contact-form {
    padding: 20px;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100vw - 24px, 1180px);
  }

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

  .header-inner,
  .mobile-nav {
    width: min(100vw - 24px, 1240px);
  }

  .brand {
    width: 132px;
    min-width: 0;
  }

  .menu-button {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .mobile-nav {
    padding: 14px;
  }

  .hero-content {
    padding: 104px 0 26px;
  }

  .hero h1 {
    font-size: clamp(2.12rem, 10.8vw, 2.85rem);
    line-height: 1;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 1rem;
  }

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

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .hero-assurance {
    gap: 8px;
  }

  .hero-assurance span {
    flex: 1 1 100%;
  }

  .sticky-cta {
    right: 10px;
    bottom: 10px;
    left: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .sticky-cta div {
    display: none;
  }

  .sticky-cta .button {
    min-height: 44px;
    padding: 9px 8px;
    font-size: 0.78rem;
    line-height: 1.15;
  }

  section {
    padding: 62px 0;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .section-heading.split {
    gap: 14px;
  }

  .intro h2,
  .section-heading h2,
  .tree-copy h2,
  .contact h2,
  .bid-fit h2 {
    font-size: clamp(1.82rem, 9vw, 2.55rem);
  }

  .standard-copy h2,
  .availability-copy h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .spotlight-content h3 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .snapshot-grid article,
  .team-card,
  .quote-card,
  .reference-note,
  .contact-list a,
  .contact-list div,
  .contact-proof div {
    padding: 16px;
  }

  .service-card div {
    padding: 18px;
  }

  .media-toolbar {
    gap: 14px;
  }

  .media-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .media-filter {
    width: 100%;
    min-height: 44px;
    justify-content: center;
    padding: 8px 10px;
    font-size: 0.8rem;
    line-height: 1.15;
    text-align: center;
  }

  .media-search input {
    border-radius: var(--radius);
  }

  .media-card {
    flex-basis: min(86vw, 300px);
  }

  .tree-copy .button,
  .availability-actions .button,
  .form-actions .button {
    width: 100%;
  }

  .tree-gallery {
    gap: 8px;
    grid-auto-rows: 124px;
  }

  .partner-wall {
    gap: 8px;
  }

  .partner-wall img {
    height: 74px;
    padding: 10px;
  }

  .quote-option span {
    min-height: 58px;
    padding: 12px;
  }

  .prepared-inquiry {
    max-height: 220px;
    font-size: 0.78rem;
  }

  .project-dialog,
  .availability-dialog {
    width: 100vw;
    max-height: 100dvh;
    border-radius: 0;
  }

  .project-dialog img {
    max-height: 46vh;
  }

  .availability-copy,
  .availability-panel {
    padding: 28px 20px;
  }

  .dialog-close {
    top: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
  }

  .footer-grid {
    gap: 18px;
  }
}

@media (max-width: 380px) {
  :root {
    --container: min(100vw - 20px, 1180px);
  }

  .header-inner,
  .mobile-nav {
    width: min(100vw - 20px, 1240px);
  }

  .brand {
    width: 124px;
  }

  .hero h1 {
    font-size: clamp(1.95rem, 10.4vw, 2.35rem);
  }

  .intro h2,
  .section-heading h2,
  .tree-copy h2,
  .contact h2,
  .bid-fit h2 {
    font-size: clamp(1.68rem, 8.7vw, 2.18rem);
  }

  .media-filters {
    grid-template-columns: 1fr;
  }

  .media-card {
    flex-basis: 88vw;
  }

  .sticky-cta {
    gap: 6px;
    padding: 8px;
  }

  .sticky-cta .button {
    font-size: 0.74rem;
  }

  .tree-gallery {
    grid-auto-rows: 108px;
  }
}

@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 {
    display: none;
  }

  .hero {
    background: linear-gradient(rgba(7, 26, 18, 0.72), rgba(7, 26, 18, 0.72)), url("assets/hero-poster.jpg") center / cover;
  }
}
