/* RK Parisi Enterprises: corporate site
   Direction: clean corporate. White and light-grey grounds, charcoal ink, one restrained gold accent,
   thin rules, square-ish corners, sans-serif headings. Brand colours stay inside each division panel. */

:root {
  --ink: #111418;          /* primary text, dark panels, primary buttons */
  --ink-2: #1b2027;
  --paper: #ffffff;
  --surface: #f5f6f7;      /* alternate section ground */
  --gold: #a5822f;         /* accent for rules and marks */
  --accent: #806220;       /* accent for small text on white (AA contrast) */
  --gold-light: #e8d3a4;   /* accent on dark panels */

  --text: #111418;
  --text-2: #4a515b;
  --text-3: #6b727c;
  --line: #e2e5e9;
  --line-2: #cfd4da;

  --r-lg: 8px;
  --r-md: 6px;
  --r-sm: 4px;

  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --gutter: 40px;
  --shadow: 0 1px 2px rgba(17, 20, 24, .04), 0 8px 24px -12px rgba(17, 20, 24, .12);
}

*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: clip;  scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0; background: var(--paper); color: var(--text);
  font-family: var(--sans); font-weight: 400; line-height: 1.55;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-underline-offset: 3px; transition: color .2s; }
a:hover { color: var(--ink); }
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; border-radius: var(--r-sm); }
h1, h2, h3, h4 { font-family: var(--sans); font-weight: 600; letter-spacing: -.02em; margin: 0; color: var(--ink); }
::selection { background: rgba(165, 130, 47, .25); color: var(--ink); }

.container { max-width: 1280px; margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

.skip-link { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: var(--r-sm); font-weight: 600; }
.skip-link:focus { top: 12px; color: #fff; }

/* Decorative layers from the old glass design are retired */
.ambient, .grain, .scroll-progress { display: none; }

/* ---------- Card primitive (was "glass") ---------- */
.glass {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.spotlight::before { content: none; }

.gold-text { font-style: normal; color: var(--accent); }

/* ---------- Motion (kept subtle) ---------- */
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

.rise { animation: rise .7s var(--d, 0s) var(--ease) both; }
.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s var(--ease) var(--d, 0s), transform .7s var(--ease) var(--d, 0s); }
.js .reveal.is-in { opacity: 1; transform: none; }

/* Full-bleed grey bands for alternate sections */
#model, #serve, #homes, #free, #history, #recognition, #compare, #partner, #faq, #building, #trade-process {
  background: var(--surface);
  box-shadow: 0 0 0 100vmax var(--surface);
  clip-path: inset(0 -100vmax);
}
#model, #serve, #homes, #free, #history, #recognition, #compare, #partner, #faq, #building, #trade-process { padding-bottom: 110px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50; padding: 0 var(--gutter);
  background: #ffffff; border-bottom: 1px solid var(--line);
  animation: fade .5s both;
}
.header-shell {
  max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 24px;
  height: 76px; padding: 0; background: none; border: 0; border-radius: 0;
}
.site-header.is-scrolled { box-shadow: 0 6px 20px -14px rgba(17, 20, 24, .35); }

.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand img { height: 32px; width: auto; filter: invert(1); } /* white monogram -> black */
.brand-text { display: block; border-left: 1px solid var(--line-2); padding-left: 14px; }
.brand-name { display: block; font-family: var(--sans); font-weight: 600; font-size: 15px; letter-spacing: -.01em; line-height: 1.1; }
.brand-est { display: block; font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--text-3); margin-top: 4px; }

.site-nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.site-nav a:not(.btn) {
  position: relative; text-decoration: none; color: var(--text-2); font-size: 14px; font-weight: 500;
  padding: 10px 12px; transition: color .2s;
}
.site-nav a:not(.btn)::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 2px; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.site-nav a:not(.btn):hover, .site-nav a.is-active { color: var(--ink); }
.site-nav a:not(.btn):hover::after, .site-nav a.is-active::after { transform: scaleX(1); }
.nav-phone { margin-left: 12px; }

.nav-toggle {
  display: none; margin-left: auto; width: 44px; height: 44px; padding: 14px 12px; border-radius: var(--r-sm);
  background: var(--paper); border: 1px solid var(--line-2); cursor: pointer;
  flex-direction: column; justify-content: space-between;
}
.nav-toggle span { display: block; height: 1.5px; background: var(--ink); transition: transform .3s, opacity .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px; text-decoration: none; cursor: pointer;
  font-family: var(--sans); font-size: 14.5px; font-weight: 600; letter-spacing: 0;
  padding: 14px 24px; border-radius: var(--r-sm); border: 1px solid transparent;
  transition: background .2s, color .2s, border-color .2s;
}
.btn-sm { padding: 10px 16px; font-size: 13.5px; }
.btn-gold { color: #fff; background: var(--ink); border-color: var(--ink); }
.btn-gold:hover { color: #fff; background: var(--ink-2); border-color: var(--gold); }
.btn-glass { color: var(--ink); background: transparent; border-color: var(--line-2); }
.btn-glass:hover { color: var(--ink); border-color: var(--ink); }
.btn-arrow { display: inline-block; transition: transform .25s var(--ease); }
a:hover .btn-arrow { transform: translateX(3px); }

/* ---------- Type helpers ---------- */
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); }
.eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--gold); }
.section { padding-top: 110px; padding-bottom: 20px; }
.section-head { text-align: left; max-width: 820px; margin: 0 0 52px; }
.section-title { font-size: clamp(30px, 3.4vw, 46px); line-height: 1.12; letter-spacing: -.025em; margin-top: 16px; }
.section-title--left { text-align: left; }
.section-sub { font-size: 17px; line-height: 1.7; color: var(--text-2); margin: 18px 0 0; max-width: 62ch; }
.section-sub--left { margin-left: 0; }

/* ---------- Pills & chips ---------- */
.pill { display: inline-flex; align-items: center; gap: 10px; padding: 0; font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); background: none; border: 0; }
.pill::before { content: ""; width: 24px; height: 2px; background: var(--gold); }
.pill-dot { display: none; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }

/* ---------- Hero ---------- */
.hero { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, 1fr); gap: 64px; align-items: center; padding-top: 88px; padding-bottom: 88px; }
.hero-title { font-size: clamp(44px, 5.4vw, 80px); font-weight: 600; line-height: 1.04; letter-spacing: -.035em; margin: 24px 0 26px; }
.hero-title > span { display: block; }
.hero-lede { font-size: clamp(16px, 1.25vw, 19px); line-height: 1.7; color: var(--text-2); max-width: 56ch; margin: 0 0 36px; }

