@font-face {
  font-family: "Host Grotesk";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/host-grotesk-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Host Grotesk";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/host-grotesk-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Host Grotesk";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/host-grotesk-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Host Grotesk";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/host-grotesk-latin-700-normal.woff2") format("woff2");
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/inter-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/inter-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/inter-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/inter-latin-700-normal.woff2") format("woff2");
}

:root {
  --forest: #12332b;
  --forest-mid: #1a4036;
  --forest-deep: #0c221c;
  --plantation: #1e4c41;
  --plantation-dark: #0f2620;
  --blaze: #ff7006;
  --blaze-dark: #cc5904;
  --blaze-ring: rgba(255, 112, 6, 0.18);
  --paper: #f7f4ee;
  --pampas: #f3efe6;
  --cream: #efeae0;
  --white: #fffdf8;
  --ink: #191919;
  --ink-soft: #4c4c4c;
  --ink-mute: #7f7f7f;
  --line: #ddd6c8;
  --font: Inter, ui-sans-serif, system-ui, sans-serif;
  --display: "Host Grotesk", ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--pampas);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
.wrap {
  width: min(100% - 80px, 1180px);
  margin: 0 auto;
}
.sr {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}
.skip {
  position: absolute;
  left: 12px; top: -40px;
  z-index: 80;
  padding: 8px 12px;
  background: var(--white);
  color: var(--plantation-dark);
  font-size: 13px;
}
.skip:focus { top: 12px; }

/* ——— mast ——— */
header.mast {
  background: var(--pampas);
  position: relative;
  z-index: 4;
  border-bottom: 1px solid rgba(15, 38, 32, 0.06);
}
header.mast .bar {
  width: min(100% - 80px, 1180px);
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
header.mast .mark { display: flex; align-items: center; }
header.mast img { height: 22px; width: auto; }
.mast-end {
  display: flex;
  align-items: center;
  gap: 32px;
}
.quiet-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  text-decoration: none;
}
.quiet-link:hover { color: var(--plantation-dark); }
.phone {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--plantation-dark);
  text-decoration: none;
}
.phone:hover { color: var(--ink); }

/* legal pages still use .chrome */
header.chrome {
  background: var(--pampas);
  position: relative;
  z-index: 4;
}
header.chrome .bar {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 28px;
}
header.chrome .mark { display: flex; align-items: center; }
header.chrome img { height: 22px; width: auto; }
header.chrome nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
}
header.chrome nav a { text-decoration: none; }
header.chrome nav a:hover { color: var(--plantation-dark); }

/* ——— door ——— */
.door {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blaze);
  color: #fff;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.015em;
  padding: 0 24px;
  min-height: 52px;
  border-radius: 3px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
}
.door:hover { background: var(--blaze-dark); }

.doorway {
  display: flex;
  align-items: stretch;
  gap: 5px;
  background: var(--white);
  border: 1px solid rgba(15, 38, 32, 0.1);
  border-radius: 4px;
  padding: 5px 5px 5px 20px;
  max-width: 34rem;
  box-shadow: 0 1px 0 rgba(15, 38, 32, 0.03), 0 10px 28px rgba(15, 38, 32, 0.05);
}
.doorway:focus-within {
  border-color: rgba(255, 112, 6, 0.45);
  box-shadow: 0 0 0 3px var(--blaze-ring), 0 10px 28px rgba(15, 38, 32, 0.05);
}
.doorway input {
  flex: 1;
  border: 0;
  background: transparent;
  font: 400 16px/1.4 var(--font);
  color: var(--ink);
  outline: none;
  min-height: 50px;
  min-width: 0;
}
.doorway input::placeholder { color: #8a938e; }
.doorway .door { border-radius: 3px; }

.field {
  display: flex;
  gap: 6px;
  align-items: stretch;
  background: #fff;
  border-radius: 4px;
  padding: 6px 6px 6px 18px;
  max-width: 36rem;
  box-shadow: 0 10px 30px rgba(8, 22, 18, 0.18);
}
.field:focus-within { box-shadow: 0 0 0 3px var(--blaze-ring), 0 10px 30px rgba(8, 22, 18, 0.18); }
.field input {
  flex: 1;
  border: 0;
  background: transparent;
  font: 400 15px/1.4 var(--font);
  color: var(--ink);
  outline: none;
  min-height: 46px;
}
.field input::placeholder { color: #8a938e; }

/* ——— first screen: cream, type + door as one object, photo bleeds ——— */
.first {
  background: var(--pampas);
  min-height: calc(100vh - 72px);
  padding: 0;
  overflow: hidden;
}
.first-grid {
  width: 100%;
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(26rem, 0.86fr) minmax(24rem, 1.2fr);
  align-items: stretch;
}
.first-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 48px 64px max(40px, calc((100vw - 1180px) / 2));
}
.first-lock {
  max-width: 32rem;
}
.first h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(56px, 6.8vw, 92px);
  line-height: 0.88;
  letter-spacing: -0.052em;
  color: var(--plantation-dark);
  margin: 0 0 14px;
}
.first .lead {
  margin: 0 0 40px;
  font-size: 18px;
  line-height: 1.38;
  font-weight: 400;
  color: var(--ink);
  opacity: 0.68;
  max-width: 20em;
}
.first .next-min {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.35;
  color: var(--plantation-dark);
  opacity: 0.72;
}
.first .quiet {
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.35;
  color: var(--ink);
  opacity: 0.5;
}

