:root {
  --ink: #101817;
  --green-975: #031713;
  --green-950: #061d19;
  --green-900: #0a2b25;
  --green-800: #113d34;
  --copper: #e2a15f;
  --copper-light: #f2bc7f;
  --copper-dark: #a96f3d;
  --cream: #f5f0e8;
  --cream-dark: #e9dfd2;
  --sand: #d8c7b4;
  --white: #fffdf9;
  --muted: #5c6662;
  --line: rgba(16, 24, 23, 0.15);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --page: min(1320px, calc(100vw - 64px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { color: inherit; font: inherit; }
button { cursor: pointer; }
[hidden] { display: none !important; }
h1, h2, h3, p { margin-top: 0; }

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--green-950);
  background: var(--white);
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 385px 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 122px;
  padding: 18px 4.5vw;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transition: background 220ms ease, min-height 220ms ease, backdrop-filter 220ms ease;
}
.site-header.is-scrolled {
  min-height: 86px;
  background: rgba(3, 23, 19, 0.95);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; }
.brand img {
  width: 360px;
  height: auto;
  transition: width 220ms ease;
}
.site-header.is-scrolled .brand img { width: 300px; }
.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 1.8vw, 30px);
}
.site-nav a {
  position: relative;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  white-space: nowrap;
}
.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after { transform: scaleX(1); }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 12px 17px;
  color: var(--green-950);
  background: var(--copper);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}
.header-cta span,
.button span {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: rgba(6, 29, 25, 0.12);
  transition: transform 180ms ease;
}
.header-cta:hover span,
.button:hover span { transform: translate(2px, -2px); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 860px;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
}
.hero-image,
.hero-wash {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image {
  object-position: 63% center;
  transform: scale(1.015);
  animation: settle 1800ms ease-out both;
}
.hero-wash {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 27, 23, 0.98) 0%, rgba(5, 38, 32, 0.91) 42%, rgba(5, 29, 24, 0.5) 73%, rgba(5, 25, 21, 0.4) 100%),
    linear-gradient(0deg, rgba(3, 21, 18, 0.55), transparent 55%);
}
.hero-sun {
  position: absolute;
  z-index: -1;
  top: 11%;
  right: -10vw;
  width: clamp(300px, 35vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(226, 161, 95, 0.16);
  mix-blend-mode: screen;
}
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.55fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
  width: var(--page);
  margin: 116px auto 24px;
}
.hero-content { max-width: 800px; }
.eyebrow,
.section-kicker,
.picker-kicker,
.summary-kicker {
  margin: 0 0 24px;
  color: var(--copper);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow span { margin: 0 9px; opacity: 0.55; }
h1 {
  max-width: 820px;
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 7.2rem);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.065em;
}
h1 em,
h2 em { color: var(--copper); font-weight: 400; }
.hero-copy {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 253, 249, 0.82);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}
.hero-actions,
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
}
.button-primary { color: var(--green-950); background: var(--copper); }
.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.05);
}
.button-ghost span { background: rgba(255, 255, 255, 0.1); }
.button-dark { color: var(--white); background: var(--green-950); }
.button-dark span { background: rgba(255, 255, 255, 0.1); }
.button-outline-dark { color: var(--green-950); border-color: rgba(6, 29, 25, 0.32); background: transparent; }
.approval-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  max-width: 660px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}
.approval-note span {
  display: grid;
  flex: 0 0 19px;
  place-items: center;
  width: 19px;
  height: 19px;
  color: var(--green-950);
  background: var(--copper);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 900;
}
.path-picker {
  padding: 31px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  background: rgba(5, 31, 26, 0.72);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}
.path-picker h2 {
  max-width: 350px;
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.4vw, 2.65rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.035em;
}
.picker-kicker { margin-bottom: 10px; }
.path-card {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 18px 58px 18px 18px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.74);
  text-align: left;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.13);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}
