/* ============================================================
   Homewood Creations — site styles
   Ported from the design handoff (design/homepage.css).
   Hard-coded defaults per README: hero=split, pillar=hex,
   service=list, tone=standard. Tweak variants removed.
   ============================================================ */

:root {
  /* Primary palette */
  --red: #a71c20;
  --red-deep: #861619;
  --red-soft: rgba(167, 28, 32, 0.08);
  --brown: #603913;
  --brown-soft: #8a5a2c;
  --brown-mute: rgba(96, 57, 19, 0.7);

  /* Surface palette */
  --paper: #faf5ea;
  --paper-warm: #f3ead8;
  --sand: #e8dcc6;
  --sand-deep: #C8B49A;
  --ink: #2a1c0e;
  --ink-soft: rgba(42, 28, 14, 0.7);
  --rule: rgba(96, 57, 19, 0.16);
  --rule-strong: rgba(96, 57, 19, 0.35);

  /* Type */
  --sans: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --mono: "JetBrains Mono", ui-monospace, Menlo, monospace;

  /* Shapes */
  --hex: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  --hex-flat: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);

  /* Layout */
  --container: 1280px;
  --gutter: 80px;
  --section-y: 140px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============================================================
   Typography
   ============================================================ */
.display {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--brown);
  margin: 0 0 28px;
  text-wrap: balance;
}
.display em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--red);
  display: block;
}

.h2 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(32px, 3.4vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.022em;
  color: var(--brown);
  margin: 0 0 22px;
  text-wrap: balance;
}
.h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--red);
}
.h2-light { color: var(--paper); }
.h2-light em { color: #f1c9a8; }

h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--brown);
  margin: 0 0 10px;
}

p {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 18px;
}

.lede {
  font-size: 21px;
  line-height: 1.5;
  color: var(--brown);
  margin: 0 0 40px;
  max-width: 620px;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
}

.section-num {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-num::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1.5px;
  background: var(--red);
}
.section-num-light { color: #f1c9a8; }
.section-num-light::before { background: #f1c9a8; }

/* ============================================================
   Atoms — hex dot, marks, buttons
   ============================================================ */
.hex-dot {
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--red);
  clip-path: var(--hex);
  flex-shrink: 0;
}
.hex-dot.sm { width: 8px; height: 8px; }

.hex-mark {
  display: inline-block;
  width: 22px; height: 22px;
  background: var(--red);
  clip-path: var(--hex);
  flex-shrink: 0;
  position: relative;
}
.hex-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: var(--paper);
  clip-path: var(--hex);
}
.hex-mark.sm { width: 16px; height: 16px; }
.hex-mark.sm::after { inset: 3px; }

/* Buttons */
.btn {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 16px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  border-radius: 0;
}
.btn-sm { padding: 11px 18px; font-size: 13.5px; }

.btn-primary {
  background: var(--red);
  color: var(--paper);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
}
.btn-primary.btn-light {
  background: var(--paper);
  color: var(--red);
  border-color: var(--paper);
}
.btn-primary.btn-light:hover {
  background: #f1c9a8;
  color: var(--red-deep);
  border-color: #f1c9a8;
}

.btn-outline {
  background: transparent;
  color: var(--brown);
  border-color: var(--rule-strong);
}
.btn-outline:hover {
  background: var(--brown);
  color: var(--paper);
  border-color: var(--brown);
}
.btn-outline-md { padding: 14px 22px; }

.btn-ghost {
  background: transparent;
  color: var(--red);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
}
.btn-ghost:hover { color: var(--red-deep); }

.btn-link {
  font-family: var(--sans);
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 4px 0;
  color: var(--brown);
  font-size: 14px;
}
.btn-link-label {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-soft);
  font-weight: 600;
}
.btn-link-value {
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--rule-strong);
  padding-bottom: 4px;
  transition: border-color 0.18s ease, color 0.18s ease;
}
.btn-link:hover .btn-link-value {
  border-color: var(--red);
  color: var(--red);
}