.hero-visual { position: relative; }
.hero-card { padding: 32px; border-radius: var(--r-lg); background: var(--ink); border-color: var(--ink); color: #fff; box-shadow: 0 30px 60px -30px rgba(17, 20, 24, .45); }
.hero-card .eyebrow { color: var(--gold-light); }
.hero-card .eyebrow::before { background: var(--gold-light); }
.hero-card-top { display: flex; align-items: center; justify-content: space-between; }
.hero-mark { width: min(280px, 78%); margin: 34px auto 36px; }
.hero-card-stats { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255, 255, 255, .14); }
.hero-card-stats > div { padding: 20px 8px 2px; text-align: center; }
.hero-card-stats > div + div { border-left: 1px solid rgba(255, 255, 255, .14); }
.hero-card-stats strong { display: block; font-weight: 600; font-size: 28px; letter-spacing: -.02em; color: #fff; }
.hero-card-stats span { font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .6); }

.float-chip { display: none; }

/* ---------- Logo strip ---------- */
.logo-strip { display: flex; align-items: center; gap: 28px; padding: 22px 28px; border-radius: var(--r-lg); background: var(--paper); }
.logo-strip-label { flex: none; font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--text-3); }
.logo-strip ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(6, auto); justify-content: space-between; gap: 10px 24px; flex: 1; }
.logo-strip li { font-size: 16px; font-weight: 600; letter-spacing: -.01em; color: var(--ink); }

/* ---------- Integrated model ---------- */
.chain { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--paper); overflow: hidden; }
.chain-step { padding: 32px 28px; display: flex; flex-direction: column; border: 0; border-radius: 0; }
.chain-step + .chain-step { border-left: 1px solid var(--line); }
.chain-num { font-size: 13px; font-weight: 600; color: var(--accent); letter-spacing: .12em; }
.chain-step h3 { font-size: 24px; margin: 14px 0 12px; }
.chain-step p { font-size: 15px; line-height: 1.65; color: var(--text-2); margin: 0 0 22px; }
.chain-tags { margin-top: auto; display: flex; flex-wrap: wrap; gap: 6px; }
.chain-tags span { font-size: 12px; font-weight: 500; padding: 5px 10px; border-radius: var(--r-sm); background: var(--surface); border: 1px solid var(--line); color: var(--ink); }

/* ---------- Portfolio (division panels) ---------- */
.section-intro { text-align: left; max-width: 1280px; padding-top: 110px; padding-bottom: 48px; }
.section-intro .section-sub { margin-left: 0; }
.portfolio { max-width: 1280px; margin: 0 auto; padding: 0 var(--gutter); display: grid; gap: 24px; }

.division {
  --fg: #ffffff; --bg: #0d0d0c; --accent: var(--gold-light);
  --rule: rgba(255, 255, 255, .16); --label: rgba(255, 255, 255, .6); --copy: rgba(255, 255, 255, .8);
  --frame: rgba(255, 255, 255, .16); --num: rgba(255, 255, 255, .05);
  --cta-fg: var(--bg); --cta-bg: #ffffff;

  position: relative; overflow: hidden; border-radius: var(--r-lg);
  background: var(--bg); color: var(--fg);
  padding: clamp(40px, 6vw, 80px);
}
.division h3 { color: inherit; }
.division-num { position: absolute; bottom: -.16em; font-weight: 700; font-size: clamp(150px, 20vw, 280px); line-height: 1; letter-spacing: -.05em; color: var(--num); pointer-events: none; }
.num-right { right: 3%; }
.num-left { left: 3%; }

.division-inner { position: relative; display: grid; gap: clamp(36px, 6vw, 80px); align-items: center; }
.logo-left { grid-template-columns: minmax(220px, 360px) minmax(0, 1fr); }
.logo-right { grid-template-columns: minmax(0, 1fr) minmax(220px, 360px); }

.division-logo { border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--frame); }
.division-logo img { width: 100%; height: auto; }

.division-kicker { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); }
.division-kicker::before { content: ""; width: 24px; height: 2px; background: currentColor; }
.division-title { font-size: clamp(32px, 3.8vw, 54px); font-weight: 600; letter-spacing: -.03em; line-height: 1.05; margin: 18px 0 16px; }
.division-copy { font-size: 16.5px; line-height: 1.72; max-width: 60ch; color: var(--copy); margin: 0 0 28px; }

.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; max-width: 660px; margin: 0 0 30px; border-top: 1px solid var(--rule); }
.facts > div { padding: 14px 16px 0 0; }
.facts > div + div { padding-left: 16px; border-left: 1px solid var(--rule); }
.facts dt { font-size: 10.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--label); margin-bottom: 6px; }
.facts dd { margin: 0; font-size: 14px; line-height: 1.45; }

.division-cta {
  display: inline-flex; align-items: center; gap: 10px; text-decoration: none;
  color: var(--cta-fg); background: var(--cta-bg); font-size: 14px; font-weight: 600;
  padding: 13px 22px; border-radius: var(--r-sm); transition: opacity .2s;
}
.division-cta:hover { color: var(--cta-fg); opacity: .9; }