.path-card:hover { transform: translateY(-2px); border-color: rgba(226, 161, 95, 0.65); }
.path-card.is-selected {
  color: var(--white);
  background: rgba(226, 161, 95, 0.13);
  border-color: var(--copper);
}
.path-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 7px;
}
.path-card strong { color: var(--white); font-size: 0.93rem; }
.path-card em {
  color: var(--copper-light);
  font-size: 0.61rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.path-card > span:nth-child(2) { display: block; font-size: 0.77rem; line-height: 1.5; }
.path-card i {
  position: absolute;
  right: 14px;
  bottom: 9px;
  color: rgba(255, 255, 255, 0.1);
  font-family: var(--serif);
  font-size: 2.2rem;
  font-style: normal;
}
.picker-link {
  display: flex;
  justify-content: space-between;
  margin-top: 22px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
}
.picker-link > span:last-child { color: var(--copper); }

.assurance-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: rgba(255, 255, 255, 0.73);
  background: var(--green-975);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.assurance-strip p {
  margin: 0;
  padding: 22px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-align: center;
  text-transform: uppercase;
}
.assurance-strip p:last-child { border-right: 0; }
.assurance-strip span { margin-right: 9px; color: var(--copper); font-family: var(--serif); }

.section { padding: 118px max(32px, calc((100vw - 1320px) / 2)); }
.display,
.products-heading h2,
.install-copy h2,
.closing-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 5.9vw, 6rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.builder { background: var(--cream); }
.builder-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.62fr;
  gap: 10vw;
  align-items: end;
  margin-bottom: 64px;
}
.builder-heading > p {
  max-width: 520px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 1.03rem;
}
.builder-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 22px;
  align-items: start;
}
.builder-form { background: var(--white); border: 1px solid rgba(16, 24, 23, 0.1); }
.builder-block { padding: 38px; border-bottom: 1px solid var(--line); }
.builder-block:last-child { border-bottom: 0; }
.step-heading {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 23px;
}
.step-heading > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--copper-dark);
  border: 1px solid rgba(169, 111, 61, 0.36);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 0.92rem;
}
.step-heading p {
  margin: 0 0 2px;
  color: var(--copper-dark);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.step-heading h3 { margin: 0; font-family: var(--serif); font-size: 1.72rem; font-weight: 400; line-height: 1.1; }
.choice-grid { display: grid; gap: 10px; }
.choice-grid-two { grid-template-columns: repeat(2, 1fr); }
.choice-grid-three { grid-template-columns: repeat(3, 1fr); }
.choice-button {
  min-height: 90px;
  padding: 17px;
  text-align: left;
  background: #faf7f2;
  border: 1px solid rgba(16, 24, 23, 0.13);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.choice-button:hover { border-color: rgba(169, 111, 61, 0.56); }
.choice-button.is-selected {
  background: rgba(226, 161, 95, 0.12);
  border-color: var(--copper-dark);
  box-shadow: inset 0 -3px 0 var(--copper);
}
.choice-button strong,
.choice-button small { display: block; }
.choice-button strong { margin-bottom: 5px; font-size: 0.84rem; }
.choice-button small { color: var(--muted); font-size: 0.71rem; line-height: 1.4; }
.block-note { margin: -6px 0 20px 60px; color: var(--muted); font-size: 0.78rem; }
.field-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.field-grid label > span:first-child {
  display: block;
  margin-bottom: 7px;
  color: #59625f;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.input-wrap { position: relative; display: block; }
.input-wrap input,
.field-grid select {
  width: 100%;
  height: 52px;
  padding: 0 48px 0 14px;
  background: #faf7f2;
  border: 1px solid rgba(16, 24, 23, 0.15);
  border-radius: 0;
  appearance: none;
}
.field-grid select { padding-right: 12px; }
.input-wrap em {
  position: absolute;
  top: 50%;
  right: 13px;
  color: #7a827f;
  font-size: 0.7rem;
  font-style: normal;
  transform: translateY(-50%);
}
.vip-measure-message,
.vip-install-message {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(17, 61, 52, 0.07);
  border-left: 3px solid var(--copper);
}
.vip-measure-message > span,
.vip-install-message > span {
  display: grid;
  flex: 0 0 26px;
  place-items: center;
  width: 26px;
  height: 26px;
  color: var(--white);
  background: var(--green-800);
  border-radius: 50%;
  font-size: 0.72rem;
}
.vip-measure-message strong,
.vip-install-message strong { font-family: var(--serif); font-size: 1.12rem; font-weight: 400; }
.vip-measure-message p,
.vip-install-message p { margin: 4px 0 0; color: var(--muted); font-size: 0.77rem; }
.project-summary {
  position: sticky;
  top: 104px;
  padding: 32px;
  color: var(--white);
  background: var(--green-900);
  box-shadow: 0 24px 60px rgba(7, 31, 26, 0.18);
}
.summary-kicker { margin-bottom: 11px; }
.project-summary > h3 {
  margin-bottom: 25px;
  font-family: var(--serif);
  font-size: 2.15rem;
  font-weight: 400;
  line-height: 1;
}
.project-summary dl { margin: 0; }
.project-summary dl > div {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 15px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}
.project-summary dt { color: rgba(255, 255, 255, 0.51); font-size: 0.68rem; text-transform: uppercase; }
.project-summary dd { margin: 0; font-size: 0.76rem; text-align: right; }
.summary-next {
  margin: 22px 0;
  padding: 17px;
  background: rgba(255, 255, 255, 0.065);
}
.summary-next span { color: var(--copper); font-size: 0.62rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.summary-next p { margin: 7px 0 0; color: rgba(255, 255, 255, 0.72); font-size: 0.76rem; }
.button-full { width: 100%; border-radius: 0; }
.text-button {
  display: block;
  margin: 15px auto 0;
  padding: 4px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.72rem;
}
.summary-status { min-height: 20px; margin: 12px 0 0; color: var(--copper-light); font-size: 0.7rem; text-align: center; }

.approval-band {
  position: relative;
  display: grid;
  grid-template-columns: 0.45fr 1fr 0.82fr;
  gap: 5vw;
  align-items: center;
  padding: 104px max(32px, calc((100vw - 1320px) / 2));
  overflow: hidden;
  color: var(--white);
  background: var(--green-900);
}
.approval-band::after {
  position: absolute;
  right: -170px;
  bottom: -220px;
  width: 520px;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(226, 161, 95, 0.22);
  border-radius: 50%;
}
.approval-number { color: rgba(226, 161, 95, 0.26); font-family: var(--serif); font-size: clamp(5rem, 9vw, 9rem); line-height: 0.8; }
.approval-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 4.8vw, 5rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.05em;
}
.approval-detail { position: relative; z-index: 1; color: rgba(255, 255, 255, 0.72); }
.approval-detail strong { display: block; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, 0.18); color: var(--white); font-size: 0.79rem; }

.process {
  display: grid;
  grid-template-columns: 0.8fr 1.08fr;
  gap: 9vw;
  background: var(--white);
}
.process-heading { position: sticky; top: 130px; align-self: start; }
.process-heading > p:last-child { max-width: 490px; margin: 28px 0 0; color: var(--muted); }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-top: 1px solid var(--line);
}
.process-list li:last-child { border-bottom: 1px solid var(--line); }
.process-list > li > span { color: var(--copper-dark); font-family: var(--serif); font-size: 1.05rem; }
.process-list h3 { margin-bottom: 5px; font-family: var(--serif); font-size: 1.78rem; font-weight: 400; }
.process-list p { margin: 0; color: var(--muted); font-size: 0.91rem; }

.products { color: var(--white); background: var(--green-975); }
.products-heading {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 9vw;
  align-items: end;
  margin-bottom: 58px;
}
.products-heading > p { max-width: 460px; margin: 0 0 6px; color: rgba(255, 255, 255, 0.62); }
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; }
.product-card {
  position: relative;
  min-height: 530px;
  isolation: isolate;
  overflow: hidden;
  background: var(--green-900);
}
.product-card-wide { grid-column: span 2; min-height: 590px; }
.product-card img,
.product-overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.65,.2,1);
}
.product-card-wide img { object-position: center 58%; }
.product-overlay { z-index: -1; background: linear-gradient(0deg, rgba(3, 23, 19, 0.96), rgba(3, 23, 19, 0.04) 74%); }
.product-card:hover img { transform: scale(1.035); }
.product-content { position: absolute; right: 0; bottom: 0; left: 0; padding: 36px; }
.product-content > span { color: var(--copper); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; }
.product-content h3 { margin: 8px 0; font-family: var(--serif); font-size: clamp(2.3rem, 3.6vw, 3.8rem); font-weight: 400; line-height: 1; }
.product-content p { max-width: 570px; margin-bottom: 17px; color: rgba(255, 255, 255, 0.74); }
.product-content button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 0 0 5px;
  color: var(--white);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
  font-size: 0.76rem;
  font-weight: 800;
}
.product-content button span { color: var(--copper); }

