/* Painting By Lee — editorial v5.
   Type scale cut significantly. Tighter spacing. Same paper/ink/navy palette. */

:root {
  --paper:    #FBF6EB;
  --paper-2:  #F4EDDC;
  --paper-3:  #ECE3CC;
  --paper-4:  #DFD3B7;
  --ink:      #0F0F12;
  --ink-2:    #2A2A2C;
  --muted:    #6B6760;
  --hint:     #93908A;
  --hair:     #E5DDC9;
  --hair-2:   #D6CCB3;
  --accent:        #1B3A5B;
  --accent-2:      #224974;
  --accent-paper:  #DDE5EE;

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --gutter: 24px;
  --wrap: 1200px;
  --wrap-read: 680px;
  --wrap-med: 940px;
}
@media (max-width: 560px) { :root { --gutter: 20px; } }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: 60px;
}
@media (min-width: 820px) { body { padding-bottom: 0; } }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.016em;
  margin: 0;
  color: var(--ink);
}

::selection { background: var(--accent); color: var(--paper); }

.wrap      { max-width: var(--wrap);      margin: 0 auto; padding: 0 var(--gutter); }
.wrap-read { max-width: var(--wrap-read); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-med  { max-width: var(--wrap-med);  margin: 0 auto; padding: 0 var(--gutter); }

.kicker {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.kicker::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1.5px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 10px;
  margin-top: -2px;
}
.kicker.muted { color: var(--muted); }
.kicker.muted::before { background: var(--ink); }

.hair { height: 1px; background: var(--hair); border: 0; margin: 0; }

/* BUTTONS — slightly smaller */
.btn, .btn-out, .btn-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 180ms, color 180ms, border-color 180ms;
  cursor: pointer;
}
.btn { background: var(--ink); color: var(--paper); padding: 12px 22px; border-radius: 0; border: 1px solid var(--ink); }
.btn:hover { background: var(--accent); border-color: var(--accent); }
.btn-out { background: transparent; color: var(--ink); padding: 12px 22px; border-radius: 0; border: 1px solid var(--ink); }
.btn-out:hover { background: var(--ink); color: var(--paper); }
.btn-link { color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 2px; font-weight: 600; }
.btn-link:hover { color: var(--accent); border-bottom-color: var(--accent); }
.btn-link.muted { color: var(--muted); border-bottom-color: var(--hair-2); }
.btn-link.muted:hover { color: var(--ink); border-bottom-color: var(--ink); }

/* HEADER */
.site-head { position: sticky; top: 0; z-index: 40; background: rgba(251, 246, 235, 0.94); backdrop-filter: saturate(160%) blur(10px); border-bottom: 1px solid var(--hair); }
.head-top { background: var(--paper-2); border-bottom: 1px solid var(--hair); font-size: 11.5px; color: var(--muted); }
.head-top-in { display: none; justify-content: space-between; align-items: center; height: 32px; padding: 0 var(--gutter); max-width: var(--wrap); margin: 0 auto; letter-spacing: 0.06em; }
.head-top-in .secondary-nav { display: flex; gap: 24px; }
.head-top-in .secondary-nav a { font-size: 11.5px; color: var(--muted); }
.head-top-in .secondary-nav a:hover { color: var(--ink); }
.head-top-in .meta { display: flex; gap: 20px; align-items: center; color: var(--muted); }
.head-top-in .meta a:hover { color: var(--ink); }
@media (min-width: 980px) { .head-top-in { display: flex; } }

.head-main { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 64px; padding: 0 var(--gutter); max-width: var(--wrap); margin: 0 auto; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img { height: 36px; width: auto; display: block; }
.brand-text { display: none; font-family: var(--serif); font-size: 15px; font-weight: 600; color: var(--ink); }
@media (min-width: 540px) { .brand-text { display: inline; } }
.nav { display: none; gap: 28px; }
.nav a { font-size: 13px; font-weight: 500; color: var(--ink); position: relative; padding: 6px 0; }
.nav a:hover { color: var(--accent); }
.head-cta { display: none; align-items: center; }
@media (min-width: 1040px) { .nav { display: flex; } .head-cta { display: flex; } }
.head-cta .btn { padding: 9px 16px; font-size: 12.5px; }

/* HERO — smaller h1, tighter padding */
.hero { padding: 48px 0 52px; border-bottom: 1px solid var(--hair); }
@media (min-width: 720px) { .hero { padding: 72px 0 64px; } }
@media (min-width: 1100px) { .hero { padding: 88px 0 76px; } }

.hero-grid { display: grid; gap: 36px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 880px) { .hero-grid { grid-template-columns: 1.15fr 1fr; gap: 56px; } }
@media (min-width: 1100px) { .hero-grid { grid-template-columns: 1.2fr 1fr; gap: 72px; } }

.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin: 0 0 22px;
  color: var(--ink);
}
.hero .lead {
  font-family: var(--sans);
  font-size: 15.5px;
  color: var(--ink-2);
  max-width: 52ch;
  line-height: 1.62;
  margin: 0 0 26px;
}
.hero-cta { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }

.hero-feature { position: relative; }
.hero-image {
  aspect-ratio: 4/5;
  background:
    radial-gradient(at 30% 20%, rgba(255,255,255,0.5) 0%, transparent 60%),
    linear-gradient(160deg, var(--paper-3) 0%, var(--paper-4) 100%);
  border: 1px solid var(--hair-2);
  position: relative;
  overflow: hidden;
}
.hero-image .hi-cap {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.25;
  color: var(--ink);
  max-width: 22ch;
}
.hero-image .hi-cap .hi-cap-sub {
  display: block;
  margin-top: 6px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-meta {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  border-top: 1px solid var(--hair);
  padding-top: 20px;
}
.hero-meta .dot { color: var(--hair-2); }
@media (max-width: 560px) { .hero-meta { gap: 8px 16px; font-size: 10px; } }

/* SECTIONS — tighter */
.sec { padding: 56px 0; border-bottom: 1px solid var(--hair); }
@media (min-width: 720px) { .sec { padding: 76px 0; } }
.sec-tight { padding: 44px 0; border-bottom: 1px solid var(--hair); }
.sec.alt { background: var(--paper-2); }

.sec h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.08;
  letter-spacing: -0.018em;
  max-width: 22ch;
}
.sec .lead {
  font-family: var(--sans);
  font-size: 15.5px;
  color: var(--ink-2);
  max-width: 58ch;
  line-height: 1.65;
  margin: 18px 0 0;
}

/* SPREAD */
.spread { display: grid; gap: 30px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 880px) {
  .spread { grid-template-columns: 1.05fr 1fr; gap: 56px; }
  .spread.wide-left { grid-template-columns: 1.25fr 1fr; }
  .spread.reverse { direction: rtl; }
  .spread.reverse > * { direction: ltr; }
}
.spread .col-body p { font-size: 15.5px; color: var(--ink-2); line-height: 1.7; margin: 0 0 14px; max-width: 58ch; }
.spread .col-body p:last-child { margin-bottom: 0; }

/* CREDENTIALS */
.credentials { text-align: center; padding: 18px 0; border-bottom: 1px solid var(--hair); background: var(--paper-2); }
.credentials p {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
  max-width: 70ch;
  padding: 0 var(--gutter);
  margin: 0 auto;
}
.credentials .dot { color: var(--hair-2); margin: 0 6px; }

/* PATHS LIST */
.paths-list { margin-top: 36px; border-top: 1px solid var(--ink); }
.paths-list .path-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 22px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--hair);
  transition: background 220ms;
}
.paths-list .path-row:hover { background: var(--paper-2); }
.paths-list .path-row .num {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--accent);
}
.paths-list .path-row .body h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 6px;
  line-height: 1.14;
}
@media (min-width: 720px) { .paths-list .path-row .body h3 { font-size: 21px; } }
.paths-list .path-row .body p { font-size: 14px; color: var(--muted); margin: 0; max-width: 60ch; line-height: 1.55; }
.paths-list .path-row .arrow {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  align-self: center;
  padding-left: 10px;
  white-space: nowrap;
}
.paths-list .path-row:hover .arrow { color: var(--accent); }
@media (max-width: 560px) {
  .paths-list .path-row { grid-template-columns: 38px 1fr; padding: 18px 0; }
  .paths-list .path-row .arrow { grid-column: 2; padding-left: 0; padding-top: 6px; }
}