/* ============================================================
   Container
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 245, 234, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, padding 0.2s ease;
}
.nav.scrolled { border-bottom-color: var(--rule); }
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 22px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 56px;
  transition: padding 0.2s ease;
}
.nav.scrolled .nav-inner { padding-top: 14px; padding-bottom: 14px; }

.nav-brand { display: flex; align-items: center; }
.nav-logo {
  height: 58px;
  width: auto;
  transition: height 0.2s ease;
}
.nav.scrolled .nav-logo { height: 42px; }

.nav-links {
  display: flex;
  justify-content: center;
  gap: 36px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--brown);
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color 0.18s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1.5px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 22px; }
.nav-phone {
  font-family: var(--sans);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
  color: var(--brown);
  transition: color 0.18s ease;
}
.nav-phone-label {
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brown-soft);
}
.nav-phone-num {
  font-size: 14.5px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.nav-phone:hover { color: var(--red); }

.nav-burger {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--brown);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-mobile {
  display: none;
  padding: 12px var(--gutter) 24px;
  border-top: 1px solid var(--rule);
  flex-direction: column;
}
.nav-mobile a {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  padding: 14px 0;
  color: var(--brown);
  border-bottom: 1px solid var(--rule);
}
.nav-mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

/* ============================================================
   HERO (split layout — locked default)
   ============================================================ */
.hero {
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.hero-split {
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px var(--gutter) 96px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 96px;
  align-items: center;
}
.hero-split > * { min-width: 0; }
.hero-copy { max-width: 620px; min-width: 0; }
.cta-row {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-art {
  position: relative;
  width: 100%;
  max-width: 540px;
  min-width: 0;
  margin-left: auto;
}
.img-frame {
  display: block;
  position: relative;
  min-width: 0;
  width: 100%;
}
.hero-art-bg {
  position: absolute;
  inset: -8% -8% 18% 18%;
  background: var(--sand);
  clip-path: var(--hex);
  opacity: 0.5;
  z-index: 0;
}
.hero-photo-hex {
  position: relative;
  z-index: 1;
  clip-path: var(--hex);
}
.hero-art-meta {
  position: absolute;
  bottom: -18px;
  left: 8%;
  right: 8%;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--paper);
  padding: 12px 18px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  border: 1px solid var(--rule);
  z-index: 2;
}
.hero-art-meta .meta-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
}
.hero-art-meta .meta-line {
  flex: 1;
  height: 1px;
  background: var(--rule);
}
.hero-art-meta .meta-title {
  color: var(--brown);
  font-weight: 500;
  font-size: 13px;
}

/* Hero marquee strip */
.hero-strip {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper-warm);
  font-family: var(--sans);
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  padding: 0;
}
.strip-item {
  padding: 22px 36px;
  font-size: 13px;
  font-weight: 500;
  color: var(--brown);
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 1px solid var(--rule);
}
.strip-item:first-child { border-left: none; }
.strip-item.strip-cta {
  margin-left: auto;
  border-left: 1px solid var(--rule);
}
.strip-item.strip-cta a {
  color: var(--red);
  font-weight: 500;
  transition: color 0.18s ease;
}
.strip-item.strip-cta a:hover { color: var(--red-deep); }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--rule);
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 96px;
  align-items: center;
}
.about-grid > * { min-width: 0; }
.about-copy { max-width: 540px; }
.about-art { position: relative; }
.about-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--red);
  color: var(--paper);
  padding: 22px 26px;
  z-index: 2;
  max-width: 220px;
}
.about-card-num {
  font-family: var(--sans);
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.about-card-label {
  font-family: var(--sans);
  font-size: 11.5px;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.92;
}

/* ============================================================
   ABOUT PATTERN — hex-tile brand graphic for the home About slot
   (replaces the "shop-floor photo" placeholder until real photos land).
   Three composed hexes on a faded, radially-masked repeating tile.
   ============================================================ */
.about-pattern {
  position: relative;
  width: 100%;
  aspect-ratio: 1.2;
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  overflow: hidden;
}
.about-pattern .ap-grid {
  position: absolute;
  inset: 0;
  background-repeat: repeat;
  background-size: 120px 69px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='69.28' viewBox='0 0 120 69.28'%3E%3Cg fill='none' stroke='%23603913' stroke-opacity='.14' stroke-width='1'%3E%3Cpolygon points='0,34.64 20,0 60,0 80,34.64 60,69.28 20,69.28'/%3E%3Cpolygon points='60,0 80,-34.64 120,-34.64 140,0 120,34.64 80,34.64'/%3E%3Cpolygon points='60,69.28 80,34.64 120,34.64 140,69.28 120,103.92 80,103.92'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask-image: radial-gradient(circle at 78% 22%, #000 15%, transparent 75%);
          mask-image: radial-gradient(circle at 78% 22%, #000 15%, transparent 75%);
}
.about-pattern .ap-hex {
  position: absolute;
  clip-path: var(--hex);
}
.about-pattern .ap-h1 { width: 38%; aspect-ratio: 0.87; background: var(--red);       opacity: .9;  left: 14%; top: 26%; }
.about-pattern .ap-h2 { width: 24%; aspect-ratio: 0.87; background: var(--brown);     opacity: .85; left: 44%; top: 48%; }
.about-pattern .ap-h3 { width: 15%; aspect-ratio: 0.87; background: var(--sand-deep); left: 38%; top: 14%; }

/* ============================================================
   CONTACT PAGE — hero + builder call-out band + two-column form
   ============================================================ */
.c-hero { padding: 96px 0 72px; }
.c-hero .display { font-size: clamp(38px, 4.6vw, 64px); max-width: 820px; }
.c-hero .lede { margin-bottom: 0; }
.c-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 96px;
  align-items: start;
  padding-bottom: 140px;
}
.c-grid > * { min-width: 0; }
.hours { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--rule); }
.hours .hl {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 12px;
}
.hours p {
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--brown);
  margin: 0 0 4px;
}
.pro-band {
  background: var(--paper-warm);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 28px 0;
  margin-bottom: 96px;
}
.pro-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.pro-band p {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--brown);
  margin: 0;
}
.pro-band p em { font-style: italic; color: var(--red); }
.pro-band a.btn-ghost { white-space: nowrap; }
@media (max-width: 1024px) { .c-grid { grid-template-columns: 1fr; gap: 64px; } }

