/* ===========================================================
   Hardtwood Customs — Madison, MS
   Direction: Archetype #4 Editorial Brutalism — pure white/black/silver,
              Oswald + Cormorant, architectural grid, extreme contrast
   Structural typology: Linear Narrative (chapter-based)
   Zero overlap with Oakley / Bracken / Bass / Superscapes / Royal Lagoon
   =========================================================== */

:root {
  /* Strict monochrome palette */
  --c-bg:         #FFFFFF;
  --c-bg-warm:    #F5F4F2;   /* warm off-white */
  --c-paper:      #FAFAF7;
  --c-ink:        #0A0A0A;
  --c-ink-soft:   #1A1A1A;
  --c-silver:     #C8C8C8;
  --c-silver-2:   #9A9A9A;
  --c-silver-3:   #6E6E6E;
  --c-rule:       rgba(10, 10, 10, 0.14);
  --c-rule-soft:  rgba(10, 10, 10, 0.08);
  --c-rule-heavy: rgba(10, 10, 10, 0.42);

  --ff-display:   "Oswald", "Archivo Narrow", "Helvetica Neue", Arial, sans-serif;
  --ff-body:      "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --ff-ui:        "Inter", "Helvetica Neue", Arial, sans-serif;
  --ff-mono:      "IBM Plex Mono", ui-monospace, monospace;

  --maxw:         1440px;
  --pad-x:        clamp(24px, 3.5vw, 56px);

  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--c-bg);
  color: var(--c-ink);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- TYPE ---------- */
.display, h1.display, .h-display {
  font-family: var(--ff-display);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 0.9;
  color: var(--c-ink);
  margin: 0;
}
h1 {
  font-family: var(--ff-display);
  font-weight: 800;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  line-height: 0.85;
  font-size: clamp(72px, 14vw, 260px);
  margin: 0;
}
h2 {
  font-family: var(--ff-display);
  font-weight: 700;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  line-height: 0.95;
  font-size: clamp(44px, 7vw, 104px);
  margin: 0 0 0.25em;
  color: var(--c-ink);
}
h3 {
  font-family: var(--ff-display);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1;
  font-size: clamp(22px, 2.4vw, 34px);
  margin: 0 0 10px;
  color: var(--c-ink);
}
h4 {
  font-family: var(--ff-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: var(--c-ink-soft);
}
p {
  margin: 0 0 1em;
  font-family: var(--ff-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--c-ink-soft);
  font-weight: 500;
}
p.lead {
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.45;
  color: var(--c-ink);
  font-weight: 500;
  max-width: 36ch;
}
em { font-style: italic; font-weight: 500; }

.num {
  font-family: var(--ff-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(84px, 12vw, 200px);
  line-height: 0.85;
  color: var(--c-silver);
  letter-spacing: -0.04em;
}

/* ---------- Helpers ---------- */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  position: relative;
}

.kicker {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-ink);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.kicker::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--c-ink);
}
.kicker--light { color: #fff; }
.kicker--light::before { background: #fff; }

.rule {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--c-ink);
  margin: 0;
}
.rule--thick { height: 2px; }
.rule--silver { background: var(--c-rule); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  font-family: var(--ff-ui);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.2s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  border: 1.5px solid var(--c-ink);
}
.btn .arr {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 14px;
  transition: transform 0.25s var(--ease);
}
.btn:hover .arr { transform: translateX(4px); }
.btn--dark { background: var(--c-ink); color: var(--c-bg); }
.btn--dark:hover { background: var(--c-bg); color: var(--c-ink); }
.btn--outline { background: transparent; color: var(--c-ink); }
.btn--outline:hover { background: var(--c-ink); color: var(--c-bg); }
.btn--light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.btn--light:hover {
  background: #fff;
  color: var(--c-ink);
  border-color: #fff;
}
.btn--filled-light { background: #fff; color: var(--c-ink); }
.btn--filled-light:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-ink);
  padding: 14px 0;
  transition: all 0.3s var(--ease);
}
.site-header.on-dark {
  background: var(--c-ink);
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.22);
}
.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1;
}
.brand__mark {
  font-size: 22px;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1;
}
.brand__sub {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--c-silver-3);
  padding-left: 12px;
  border-left: 1px solid var(--c-rule);
  line-height: 1;
  padding-top: 1px;
}
.on-dark .brand__sub { border-left-color: rgba(255,255,255,0.22); }
.on-dark .brand__sub { color: var(--c-silver); }