/* MATERIALS GRID */
.materials-grid { display: grid; gap: 1px; margin-top: 36px; background: var(--hair); border: 1px solid var(--hair); grid-template-columns: 1fr; }
@media (min-width: 720px) { .materials-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .materials-grid { grid-template-columns: 1fr 1fr 1fr; } }
.material-card {
  background: var(--paper);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 190px;
}
.material-card .mc-type {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.material-card .mc-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0;
}
.material-card .mc-maker {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
  margin: 0;
}
.material-card .mc-use {
  font-size: 13.5px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.6;
}
.material-card .mc-stats {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed var(--hair-2);
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 12px;
  color: var(--muted);
}
.material-card .mc-stat { display: flex; gap: 8px; }
.material-card .mc-stat .mc-label {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hint);
  flex-shrink: 0;
  min-width: 60px;
  padding-top: 1px;
}
.material-card .mc-stat .mc-value { color: var(--ink-2); }

/* FEATURE BAND — NAVY on-ramp */
.feature-band { background: var(--accent); color: var(--paper); padding: 64px 0; border-top: 1px solid var(--accent-2); border-bottom: 1px solid var(--accent-2); }
@media (min-width: 720px) { .feature-band { padding: 88px 0; } }
.feature-band h2 {
  color: var(--paper);
  font-weight: 600;
  font-size: clamp(24px, 3.4vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 20ch;
}
.feature-band .kicker { color: var(--accent-paper); }
.feature-band .kicker::before { background: var(--accent-paper); }
.feature-band .col-body p { color: rgba(251, 246, 235, 0.82); font-size: 15.5px; line-height: 1.65; }
.feature-band .btn { background: var(--paper); color: var(--accent); border-color: var(--paper); }
.feature-band .btn:hover { background: transparent; color: var(--paper); border-color: var(--paper); }
.feature-band .btn-link { color: var(--paper); border-bottom-color: rgba(251, 246, 235, 0.5); }
.feature-band .btn-link:hover { color: var(--paper); border-bottom-color: var(--paper); }
.feature-band .btn-link.muted { color: rgba(251, 246, 235, 0.7); border-bottom-color: rgba(251, 246, 235, 0.3); }
.feature-band .btn-link.muted:hover { color: var(--paper); border-bottom-color: var(--paper); }

/* EDITORIAL GRID */
.editorial-grid { display: grid; gap: 32px; grid-template-columns: 1fr; margin-top: 40px; }
@media (min-width: 720px) { .editorial-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (min-width: 1000px) { .editorial-grid.three { grid-template-columns: 1fr 1fr 1fr; } }

.ed-card { display: block; text-decoration: none; }
.ed-card .ed-image { aspect-ratio: 4/3; background: linear-gradient(160deg, var(--paper-3) 0%, var(--paper-4) 100%); border: 1px solid var(--hair-2); position: relative; margin-bottom: 16px; display: flex; align-items: flex-end; padding: 12px; }
.ed-card .ed-image .ed-tag { font-family: var(--sans); font-size: 9.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); background: var(--paper); padding: 4px 9px; border: 1px solid var(--hair-2); }
.ed-card h3 { font-family: var(--serif); font-weight: 600; font-size: 17px; line-height: 1.18; letter-spacing: -0.01em; color: var(--ink); margin: 0 0 8px; }
.ed-card p { font-size: 14px; color: var(--muted); margin: 0 0 10px; line-height: 1.6; }
.ed-card .ed-meta {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.ed-card:hover h3 { color: var(--accent); }

/* OUR STANDARD */
.standard-grid {
  display: grid;
  gap: 1px;
  margin-top: 36px;
  background: var(--hair);
  border: 1px solid var(--hair);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .standard-grid { grid-template-columns: 1fr 1fr 1fr; } }
.standard-card { background: var(--paper); padding: 24px 20px; }
.standard-card .sc-num {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 28px;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.018em;
  margin-bottom: 10px;
  display: block;
}
.standard-card h3 { font-family: var(--serif); font-weight: 600; font-size: 17px; letter-spacing: -0.008em; color: var(--ink); margin: 0 0 8px; }
.standard-card p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.6; }

/* PULL QUOTE / REVIEWS */
.pull-quote { text-align: center; padding: 16px 0 10px; }
.pull-quote .stars { font-size: 13px; letter-spacing: 6px; color: var(--accent); margin-bottom: 24px; }
.pull-quote .big-rating {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(56px, 7vw, 88px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--accent);
  margin-bottom: 10px;
}
.pull-quote .rating-sub {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}
.pull-quote blockquote {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.32;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 auto;
  max-width: 28ch;
}
.pull-quote .attrib { margin-top: 22px; font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.pull-quote .attrib .who { color: var(--ink); }

/* AREAS LINE */
.areas-line { font-family: var(--serif); font-weight: 500; font-size: 16px; line-height: 1.7; color: var(--ink-2); max-width: 64ch; margin: 24px 0 0; }
@media (min-width: 720px) { .areas-line { font-size: 18px; } }
.areas-line .city { color: var(--ink); white-space: nowrap; }
.areas-line .sep { color: var(--hair-2); margin: 0 8px; }

/* CLOSING */
.closing { padding: 72px 0; text-align: center; border-bottom: none; }
@media (min-width: 720px) { .closing { padding: 96px 0; } }
.closing h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(24px, 3.2vw, 38px); line-height: 1.06; letter-spacing: -0.02em; margin: 0 auto 18px; max-width: 22ch; }
.closing .lead { font-family: var(--sans); font-size: 15.5px; color: var(--ink-2); max-width: 50ch; margin: 0 auto 30px; line-height: 1.65; }
.closing .cta-row { display: flex; gap: 18px; justify-content: center; align-items: center; flex-wrap: wrap; }
.closing .motto {
  margin-top: 44px;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--muted);
}
.closing .knight-mark { width: 42px; height: auto; margin: 0 auto 22px; display: block; }

/* FORMS / DETAILS / FOOTER */
form .field { display: block; margin-bottom: 16px; }
label { display: block; font-size: 12.5px; font-weight: 600; margin-bottom: 7px; color: var(--ink); letter-spacing: 0.02em; }
input[type=text], input[type=email], input[type=tel], input[type=number], input[type=search], select, textarea { width: 100%; font-family: inherit; font-size: 14.5px; padding: 11px 13px; border-radius: 0; background: var(--paper); color: var(--ink); border: 1px solid var(--hair-2); outline: none; transition: border-color 180ms; }
input:focus, select:focus, textarea:focus { border-color: var(--ink); }
textarea { min-height: 120px; resize: vertical; }

details { border-top: 1px solid var(--hair); padding: 4px 0; }
details:last-of-type { border-bottom: 1px solid var(--hair); }
details summary { font-family: var(--serif); font-weight: 600; font-size: 17px; letter-spacing: -0.005em; padding: 18px 0; cursor: pointer; list-style: none; color: var(--ink); }
details summary::-webkit-details-marker { display: none; }
details summary::after { content: '+'; float: right; color: var(--ink); font-size: 20px; line-height: 0.9; font-weight: 300; }
details[open] summary::after { content: '–'; }
details .a { font-size: 14px; color: var(--ink-2); padding: 0 0 18px; line-height: 1.7; max-width: 64ch; }

.site-foot { background: var(--paper-2); border-top: 1px solid var(--hair); color: var(--muted); margin-top: 0; }
.foot-grid { display: grid; gap: 36px; padding: 60px var(--gutter) 40px; max-width: var(--wrap); margin: 0 auto; grid-template-columns: 1fr; }
@media (min-width: 640px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .foot-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }
.foot-brand .foot-motto { font-family: var(--serif); font-size: 15.5px; font-weight: 600; color: var(--ink); margin: 14px 0 6px; }
.foot-brand .foot-tagline { font-family: var(--sans); font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin: 0 0 16px; }
.site-foot h3 { font-family: var(--sans); font-size: 10.5px; font-weight: 700; letter-spacing: 0.20em; text-transform: uppercase; color: var(--ink); margin: 0 0 14px; }
.site-foot ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; font-size: 13.5px; }
.site-foot a { color: var(--ink-2); }
.site-foot a:hover { color: var(--accent); }
.foot-base { border-top: 1px solid var(--hair); font-size: 11.5px; color: var(--hint); }
.foot-base-in { display: flex; flex-direction: column; gap: 8px; padding: 18px var(--gutter); max-width: var(--wrap); margin: 0 auto; }
@media (min-width: 640px) { .foot-base-in { flex-direction: row; justify-content: space-between; } }

.mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 30; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--hair); border-top: 1px solid var(--hair-2); width: 100%; max-width: 100vw; overflow: hidden; box-sizing: border-box; }
.mobile-bar a { background: var(--paper); padding: 13px 0; text-align: center; font-size: 13px; font-weight: 600; color: var(--ink); }
.mobile-bar a.mb-cta { background: var(--accent); color: var(--paper); }
@media (min-width: 820px) { .mobile-bar { display: none; } }

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