.first-plate {
  margin: 0;
  position: relative;
  height: 100%;
  min-height: calc(100vh - 72px);
  overflow: hidden;
}
.first-plate img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 40%;
  border-radius: 0;
}
.first-plate::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 72px;
  background: linear-gradient(to top, rgba(12, 34, 28, 0.38), transparent);
  pointer-events: none;
}
.first-plate figcaption {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 2;
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.03em;
  color: #fffdf8;
}

/* ——— type / sections ——— */
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--plantation-dark);
  margin: 0;
}
.kicker {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--plantation);
}
.kicker.light { color: rgba(246, 243, 236, 0.7); }
.section { padding: 120px 0; }
.section.paper { background: var(--paper); }
.section.cream { background: var(--cream); }
.section h2 {
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.038em;
  margin: 0 0 16px;
}
.section .intro {
  color: var(--ink-soft);
  max-width: 36em;
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
}
.statement {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: var(--plantation-dark);
}

.order { padding-bottom: 120px; }
.order-head { max-width: 38rem; }
.order-still {
  position: relative;
  margin: 56px 0 0;
  overflow: hidden;
}
.order-still img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: 50% 48%;
  border-radius: 0;
}
.order-still::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 56px;
  background: linear-gradient(to top, rgba(12, 34, 28, 0.32), transparent);
  pointer-events: none;
}
.order-still figcaption {
  position: absolute;
  left: max(20px, calc((100vw - 1180px) / 2));
  bottom: 14px;
  z-index: 1;
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255, 253, 248, 0.92);
}

/* order rail — numbered type, not cards */
.rail {
  list-style: none;
  counter-reset: step;
  margin: 64px 0 0;
  padding: 36px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px 32px;
}
.rail li { counter-increment: step; }
.rail li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  margin-bottom: 12px;
}
.rail strong {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--plantation-dark);
  margin-bottom: 8px;
}
.rail p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--ink-soft);
}

/* usual vs this */
.why { padding-top: 0; }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
  align-items: stretch;
}
.card {
  border-radius: 2px;
  padding: 36px 32px 38px;
}
.card h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
  color: inherit;
}
.card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.card li {
  padding: 0 0 14px;
  color: inherit;
  font-size: 16px;
  line-height: 1.45;
}
.card li:last-child { padding-bottom: 0; }
.card.usual {
  background: #e8e2d6;
  color: var(--plantation-dark);
}
.card.this {
  background: var(--plantation);
  color: #f6f3ec;
}
.aside {
  margin: 28px 0 0;
  font-size: 14px;
  color: var(--ink-mute);
  max-width: 42em;
}

/* money — plantation field, type only */
.money {
  background: var(--plantation);
  color: #f6f3ec;
  padding: 120px 0;
}
.money h2 { color: #fff; }
.money .lede {
  margin: 0 0 56px;
  max-width: 28em;
  font-size: 20px;
  line-height: 1.4;
  color: rgba(246, 243, 236, 0.86);
}
.tri {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(246, 243, 236, 0.2);
}
.tri strong {
  display: block;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 10px;
}
.tri p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(246, 243, 236, 0.78);
}

/* roofers — type only, in-page, same paper as the sequence */
.roofers {
  background: var(--paper);
  padding: 96px 0 48px;
}
.roofers-copy { max-width: 36rem; }
.roofers .intro { margin: 0; }
.text-door {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--plantation-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--plantation-dark);
  padding-bottom: 2px;
}
.text-door:hover { color: var(--ink); border-color: var(--ink); }