.rvalue { margin-top: 12px; padding: 16px; text-align: center; border-radius: var(--r-md); border: 1px solid rgba(245, 158, 45, .4); }
.rvalue-num { font-weight: 700; font-size: 42px; letter-spacing: -.03em; line-height: 1; color: #f59e2d; }
.rvalue-label { font-size: 10.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; margin-top: 8px; color: rgba(255, 255, 255, .7); }

/* Division palettes (each company's own colours) */
.division--poshhaus { --bg: #111111; }
.division--nehg {
  --bg: #f4f1ea; --fg: #001849; --accent: #7a5a1f;
  --rule: rgba(0, 24, 73, .16); --label: rgba(0, 24, 73, .7); --copy: rgba(0, 24, 73, .82);
  --frame: rgba(0, 24, 73, .14); --num: rgba(0, 24, 73, .06);
  --cta-fg: #ffffff; --cta-bg: #001849;
}
.division--thermasteel { --bg: #17161a; --accent: #f59e2d; --num: rgba(245, 158, 45, .09); --cta-fg: #17161a; --cta-bg: #f59e2d; }
.division--builders { --bg: #0d2a5e; --accent: #8fc2f2; --num: rgba(255, 255, 255, .06); --cta-fg: #0d2a5e; }
.division--sdb { --bg: #3a668c; --accent: #e3eef8; --rule: rgba(255, 255, 255, .24); --label: rgba(255, 255, 255, .85); --copy: rgba(255, 255, 255, .9); --num: rgba(255, 255, 255, .09); --cta-fg: #29496b; }
.division--abodemod { --bg: #1c0f2b; --accent: #c3b1e1; --frame: rgba(195, 177, 225, .3); --num: rgba(195, 177, 225, .08); --cta-fg: #1c0f2b; }

/* Horizontal run (desktop). Phones keep the vertical stack above. */
.hscroll-ui { display: none; }
@media (min-width: 961px) {
  .hscroll { position: relative; height: 500vh; } /* JS sets the exact height */
  .hscroll-sticky {
    position: sticky; top: 0; height: 100vh; overflow: hidden; overflow: clip;
    display: flex; flex-direction: column; justify-content: center; padding-top: 76px; padding-bottom: 70px;
  }
  .hscroll .portfolio {
    --slide: min(1200px, calc(100vw - 2 * var(--gutter)));
    display: flex; gap: 24px; width: max-content; max-width: none; margin: 0;
    padding: 0 calc((100vw - var(--slide)) / 2);
    will-change: transform;
  }
  .hscroll .division {
    flex: none; width: var(--slide); height: min(calc(100vh - 210px), 700px);
    display: flex; align-items: center; padding: clamp(32px, 4.4vw, 64px);
  }
  .hscroll .division-inner { width: 100%; }
  .hscroll .division-logo, .hscroll .division-num { will-change: transform; }

  .hscroll-ui {
    position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 10px;
  }
  .hscroll-tabs { display: flex; gap: 0; padding: 4px; border-radius: var(--r-md); background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow); }
  .hscroll-tabs button {
    font: inherit; font-size: 13px; font-weight: 500; color: var(--text-2); white-space: nowrap;
    background: none; border: 0; cursor: pointer; padding: 8px 14px; border-radius: var(--r-sm);
    transition: color .2s, background .2s;
  }
  .hscroll-tabs button:hover { color: var(--ink); background: var(--surface); }
  .hscroll-tabs button.is-active { color: #fff; background: var(--ink); }
  .hscroll-bar { width: 220px; height: 2px; background: var(--line); overflow: hidden; }
  .hscroll-bar > span { display: block; height: 100%; background: var(--ink); transform-origin: left; transform: scaleX(0); }
}
@media (min-width: 961px) and (max-height: 820px) {
  .hscroll .division-title { font-size: clamp(28px, 3.2vw, 42px); margin: 12px 0 10px; }
  .hscroll .division-copy { font-size: 15px; line-height: 1.6; margin-bottom: 18px; }
  .hscroll .facts { margin-bottom: 18px; }
  .hscroll .logo-left { grid-template-columns: minmax(200px, 290px) minmax(0, 1fr); }
  .hscroll .logo-right { grid-template-columns: minmax(0, 1fr) minmax(200px, 290px); }
  .hscroll .rvalue { padding: 10px; }
  .hscroll .rvalue-num { font-size: 32px; }
}

/* ---------- Who we serve ---------- */
.serve-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.serve-card { display: flex; flex-direction: column; padding: 30px; text-decoration: none; color: var(--text); transition: border-color .2s, box-shadow .2s; }
.serve-card:hover { color: var(--text); border-color: var(--ink); box-shadow: var(--shadow); }
.serve-icon { width: 44px; height: 44px; border-radius: var(--r-md); display: grid; place-items: center; background: var(--surface); border: 1px solid var(--line); margin-bottom: 22px; }
.serve-icon svg { width: 22px; height: 22px; fill: none; stroke: var(--ink); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.serve-card h3 { font-size: 21px; margin-bottom: 10px; }
.serve-card p { font-size: 15px; line-height: 1.65; color: var(--text-2); margin: 0 0 22px; }
.serve-link { margin-top: auto; font-size: 14px; font-weight: 600; color: var(--ink); }

/* ---------- Signature lines & brands ---------- */
.partner-card.serve-card .eyebrow { font-size: 11px; margin-bottom: 14px; }
.brand-cloud { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(6, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); background: var(--paper); }
.brand-cloud li { display: grid; place-items: center; text-align: center; min-height: 84px; padding: 14px; font-size: 15px; font-weight: 600; letter-spacing: -.01em; color: var(--ink); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
@media (max-width: 960px) { .brand-cloud { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .brand-cloud { grid-template-columns: repeat(2, 1fr); } .brand-cloud li { font-size: 14px; min-height: 68px; } }

/* ---------- Numbers band ---------- */
#numbers { padding-top: 56px; }
.metrics--6 { margin-top: 0; grid-template-columns: repeat(6, 1fr); }
.metrics--6 strong { font-size: 30px; }
@media (max-width: 1180px) { .metrics.metrics--6 { grid-template-columns: repeat(3, 1fr); } .metrics.metrics--6 > div { border-left: 1px solid rgba(255, 255, 255, .14); border-top: 0; } .metrics.metrics--6 > div:nth-child(3n+1) { border-left: none; } .metrics.metrics--6 > div:nth-child(n+4) { border-top: 1px solid rgba(255, 255, 255, .14); } }
@media (max-width: 960px) { .metrics.metrics--6 { grid-template-columns: repeat(2, 1fr); } .metrics.metrics--6 > div { border-left: 1px solid rgba(255, 255, 255, .14); border-top: 0; } .metrics.metrics--6 > div:nth-child(odd) { border-left: none; } .metrics.metrics--6 > div:nth-child(n+3) { border-top: 1px solid rgba(255, 255, 255, .14); } }

/* ---------- Data tables ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--paper); }
.data-table { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 680px; }
.data-table th, .data-table td { text-align: left; padding: 16px 20px; border-bottom: 1px solid var(--line); vertical-align: top; }
.data-table tbody tr:last-child th, .data-table tbody tr:last-child td { border-bottom: 0; }
.data-table thead th { font-size: 11.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); background: var(--surface); }
.data-table tbody th { font-weight: 600; color: var(--ink); }
.data-table tbody th a { color: var(--ink); text-decoration: none; }
.data-table tbody th a:hover { color: var(--accent); text-decoration: underline; }
.data-table td { color: var(--text-2); }
.data-table .num { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
.data-table td.num { color: var(--ink); font-weight: 600; }
.data-table tbody tr:hover td, .data-table tbody tr:hover th { background: #fafbfb; }
.data-table--compare thead th.is-us { color: #fff; background: var(--ink); }
.data-table--compare td.is-us { color: var(--ink); font-weight: 600; background: #faf6ec; }
.data-table--compare tbody tr:hover td.is-us { background: #f5eedb; }
.table-notes { margin-top: 18px; display: grid; gap: 8px; max-width: 900px; }
.table-notes p { margin: 0; font-size: 14px; line-height: 1.65; color: var(--text-3); }
.table-notes strong { color: var(--ink); }
.table-notes .text-link { margin-top: 6px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---------- Reviews ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review { margin: 0; padding: 30px; display: flex; flex-direction: column; border-top: 3px solid var(--gold); }
.review blockquote { margin: 0 0 24px; }
.review blockquote p { margin: 0; font-size: 19px; line-height: 1.5; font-weight: 500; letter-spacing: -.01em; color: var(--ink); }
.review figcaption { margin-top: auto; display: grid; gap: 2px; font-size: 13.5px; color: var(--text-3); }
.review figcaption strong { color: var(--ink); font-weight: 600; }
.reviews-more { margin: 24px 0 0; }

/* ---------- Resources ---------- */
.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.resource { padding: 30px 28px; }
.resource h3 { font-size: 20px; margin: 14px 0 16px; }
.resource ul { list-style: none; margin: 0; padding: 0; display: grid; border-top: 1px solid var(--line); }
.resource li { border-bottom: 1px solid var(--line); }
.resource li a { display: flex; justify-content: space-between; gap: 12px; padding: 12px 0; font-size: 14.5px; font-weight: 500; color: var(--ink); text-decoration: none; }
.resource li a::after { content: "\2192"; color: var(--text-3); transition: transform .2s; }
.resource li a:hover { color: var(--accent); }
.resource li a:hover::after { transform: translateX(3px); color: var(--accent); }
@media (max-width: 960px) { .quote-grid, .resource-grid { grid-template-columns: 1fr; } }

/* ---------- Hero recognition line ---------- */
.hero-proof { list-style: none; margin: 30px 0 0; padding: 18px 0 0; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 10px 26px; }
.hero-proof a { font-size: 13px; color: var(--text-2); text-decoration: none; }
.hero-proof strong { color: var(--ink); font-weight: 600; margin-right: 4px; }
.hero-proof a:hover strong { color: var(--accent); }

/* ---------- Recognition & press ---------- */
.award-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.award { display: flex; flex-direction: column; padding: 30px; text-decoration: none; color: var(--text); border-top: 3px solid var(--gold); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.award:hover { color: var(--text); transform: translateY(-4px); box-shadow: 0 18px 40px -22px rgba(17, 20, 24, .35); }
.award-big { font-family: var(--serif); font-size: clamp(38px, 3.6vw, 52px); font-weight: 500; line-height: 1; color: var(--ink); }
.award-name { margin-top: 12px; font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.award p { margin: 14px 0 22px; font-size: 15px; line-height: 1.65; color: var(--text-2); }
.big-quote { margin: 56px 0; padding: 0 0 0 32px; border-left: 3px solid var(--gold); max-width: 900px; }
.big-quote blockquote { margin: 0; }
.big-quote p { margin: 0; font-family: var(--serif); font-style: italic; font-size: clamp(26px, 3vw, 40px); line-height: 1.3; color: var(--ink); }
.big-quote figcaption { margin-top: 14px; font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--text-3); }
.press { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 30px; }
.press-list { list-style: none; margin: 16px 0 0; padding: 0; border-top: 1px solid var(--line); }
.press-list li { display: grid; grid-template-columns: 260px 1fr; gap: 20px; align-items: baseline; padding: 14px 0; border-bottom: 1px solid var(--line); }
.press-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.press-src { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); }
.press-list a { font-family: var(--serif); font-size: 19px; color: var(--ink); text-decoration: none; }
.press-list a:hover { color: var(--accent); text-decoration: underline; }
@media (max-width: 960px) { .award-grid { grid-template-columns: 1fr; } .press-list li { grid-template-columns: 1fr; gap: 4px; } }
@media (max-width: 620px) { .big-quote { padding-left: 20px; margin: 40px 0; } .press { padding: 22px 20px; } .press-list a { font-size: 17px; } .hero-proof { gap: 8px 18px; } }

/* ---------- Timeline ---------- */
.timeline { list-style: none; margin: 0; padding: 0; max-width: 980px; position: relative; }
.timeline::before { content: ""; position: absolute; top: 10px; bottom: 10px; left: 120px; width: 1px; background: var(--line-2); }
.tl-item { display: grid; grid-template-columns: 120px 1fr; gap: 40px; align-items: start; padding: 0 0 18px; position: relative; }
.tl-item::before { content: ""; position: absolute; left: 116px; top: 24px; width: 9px; height: 9px; background: var(--gold); }
.tl-year { font-size: 22px; font-weight: 600; letter-spacing: -.02em; color: var(--ink); padding-top: 14px; text-align: right; padding-right: 26px; font-variant-numeric: tabular-nums; }
.tl-card { padding: 22px 26px; }
.tl-card h3 { font-size: 19px; margin-bottom: 6px; }
.tl-card p { margin: 0; font-size: 15px; line-height: 1.65; color: var(--text-2); }
.tl-card--now { border-color: var(--ink); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 72px; align-items: start; }
.about-copy { font-size: 17px; line-height: 1.78; color: var(--text-2); max-width: 62ch; margin: 22px 0 0; }
.quote { margin: 36px 0 0; padding: 26px 30px; border-left: 3px solid var(--gold); }
.quote p { margin: 0; font-family: var(--serif); font-style: italic; font-size: 22px; line-height: 1.5; color: var(--ink); }
.quote footer { margin-top: 14px; font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--text-3); }

.about-side { display: grid; gap: 18px; position: sticky; top: 110px; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--paper); overflow: hidden; }
.stat { padding: 26px; border: 0; border-radius: 0; }
.stats .stat:nth-child(even) { border-left: 1px solid var(--line); }
.stats .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
.stat-num { font-size: clamp(38px, 4vw, 54px); font-weight: 600; letter-spacing: -.035em; line-height: 1; font-variant-numeric: tabular-nums; color: var(--ink); }
.stat-label { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; margin-top: 12px; color: var(--text-3); }

.standard { padding: 28px 30px; }
.standard-list { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 14px; }
.standard-list li { font-size: 15px; line-height: 1.6; color: var(--text-2); padding-left: 28px; position: relative; }
.standard-list li::before { content: ""; position: absolute; left: 0; top: 7px; width: 14px; height: 8px; border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(-45deg); }
.standard-list strong { color: var(--ink); font-weight: 600; }

/* ---------- Sustainability ---------- */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pillar { padding: 30px 26px; }
.pillar-mark { font-size: 14px; font-weight: 600; letter-spacing: .1em; color: var(--accent); }
.pillar h3 { font-size: 20px; margin: 14px 0 12px; }
.pillar p { margin: 0; font-size: 15px; line-height: 1.65; color: var(--text-2); }
.metrics { margin-top: 20px; display: grid; grid-template-columns: repeat(4, 1fr); padding: 0; background: var(--ink); border-color: var(--ink); }
.metrics > div { padding: 26px 22px; text-align: center; }
.metrics > div + div { border-left: 1px solid rgba(255, 255, 255, .14); }
.metrics strong { display: block; font-weight: 600; font-size: 32px; letter-spacing: -.03em; color: #fff; }
.metrics span { font-size: 11.5px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: rgba(255, 255, 255, .62); }

/* ---------- Work with us ---------- */
.partner-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.partner-card { padding: 30px 26px; display: flex; flex-direction: column; }
.partner-card h3 { font-size: 20px; margin-bottom: 12px; }
.partner-card p { font-size: 15px; line-height: 1.65; color: var(--text-2); margin: 0 0 24px; }
.text-link { margin-top: auto; font-size: 14px; font-weight: 600; text-decoration: none; color: var(--ink); }
.text-link:hover { color: var(--accent); }

/* ---------- FAQ ---------- */
.faq-wrap { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 64px; align-items: start; }
.faq-head { position: sticky; top: 120px; }
.faq-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq { border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: none; }
.faq summary { list-style: none; cursor: pointer; padding: 22px 56px 22px 0; font-size: 16.5px; font-weight: 600; color: var(--ink); position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; display: grid; place-items: center; border-radius: var(--r-sm);
  border: 1px solid var(--line-2); color: var(--ink); font-size: 18px; font-weight: 400; transition: transform .25s;
}
.faq[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq p { margin: 0; padding: 0 56px 24px 0; font-size: 15px; line-height: 1.7; color: var(--text-2); }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 0; padding: 0; border-radius: var(--r-lg); overflow: hidden; }
.contact-info { padding: clamp(32px, 5vw, 64px); }
.contact-list { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 28px; margin: 34px 0 36px; }
.contact-list dt { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--text-3); margin-bottom: 6px; }
.contact-list dd { margin: 0; font-size: 16px; line-height: 1.55; }
.contact-list a { text-decoration: none; }
.contact-map { position: relative; min-height: 420px; border-left: 1px solid var(--line); }
.contact-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(1); }

.door-links { display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 10px; margin-top: 28px; }
.door-links a {
  text-decoration: none; color: var(--ink); font-size: 14px; font-weight: 500; padding: 10px 16px; border-radius: var(--r-sm);
  border: 1px solid var(--line-2); background: var(--paper); transition: background .2s, color .2s, border-color .2s;
}
.door-links a:hover { color: #fff; background: var(--ink); border-color: var(--ink); }

/* ---------- Footer ---------- */
.site-footer { margin-top: 120px; padding: 72px 0 40px; background: var(--ink); color: rgba(255, 255, 255, .72); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand img { width: 140px; height: auto; margin-bottom: 18px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255, 255, 255, .6); max-width: 34ch; margin: 0; }
.site-footer .footer-h { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 18px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer ul a, .site-footer address a { color: rgba(255, 255, 255, .78); text-decoration: none; font-size: 14px; }
.site-footer ul a:hover, .site-footer address a:hover { color: #fff; }
.site-footer address { font-style: normal; font-size: 14px; line-height: 1.9; color: rgba(255, 255, 255, .78); }
.footer-bottom { margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .12); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: rgba(255, 255, 255, .55); }
.footer-bottom a { color: rgba(255, 255, 255, .55); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* =========================================================
   Team page
   ========================================================= */
.page-hero { padding-top: 96px; padding-bottom: 40px; text-align: left; max-width: 1280px; }
.page-hero .hero-title { font-size: clamp(40px, 5vw, 72px); margin: 22px 0 20px; max-width: 18ch; }
.page-hero .hero-lede { margin: 0; }

.leader { display: grid; grid-template-columns: minmax(260px, 380px) minmax(0, 1fr); gap: 0; border-radius: var(--r-lg); overflow: hidden; padding: 0; }
.leader-photo { position: relative; min-height: 420px; background: var(--ink); display: grid; place-items: center; }
.leader-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.leader-body { padding: clamp(32px, 5vw, 60px); }
.leader-body h2 { font-size: clamp(30px, 3.2vw, 44px); margin: 14px 0 6px; }
.leader-role { font-size: 15px; font-weight: 500; color: var(--accent); margin-bottom: 22px; }
.leader-body p { font-size: 16.5px; line-height: 1.78; color: var(--text-2); margin: 0 0 16px; max-width: 62ch; }

.monogram { font-family: var(--serif); font-size: 84px; letter-spacing: .02em; color: var(--gold-light); }

.leader-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 26px 0 0; max-width: 560px; border-top: 1px solid var(--line); }
.leader-facts > div { padding: 14px 16px 0 0; }
.leader-facts > div + div { padding-left: 16px; border-left: 1px solid var(--line); }
.leader-facts dt { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--text-3); margin-bottom: 4px; }
.leader-facts dd { margin: 0; font-family: var(--serif); font-size: 24px; color: var(--ink); }
@media (max-width: 520px) { .leader-facts dd { font-size: 19px; } .leader-facts > div + div { padding-left: 10px; } }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.member { padding: 24px; display: flex; flex-direction: column; }
.member-photo { width: 100%; aspect-ratio: 4 / 3.4; border-radius: var(--r-md); overflow: hidden; display: grid; place-items: center; margin-bottom: 22px; background: var(--surface); border: 1px solid var(--line); }
.member-photo img { width: 100%; height: 100%; object-fit: cover; }
.member-photo .monogram { font-size: 52px; color: var(--tint, var(--ink)); }
.member-division { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.member h3 { font-size: 20px; margin: 8px 0 4px; }
.member-role { font-size: 14px; color: var(--text-2); margin-bottom: 14px; }
.member p { font-size: 14.5px; line-height: 1.65; color: var(--text-3); margin: 0; }
.member.is-placeholder h3, .member.is-placeholder .member-role { color: var(--text-3); font-style: italic; font-weight: 500; }

.culture { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.culture .pillar h3 { font-size: 21px; }

.join { text-align: left; padding: clamp(40px, 6vw, 72px); border-radius: var(--r-lg); background: var(--ink); border-color: var(--ink); }
.join .section-title { max-width: 22ch; color: #fff; }
.join .section-sub { color: rgba(255, 255, 255, .72); }
.join .btn-row { justify-content: flex-start; margin-top: 32px; }
.join .btn-gold { background: #fff; color: var(--ink); border-color: #fff; }
.join .btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--ink); }
.join .btn-glass { color: #fff; border-color: rgba(255, 255, 255, .35); }
.join .btn-glass:hover { border-color: #fff; color: #fff; }

/* =========================================================
   Process & showroom (home)
   ========================================================= */
.process { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; position: relative; }
.process::before { content: ""; position: absolute; left: 0; right: 0; top: 23px; height: 1px; background: var(--line-2); }
.process-step { position: relative; text-align: left; padding: 0 6px 0 0; }
.process-dot {
  position: relative; z-index: 1; width: 46px; height: 46px; margin: 0 0 20px; border-radius: var(--r-sm);
  display: grid; place-items: center; font-size: 16px; font-weight: 600; color: #fff; background: var(--ink);
}
.process-cta { justify-content: flex-start; margin-top: 44px; }
.process-step h3 { font-size: 19px; margin-bottom: 10px; }
.process-step p { margin: 0; font-size: 14.5px; line-height: 1.65; color: var(--text-2); }

.showroom { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); border-radius: var(--r-lg); overflow: hidden; padding: 0; }
.showroom-body { padding: clamp(32px, 5vw, 64px); }
.showroom-body .section-sub { margin-bottom: 28px; }
.showroom-list { list-style: none; padding: 0; margin: 0 0 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.showroom-list li { font-size: 15px; color: var(--text-2); padding-left: 22px; position: relative; }
.showroom-list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; background: var(--gold); }
.showroom-side {
  position: relative; padding: clamp(32px, 5vw, 56px); background: var(--ink); color: rgba(255, 255, 255, .78);
  display: flex; flex-direction: column; justify-content: center; gap: 22px;
}
.showroom-side .eyebrow { color: var(--gold-light); }
.showroom-side .eyebrow::before { background: var(--gold-light); }
.showroom-side address { font-style: normal; font-size: 24px; font-weight: 600; letter-spacing: -.02em; line-height: 1.35; color: #fff; }
.showroom-side a { color: #fff; }
.showroom-side .hours th, .showroom-side .hours td { border-top-color: rgba(255, 255, 255, .14); }
.showroom-side .hours th { color: rgba(255, 255, 255, .7); }

/* =========================================================
   Showroom & trade pages
   ========================================================= */
.page-hero .btn-row { margin-top: 8px; }
.page-hero + .container .metrics { margin-top: 8px; }
.metrics strong { white-space: nowrap; }

/* Map-first showroom card */
.showroom .contact-map { border-left: 0; min-height: 440px; }

/* Buttons on the dark showroom panel */
.btn-on-dark.btn-gold { background: #fff; color: var(--ink); border-color: #fff; }
.btn-on-dark.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--ink); }
.btn-on-dark.btn-glass { color: #fff; border-color: rgba(255, 255, 255, .35); }
.btn-on-dark.btn-glass:hover { color: #fff; border-color: #fff; }

/* Compact timeline beside text */
.timeline--compact { max-width: none; }
.timeline--compact::before { left: 70px; }
.timeline--compact .tl-item { grid-template-columns: 70px 1fr; gap: 28px; padding-bottom: 12px; }
.timeline--compact .tl-item::before { left: 66px; }
.timeline--compact .tl-year { font-size: 18px; padding-right: 18px; }
.timeline--compact .tl-card { padding: 16px 20px; }
.timeline--compact .tl-card h3 { font-size: 16.5px; margin-bottom: 4px; }
.timeline--compact .tl-card p { font-size: 14px; }

/* Check lists inside resource cards */
.resource .standard-list { border-top: 0; gap: 12px; margin: 0; }
.resource .standard-list li { border-bottom: 0; font-size: 14.5px; }
.resource .text-link { display: inline-block; margin-top: 20px; }

/* =========================================================
   Contact page
   ========================================================= */
.section--tight { padding-top: 40px; }
.contact-layout { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(280px, 1fr); gap: 24px; align-items: start; }
.form-card { padding: clamp(28px, 4vw, 48px); border-radius: var(--r-lg); }
.form-head h2 { font-size: clamp(26px, 2.4vw, 34px); }
.form-head p { margin: 10px 0 30px; font-size: 14.5px; color: var(--text-3); }
.req { color: #b4452f; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; align-content: start; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 15.5px; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line-2); border-radius: var(--r-sm);
  padding: 13px 14px; outline: none; transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none; appearance: none;
}
.field textarea { resize: vertical; min-height: 150px; line-height: 1.6; }
.field input::placeholder, .field textarea::placeholder { color: #9aa0a8; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #aab1b9; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(17, 20, 24, .1); }
.field.is-invalid input, .field.is-invalid textarea { border-color: #c2412d; box-shadow: 0 0 0 3px rgba(194, 65, 45, .12); }
.field-error { font-size: 12.5px; color: #b4452f; }
.select-wrap { position: relative; }
.select-wrap::after { content: ""; position: absolute; right: 16px; top: 50%; width: 8px; height: 8px; border-right: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink); transform: translateY(-70%) rotate(45deg); pointer-events: none; }
.field select { padding-right: 42px; cursor: pointer; }
.field select option { background: #fff; color: var(--ink); }

.hp { position: absolute !important; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.form-foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 26px; flex-wrap: wrap; }
.form-note { margin: 0; font-size: 13px; color: var(--text-3); max-width: 46ch; }
.btn-submit { border: none; }
.btn-submit[disabled] { opacity: .65; cursor: progress; }
.btn-submit.is-loading .btn-arrow { animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-status { margin-top: 18px; font-size: 14.5px; border-radius: var(--r-sm); }
.form-status:not(:empty) { padding: 14px 16px; background: #fbeeeb; border: 1px solid #efc4bb; color: #8f2f1f; }

.form-success { text-align: center; padding: 40px 10px; }
.form-success h2 { font-size: 34px; margin: 22px 0 12px; }
.form-success p { color: var(--text-2); font-size: 16px; line-height: 1.7; max-width: 46ch; margin: 0 auto 28px; }
.success-icon { width: 64px; height: 64px; margin: 0 auto; border-radius: 50%; display: grid; place-items: center; background: var(--ink); }
.success-icon svg { width: 28px; height: 28px; fill: none; stroke: #fff; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

.contact-aside { display: grid; gap: 16px; }
.info-card { padding: 26px 28px; }
.info-card p { margin: 6px 0 0; font-size: 14px; color: var(--text-3); }
.info-card address { font-style: normal; font-size: 16px; line-height: 1.6; margin: 12px 0 16px; }
.info-big { display: block; margin-top: 10px; font-size: 26px; font-weight: 600; letter-spacing: -.02em; color: var(--ink); text-decoration: none; }
.info-big--sm { font-size: 17px; font-weight: 600; word-break: break-all; }
.info-big:hover { color: var(--accent); }
.hours { width: 100%; border-collapse: collapse; margin-bottom: 18px; font-size: 14.5px; }
.hours th, .hours td { padding: 9px 0; border-top: 1px solid var(--line); }
.hours th { text-align: left; font-weight: 400; color: var(--text-2); }
.hours td { text-align: right; }

.map-card { padding: 0; height: 420px; border-radius: var(--r-lg); overflow: hidden; }
.map-card iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(1); }

.direct-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.direct-card { display: flex; align-items: center; gap: 18px; padding: 14px 20px 14px 14px; text-decoration: none; color: var(--text); transition: border-color .2s, box-shadow .2s; }
.direct-card:hover { color: var(--text); border-color: var(--ink); box-shadow: var(--shadow); }
.direct-card img { width: 60px; height: 60px; border-radius: var(--r-sm); object-fit: cover; flex: none; }
.direct-card h3 { font-size: 16.5px; }
.direct-card p { margin: 3px 0 0; font-size: 13.5px; color: var(--text-3); }
.direct-card .btn-arrow { margin-left: auto; color: var(--ink); }
.direct-card:hover .btn-arrow { transform: translateX(3px); }

/* =========================================================
   Simple pages (privacy, 404)
   ========================================================= */
.prose { max-width: 780px; margin: 0 auto; padding: clamp(28px, 5vw, 56px); border-radius: var(--r-lg); }
.prose h2 { font-size: 22px; margin: 34px 0 12px; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { font-size: 16px; line-height: 1.75; color: var(--text-2); }
.prose ul { padding-left: 20px; }
.notfound { text-align: center; padding-top: 110px; padding-bottom: 40px; }
.notfound .eyebrow, .notfound .pill { justify-content: center; }
.big-404 { font-size: clamp(110px, 18vw, 200px); font-weight: 700; letter-spacing: -.06em; line-height: 1; color: var(--ink); }
.notfound .btn-row { justify-content: center; margin-top: 30px; }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .site-nav a:not(.btn) { padding: 10px 9px; font-size: 13.5px; }
  .chain, .pillars, .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .chain-step:nth-child(3) { border-left: 0; }
  .chain-step:nth-child(n+3) { border-top: 1px solid var(--line); }
  .facts { grid-template-columns: 1fr; max-width: 460px; }
  .logo-strip { flex-direction: column; align-items: stretch; gap: 14px; }
  .logo-strip ul { grid-template-columns: repeat(3, 1fr); }
  .facts > div, .facts > div + div { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 10px 0; border-left: 0; border-bottom: 1px solid var(--rule); }
  .facts dt { margin: 0; }
}

@media (max-width: 960px) {
  :root { --gutter: 20px; }
  html { scroll-padding-top: 80px; }

  .header-shell { height: auto; min-height: 66px; flex-wrap: wrap; padding: 10px 0; }
  .nav-toggle { display: flex; }
  .site-nav { order: 3; width: 100%; flex-direction: column; align-items: stretch; gap: 0; margin: 0; padding: 6px 0 12px; display: none; border-top: 1px solid var(--line); }
  .site-nav.is-open { display: flex; }
  .site-nav a:not(.btn) { padding: 14px 4px; font-size: 16px; border-bottom: 1px solid var(--line); }
  .site-nav a:not(.btn)::after { display: none; }
  .nav-phone { margin: 12px 0 0; justify-content: center; }

  .hero { grid-template-columns: 1fr; padding-top: 56px; padding-bottom: 64px; gap: 40px; }
  .hero-visual { max-width: 480px; width: 100%; }


  .section { padding-top: 80px; }
  #model, #serve, #homes, #free, #history, #recognition, #compare, #partner, #faq, #building, #trade-process { padding-bottom: 80px; }
  .section-intro { padding-top: 80px; padding-bottom: 32px; }
  .section-head { margin-bottom: 36px; }

  .division-inner, .logo-left, .logo-right { grid-template-columns: 1fr; gap: 32px; }
  .logo-right > .division-logo { order: -1; }
  .division-logo, .division-inner > div:first-child:not(.division-body) { max-width: 300px; }

  .serve-grid, .team-grid, .culture { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .faq-wrap { grid-template-columns: 1fr; gap: 48px; }
  .about-side, .faq-head { position: static; }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .metrics > div:nth-child(3) { border-left: none; }
  .metrics > div:nth-child(n+3) { border-top: 1px solid rgba(255, 255, 255, .14); }

  .contact { grid-template-columns: 1fr; }
  .contact-map { min-height: 320px; border-left: none; border-top: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }

  .leader { grid-template-columns: minmax(0, 1fr); }
  .process { grid-template-columns: 1fr 1fr; gap: 34px 18px; }
  .process::before { display: none; }
  .showroom { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .direct-grid { grid-template-columns: 1fr 1fr; }
  .map-card { height: 320px; }
  .leader-photo { min-height: 300px; }
}

@media (max-width: 620px) {
  .brand-text { display: none; }
  .logo-strip ul { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: clamp(38px, 11vw, 54px); }
  .chain, .pillars, .partner-grid, .serve-grid, .team-grid, .culture { grid-template-columns: 1fr; }
  .chain-step + .chain-step, .chain-step:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .timeline::before { left: 4px; }
  .tl-item { grid-template-columns: 1fr; gap: 8px; padding-left: 28px; }
  .tl-item::before { left: 0; top: 8px; }
  .tl-year { text-align: left; padding: 0; font-size: 20px; }
  .contact-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .showroom-list { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-foot { flex-direction: column; align-items: stretch; }
  .btn-submit { justify-content: center; }
  .direct-grid { grid-template-columns: 1fr; }
  .stats .stat:nth-child(even) { border-left: 1px solid var(--line); }
}

/* =========================================================
   Finishing layer: editorial serif display type, hairline gold details,
   refined hover states. Loaded last so it refines the base styles above.
   ========================================================= */
.hero-title, .section-title, .division-title, .leader-body h2, .form-head h2, .form-success h2 {
  font-family: var(--serif); font-weight: 500; letter-spacing: -.015em; text-wrap: balance;
}
.hero-title { font-size: clamp(46px, 5.8vw, 88px); line-height: 1.02; }
.section-title { font-size: clamp(32px, 3.6vw, 52px); line-height: 1.1; }
.division-title { letter-spacing: -.01em; }
.gold-text { font-family: var(--serif); font-style: italic; font-weight: 500; color: var(--accent); }
.section-sub, .hero-lede { text-wrap: pretty; }

/* Hero: faint architectural grid that fades out */
.hero { position: relative; isolation: isolate; }
.hero::before {
  content: ""; position: absolute; z-index: -1; top: 0; bottom: 0; left: 50%; width: 100vw; transform: translateX(-50%);
  background-image: linear-gradient(to right, rgba(17, 20, 24, .05) 1px, transparent 1px), linear-gradient(to bottom, rgba(17, 20, 24, .05) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 72% 45%, #000 20%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 80% at 72% 45%, #000 20%, transparent 75%);
  pointer-events: none;
}
/* Hero card: gold hairline inner frame */
.hero-card::after { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(232, 211, 164, .22); border-radius: 4px; pointer-events: none; }
.hero-card-stats strong, .metrics strong { font-family: var(--serif); font-weight: 500; letter-spacing: 0; color: var(--gold-light); }
.stat-num { font-family: var(--serif); font-weight: 500; letter-spacing: -.01em; }
.tl-year { font-family: var(--serif); font-weight: 500; }
.big-404 { font-family: var(--serif); font-weight: 500; }

/* Header tightens on scroll */
.header-shell { transition: height .3s var(--ease); }
.site-header.is-scrolled .header-shell { height: 64px; }

/* Cards: lift + gold rule on hover */
.serve-card, .partner-card, .resource, .pillar, .member, .tl-card, .info-card { transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .25s; }
.serve-card::after, .partner-card::after, .resource::after, .pillar::after, .member::after {
  content: ""; position: absolute; left: -1px; right: -1px; top: -1px; height: 2px; border-radius: var(--r-lg) var(--r-lg) 0 0;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease);
}
@media (hover: hover) {
  .serve-card:hover, .partner-card:hover, .resource:hover, .pillar:hover, .member:hover {
    transform: translateY(-4px); box-shadow: 0 18px 40px -22px rgba(17, 20, 24, .35); border-color: var(--line-2);
  }
  .serve-card:hover::after, .partner-card:hover::after, .resource:hover::after, .pillar:hover::after, .member:hover::after { transform: scaleX(1); }
  a.serve-card:hover, a.partner-card:hover { border-color: var(--line-2); }
}

/* Buttons: crisper primary */
.btn-gold { box-shadow: 0 10px 24px -14px rgba(17, 20, 24, .55); }
.btn-gold .btn-arrow { color: var(--gold-light); }
.btn-on-dark.btn-gold .btn-arrow, .join .btn-gold .btn-arrow { color: var(--ink); }

/* Quote and reviews in serif */
.review blockquote p { font-family: var(--serif); font-weight: 400; font-style: italic; font-size: 21px; letter-spacing: 0; }

/* Footer: gold hairline + serif sign-off feel */
.site-footer { position: relative; }
.site-footer::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent); opacity: .7; }

/* ---------- Mobile polish ---------- */
@media (max-width: 960px) {
  .hero::before { -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 70%, #000 15%, transparent 70%); mask-image: radial-gradient(ellipse 90% 60% at 50% 70%, #000 15%, transparent 70%); }
  .site-header.is-scrolled .header-shell { height: auto; }
  .page-hero { padding-top: 64px; }
  .showroom .contact-map { min-height: 300px; }
}
@media (max-width: 620px) {
  :root { --gutter: 18px; }
  .hero { padding-top: 40px; padding-bottom: 56px; }
  .hero-title { font-size: clamp(40px, 11.5vw, 54px); }
  .section-title { font-size: clamp(28px, 8vw, 36px); }
  .section { padding-top: 64px; }
  .section-head { margin-bottom: 28px; }
  .hero-card { padding: 24px; }
  .hero-card-stats strong { font-size: 24px; }
  .hero-card-stats span { font-size: 11px; letter-spacing: .06em; }
  .btn-row .btn { flex: 1 1 auto; justify-content: center; }
  .division { padding: 28px 22px 32px; }
  .division-title { font-size: 32px; }
  .division-copy { font-size: 15.5px; }
  .division-num { font-size: 120px; }
  .metrics > div { padding: 20px 12px; }
  .metrics strong { font-size: 24px; }
  .metrics span { font-size: 11px; letter-spacing: .06em; }
  .facts dt, .rvalue-label, .stat-label, .contact-list dt, .member-division { font-size: 11px; }
  .data-table th, .data-table td { padding: 12px 14px; font-size: 14px; }
  .serve-card, .partner-card, .resource, .pillar { padding: 24px 22px; }
  .review blockquote p { font-size: 19px; }
  .faq summary { font-size: 15.5px; }
  .showroom-side address { font-size: 21px; }
  .logo-strip { padding: 18px 20px; }
  .footer-grid { gap: 32px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001s !important; animation-delay: 0s !important; animation-iteration-count: 1 !important; transition-duration: .001s !important; }
  .js .reveal { opacity: 1; transform: none; }
}