/* Hero — single column, centered. Featured image removed. */
.hero-grid { display: block !important; max-width: 760px !important; margin: 0 auto !important; grid-template-columns: none !important; gap: 0 !important; }
.hero-feature { display: none !important; }

/* Hero — fully centered text */
.hero-grid { text-align: center !important; }
.hero h1 { margin-left: auto !important; margin-right: auto !important; max-width: 18ch; }
.hero .lead { margin-left: auto !important; margin-right: auto !important; max-width: 56ch; }
.hero-cta { justify-content: center !important; }
.hero-meta { justify-content: center !important; }

/* === v5 polish: premium header + hero image strip === */
.head-main { height: 80px !important; }
.brand img { height: 52px !important; }
.brand { gap: 18px !important; }
.brand-text { font-size: 17px !important; padding-left: 18px !important; border-left: 1px solid var(--hair-2) !important; line-height: 1.1; }

.hero-image-strip {
  margin-top: 56px;
  aspect-ratio: 16/7;
  background:
    radial-gradient(at 78% 28%, rgba(255,248,225,0.55) 0%, transparent 55%),
    radial-gradient(at 20% 80%, rgba(120,80,40,0.18) 0%, transparent 60%),
    linear-gradient(135deg, #E2D2A8 0%, #C7AC78 45%, #8E6C3E 100%);
  border: 1px solid var(--hair-2);
  position: relative;
  overflow: hidden;
}
@media (max-width: 720px) {
  .hero-image-strip { aspect-ratio: 4/3; margin-top: 36px; }
}
.hero-image-strip .his-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.25;
  color: var(--ink);
  max-width: 28ch;
}
@media (min-width: 880px) {
  .hero-image-strip .his-caption { font-size: 22px; bottom: 32px; left: 32px; max-width: 30ch; }
}
.hero-image-strip .his-caption .his-sub {
  display: block;
  margin-top: 10px;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
}

/* === v5 polish round 2: kill image strip + selective centered sections === */
.hero-image-strip { display: none !important; }

/* Centered intro for selected sections (How this works, Knowledge Hub, Our standard) */
.sec.center-intro .spread,
.sec.center-intro .spread.wide-left {
  display: block !important;
  max-width: 760px !important;
  margin: 0 auto !important;
  text-align: center;
  gap: 0 !important;
}
.sec.center-intro .spread .col-head { margin-bottom: 28px; }
.sec.center-intro .spread .col-head h2 {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 22ch;
}
.sec.center-intro .spread .col-body p {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 62ch;
}
.sec.center-intro .spread .col-body blockquote {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: left;
}
/* Grids that follow the centered intro keep their natural width */
.sec.center-intro .editorial-grid,
.sec.center-intro .standard-grid,
.sec.center-intro .materials-grid {
  max-width: var(--wrap);
  margin-left: auto;
  margin-right: auto;
}

/* === Sub-pages: shared page-hero + nav-current === */
.page-hero { padding: 56px 0 48px; border-bottom: 1px solid var(--hair); }
@media (min-width: 720px) { .page-hero { padding: 80px 0 64px; } }
.page-hero .wrap { max-width: 880px; }
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.03;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin: 0 0 22px;
}
.page-hero .lead {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink-2);
  max-width: 60ch;
  line-height: 1.65;
  margin: 0;
}

.nav a[aria-current="page"] { color: var(--accent); }
.nav a[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--accent);
}

/* FAQ list with kicker context */
.faq-list { margin-top: 36px; }
.faq-list details summary { padding: 18px 0; font-size: 17px; }
@media (min-width: 720px) { .faq-list details summary { font-size: 19px; } }

/* Ask form layout */
.ask-form { margin-top: 36px; max-width: 640px; }
.ask-form .field-row { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .ask-form .field-row { grid-template-columns: 1fr 1fr; } }
.ask-form textarea { min-height: 160px; }
.ask-form .form-submit { margin-top: 8px; }
.ask-form .honeypot { position: absolute; left: -9999px; }

/* Sub-section pattern used across sub-pages */
.sub-sec { padding: 56px 0; border-bottom: 1px solid var(--hair); }
@media (min-width: 720px) { .sub-sec { padding: 76px 0; } }
.sub-sec.alt { background: var(--paper-2); }
.sub-sec .wrap { max-width: 880px; }
.sub-sec h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.06;
  letter-spacing: -0.018em;
  max-width: 22ch;
  margin: 0;
}
.sub-sec .lead {
  font-family: var(--sans);
  font-size: 15.5px;
  color: var(--ink-2);
  max-width: 60ch;
  line-height: 1.65;
  margin: 18px 0 0;
}
.sub-sec p { font-size: 15.5px; color: var(--ink-2); line-height: 1.7; margin: 0 0 14px; max-width: 60ch; }
.sub-sec p:last-child { margin-bottom: 0; }

/* === Ask Lee™ chat interface === */
.chat-section { padding: 48px 0; border-bottom: 1px solid var(--hair); background: var(--paper); }
@media (min-width: 720px) { .chat-section { padding: 64px 0; } }
.chat-section .wrap { max-width: 820px; }

.chat-container {
  border: 1px solid var(--hair-2);
  background: var(--paper-2);
  display: flex;
  flex-direction: column;
}
.chat-messages {
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 320px;
  max-height: 540px;
  overflow-y: auto;
}
@media (min-width: 720px) { .chat-messages { padding: 32px 28px; } }