.comparison { background: var(--cream-dark); }
.comparison-heading { max-width: 900px; margin-bottom: 57px; }
.comparison-heading > p:last-child { max-width: 630px; margin: 28px 0 0; color: var(--muted); }
.comparison-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.comparison-card { padding: clamp(32px, 4vw, 58px); background: var(--white); border: 1px solid rgba(16, 24, 23, 0.1); }
.comparison-card-featured { color: var(--white); background: var(--green-900); }
.comparison-card-head { display: flex; justify-content: space-between; gap: 15px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.comparison-card-featured .comparison-card-head { border-color: rgba(255, 255, 255, 0.16); }
.comparison-card-head span { font-size: 0.7rem; font-weight: 850; letter-spacing: 0.15em; text-transform: uppercase; }
.comparison-card-head em { color: var(--copper-dark); font-size: 0.68rem; font-style: normal; }
.comparison-card-featured .comparison-card-head em { color: var(--copper-light); }
.comparison-card h3 { margin: 31px 0; font-family: var(--serif); font-size: clamp(2.3rem, 3.7vw, 3.8rem); font-weight: 400; line-height: 1; letter-spacing: -0.04em; }
.comparison-card ul { margin: 0 0 31px; padding: 0; list-style: none; }
.comparison-card li { display: flex; gap: 12px; padding: 11px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.86rem; }
.comparison-card-featured li { color: rgba(255, 255, 255, 0.76); border-color: rgba(255, 255, 255, 0.13); }
.comparison-card li span { color: var(--copper-dark); font-weight: 900; }
.comparison-card-featured li span { color: var(--copper); }
.fee-note { max-width: 470px; margin: -14px 0 25px; color: var(--muted); font-size: 0.74rem; }

.install-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 700px; color: var(--white); background: var(--green-900); }
.install-image { min-height: 620px; overflow: hidden; }
.install-image img { width: 100%; height: 100%; object-fit: cover; }
.install-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(48px, 7vw, 110px); }
.install-copy > p:not(.section-kicker) { max-width: 570px; margin: 27px 0; color: rgba(255, 255, 255, 0.72); }
.install-copy ul { width: 100%; max-width: 570px; margin: 0 0 30px; padding: 0; list-style: none; }
.install-copy li { padding: 10px 0; border-top: 1px solid rgba(255, 255, 255, 0.16); font-size: 0.82rem; }