.nav-main {
  display: flex;
  gap: 36px;
  justify-content: center;
}
.nav-main a {
  font-family: var(--ff-ui);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 6px 0;
  transition: opacity 0.2s;
  position: relative;
}
.nav-main a:hover { opacity: 0.6; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-self: end;
}
.nav-phone {
  font-family: var(--ff-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.hamburger {
  display: none;
  width: 36px; height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: currentColor;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding-top: 66px;
  overflow: hidden;
  isolation: isolate;
  background: var(--c-ink);
}
.hero__frame {
  position: relative;
  z-index: 2;
  min-height: 82vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(40px, 4vw, 72px) 0 clamp(32px, 3vw, 48px);
}
.hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(1) brightness(0.55) contrast(1.05);
}
.hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.25) 40%, rgba(10,10,10,0.85) 100%);
}
.hero__topline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: #fff;
  z-index: 2;
  position: relative;
}
.hero__topline > span {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}

.hero__nameplate {
  color: #fff;
  z-index: 2;
  position: relative;
}
.hero__nameplate h1 {
  color: #fff;
  font-size: clamp(80px, 16vw, 280px);
  line-height: 0.82;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.hero__nameplate h1 span {
  display: block;
  font-weight: 800;
}
.hero__nameplate h1 em {
  display: block;
  font-family: var(--ff-body);
  font-weight: 400;
  font-style: italic;
  font-size: 0.18em;
  letter-spacing: 0;
  text-transform: none;
  color: var(--c-silver);
  margin-top: 18px;
  line-height: 1.3;
  max-width: 26ch;
}

.hero__bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  color: #fff;
  z-index: 2;
  position: relative;
}
.hero__tagline {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  display: flex;
  gap: 14px;
  align-items: center;
}
.hero__tagline::before {
  content: "";
  width: 40px; height: 1px;
  background: #fff;
}
.hero__cta {
  display: flex;
  gap: 10px;
}

/* ---------- INTRO STRIP (black bar, big statement) ---------- */
.intro-strip {
  background: var(--c-ink);
  color: #fff;
  padding: clamp(70px, 8vw, 120px) 0;
}
.intro-strip__content {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
.intro-strip__label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-silver);
  border-top: 1px solid rgba(255,255,255,0.32);
  padding-top: 18px;
}
.intro-strip__statement {
  font-family: var(--ff-body);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1.18;
  color: #fff;
  max-width: 28ch;
}
.intro-strip__statement strong {
  font-style: normal;
  font-weight: 600;
  color: #fff;
  display: block;
  font-family: var(--ff-display);
  text-transform: uppercase;
  font-size: 1.06em;
  letter-spacing: -0.01em;
  margin-top: 0.1em;
}

/* ---------- CAPABILITY CHAPTERS ---------- */
.chapter {
  border-top: 1px solid var(--c-ink);
  background: var(--c-bg);
  position: relative;
}
.chapter--warm { background: var(--c-bg-warm); }
.chapter__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 0;
  align-items: stretch;
  min-height: 72vh;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.chapter--flip .chapter__inner {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
}
.chapter--flip .chapter__body { order: 2; }
.chapter--flip .chapter__media { order: 1; }