.msg { display: flex; flex-direction: column; gap: 6px; max-width: 86%; }
.msg-meta {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.msg-text {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  line-height: 1.65;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.msg-text a { color: var(--accent); border-bottom: 1px solid var(--accent); padding-bottom: 1px; }

.msg-user { align-self: flex-end; align-items: flex-end; }
.msg-user .msg-meta { color: var(--hint); }
.msg-user .msg-text {
  background: var(--paper);
  border: 1px solid var(--hair);
  padding: 12px 16px;
  text-align: left;
}

.msg-lee { align-self: flex-start; }
.msg-lee .msg-meta { color: var(--accent); }
.msg-lee .msg-text {
  background: var(--paper);
  border: 1px solid var(--hair);
  border-left: 2px solid var(--accent);
  padding: 14px 18px;
}

.msg-typing .msg-text {
  font-style: italic;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.chat-input {
  display: flex;
  gap: 12px;
  padding: 18px 22px;
  border-top: 1px solid var(--hair-2);
  background: var(--paper);
}
@media (min-width: 720px) { .chat-input { padding: 22px 28px; } }
.chat-input textarea {
  flex: 1;
  border: 1px solid var(--hair-2);
  padding: 12px 14px;
  resize: none;
  font-family: inherit;
  font-size: 14.5px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 0;
  min-height: 52px;
  max-height: 140px;
  line-height: 1.5;
}
.chat-input textarea:focus { outline: none; border-color: var(--ink); }
.chat-input .btn { align-self: flex-end; flex-shrink: 0; }

.chat-disclaimer {
  font-size: 12px;
  color: var(--muted);
  margin: 16px 0 0;
  line-height: 1.6;
  text-align: center;
  max-width: 64ch;
  margin-left: auto;
  margin-right: auto;
}
.chat-disclaimer a { color: var(--accent); border-bottom: 1px solid var(--accent); padding-bottom: 1px; }

.chat-fallback {
  margin-top: 36px;
  background: var(--paper-2);
  border: 1px solid var(--hair);
  padding: 4px 22px;
}
.chat-fallback > summary {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 16px;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
}
.chat-fallback > summary::-webkit-details-marker { display: none; }
.chat-fallback > summary::after { content: '+'; float: right; color: var(--accent); font-size: 20px; font-weight: 300; }
.chat-fallback[open] > summary::after { content: '–'; }
.chat-fallback .fallback-inner { padding: 0 0 22px; }
.chat-fallback p { font-size: 14.5px; color: var(--muted); margin: 0 0 16px; line-height: 1.6; max-width: 60ch; }

/* === Ask Lee™ engine v1.0 — photo upload + report-sent === */
.chat-input { flex-wrap: wrap; }
.chat-input .input-row { display: flex; gap: 12px; width: 100%; align-items: flex-end; }
.chat-input .input-row textarea { flex: 1; }

.chat-attach {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--paper-2);
  border: 1px solid var(--hair-2);
  cursor: pointer;
  transition: background 160ms, border-color 160ms;
  flex-shrink: 0;
  align-self: flex-end;
}
.chat-attach:hover { background: var(--paper-3); border-color: var(--ink); }
.chat-attach svg { width: 18px; height: 18px; color: var(--ink); }
.chat-attach input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.chat-attach .attach-count {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--accent);
  color: var(--paper);
  font-size: 10px;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

.attach-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  padding-top: 14px;
  border-top: 1px dashed var(--hair-2);
  margin-top: 4px;
}
.attach-previews:empty { display: none; }
.attach-preview {
  position: relative;
  width: 64px; height: 64px;
  border: 1px solid var(--hair-2);
  overflow: hidden;
  background: var(--paper-2);
}
.attach-preview img { width: 100%; height: 100%; object-fit: cover; display: block; }
.attach-preview .remove-x {
  position: absolute;
  top: 2px; right: 2px;
  width: 18px; height: 18px;
  background: rgba(15,15,18,0.85);
  color: var(--paper);
  border: none;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.attach-preview .remove-x:hover { background: var(--ink); }

/* Message images (when sent) */
.msg-images { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; max-width: 100%; }
.msg-images img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border: 1px solid var(--hair);
  display: block;
}

/* Report sent card */
.msg-report-sent {
  align-self: flex-start;
  max-width: 90%;
  border: 1px solid var(--accent);
  background: var(--paper);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.msg-report-sent .rs-meta {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.msg-report-sent .rs-meta svg { width: 14px; height: 14px; }
.msg-report-sent .rs-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
}
.msg-report-sent .rs-body {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.6;
}

/* Compress images busy state */
.chat-input .btn[disabled] {
  opacity: 0.5;
  cursor: wait;
}

/* === Camera capture button + mobile polish for chat === */
.chat-attach.chat-camera svg { width: 18px; height: 18px; }
.chat-attach + .chat-attach { margin-left: -2px; }

@media (max-width: 640px) {
  .chat-section { padding: 32px 0; }
  .chat-section .wrap { padding: 0 16px; }
  .chat-container { border-left: 0; border-right: 0; }
  .chat-messages { padding: 22px 16px; min-height: 280px; max-height: 56vh; gap: 18px; }
  .chat-input { padding: 14px 14px; gap: 10px; }
  .chat-input .input-row { gap: 8px; align-items: stretch; }
  .chat-input textarea {
    font-size: 16px; /* prevents iOS auto-zoom on focus */
    padding: 11px 12px;
    min-height: 46px;
    max-height: 120px;
  }
  .chat-attach { width: 46px; height: 46px; flex-shrink: 0; }
  .chat-attach svg { width: 17px; height: 17px; }
  .chat-input .btn { padding: 12px 18px; font-size: 13px; }
  .attach-preview { width: 60px; height: 60px; }
  .msg-images img { width: 80px; height: 80px; }
  .msg-text { font-size: 14.5px; }
  .chat-disclaimer { font-size: 11.5px; padding: 0 8px; }
}

@media (max-width: 400px) {
  .chat-input .input-row { flex-wrap: wrap; }
  .chat-input .btn { width: 100%; order: 99; }
}

/* === Homepage mobile polish v2 === */
@media (max-width: 640px) {
  /* Hero — tighter, less padding, smaller meta */
  .hero { padding: 36px 0 32px; }
  .hero h1 { font-size: clamp(26px, 7vw, 34px); max-width: 100%; margin-bottom: 18px; }
  .hero .lead { font-size: 15px; line-height: 1.55; margin-bottom: 22px; }
  .hero-byline { font-size: 13.5px; margin-bottom: 16px; }
  .hero-cta { gap: 12px; flex-direction: column; align-items: stretch; }
  .hero-cta .btn, .hero-cta .btn-out { width: 100%; justify-content: center; }
  .hero-cta .btn-link { align-self: flex-start; }
  .hero-meta { margin-top: 32px; padding-top: 18px; gap: 10px 18px; }

  /* Generic section padding */
  .sec { padding: 48px 0; }
  .sec-tight { padding: 36px 0; }
  .sec h2 { font-size: clamp(22px, 6vw, 28px); }
  .sec .lead { font-size: 15px; }

  /* How-this-works / spread layout — stack cleanly */
  .spread { gap: 24px; }
  .spread .col-body p { font-size: 15px; }

  /* Path cards table-of-contents — single column with cleaner spacing */
  .paths-list { margin-top: 28px; }
  .paths-list .path-row { padding: 20px 0; gap: 16px; align-items: flex-start; grid-template-columns: 36px 1fr; }
  .paths-list .path-row .num { font-size: 12px; padding-top: 4px; }
  .paths-list .path-row .body h3 { font-size: 19px; }
  .paths-list .path-row .body p { font-size: 14px; line-height: 1.55; }
  .paths-list .path-row .arrow { grid-column: 2; font-size: 11px; padding-left: 0; padding-top: 6px; align-self: flex-start; }

  /* Materials database grid — 1 column for clarity */
  .materials-grid { grid-template-columns: 1fr; margin-top: 28px; }
  .material-card { padding: 18px 16px; min-height: 0; }
  .material-card .mc-name { font-size: 17px; }

  /* Editorial cards (Learn + Projects) — single column */
  .editorial-grid { grid-template-columns: 1fr !important; gap: 24px; margin-top: 32px; }
  .ed-card h3 { font-size: 17px; }
  .ed-card .ed-image { aspect-ratio: 5/3; }

  /* Our Standard credentials cards — single column */
  .standard-grid { grid-template-columns: 1fr; margin-top: 28px; }
  .standard-card { padding: 22px 18px; }
  .standard-card .sc-num { font-size: 26px; }
  .standard-card h3 { font-size: 16px; }

  /* Five paths grid (legacy 5-card layout if present) */
  .paths { grid-template-columns: 1fr; gap: 12px; margin-top: 28px; }
  .path-card { padding: 18px 16px; }

  /* Why this works grid */
  .why-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 28px; }
  .why-card { padding: 20px 18px; }

  /* Trust strip — wrap nicely, smaller */
  .trust .wrap { padding: 16px var(--gutter); font-size: 12px; gap: 6px 18px; line-height: 1.5; }
  .credentials p { font-size: 11px; letter-spacing: 0.14em; line-height: 1.7; }
  .credentials .dot { margin: 0 4px; }

  /* Reviews — big rating smaller */
  .pull-quote .big-rating { font-size: clamp(56px, 16vw, 80px); }
  .pull-quote blockquote { font-size: 18px; max-width: 28ch; }

  /* Service areas line */
  .areas-line { font-size: 15.5px; line-height: 1.85; margin-top: 22px; }

  /* Closing payoff (if shown) — smaller knight, tighter padding */
  .closing { padding: 56px 0; }
  .closing-payoff { padding: 56px 0; }
  .closing-knight, .closing-payoff .knight-mark, .closing .knight-mark { width: 44px !important; margin-bottom: 18px !important; }
  .closing h2, .closing-payoff h2 { font-size: clamp(24px, 6vw, 32px); }
  .closing .lead, .closing-payoff .lead { font-size: 15px; }
  .closing .motto, .closing-payoff .motto { font-size: 11px; margin-top: 28px; }
  .closing .cta-row { flex-direction: column; gap: 12px; }
  .closing .cta-row .btn, .closing .cta-row .btn-out { width: 100%; justify-content: center; }

  /* Feature band (navy) on mobile */
  .feature-band { padding: 56px 0; }
  .feature-band h2 { font-size: clamp(24px, 6.5vw, 32px); }

  /* About / Standard sections */
  .about-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-photo { max-width: 200px; }
  .about-voice { font-size: clamp(17px, 4.5vw, 20px); }

  /* File-stamp banner if visible on homepage */
  .file-stamp .wrap { padding: 12px var(--gutter); font-size: 10px; gap: 6px 16px; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 26px; }
  .sec h2 { font-size: 21px; }
  .feature-band h2 { font-size: 22px; }
  .closing-payoff h2, .closing h2 { font-size: 22px; }
  .pull-quote .big-rating { font-size: 56px; }
  .paths-list .path-row .body h3 { font-size: 18px; }
  .standard-card .sc-num { font-size: 24px; }
}

/* === Color preview generated image (Lee-side attachment) === */
.msg-generated-image {
  margin-top: 12px;
  display: block;
}
.msg-generated-image img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border: 1px solid var(--hair);
  display: block;
  border-radius: 0;
}
.msg-generated-image .gen-tag {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--paper-2);
  padding: 4px 10px;
  border: 1px solid var(--hair-2);
}
@media (max-width: 640px) {
  .msg-generated-image img { max-width: 100%; }
}