.faq { display: grid; grid-template-columns: 0.74fr 1fr; gap: 10vw; background: var(--white); }
.faq-heading { position: sticky; top: 130px; align-self: start; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary {
  position: relative;
  padding: 24px 45px 24px 0;
  list-style: none;
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.25;
  cursor: pointer;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  position: absolute;
  top: 24px;
  right: 4px;
  content: "+";
  color: var(--copper-dark);
  font-family: var(--sans);
  font-size: 1.15rem;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 730px; padding: 0 50px 23px 0; color: var(--muted); font-size: 0.9rem; }

.closing-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--sand);
}
.closing-cta::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.42), transparent 46%);
}
.closing-cta > * { position: relative; z-index: 1; }
.closing-cta h2 { margin-bottom: 25px; }
.closing-cta > p:not(.section-kicker) { max-width: 670px; margin: 0 auto 28px; color: #4e5955; }
.closing-actions { justify-content: center; }
.closing-mark {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  color: rgba(10, 43, 37, 0.04);
  font-family: var(--serif);
  font-size: min(42vw, 580px);
  line-height: 1;
  transform: translate(-50%, -50%);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  padding: 58px 5vw 34px;
  color: rgba(255, 255, 255, 0.62);
  background: var(--green-975);
}
.footer-brand img { width: 270px; height: auto; }
.site-footer p { margin: 0; font-size: 0.78rem; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; color: var(--white); font-size: 0.75rem; }
.site-footer .copyright { grid-column: 1 / -1; padding-top: 27px; border-top: 1px solid rgba(255, 255, 255, 0.12); text-align: right; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 650ms ease, transform 650ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes settle { from { opacity: 0; transform: scale(1.06); } to { opacity: 1; transform: scale(1.015); } }

@media (max-width: 1200px) {
  .site-header { grid-template-columns: 285px 1fr auto; padding-right: 3vw; padding-left: 3vw; }
  .brand img { width: 270px; }
  .site-header.is-scrolled .brand img { width: 245px; }
  .site-nav { gap: 14px; }
  .site-nav a { font-size: 0.68rem; }
  .header-cta { padding: 10px 13px; }
  .hero-layout { grid-template-columns: minmax(0, 1fr) 360px; gap: 45px; }
  .builder-shell { grid-template-columns: minmax(0, 1fr) 360px; }
  .choice-grid-three { grid-template-columns: 1fr; }
  .choice-grid-three .choice-button { min-height: 72px; }
}

@media (max-width: 980px) {
  :root { --page: calc(100vw - 48px); }
  .site-header { grid-template-columns: 1fr auto; min-height: 92px; padding: 13px 24px; }
  .brand img { width: 270px; }
  .site-header.is-scrolled .brand img { width: 245px; }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 46px;
    height: 46px;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: rgba(6, 29, 25, 0.28);
  }
  .menu-toggle span:not(.sr-only) { display: block; width: 18px; height: 1px; background: var(--white); transition: transform 180ms ease, opacity 180ms ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .site-nav {
    position: absolute;
    top: 92px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 20px 24px 27px;
    background: rgba(3, 23, 19, 0.99);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .site-header.is-scrolled .site-nav { top: 86px; }
  .site-nav.is-open { display: flex; }
  .site-nav a { width: 100%; padding: 13px 2px; font-size: 0.82rem; }
  .header-cta { display: none; }
  .hero { min-height: 980px; }
  .hero-layout { grid-template-columns: 1fr; gap: 42px; margin-top: 130px; padding: 70px 0; }
  .hero-content { max-width: 730px; }
  .path-picker { width: min(100%, 650px); }
  .builder-heading,
  .products-heading { grid-template-columns: 1fr; gap: 34px; }
  .builder-shell { grid-template-columns: 1fr; }
  .project-summary { position: static; }
  .approval-band { grid-template-columns: 0.35fr 1fr; }
  .approval-detail { grid-column: 2; }
  .process { grid-template-columns: 1fr; gap: 60px; }
  .process-heading,
  .faq-heading { position: static; }
  .faq { grid-template-columns: 1fr; gap: 55px; }
}

@media (max-width: 760px) {
  :root { --page: calc(100vw - 36px); }
  .section { padding: 82px 18px; }
  .hero { min-height: 980px; }
  .hero-layout { width: var(--page); margin-top: 110px; padding: 58px 0; }
  h1 { font-size: clamp(3.7rem, 15.8vw, 6.2rem); line-height: 0.89; }
  .eyebrow { max-width: 350px; line-height: 1.7; }
  .path-picker { padding: 24px; }
  .assurance-strip { grid-template-columns: repeat(2, 1fr); }
  .assurance-strip p:nth-child(2) { border-right: 0; }
  .assurance-strip p:nth-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, 0.09); }
  .builder-heading { margin-bottom: 42px; }
  .builder-block { padding: 28px 22px; }
  .choice-grid-two { grid-template-columns: 1fr; }
  .field-grid { grid-template-columns: repeat(2, 1fr); }
  .block-note { margin-left: 0; }
  .approval-band { grid-template-columns: 1fr; gap: 30px; padding: 78px 18px; }
  .approval-detail { grid-column: auto; }
  .approval-number { font-size: 7rem; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card-wide { grid-column: auto; }
  .product-card,
  .product-card-wide { min-height: 500px; }
  .comparison-grid { grid-template-columns: 1fr; }
  .install-section { grid-template-columns: 1fr; }
  .install-image { min-height: 450px; }
  .install-copy { padding: 75px 24px; }
  .site-footer { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { margin: 0 auto; }
  .site-footer nav { justify-content: center; }
  .site-footer .copyright { grid-column: auto; text-align: center; }
}

@media (max-width: 500px) {
  .site-header { min-height: 84px; padding-right: 18px; padding-left: 18px; }
  .site-header.is-scrolled { min-height: 80px; }
  .brand img { width: 225px; }
  .site-header.is-scrolled .brand img { width: 210px; }
  .site-nav { top: 84px; padding-right: 18px; padding-left: 18px; }
  .site-header.is-scrolled .site-nav { top: 80px; }
  .hero { min-height: 1030px; }
  .hero-layout { margin-top: 90px; padding: 52px 0; }
  .hero-actions,
  .closing-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .display,
  .products-heading h2,
  .install-copy h2,
  .closing-cta h2 { font-size: clamp(3.15rem, 14vw, 4.5rem); }
  .path-card-top { display: block; }
  .path-card-top em { display: block; margin-top: 3px; }
  .field-grid { grid-template-columns: 1fr; }
  .project-summary { padding: 26px 22px; }
  .process-list li { grid-template-columns: 43px 1fr; gap: 14px; }
  .product-content { padding: 26px; }
  .product-card,
  .product-card-wide { min-height: 465px; }
  .comparison-card { padding: 32px 24px; }
  .comparison-card-head { display: block; }
  .comparison-card-head em { display: block; margin-top: 5px; }
  .install-image { min-height: 360px; }
  .faq-list summary { font-size: 1.22rem; }
}

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