/* ============================================================
   PILLARS (hex icon treatment — locked default)
   ============================================================ */
.pillars {
  padding: var(--section-y) 0;
  background: var(--paper-warm);
  position: relative;
  overflow: hidden;
}
.pillars::before {
  content: "";
  position: absolute;
  right: -120px; top: -80px;
  width: 380px; height: 440px;
  background: var(--brown);
  clip-path: var(--hex);
  opacity: 0.04;
  z-index: 0;
}
.pillars .container { position: relative; z-index: 1; }
.pillars-head {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  margin-bottom: 72px;
  align-items: end;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.pillar {
  padding: 40px 32px 44px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  transition: background-color 0.2s ease;
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: var(--paper); }
.pillar-icon { color: var(--red); margin-bottom: 28px; }
.pillar-icon svg { width: 56px; height: 56px; }
.pillar-num {
  position: absolute;
  top: 32px;
  right: 28px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--brown-soft);
}
.pillar h3 {
  font-size: 19px;
  margin-bottom: 14px;
  text-wrap: balance;
}
.pillar p {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

/* ============================================================
   WORK
   ============================================================ */
.work { padding: var(--section-y) 0; }
.work-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}
.work-head > div { max-width: 700px; }
.work-lede {
  margin-top: 16px;
  margin-bottom: 0;
  font-size: 19px;
  color: var(--brown-mute);
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 28px;
}
.work-grid > * { min-width: 0; }
.work-card {
  margin: 0;
  position: relative;
  transition: transform 0.3s ease;
}
.work-card-a { grid-column: span 3; }
.work-card-b { grid-column: span 2; align-self: end; transform: translateY(40px); }
.work-card-c { grid-column: span 1; }
.work-card-d { grid-column: span 3; }
.work-card-e { grid-column: span 2; transform: translateY(-30px); }
.work-card-f { grid-column: span 1; align-self: end; }

.work-card .img-frame.hex { clip-path: var(--hex); }
.work-card a {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.18s ease;
}
.work-card a:hover { opacity: 0.88; }
.work-card-meta {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13.5px;
  color: var(--brown-mute);
  margin-top: 2px;
}
.work-card figcaption {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--sans);
}
.work-card .tag {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--red);
}
.work-card .title {
  font-size: 15px;
  font-weight: 500;
  color: var(--brown);
}

/* Full /our-work gallery grid — even 3-up, no asymmetric offsets. */
.work-grid.work-grid-full {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 40px 28px;
}
.work-grid.work-grid-full .work-card {
  grid-column: span 1;
  align-self: auto;
  transform: none;
}

.work-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule);
}
.filter-chip {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--brown);
  background: transparent;
  border: 1px solid var(--rule-strong);
  padding: 10px 18px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 0;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.filter-chip:hover { background: var(--paper-warm); }