/* === Async render placeholder + failure state === */
.msg-render-placeholder {
  margin-top: 12px;
  padding: 12px 16px;
  background: var(--paper-2);
  border: 1px dashed var(--hair-2);
  border-radius: 4px;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}
.msg-render-placeholder .rp-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.msg-render-placeholder .rp-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: rp-pulse 1.4s infinite ease-in-out;
}
.msg-render-placeholder .rp-dot:nth-child(2) { animation-delay: 0.2s; }
.msg-render-placeholder .rp-dot:nth-child(3) { animation-delay: 0.4s; }
.msg-render-placeholder .rp-text { margin-left: 4px; }
.msg-render-placeholder .rp-elapsed {
  font-style: normal;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: var(--ink);
  margin-left: 4px;
}
.msg-render-placeholder .rp-progress-track {
  height: 4px;
  background: var(--hair-2);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 8px;
}
.msg-render-placeholder .rp-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--warn, #A8864A));
  transition: width 0.8s ease-out;
  border-radius: 2px;
}
.msg-render-placeholder .rp-hint {
  font-size: 11.5px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.4;
}
@keyframes rp-pulse {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1); }
}
.msg-render-error {
  margin-top: 12px;
  padding: 10px 14px;
  background: #FFF4E5;
  border-left: 3px solid var(--warn, #A8864A);
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.5;
}

/* === Onboarding popup (Ask Lee first-visit welcome) === */
.onboarding-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 18, 0.62);
  backdrop-filter: blur(6px) saturate(140%);
  -webkit-backdrop-filter: blur(6px) saturate(140%);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: onboardingFadeIn 220ms ease-out;
}
.onboarding-overlay[hidden] { display: none; }
.onboarding-overlay.onboarding-closing {
  animation: onboardingFadeOut 200ms ease-in forwards;
}
@keyframes onboardingFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes onboardingFadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}
.onboarding-card {
  background: var(--paper);
  border: 1px solid var(--hair-2);
  max-width: 480px;
  width: 100%;
  padding: 36px 32px 30px;
  position: relative;
  box-shadow: 0 24px 64px rgba(15, 15, 18, 0.22);
  animation: onboardingPopIn 280ms cubic-bezier(0.2, 0.9, 0.3, 1.1);
}
@keyframes onboardingPopIn {
  from { transform: translateY(16px) scale(0.96); opacity: 0; }
  to   { transform: translateY(0)    scale(1);    opacity: 1; }
}
.onboarding-kicker {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.onboarding-kicker::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1.5px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 10px;
  margin-top: -2px;
}
.onboarding-card h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 22px;
  max-width: 28ch;
}
.onboarding-section {
  margin: 0 0 18px;
}
.onboarding-section h3 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px;
}
.onboarding-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.onboarding-section ul li {
  position: relative;
  padding-left: 18px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-2);
}
.onboarding-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 1.5px;
  background: var(--accent);
}
.onboarding-tip {
  background: var(--paper-2);
  border-left: 2px solid var(--accent);
  padding: 12px 14px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0 0 16px;
}
.onboarding-tip strong {
  color: var(--ink);
  font-weight: 700;
}
.onboarding-foot {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 22px;
  padding-top: 14px;
  border-top: 1px solid var(--hair);
}
.onboarding-cta {
  width: 100%;
  justify-content: center;
  padding: 13px 22px;
  font-size: 13.5px;
}
@media (max-width: 480px) {
  .onboarding-card { padding: 28px 22px 24px; }
  .onboarding-card h2 { font-size: 19px; }
  .onboarding-section ul li { font-size: 14px; }
  .onboarding-foot { font-size: 12px; }
}

/* === Homepage mobile polish v3 — hardening / no-shift / consistent rhythm === */
@media (max-width: 640px) {
  /* Kill ALL horizontal scroll — top defense against shifting layout. */
  html, body { overflow-x: hidden; max-width: 100vw; }

  /* Force every wrap variant to the same gutter so sections line up vertically. */
  .wrap, .wrap-read, .wrap-med,
  .page-hero .wrap,
  .sub-sec .wrap,
  .chat-section .wrap,
  .hero .wrap,
  .sec .wrap,
  .closing .wrap,
  .credentials,
  .trust .wrap,
  .feature-band .wrap,
  .pull-quote .wrap,
  .file-stamp .wrap,
  .foot-grid {
    max-width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box;
  }

  /* All sections share the same vertical rhythm so they don't bounce in/out. */
  .sec, .sub-sec { padding: 40px 0 !important; }
  .sec-tight { padding: 30px 0 !important; }
  .page-hero { padding: 40px 0 32px !important; }
  .feature-band { padding: 48px 0 !important; }
  .closing, .closing-payoff { padding: 48px 0 !important; }
  .credentials { padding: 14px 0 !important; }

  /* Prevent any element from exceeding viewport */
  img, video, iframe, svg { max-width: 100%; height: auto; }
  pre, code { white-space: pre-wrap; word-break: break-word; }

  /* Headings wrap cleanly */
  h1, h2, h3, h4, .hero h1, .sec h2 {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
  }

  /* Spread layout — make sure both columns stack with identical alignment */
  .spread, .spread.wide-left, .spread.reverse {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    direction: ltr !important;
  }
  .spread > * { direction: ltr !important; }
  .spread .col-head h2 { max-width: 100%; }
  .spread .col-body p { max-width: 100%; }

  /* Center-intro sections — make them left-align on mobile so they line up with everything else */
  .sec.center-intro .spread,
  .sec.center-intro .spread.wide-left {
    text-align: left !important;
    max-width: 100% !important;
    padding: 0 !important;
  }
  .sec.center-intro .spread .col-head h2,
  .sec.center-intro .spread .col-body p {
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
  }

  /* Hero — left-align text to match everything else (kill desktop center override) */
  .hero-grid {
    text-align: left !important;
    max-width: 100% !important;
    padding: 0 !important;
  }
  .hero h1, .hero .lead, .hero-cta, .hero-meta {
    margin-left: 0 !important;
    margin-right: 0 !important;
    justify-content: flex-start !important;
  }
  .hero h1 { max-width: 100%; }
  .hero .lead { max-width: 100%; }
  .hero-cta { flex-direction: column !important; align-items: stretch !important; gap: 10px !important; }
  .hero-cta .btn, .hero-cta .btn-out { width: 100%; justify-content: center; }
  .hero-meta {
    flex-wrap: wrap;
    justify-content: flex-start !important;
    gap: 8px 14px !important;
    margin-top: 26px !important;
    padding-top: 16px !important;
  }

  /* Header height a touch tighter — keeps sticky bar from eating real estate */
  .head-main { height: 68px !important; }
  .brand img { height: 42px !important; }
  .brand-text { font-size: 14px !important; padding-left: 12px !important; }

  /* Footer grid — single column with consistent gap */
  .foot-grid { grid-template-columns: 1fr !important; gap: 28px !important; padding: 48px 20px 30px !important; }
  .foot-base-in { flex-direction: column !important; align-items: flex-start !important; gap: 8px !important; padding: 16px 20px !important; }

  /* Mobile bar — make sure it never adds horizontal scroll */
  .mobile-bar { width: 100%; box-sizing: border-box; }
  .mobile-bar a { font-size: 12.5px; padding: 12px 4px; }

  /* Section h2/lead — consistent so they don't pop around in size */
  .sec h2, .sub-sec h2 { font-size: clamp(22px, 5.8vw, 28px) !important; max-width: 100%; }
  .sec .lead, .sub-sec .lead { font-size: 15px !important; max-width: 100%; margin-top: 14px !important; }

  /* Closing — keep it tight and consistent with other sections */
  .closing h2, .closing-payoff h2 { font-size: clamp(22px, 5.5vw, 28px) !important; max-width: 100%; }
  .closing .lead, .closing-payoff .lead { max-width: 100%; }
  .closing .cta-row { flex-direction: column !important; gap: 10px !important; }
  .closing .cta-row .btn, .closing .cta-row .btn-out { width: 100%; justify-content: center; }

  /* Feature band — same treatment */
  .feature-band h2 { font-size: clamp(22px, 5.8vw, 30px) !important; max-width: 100%; }
  .feature-band .col-body p { max-width: 100%; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 24px !important; }
  .sec h2, .sub-sec h2, .closing h2, .closing-payoff h2, .feature-band h2 { font-size: 20px !important; }
  .brand img { height: 36px !important; }
  .brand-text { display: none !important; }
}

/* =========================================================================
   PHASE 4.5 — Content pages (Project Assessment, About, Reviews, Contact,
   Privacy, Terms). Block-level helpers using existing paper/ink/navy palette.
   No new visual system; everything anchored to existing tokens.
   ========================================================================= */