.chapter__body {
  padding: clamp(56px, 6vw, 88px) clamp(32px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  border-right: 1px solid var(--c-ink);
  position: relative;
}
.chapter--flip .chapter__body {
  border-right: none;
  border-left: 1px solid var(--c-ink);
}
.chapter__num-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 12px;
}
.chapter__num {
  font-family: var(--ff-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(68px, 8vw, 128px);
  line-height: 0.82;
  color: var(--c-silver);
  letter-spacing: -0.04em;
}
.chapter__label {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-silver-3);
}
.chapter__body h2 {
  font-size: clamp(48px, 7vw, 108px);
  line-height: 0.88;
  margin: 0 0 8px;
}
.chapter__body .lead {
  font-family: var(--ff-body);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.4;
  max-width: 34ch;
  color: var(--c-ink-soft);
  margin-bottom: 10px;
}
.chapter__body p {
  font-size: 16.5px;
  line-height: 1.62;
  max-width: 48ch;
}
.chapter__specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
  margin-top: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--c-rule);
  list-style: none;
  padding-left: 0;
}
.chapter__specs li {
  font-family: var(--ff-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
  display: flex;
  gap: 10px;
}
.chapter__specs li::before {
  content: "—";
  color: var(--c-silver-2);
  font-weight: 700;
}

.chapter__media {
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 460px;
}
.chapter__media::after {
  content: attr(data-caption);
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.86);
  text-shadow: 0 1px 3px rgba(0,0,0,0.65);
}

/* ---------- PRINCIPLES (3-col grid on black) ---------- */
.principles {
  background: var(--c-ink);
  color: #fff;
  padding: clamp(80px, 10vw, 140px) 0;
}
.principles__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(32px, 5vw, 80px);
  margin-bottom: clamp(48px, 6vw, 80px);
  align-items: end;
}
.principles__head h2 {
  color: #fff;
  font-size: clamp(48px, 7vw, 108px);
  max-width: 14ch;
  line-height: 0.9;
}
.principles__head p {
  color: rgba(255,255,255,0.72);
  font-size: 18px;
  max-width: 42ch;
  line-height: 1.55;
}
.principles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.28);
  gap: 0;
}
.principle {
  padding: clamp(36px, 4vw, 56px) clamp(28px, 3vw, 44px);
  border-right: 1px solid rgba(255,255,255,0.16);
  display: grid;
  gap: 12px;
  align-content: start;
}
.principle:first-child { padding-left: 0; }
.principle:last-child { border-right: none; padding-right: 0; }
.principle__num {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--c-silver);
  margin-bottom: 8px;
}
.principle h3 {
  color: #fff;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  line-height: 1;
  margin: 0;
}
.principle p {
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  line-height: 1.55;
  max-width: 34ch;
  margin: 0;
}

/* ---------- PROCESS (numbered steps, editorial) ---------- */
.process {
  background: var(--c-bg);
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--c-ink);
}
.process__head {
  max-width: 900px;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--c-ink);
}
.step {
  padding: clamp(32px, 3vw, 48px) clamp(20px, 2.5vw, 36px) 32px clamp(20px, 2.5vw, 36px);
  border-right: 1px solid var(--c-rule);
  display: grid;
  gap: 10px;
  align-content: start;
}
.step:first-child { padding-left: 0; }
.step:last-child { border-right: none; padding-right: 0; }
.step__num {
  font-family: var(--ff-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(52px, 6vw, 84px);
  line-height: 0.85;
  color: var(--c-silver);
  letter-spacing: -0.02em;
}
.step h3 {
  font-size: clamp(20px, 2vw, 26px);
  margin-bottom: 6px;
}
.step p {
  font-size: 15px;
  line-height: 1.55;
  max-width: 34ch;
}

/* ---------- CRED STRIP ---------- */
.cred-strip {
  background: var(--c-bg-warm);
  border-top: 1px solid var(--c-ink);
  border-bottom: 1px solid var(--c-ink);
  padding: 32px 0;
}
.cred-strip__inner {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4vw, 64px);
  flex-wrap: wrap;
  align-items: center;
}
.cred-strip__item {
  font-family: var(--ff-mono);
  font-size: 11.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-ink);
  display: flex;
  align-items: center;
  gap: 12px;
}
.cred-strip__item::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--c-ink);
}