.filter-chip.is-active {
  background: var(--brown);
  color: var(--paper);
  border-color: var(--brown);
}
.filter-chip.is-active .hex-dot { background: var(--paper); }
.filter-chip .filter-count {
  font-family: var(--mono);
  font-size: 11px;
  opacity: 0.65;
  margin-left: 4px;
}

.work-empty {
  text-align: center;
  font-family: var(--sans);
  color: var(--brown-mute);
  padding: 60px 0;
}
.work-empty a { color: var(--red); border-bottom: 1px solid var(--rule-strong); }

@media (max-width: 1024px) { .work-grid.work-grid-full { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .work-grid.work-grid-full { grid-template-columns: 1fr; } }

/* ============================================================
   SERVICE AREA (list treatment — locked default)
   ============================================================ */
.area {
  padding: var(--section-y) 0;
  background: var(--paper-warm);
  border-top: 1px solid var(--rule);
}
.area-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 96px;
  align-items: center;
}
.area-grid > * { min-width: 0; }
.area-copy { max-width: 460px; }
.area-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--rule);
}
.area-list li {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--sans);
}
.area-list .area-name {
  font-size: 18px;
  font-weight: 500;
  color: var(--brown);
}
.area-list .area-detail {
  font-size: 13.5px;
  color: var(--brown-mute);
  font-family: var(--serif);
  font-style: italic;
}

/* ============================================================
   BUILDERS BAND (dark)
   ============================================================ */
.builders {
  padding: 120px 0;
  background: var(--brown);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.builders::before {
  content: "";
  position: absolute;
  left: -100px; bottom: -120px;
  width: 360px; height: 420px;
  background: var(--red);
  clip-path: var(--hex);
  opacity: 0.14;
  z-index: 0;
}
.builders .container { position: relative; z-index: 1; }
.builders-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 96px;
  align-items: center;
}
.builders-grid > * { min-width: 0; }
.builders-copy { max-width: 580px; }
.builders-lede {
  font-size: 20px;
  line-height: 1.5;
  color: rgba(250,245,234,0.86);
  margin-bottom: 36px;
}
.builders-stats { display: flex; flex-direction: column; gap: 28px; }
.bstat {
  padding: 22px 0;
  border-top: 1px solid rgba(250,245,234,0.18);
}
.bstat:last-child { border-bottom: 1px solid rgba(250,245,234,0.18); }
.bstat-k {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f1c9a8;
  margin-bottom: 6px;
}
.bstat-v {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--paper);
  line-height: 1.3;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: var(--section-y) 0; }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 96px;
  align-items: start;
}
.contact-grid > * { min-width: 0; }
.contact-copy { max-width: 460px; }
.contact-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
}
.contact-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid var(--rule);
}
.contact-list li:last-child { border-bottom: 1px solid var(--rule); }
.contact-list a, .contact-list div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--sans);
}
.contact-list .cl-label {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brown-soft);
}
.contact-list .cl-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--brown);
  transition: color 0.18s ease;
}
.contact-list a:hover .cl-value { color: var(--red); }

.contact-form {
  background: var(--paper-warm);
  padding: 48px 44px;
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field-label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brown);
}
.field-label em {
  color: var(--red);
  font-style: normal;
  margin-left: 2px;
}
.field-label .opt {
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--brown-soft);
  margin-left: 6px;
  font-size: 12px;
}
.field input,
.field select,
.field textarea {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 0;
  padding: 14px 16px;
  width: 100%;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 100px; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23603913' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* Honeypot field — visually hidden but reachable by bots. */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 6px;
}
.form-note {
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--brown-soft);
}
.form-success[hidden] { display: none; }
.form-success {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--brown);
  background: rgba(74,107,58,0.08);
  border: 1px solid rgba(74,107,58,0.3);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}