/* --- Form sections (used on Project Assessment) --- */
.assessment-form { max-width: 760px; margin: 36px auto 0; }
.assessment-form .honeypot { position: absolute; left: -9999px; }
.form-section {
  padding: 28px 0;
  border-bottom: 1px solid var(--hair);
}
.form-section:last-of-type { border-bottom: 0; }
.form-section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 6px;
  line-height: 1.18;
}
.form-section-desc {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0 0 18px;
  max-width: 60ch;
  line-height: 1.6;
}
.field-row {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin-bottom: 14px;
}
@media (min-width: 640px) {
  .field-row.split-2 { grid-template-columns: 1fr 1fr; gap: 18px; }
  .field-row.split-3 { grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
}
.field-row .field { margin-bottom: 0; }
.field-help {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 5px;
  line-height: 1.5;
}
.field-required-mark {
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  font-size: 10.5px;
  text-transform: uppercase;
}
.radio-group, .checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.radio-group.inline, .checkbox-group.inline {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px 22px;
}
.radio-option, .checkbox-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-2);
  margin: 0;
  cursor: pointer;
  padding: 4px 0;
  line-height: 1.35;
}
.radio-option input[type="radio"], .checkbox-option input[type="checkbox"] {
  width: auto;
  margin: 0;
  accent-color: var(--accent);
  flex-shrink: 0;
}
input[type="file"] {
  font-family: inherit;
  font-size: 13.5px;
  padding: 10px;
  background: var(--paper-2);
  border: 1px dashed var(--hair-2);
  cursor: pointer;
}
input[type="file"]:hover { border-color: var(--ink); }
.submit-row {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--hair);
}

/* --- What happens next box (Project Assessment + thanks page) --- */
.what-happens-next {
  margin: 0;
  padding: 30px 32px;
  background: var(--paper);
  border-left: 3px solid var(--accent);
  border-top: 1px solid var(--hair);
  border-right: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.what-happens-next h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.014em;
  color: var(--ink);
  margin: 0 0 18px;
  line-height: 1.15;
  max-width: none;
}
.what-happens-next ol {
  margin: 0 0 12px;
  padding-left: 22px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.7;
  max-width: 62ch;
}
.what-happens-next ol li { margin-bottom: 10px; }
.what-happens-next ol li:last-child { margin-bottom: 0; }
.what-happens-next .policy-note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--hair);
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 62ch;
}
.what-happens-next .policy-note strong { color: var(--ink); font-weight: 600; }
@media (max-width: 640px) {
  .what-happens-next { padding: 24px 20px; }
  .what-happens-next h2 { font-size: 19px; }
  .what-happens-next ol { font-size: 14.5px; }
}

/* --- About Lee philosophy blocks --- */
.philosophy-block {
  padding: 36px 0;
  border-bottom: 1px solid var(--hair);
}
.philosophy-block:first-child { padding-top: 0; }
.philosophy-block:last-child { border-bottom: 0; }
.philosophy-block .kicker { margin-bottom: 16px; }
.philosophy-block h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.14;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 18px;
  max-width: 26ch;
}
.philosophy-block p {
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.75;
  margin: 0 0 14px;
  max-width: 62ch;
}
.philosophy-block p:last-child { margin-bottom: 0; }
.philosophy-block ul {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.75;
  margin: 0 0 16px;
  padding-left: 22px;
  max-width: 62ch;
}
.philosophy-block ul li { margin-bottom: 8px; }
.philosophy-block a { color: var(--accent); border-bottom: 1px solid var(--accent); padding-bottom: 1px; }
.philosophy-block a:hover { color: var(--ink); border-bottom-color: var(--ink); }

/* Motto sub-grid inside About */
.motto-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  margin-top: 12px;
}
@media (min-width: 720px) {
  .motto-grid { grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
}
.motto-item {
  padding: 22px 22px 20px;
  background: var(--paper-2);
  border: 1px solid var(--hair);
}
.motto-item h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--accent);
  margin: 0 0 10px;
}
.motto-item p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.65;
  margin: 0;
  max-width: none;
}

/* Lee personal quote at end of About */
.lee-quote {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 21px);
  line-height: 1.45;
  letter-spacing: -0.008em;
  color: var(--ink);
  margin: 0;
  padding: 0 0 0 22px;
  border-left: 2px solid var(--accent);
  max-width: 60ch;
}
.lee-quote .attrib {
  display: block;
  margin-top: 18px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --- Reviews page --- */
.big-rating-block {
  text-align: center;
  padding: 24px 0 36px;
}
.big-rating-block .big-rating {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(72px, 11vw, 120px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--accent);
  margin-bottom: 12px;
}
.big-rating-block .stars {
  font-size: 22px;
  letter-spacing: 8px;
  color: var(--accent);
  margin-bottom: 14px;
}
.big-rating-block .sub {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--muted);
}
.reviews-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
  margin-top: 32px;
}
@media (min-width: 720px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
}
.review-card {
  background: var(--paper);
  border: 1px solid var(--hair);
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-card .stars-row {
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--accent);
}
.review-card blockquote {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: -0.008em;
  color: var(--ink);
  margin: 0;
  max-width: none;
}
.review-card .attribution {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.review-card .attribution .who { color: var(--ink); }
.review-card.placeholder {
  background: var(--paper-2);
  border: 1px dashed var(--hair-2);
}
.review-card.placeholder blockquote { color: var(--muted); }
.review-card.placeholder .attribution { color: var(--hint); }
.review-card.placeholder .stars-row { color: var(--hair-2); }
.review-pending-note {
  margin: 36px 0 0;
  padding: 22px 24px;
  background: var(--paper);
  border: 1px solid var(--hair);
  border-left: 3px solid var(--hint);
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}
.review-pending-note strong { color: var(--ink); font-weight: 600; }
.review-pending-note a { color: var(--accent); border-bottom: 1px solid var(--accent); padding-bottom: 1px; }
.review-pending-note a:hover { color: var(--ink); border-bottom-color: var(--ink); }

/* --- Contact page --- */
.contact-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: 1fr;
  background: var(--hair);
  border: 1px solid var(--hair);
  margin-top: 36px;
}
@media (min-width: 720px) {
  .contact-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.contact-card {
  background: var(--paper);
  padding: 30px 26px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  text-decoration: none;
  transition: background 180ms;
}
.contact-card:hover { background: var(--paper-2); }
.contact-card .label {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.contact-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.014em;
  color: var(--ink);
  margin: 0;
  line-height: 1.18;
  max-width: 20ch;
}
.contact-card p {
  font-size: 13.5px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.6;
  max-width: 30ch;
}
.contact-card .cta {
  margin-top: 8px;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}
.contact-card:hover .cta { color: var(--ink); border-bottom-color: var(--ink); }

/* --- Legal pages (Privacy, Terms) --- */
.legal-page { padding: 0 0 16px; }
.legal-page .meta {
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.16em;
  margin-bottom: 32px;
  text-transform: uppercase;
  font-weight: 700;
}
.legal-page h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(20px, 2.2vw, 25px);
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 36px 0 14px;
  max-width: none;
  scroll-margin-top: 24px;
}
.legal-page h2:first-of-type { margin-top: 0; }
.legal-page p, .legal-page li {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.75;
  max-width: 66ch;
}
.legal-page p { margin: 0 0 14px; }
.legal-page ul, .legal-page ol {
  margin: 0 0 14px;
  padding-left: 22px;
}
.legal-page ul li, .legal-page ol li { margin-bottom: 8px; }
.legal-page strong { color: var(--ink); font-weight: 600; }
.legal-page em { color: var(--ink-2); font-style: italic; }
.legal-page a { color: var(--accent); border-bottom: 1px solid var(--accent); padding-bottom: 1px; }
.legal-page a:hover { color: var(--ink); border-bottom-color: var(--ink); }
.legal-page .toc {
  padding: 22px 26px;
  background: var(--paper-2);
  border-left: 3px solid var(--accent);
  margin: 24px 0 36px;
}
.legal-page .toc h3 {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}
.legal-page .toc ol {
  margin: 0;
  padding-left: 22px;
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.85;
  columns: 2;
  column-gap: 32px;
}
.legal-page .toc ol li {
  margin: 0;
  font-size: 13.5px;
  max-width: none;
  break-inside: avoid;
}
.legal-page .toc ol a {
  color: var(--ink-2);
  border-bottom: 0;
}
.legal-page .toc ol a:hover {
  color: var(--accent);
  border-bottom: 0;
}
@media (max-width: 640px) {
  .legal-page .toc { padding: 18px 20px; }
  .legal-page .toc ol { columns: 1; }
}