/* ---------- CONTACT / REQUEST BID ---------- */
.contact {
  background: var(--c-ink);
  color: #fff;
  padding: clamp(80px, 10vw, 140px) 0;
}
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.contact__copy h2 {
  color: #fff;
  font-size: clamp(52px, 7vw, 108px);
  max-width: 14ch;
  line-height: 0.88;
  margin-bottom: 24px;
}
.contact__copy p {
  color: rgba(255,255,255,0.78);
  font-size: 18px;
  line-height: 1.55;
  max-width: 40ch;
}
.contact__direct {
  margin-top: 44px;
  display: grid;
  gap: 22px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.contact__direct > div {
  display: grid;
  gap: 4px;
}
.contact__direct h4 {
  color: var(--c-silver);
  margin: 0 0 4px;
}
.contact__direct a,
.contact__direct span {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(24px, 2.4vw, 32px);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: #fff;
  line-height: 1;
}
.contact__direct a:hover { color: var(--c-silver); }

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(32px, 4vw, 56px);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
}
.field { display: grid; gap: 7px; }
.field label {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-silver);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  border-radius: 0;
  padding: 10px 0;
  transition: all 0.2s var(--ease);
}
.field textarea { border: 1px solid rgba(255,255,255,0.3); padding: 12px 14px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: #fff;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(255,255,255,0.4); }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form .btn { margin-top: 8px; justify-self: start; }
.form-note {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--c-ink);
  color: var(--c-silver);
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}
.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.site-footer a { color: #fff; }
.site-footer a:hover { color: var(--c-silver); }

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Mobile nav overlay ---------- */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0 0 0 auto;
  width: min(88vw, 360px);
  background: var(--c-ink);
  color: #fff;
  z-index: 100;
  padding: 28px 28px 40px;
  transform: translateX(100%);
  transition: transform 0.3s var(--ease);
  flex-direction: column;
  gap: 2px;
  box-shadow: -20px 0 50px -10px rgba(0,0,0,0.5);
  overflow-y: auto;
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  color: #fff;
}
.nav-mobile__close {
  font-size: 28px;
  line-height: 1;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 4px;
}
.nav-mobile a {
  padding: 16px 6px;
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  line-height: 1;
}
.nav-mobile a:hover { color: var(--c-silver); }
.nav-mobile__phone {
  margin-top: 22px;
  font-family: var(--ff-mono) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  text-transform: none !important;
  color: var(--c-silver) !important;
  border-bottom: none !important;
}
.nav-mobile__cta {
  margin-top: 16px;
  justify-content: center;
  width: 100%;
  border-bottom: none !important;
  padding: 15px 26px !important;
  font-family: var(--ff-ui) !important;
  font-size: 12.5px !important;
  letter-spacing: 0.22em !important;
  font-weight: 700 !important;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav-main { display: none; }
  .nav-phone { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .nav-mobile { display: flex; }

  .chapter__inner,
  .chapter--flip .chapter__inner { grid-template-columns: 1fr; }
  /* Photo first, section second — ALL chapters */
  .chapter__body,
  .chapter--flip .chapter__body {
    border-right: none;
    border-left: none;
    border-top: 1px solid var(--c-ink);
    border-bottom: none;
    order: 2;
  }
  .chapter__media,
  .chapter--flip .chapter__media {
    order: 1;
    min-height: 320px;
  }

  .principles__grid { grid-template-columns: 1fr; }
  .principle {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.16);
    padding: clamp(28px, 3vw, 48px) 0;
  }
  .principle:first-child { padding-top: 0; }
  .principle:last-child { border-bottom: none; padding-bottom: 0; }
  .principles__head { grid-template-columns: 1fr; gap: 20px; }
  .process__grid { grid-template-columns: 1fr 1fr; }
  .step:nth-child(2n) { border-right: none; padding-right: 0; }
  .contact__grid { grid-template-columns: 1fr; }
  .intro-strip__content { grid-template-columns: 1fr; gap: 20px; }
  .field--row { grid-template-columns: 1fr; }
  .hero__bottom { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 640px) {
  .process__grid { grid-template-columns: 1fr; }
  .step { border-right: none; padding-right: 0; border-bottom: 1px solid var(--c-rule); padding-bottom: 24px; }
  .step:last-child { border-bottom: none; }
  .chapter__num-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero__topline { flex-direction: column; gap: 12px; }
}