.form-success .hex-mark { background: #4a6b3a; }

/* ============================================================
   LEGAL / LONG-FORM PAGES (warranty, privacy)
   ============================================================ */
.legal-page {
  padding: 96px 0 120px;
}
.legal-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.legal-page .h2 { margin-bottom: 14px; }
.legal-page .lede { margin-bottom: 48px; }
.legal-page .legal-h {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 20px;
  color: var(--brown);
  margin: 48px 0 14px;
  letter-spacing: -0.005em;
}
.legal-page p,
.legal-page li {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
}
.legal-page ul {
  padding-left: 24px;
  margin: 12px 0 24px;
}
.legal-page ul li {
  margin-bottom: 8px;
  list-style: none;
  position: relative;
}
.legal-page ul li::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 12px;
  width: 6px;
  height: 6px;
  background: var(--red);
  clip-path: var(--hex);
}
.legal-page a {
  color: var(--red);
  border-bottom: 1px solid var(--rule-strong);
}
.legal-page a:hover { color: var(--red-deep); border-color: var(--red); }
.legal-meta {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-soft);
  margin: 0 0 32px;
}
.legal-emphasis {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.65;
  letter-spacing: 0.02em;
  color: var(--brown);
  background: var(--paper-warm);
  border-left: 3px solid var(--red);
  padding: 20px 24px;
  margin-bottom: 18px;
}
.legal-rule {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 64px 0 32px;
}
.legal-contact {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--brown-mute);
}

/* ============================================================
   BLOG (HCW-12)
   ============================================================ */
.blog-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--rule);
}
.blog-card {
  border-bottom: 1px solid var(--rule);
}
.blog-card a {
  display: block;
  padding: 36px 0;
  color: inherit;
  text-decoration: none;
  transition: padding 0.18s ease;
}
.blog-card a:hover { padding-left: 12px; }
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.blog-card-author { color: var(--brown-soft); }
.blog-card-title {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.018em;
  color: var(--brown);
  margin: 0 0 10px;
  text-wrap: balance;
}
.blog-card a:hover .blog-card-title { color: var(--red); }
.blog-card-desc {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 0 14px;
  max-width: 720px;
}
.blog-card-cta {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--red);
  border-bottom: 1px solid var(--rule-strong);
  padding-bottom: 2px;
}

.blog-body h2 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 28px;
  color: var(--brown);
  margin: 48px 0 14px;
  letter-spacing: -0.015em;
}
.blog-body h3 {
  font-size: 20px;
  margin: 36px 0 10px;
}
.blog-body p,
.blog-body li {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
}
.blog-body ul, .blog-body ol { padding-left: 24px; margin: 12px 0 24px; }
.blog-body strong { color: var(--brown); font-weight: 600; }
.blog-body a { color: var(--red); border-bottom: 1px solid var(--rule-strong); }
.blog-body blockquote {
  border-left: 3px solid var(--red);
  padding-left: 24px;
  margin: 32px 0;
  font-style: italic;
  color: var(--brown);
}
.blog-body code {
  font-family: var(--mono);
  font-size: 0.92em;
  background: var(--paper-warm);
  padding: 2px 6px;
}
.blog-body pre {
  background: var(--paper-warm);
  padding: 20px;
  overflow-x: auto;
  font-family: var(--mono);
  font-size: 14px;
}
.blog-body img {
  margin: 32px 0;
  border: 1px solid var(--rule);
}
.blog-footer {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   ADMIN (HCW-13)
   ============================================================ */
.admin-page {
  padding: 80px 0 120px;
}
.admin-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
  font-size: 14px;
}
.admin-table th,
.admin-table td {
  text-align: left;
  padding: 14px 12px;
  border-bottom: 1px solid var(--rule);
}
.admin-table th {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-soft);
  font-weight: 600;
}
.admin-table tr:hover { background: var(--paper-warm); }
.admin-table .admin-draft {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--red);
}
.admin-actions {
  display: flex;
  gap: 12px;
}
.admin-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.admin-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
}
.admin-form input[type="text"],
.admin-form input[type="date"],
.admin-form textarea {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 0;
  padding: 12px 14px;
  width: 100%;
}
.admin-form textarea {
  font-family: var(--mono);
  font-size: 14px;
  min-height: 480px;
  resize: vertical;
  line-height: 1.55;
}
.admin-form input:focus,
.admin-form textarea:focus {
  outline: none;
  border-color: var(--red);
}
.admin-form .admin-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--brown);
}
.admin-notice {
  font-family: var(--sans);
  font-size: 13px;
  padding: 12px 16px;
  background: rgba(74,107,58,0.08);
  border-left: 3px solid #4a6b3a;
  color: var(--brown);
}
.admin-error {
  background: rgba(167,28,32,0.06);
  border-left-color: var(--red);
  color: var(--red-deep);
}

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  background: var(--brown);
  color: var(--paper);
  padding: 80px 0 32px;
}
.foot-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}
.foot-brand { display: flex; flex-direction: column; gap: 14px; }
.foot-logo {
  height: 90px;
  width: auto;
  opacity: 0.95;
}
.foot-tagline {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f1c9a8;
  margin: 0;
}
.foot-col { display: flex; flex-direction: column; gap: 12px; }
.foot-col a {
  font-family: var(--sans);
  font-size: 14.5px;
  color: rgba(250,245,234,0.78);
  transition: color 0.18s ease;
}
.foot-col a:hover { color: var(--paper); }
.foot-label {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: #f1c9a8;
  margin-bottom: 6px;
}
.foot-contact p {
  font-family: var(--sans);
  font-size: 14.5px;
  color: rgba(250,245,234,0.78);
  margin: 6px 0 0;
  line-height: 1.5;
}
.foot-bottom {
  margin-top: 72px;
  padding-top: 24px;
  border-top: 1px solid rgba(250,245,234,0.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(250,245,234,0.55);
}
.foot-bottom p { margin: 0; font-family: var(--sans); font-size: 12px; }
.foot-fine { font-style: italic; }
.foot-staff {
  font-family: var(--sans);
  font-size: 11.5px;
  color: rgba(250,245,234,0.4);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.foot-staff:hover { color: rgba(250,245,234,0.7); }

/* ============================================================
   Image placeholders (used until real photography lands)
   ============================================================ */
.img-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(96, 57, 19, 0.04) 0,
      rgba(96, 57, 19, 0.04) 12px,
      rgba(96, 57, 19, 0.08) 12px,
      rgba(96, 57, 19, 0.08) 24px
    ),
    var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brown-mute);
  overflow: hidden;
}
.img-placeholder.hex { clip-path: var(--hex); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  :root { --gutter: 56px; --section-y: 110px; }
  .nav-inner { gap: 32px; }
  .nav-links { gap: 24px; font-size: 13.5px; }
  .hero-split, .about-grid, .area-grid, .builders-grid, .contact-grid {
    gap: 56px;
  }
  .pillars-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 48px; }
}