/* =========================================================================
   PHASE 4.5b — Knowledge Hub, Gallery, Service Areas
   ========================================================================= */

/* --- Knowledge Hub --- */
.kh-categories {
  display: grid;
  gap: 1px;
  grid-template-columns: 1fr;
  background: var(--hair);
  border: 1px solid var(--hair);
  margin-top: 36px;
}
@media (min-width: 720px) { .kh-categories { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .kh-categories { grid-template-columns: 1fr 1fr 1fr; } }
.kh-category {
  background: var(--paper);
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  transition: background 180ms;
}
.kh-category:hover { background: var(--paper-2); }
.kh-num {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--accent);
  letter-spacing: -0.012em;
  line-height: 1;
}
.kh-category h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.014em;
  color: var(--ink);
  margin: 0;
  line-height: 1.16;
}
.kh-category p {
  font-size: 13.5px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.6;
  max-width: none;
}
.kh-stat {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed var(--hair-2);
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.kh-category:hover .kh-stat { color: var(--accent); }

.kh-articles {
  margin-top: 36px;
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .kh-articles { grid-template-columns: 1fr 1fr; gap: 22px; } }
.kh-article {
  background: var(--paper);
  border: 1px solid var(--hair);
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.kh-article-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.kh-article-tag {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--paper-2);
  padding: 4px 9px;
  border: 1px solid var(--hair-2);
}
.kh-article-min {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.kh-article h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 21px;
  line-height: 1.16;
  letter-spacing: -0.014em;
  color: var(--ink);
  margin: 0;
  max-width: none;
}
.kh-article p {
  font-size: 14.5px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.7;
  max-width: none;
}
.kh-article-foot {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--hair);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.kh-article-status {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.kh-article-ask {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  align-self: flex-start;
}
.kh-article-ask:hover { color: var(--ink); border-bottom-color: var(--ink); }

.kh-article-read {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  align-self: flex-start;
  letter-spacing: 0.02em;
}
.kh-article-read:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* --- Knowledge Hub: individual article page (longform prose) --- */
.kh-prose {
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--ink-2);
  letter-spacing: 0.005em;
}
.kh-prose p {
  margin: 0 0 18px;
}
.kh-prose p.kh-lead {
  font-size: 18.5px;
  line-height: 1.7;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 32px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--rule);
}
.kh-prose h2 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.25;
  margin: 44px 0 18px;
}
.kh-prose h2:first-child { margin-top: 0; }
.kh-prose h3 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.005em;
  margin: 28px 0 12px;
  text-transform: none;
}
.kh-prose ul, .kh-prose ol {
  margin: 0 0 18px;
  padding-left: 24px;
}
.kh-prose ul li, .kh-prose ol li {
  margin-bottom: 10px;
  padding-left: 4px;
}
.kh-prose strong {
  color: var(--ink);
  font-weight: 700;
}
.kh-prose em {
  font-style: italic;
  color: var(--ink);
}
.kh-prose a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
}
.kh-prose a:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

/* --- Knowledge Hub: prev/next navigation cards at bottom of an article --- */
.kh-article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.kh-nav-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 22px;
  border: 1px solid var(--rule);
  background: var(--paper);
  text-decoration: none;
  transition: border-color 0.15s, transform 0.15s;
}
.kh-nav-card:hover {
  border-color: var(--ink);
}
.kh-nav-next { text-align: right; }
.kh-nav-dir {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.kh-nav-tag {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.kh-nav-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
}
@media (max-width: 720px) {
  .kh-article-nav { grid-template-columns: 1fr; }
  .kh-nav-next { text-align: left; }
}

/* --- Gallery / case studies --- */
.case-study {
  display: grid;
  gap: 28px;
}
.case-study-image {
  aspect-ratio: 4 / 3;
  background: var(--paper-3);
  border: 1px solid var(--hair-2);
  position: relative;
  overflow: hidden;
  display: block;
}
.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0;
}
/* Multi-photo gallery strip below the hero */
.cs-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0;
}
@media (min-width: 720px) {
  .cs-gallery { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}
@media (min-width: 1000px) {
  .cs-gallery { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}
.cs-thumb {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-3);
  border: 1px solid var(--hair-2);
  text-decoration: none;
  transition: border-color 200ms;
}
.cs-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 400ms ease;
}
.cs-thumb:hover {
  border-color: var(--accent);
}
.cs-thumb:hover img {
  transform: scale(1.04);
}
.cs-img-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--paper);
  padding: 5px 11px;
  border: 1px solid var(--hair-2);
  z-index: 2;
}
.case-study-meta { display: flex; flex-direction: column; gap: 4px; }
.cs-location {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.case-study-meta h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(24px, 2.8vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0;
  max-width: none;
}
.case-study-body {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .case-study-body { grid-template-columns: 1fr 1fr; gap: 28px; }
  .cs-section.cs-result { grid-column: 1 / -1; }
}
.cs-section { background: var(--paper); padding: 22px 24px; border: 1px solid var(--hair); }
.cs-section h3 {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
}
.cs-section p {
  font-size: 14.5px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.75;
  max-width: none;
}

/* --- Behind the Craft cards (Gallery page) --- */
.bc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 720px) {
  .bc-grid { grid-template-columns: 1fr; gap: 20px; }
}
.bc-card {
  background: var(--paper);
  border: 1px solid var(--hair);
  display: flex;
  flex-direction: column;
}
.bc-cover {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-2);
}
.bc-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.bc-cover:hover img { transform: scale(1.02); }
.bc-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bc-tag {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent);
}
.bc-body h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
}
.bc-body p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-2);
}
.bc-extras {
  display: flex;
  gap: 8px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.bc-thumb {
  display: block;
  width: 64px;
  height: 64px;
  overflow: hidden;
  border: 1px solid var(--hair);
}
.bc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bc-thumb:hover { border-color: var(--accent); }

/* --- Painting Services landing page (ad-traffic conversion) --- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 720px) {
  .svc-grid { grid-template-columns: 1fr; gap: 20px; }
}
.svc-card {
  background: var(--paper);
  border: 1px solid var(--hair);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (max-width: 480px) {
  .svc-card { padding: 22px 22px 20px; }
}
.svc-tag {
  align-self: flex-start;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 4px 10px;
  border: 1px solid var(--accent-paper);
  background: var(--accent-paper);
}
.svc-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
}
.svc-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-2);
}
.svc-list {
  margin: 4px 0 0;
  padding-left: 20px;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--ink-2);
}
.svc-list li {
  margin: 0;
  padding: 0;
}

/* --- Reviews block on Painting Services landing page --- */
.svc-review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 720px) {
  .svc-review-grid { grid-template-columns: 1fr; gap: 18px; }
}
.svc-review {
  margin: 0;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--hair);
}
.svc-review-stars {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 14px;
}
.svc-review p {
  margin: 0 0 14px;
  font-style: italic;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
}
.svc-review .svc-review-attrib {
  margin: 0;
  font-family: var(--sans);
  font-style: normal;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --- Closing CTA row on Painting Services landing page --- */
.svc-closing-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .svc-closing-cta { flex-direction: column; align-items: stretch; }
  .svc-closing-cta a { text-align: center; }
}

/* --- Mid-page CTA row (navy feature-band) on Painting Services landing --- */
.svc-cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 480px) {
  .svc-cta-row { flex-direction: column; align-items: stretch; }
  .svc-cta-row a { text-align: center; }
}
.svc-cta-light {
  display: inline-block;
  padding: 14px 22px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--paper);
  text-decoration: none;
  border: 1px solid var(--paper);
  background: transparent;
  transition: background .15s ease, color .15s ease;
}
.svc-cta-light:hover {
  background: var(--paper);
  color: var(--accent);
}

/* --- Ask Lee feature callout on Painting Services landing --- */
.ask-lee-callout {
  background: var(--paper);
  border: 1px solid var(--hair);
  border-left: 3px solid var(--accent);
  padding: 36px 32px;
  text-align: center;
}
@media (max-width: 480px) {
  .ask-lee-callout { padding: 28px 22px; }
}
.ask-lee-callout h2 {
  margin: 14px auto 18px;
  max-width: 22ch;
}
.ask-lee-callout p {
  margin: 0 auto 28px;
  max-width: 52ch;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-2);
}