/* FAQ — quiet, not blaze wash */
.faq { padding: 48px 0 120px; }
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 48px 80px;
  align-items: start;
}
.faq details {
  border-top: 1px solid var(--line);
}
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--plantation-dark);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary i {
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  color: var(--ink-mute);
}
.faq details[open] summary i { transform: rotate(45deg); }
.faq details p {
  margin: 0;
  padding: 0 0 22px;
  color: var(--ink-soft);
  max-width: 40em;
  font-size: 15px;
}

.close {
  background: var(--plantation);
  color: #f6f3ec;
  padding: 112px 0 120px;
}
.close h2 {
  color: #fff;
  font-size: clamp(40px, 4.8vw, 64px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.94;
  margin: 0 0 14px;
}
.close-lead {
  margin: 0 0 36px;
  color: rgba(246, 243, 236, 0.86);
  max-width: 28em;
  font-size: 18px;
}
.close .next-min {
  margin: 16px 0 0;
  font-size: 13px;
  color: rgba(246, 243, 236, 0.82);
}
.close .quiet {
  margin: 6px 0 0;
  font-size: 13px;
  color: rgba(246, 243, 236, 0.8);
}
.close .doorway {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  border-color: transparent;
}

footer.site {
  background: var(--forest-deep);
  color: rgba(246, 243, 236, 0.68);
  padding: 48px 0 36px;
  font-size: 13px;
}
footer.site .top {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
}
footer.site img { height: 22px; width: auto; margin-bottom: 14px; }
footer.site a { color: #f6f3ec; text-decoration: none; }
footer.site a:hover { color: #fff; }
footer.site nav { display: flex; gap: 18px; flex-wrap: wrap; }
footer.site .legal {
  margin: 28px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(246, 243, 236, 0.12);
  color: rgba(246, 243, 236, 0.48);
  font-size: 12px;
  line-height: 1.55;
}

.legal-page { padding: 48px 0 80px; }
.legal-page h1 { font-size: 36px; margin: 0 0 8px; }
.legal-page .meta { color: var(--ink-mute); font-size: 13px; margin: 0 0 28px; }
.legal-page h2 { font-size: 20px; margin: 28px 0 8px; }
.legal-page p, .legal-page li { color: var(--ink-soft); max-width: 42em; }
.legal-page ul { padding-left: 1.2em; }
.review {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  color: var(--ink-mute);
  font-size: 12px;
}
.review .wrap {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.review b {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--plantation-dark);
}

@media (min-width: 1081px) {
  .first,
  .first-grid {
    height: calc(100vh - 72px);
    max-height: calc(100vh - 72px);
  }
}

@media (max-width: 1080px) {
  .wrap,
  header.mast .bar { width: min(100% - 40px, 1180px); }
  .first-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .first { min-height: 0; }
  .first-copy {
    padding: 36px 0 40px;
    width: min(100% - 40px, 1180px);
    margin: 0 auto;
  }
  .first-plate,
  .first-plate img { min-height: 400px; }
  .first-plate img { height: 400px; }
  .spread,
  .roofers-spread,
  .faq-grid,
  .split,
  .tri,
  .rail { grid-template-columns: 1fr; }
  .rail { gap: 28px; margin-top: 48px; }
  .tri { gap: 28px; }
  .section { padding: 80px 0; }
  .order { padding-bottom: 80px; }
  .why { padding-top: 0; }
  .money { padding: 80px 0; }
  .roofers { padding: 64px 0 32px; }
  .faq { padding: 32px 0 80px; }
  .order-still img { height: 220px; }
}

@media (max-width: 720px) {
  .wrap,
  header.mast .bar,
  .first-copy { width: min(100% - 28px, 1180px); }
  header.mast .bar { height: 64px; }
  .quiet-link { display: none; }
  .first-copy { padding: 24px 0 28px; }
  .first-lock { max-width: none; }
  .first h1 { font-size: clamp(40px, 12vw, 56px); }
  .first .lead { font-size: 17px; margin-bottom: 28px; }
  .first-plate,
  .first-plate img { min-height: 340px; }
  .first-plate img { height: 340px; }
  .doorway {
    flex-direction: column;
    padding: 10px;
    max-width: none;
  }
  .door { width: 100%; }
  header.chrome nav { display: none; }
  header.chrome .bar { justify-content: space-between; }
  footer.site .top { flex-direction: column; }
  .close { padding: 72px 0 80px; }
  .card { padding: 26px 22px 28px; }
  .order-still img { height: 180px; }
  .order-still figcaption,
  .first-plate figcaption { left: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