@media (max-width: 1024px) {
  .hero-split, .about-grid, .area-grid, .builders-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .hero-split { padding-top: 56px; padding-bottom: 72px; }
  .hero-art, .hero-copy { max-width: 100%; margin-left: 0; }
  .work-head { grid-template-columns: 1fr; gap: 32px; }
  /* Nav collapses to burger below tablet — was 880 but the link row
     runs out of horizontal room well before then once the phone
     number is included. */
  .nav-links, .nav-phone, .nav-cta .btn { display: none; }
  .nav-burger { display: flex; }
  .nav.open .nav-mobile { display: flex; }
}

@media (max-width: 880px) {
  :root { --gutter: 28px; --section-y: 80px; }

  .hero-split, .about-grid, .area-grid, .builders-grid, .contact-grid, .work-head {
    grid-template-columns: 1fr;
  }
  .hero-split { padding: 56px var(--gutter) 64px; gap: 56px; }
  .hero-art { max-width: 100%; margin: 0; }
  .cta-row { gap: 20px; }
  .hero-strip { flex-wrap: wrap; }
  .strip-item {
    flex: 1 1 50%;
    padding: 16px 20px;
    font-size: 12px;
    border-left: none;
    border-bottom: 1px solid var(--rule);
  }
  .strip-item.strip-cta {
    flex: 1 1 100%;
    justify-content: flex-start;
    border-left: none;
  }

  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .pillar:nth-child(odd) { border-right: 1px solid var(--rule); }
  .pillar:nth-child(even) { border-right: none; }

  .work-grid { grid-template-columns: 1fr 1fr; }
  .work-card-a, .work-card-b, .work-card-c,
  .work-card-d, .work-card-e, .work-card-f {
    grid-column: span 1;
    transform: none;
  }

  .foot-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .foot-brand { grid-column: 1 / -1; }
  .foot-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }

  .contact-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }

  .about-card { left: 0; bottom: -16px; }
  .hero-art-meta { left: 0; right: 0; }
}

@media (max-width: 520px) {
  :root { --gutter: 20px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none !important; }
  .work-grid { grid-template-columns: 1fr; }
  .foot-inner { grid-template-columns: 1fr; }
}