/* --- Get Estimate ad-landing page (focused conversion) --- */
.ge-hero {
  padding-bottom: 0;
}
.ge-cta-row {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 480px) {
  .ge-cta-row { flex-direction: column; align-items: stretch; }
  .ge-cta-row a { text-align: center; }
}
.ge-trust-row {
  margin-top: 28px;
  display: flex;
  gap: 14px 22px;
  flex-wrap: wrap;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--muted);
}
.ge-scope-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 920px) {
  .ge-scope-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .ge-scope-grid { grid-template-columns: 1fr; gap: 14px; }
}
.ge-scope {
  background: var(--paper);
  border: 1px solid var(--hair);
  padding: 22px 22px 20px;
}
.ge-scope h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}
.ge-scope p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-2);
}
.ge-quote {
  margin: 0;
  padding: 28px 32px;
  background: var(--paper);
  border: 1px solid var(--hair);
  border-left: 3px solid var(--accent);
}
@media (max-width: 480px) {
  .ge-quote { padding: 24px 22px; }
}
.ge-stars {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 14px;
}
.ge-quote p {
  margin: 0 0 16px;
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
}
.ge-quote .ge-quote-attrib {
  margin: 0;
  font-family: var(--sans);
  font-style: normal;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --- Service Areas --- */
.sa-jump {
  margin-top: 28px;
  padding: 18px 22px;
  background: var(--paper-2);
  border-left: 3px solid var(--accent);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.sa-jump a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
}
.sa-jump a:hover { color: var(--ink); border-bottom-color: var(--ink); }

.sa-section { padding-bottom: 4px; }
.sa-section h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  letter-spacing: -0.008em;
  color: var(--ink-2);
  margin: 18px 0 26px;
  max-width: 64ch;
}
.sa-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  margin-top: 8px;
}
@media (min-width: 720px) {
  .sa-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .sa-block-full { grid-column: 1 / -1; }
}
.sa-block {
  background: var(--paper);
  padding: 18px 20px;
  border: 1px solid var(--hair);
}
.sa-label {
  display: block;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.sa-block p {
  font-size: 14px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.7;
  max-width: none;
}
.sa-cta { margin-top: 28px; }

/* =========================================================================
   PHASE 4.5c — Live Google Reviews
   ========================================================================= */

.gr-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  margin-top: 8px;
}
@media (min-width: 720px) {
  .gr-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
}
@media (min-width: 1080px) {
  .gr-grid { grid-template-columns: 1fr 1fr 1fr; gap: 22px; }
}

.gr-card {
  background: var(--paper);
  border: 1px solid var(--hair);
  padding: 22px 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 180ms;
}
.gr-card:hover { border-color: var(--hair-2); }

.gr-head {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 12px;
  align-items: center;
}
.gr-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--paper-3);
  border: 1px solid var(--hair-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gr-avatar-fallback {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 17px;
  color: var(--accent);
  background: var(--paper-2);
  letter-spacing: -0.012em;
}
.gr-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.gr-author-name {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gr-author-name[href] { border-bottom: 1px solid transparent; }
.gr-author-name[href]:hover { color: var(--accent); border-bottom-color: var(--accent); }
.gr-time {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
  text-transform: none;
}
.gr-stars {
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--accent);
  line-height: 1;
  white-space: nowrap;
}
.gr-text {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 400;
  font-size: 14.5px;
  line-height: 1.7;
  letter-spacing: 0;
  color: var(--ink-2);
  margin: 0;
  max-width: none;
  /* Clamp to ~6 lines so very long reviews don't crush the grid; full text on Google. */
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gr-foot {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hint);
  padding-top: 10px;
  border-top: 1px solid var(--hair);
  margin-top: auto;
}

.gr-loading {
  grid-column: 1 / -1;
  padding: 28px;
  text-align: center;
  background: var(--paper-2);
  border: 1px dashed var(--hair-2);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* =========================================================================
   PHASE 4.5d — Homepage editorial card variants
   ed-card-textonly: text-only cards (no image box) — Knowledge Hub homepage
   ed-card-photo: real photo cards — Projects/Gallery homepage
   ========================================================================= */
.ed-card-textonly {
  background: var(--paper);
  border: 1px solid var(--hair);
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  transition: border-color 180ms, background 180ms;
}
.ed-card-textonly:hover {
  background: var(--paper-2);
  border-color: var(--hair-2);
}
.ed-tag-inline {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--paper-2);
  padding: 4px 9px;
  border: 1px solid var(--hair-2);
  margin: 0 0 4px;
}
.ed-card-textonly h3 {
  margin: 0 0 4px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.ed-card-textonly p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 8px;
  line-height: 1.6;
}
.ed-card-textonly:hover h3 { color: var(--accent); }

/* Real photo variant for Projects/Gallery */
.ed-card-photo { display: block; text-decoration: none; }
.ed-image-real {
  aspect-ratio: 4 / 3;
  background: var(--paper-3);
  border: 1px solid var(--hair-2);
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
}
.ed-image-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 400ms ease;
}
.ed-card-photo:hover .ed-image-real img {
  transform: scale(1.03);
}
.ed-image-real .ed-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--paper);
  padding: 4px 9px;
  border: 1px solid var(--hair-2);
}

/* =========================================================================
   MOBILE-NATIVE OVERHAUL (added 2026-06)
   Hamburger navigation, touch targets, logo overflow guard, and bottom-bar
   safe-area handling. Everything here is scoped to sub-desktop breakpoints —
   the desktop layout (>=1040px, where .nav/.head-cta turn on) is never touched.
   ========================================================================= */

/* --- Mobile navigation: hamburger + slide-down panel (pure CSS checkbox,
       no JS framework). Hidden by default; shown below the desktop-nav
       breakpoint so phones AND tablets get full navigation. --- */
.mobile-nav-toggle { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.mobile-nav-btn { display: none; }
.mobile-nav-panel { display: none; }

@media (max-width: 1039px) {
  /* Hard guard: never allow horizontal scroll anywhere the hamburger is in
     play. Scoped below the desktop breakpoint so the sticky header on desktop
     (>=1040px) is unaffected. */
  html, body { overflow-x: hidden; max-width: 100vw; }

  /* Hamburger button — guaranteed 44x44 hit area, vertically centered. */
  .mobile-nav-btn {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-nav-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    transition: transform 220ms ease, opacity 160ms ease;
  }
  /* Animate the three bars into an X when the menu is open. */
  .mobile-nav-toggle:checked ~ .mobile-nav-btn span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .mobile-nav-toggle:checked ~ .mobile-nav-btn span:nth-child(2) { opacity: 0; }
  .mobile-nav-toggle:checked ~ .mobile-nav-btn span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Slide-down panel, anchored to the bottom edge of the sticky header.
     Absolutely positioned against .site-head (which is position:sticky). */
  .mobile-nav-panel {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--paper);
    border-top: 1px solid var(--hair);
    border-bottom: 1px solid var(--hair-2);
    box-shadow: 0 18px 30px -22px rgba(15, 15, 18, 0.55);
    max-height: 80vh;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
  }
  .mobile-nav-toggle:checked ~ .mobile-nav-panel {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }
  .mobile-nav-panel a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 12px var(--gutter);
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    border-bottom: 1px solid var(--hair);
  }
  .mobile-nav-panel a:last-child { border-bottom: 0; }
  .mobile-nav-panel a:active { background: var(--paper-2); }
}

/* --- Bottom sticky bar: honor the iOS home indicator and keep page content
       (including the last CTA) clear of the fixed bar. --- */
@media (max-width: 819px) {
  .mobile-bar { padding-bottom: env(safe-area-inset-bottom); }
  .mobile-bar a { min-height: 48px; display: flex; align-items: center; justify-content: center; }
  body { padding-bottom: calc(58px + env(safe-area-inset-bottom)); }
}

/* --- Phone polish: logo overflow guard, footer/link touch targets,
       full-width CTAs. --- */
@media (max-width: 640px) {
  /* Logo must never push past the left/right viewport edge. */
  .brand { min-width: 0; }
  .brand img { max-width: 100%; }
  .brand-text { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

  /* Footer links: fingertip-sized vertical tap area. */
  .site-foot ul { gap: 2px; }
  .site-foot ul li a { display: inline-flex; align-items: center; min-height: 44px; padding: 5px 0; }

  /* Top secondary nav links (when shown) get tap padding too. */
  .head-top-in .secondary-nav a { display: inline-flex; align-items: center; min-height: 40px; }

  /* Solid/outline CTAs in content sections go full-width like native buttons. */
  .sec .btn, .sec .btn-out,
  .sub-sec .btn, .sub-sec .btn-out,
  .feature-band .btn,
  .pull-quote .btn, .pull-quote .btn-out {
    width: 100%;
    justify-content: center;
  }
}
