/* RK Parisi Enterprises — corporate site
   Direction: deep ink ground, soft ambient light, frosted-glass surfaces, gold accents. */

:root {
  --ink: #141312;
  --ink-2: #1c1a19;
  --paper: #f7f5f2;
  --gold: #c9a96a;
  --gold-light: #e8d3a4;
  --gold-deep: #a5822f;
  --gold-grad: linear-gradient(135deg, #f0dfb6 0%, #c9a96a 45%, #a5822f 100%);

  --text: #f7f5f2;
  --text-2: rgba(247, 245, 242, .72);
  --text-3: rgba(247, 245, 242, .5);
  --line: rgba(255, 255, 255, .09);

  --glass-bg: linear-gradient(180deg, rgba(255, 255, 255, .07) 0%, rgba(255, 255, 255, .025) 100%);
  --glass-border: rgba(255, 255, 255, .11);
  --glass-shadow: inset 0 1px 0 rgba(255, 255, 255, .09), 0 24px 60px -24px rgba(0, 0, 0, .7);
  --blur: blur(22px) saturate(160%);

  --r-xl: 32px;
  --r-lg: 24px;
  --r-md: 16px;
  --r-sm: 12px;

  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --gutter: 40px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0; background: var(--ink); color: var(--text);
  font-family: var(--sans); font-weight: 400; line-height: 1.5;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--gold-light); text-underline-offset: 3px; transition: color .25s; }
a:hover { color: #fff; }
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 6px; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; margin: 0; }
::selection { background: rgba(201, 169, 106, .35); color: #fff; }

.container { max-width: 1320px; margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

.skip-link { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--gold); color: var(--ink); padding: 10px 16px; border-radius: 8px; font-weight: 600; }
.skip-link:focus { top: 12px; }

/* ---------- Ambient light & grain ---------- */
.ambient { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; opacity: .6; }
.orb--gold { width: 46vw; height: 46vw; top: -14vw; right: -10vw; background: radial-gradient(circle, rgba(201, 169, 106, .55), transparent 70%); }
.orb--violet { width: 40vw; height: 40vw; bottom: -12vw; left: -12vw; background: radial-gradient(circle, rgba(92, 64, 140, .5), transparent 70%); }
.orb--blue { width: 32vw; height: 32vw; top: 40%; left: 45%; background: radial-gradient(circle, rgba(58, 102, 140, .32), transparent 70%); }
.grain {
  position: fixed; inset: 0; z-index: 90; pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Glass primitive ---------- */
.glass {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--r-lg);
}
/* Real frosted blur only where content scrolls underneath (keeps the GPU cool) */
.header-shell, .hero-card, .float-chip, .pill, .hscroll-tabs {
  -webkit-backdrop-filter: var(--blur); backdrop-filter: var(--blur);
}
/* Cursor-follow highlight (JS sets --mx / --my) */
.spotlight { overflow: hidden; }
.spotlight::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(232, 211, 164, .13), transparent 60%);
  opacity: 0; transition: opacity .4s;
}
.spotlight:hover::before { opacity: 1; }

.gold-text { font-style: italic; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; padding-right: .06em; }

/* ---------- Motion ---------- */
@keyframes rise { from { opacity: 0; transform: translateY(30px); filter: blur(6px); } to { opacity: 1; transform: none; filter: none; } }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(120, 220, 160, .55); } 100% { box-shadow: 0 0 0 10px rgba(120, 220, 160, 0); } }

.rise { animation: rise 1.1s var(--d, 0s) var(--ease) both; }
.js .reveal { opacity: 0; transform: translateY(30px); transition: opacity 1s var(--ease) var(--d, 0s), transform 1s var(--ease) var(--d, 0s); }
.js .reveal.is-in { opacity: 1; transform: none; }

.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 60; background: var(--gold-grad); transform-origin: left; transform: scaleX(0); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; padding: 16px var(--gutter) 0; animation: fade .8s both; }
.header-shell {
  max-width: 1320px; margin: 0 auto; display: flex; align-items: center; gap: 24px;
  padding: 10px 12px 10px 22px; border-radius: 999px; transition: background .4s, box-shadow .4s;
}
.site-header.is-scrolled .header-shell { background: linear-gradient(180deg, rgba(28, 26, 25, .78), rgba(20, 19, 18, .7)); }

.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--text); }
.brand:hover { color: var(--text); }
.brand img { height: 34px; width: auto; }
.brand-text { display: block; border-left: 1px solid var(--line); padding-left: 14px; }
.brand-name { display: block; font-family: var(--serif); font-weight: 500; font-size: 16px; line-height: 1.1; }
.brand-est { display: block; font-size: 10px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }

.site-nav { margin-left: auto; display: flex; align-items: center; gap: 2px; }
.site-nav a:not(.btn) {
  text-decoration: none; color: var(--text-2); font-size: 13.5px; font-weight: 500;
  padding: 10px 14px; border-radius: 999px; transition: color .25s, background .25s;
}
.site-nav a:not(.btn):hover, .site-nav a.is-active { color: var(--text); background: rgba(255, 255, 255, .07); }
.nav-phone { margin-left: 8px; }

.nav-toggle {
  display: none; margin-left: auto; width: 44px; height: 44px; padding: 14px 12px; border-radius: 50%;
  background: rgba(255, 255, 255, .06); border: 1px solid var(--glass-border); cursor: pointer;
  flex-direction: column; justify-content: space-between;
}
.nav-toggle span { display: block; height: 1.5px; background: var(--text); 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: 14px; font-weight: 500; letter-spacing: .01em;
  padding: 15px 26px; border-radius: 999px; border: 1px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s, background .3s, color .3s, border-color .3s;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: 11px 18px; font-size: 13px; }
.btn-gold { color: #1a1508; background: var(--gold-grad); box-shadow: 0 10px 30px -10px rgba(201, 169, 106, .6), inset 0 1px 0 rgba(255, 255, 255, .4); }
.btn-gold:hover { color: #1a1508; box-shadow: 0 16px 40px -12px rgba(201, 169, 106, .8), inset 0 1px 0 rgba(255, 255, 255, .5); }
.btn-glass { color: var(--text); background: rgba(255, 255, 255, .06); border-color: var(--glass-border); }
.btn-glass:hover { color: var(--text); background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .22); }
.btn-arrow { display: inline-block; transition: transform .3s var(--ease); }
a:hover .btn-arrow { transform: translateX(4px); }

/* ---------- Type helpers ---------- */
.eyebrow { font-size: 12px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
.section { padding-top: 120px; padding-bottom: 20px; }
.section-head { text-align: center; max-width: 820px; margin: 0 auto 56px; }
.section-title { font-size: clamp(32px, 4vw, 56px); line-height: 1.08; letter-spacing: -.02em; margin-top: 18px; }
.section-title--left { text-align: left; }
.section-sub { font-size: 17px; line-height: 1.7; color: var(--text-2); margin: 20px auto 0; max-width: 60ch; }
.section-sub--left { margin-left: 0; }

/* ---------- Pills & chips ---------- */
.pill { display: inline-flex; align-items: center; gap: 10px; padding: 9px 16px; border-radius: 999px; font-size: 13px; color: var(--text-2); }
.pill-dot, .live-dot { width: 7px; height: 7px; border-radius: 50%; background: #78dca0; animation: pulse 2s infinite; }

/* ---------- Hero ---------- */
.hero { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, 1fr); gap: 72px; align-items: center; padding-top: 96px; padding-bottom: 72px; }
.hero-title { font-size: clamp(48px, 6.4vw, 100px); line-height: 1.02; letter-spacing: -.03em; margin: 28px 0 28px; }
.hero-title > span { display: block; }
.hero-lede { font-size: clamp(16px, 1.3vw, 19px); line-height: 1.7; color: var(--text-2); max-width: 54ch; margin: 0 0 38px; font-weight: 300; }

.hero-visual { position: relative; padding: 30px 10px; }
.hero-card { padding: 28px; border-radius: var(--r-xl); animation: float 9s ease-in-out infinite; }
.hero-card-top { display: flex; align-items: center; justify-content: space-between; }
.hero-mark { width: min(300px, 80%); margin: 30px auto 34px; filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .5)); }
.hero-card-stats { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.hero-card-stats > div { padding: 18px 8px 4px; text-align: center; }
.hero-card-stats > div + div { border-left: 1px solid var(--line); }
.hero-card-stats strong { display: block; font-family: var(--serif); font-weight: 500; font-size: 28px; }
.hero-card-stats span { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-3); }

.float-chip { position: absolute; display: flex; align-items: center; gap: 10px; padding: 11px 16px; border-radius: 999px; font-size: 13px; color: var(--text-2); white-space: nowrap; }
.chip-k { font-weight: 600; color: var(--gold-light); }
.chip-a { top: 0; left: -24px; animation: float 7s -2s ease-in-out infinite; }
.chip-b { bottom: 4px; right: -16px; animation: float 8s -5s ease-in-out infinite; }

/* ---------- Logo strip ---------- */
.logo-strip { display: flex; align-items: center; gap: 28px; padding: 20px 28px; border-radius: 999px; }
.logo-strip-label { flex: none; font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--text-3); }
.logo-strip ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 28px; flex: 1; }
.logo-strip li { font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--text-2); }

/* ---------- Integrated model ---------- */
.chain { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.chain-step { padding: 30px 26px; display: flex; flex-direction: column; }
.chain-num { font-family: var(--serif); font-size: 15px; color: var(--gold); letter-spacing: .1em; }
.chain-step h3 { font-size: 28px; 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; padding: 6px 11px; border-radius: 999px; background: rgba(201, 169, 106, .12); border: 1px solid rgba(201, 169, 106, .25); color: var(--gold-light); }
.chain-step:not(:last-child)::after {
  content: "→"; position: absolute; right: -15px; top: 34px; z-index: 2; width: 26px; height: 26px; display: grid; place-items: center;
  font-size: 13px; color: var(--gold); background: var(--ink-2); border: 1px solid var(--glass-border); border-radius: 50%;
}
.chain-step.spotlight { overflow: visible; }

/* ---------- Portfolio (stacked brand cards) ---------- */
.section-intro { text-align: center; max-width: 860px; padding-top: 120px; padding-bottom: 56px; }
.portfolio { max-width: 1320px; margin: 0 auto; padding: 0 var(--gutter); display: grid; gap: 28px; }

.division {
  --fg: var(--paper); --bg: #0d0d0c; --accent: var(--gold);
  --rule: rgba(255, 255, 255, .14); --label: rgba(255, 255, 255, .55); --copy: rgba(255, 255, 255, .76);
  --frame: rgba(255, 255, 255, .16); --num: rgba(255, 255, 255, .05);
  --cta-fg: var(--bg); --cta-bg: var(--paper);

  position: relative; overflow: hidden; border-radius: var(--r-xl);
  background: var(--bg); color: var(--fg);
  padding: clamp(40px, 6vw, 84px);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, .8), inset 0 1px 0 rgba(255, 255, 255, .12);
}
/* glass sheen + accent glow */
.division::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 80% at 100% 0%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 70%),
    linear-gradient(135deg, rgba(255, 255, 255, .09) 0%, transparent 35%);
}
.division-num { position: absolute; bottom: -.18em; font-family: var(--serif); font-size: clamp(160px, 22vw, 300px); line-height: 1; color: var(--num); pointer-events: none; }
.num-right { right: 3%; }
.num-left { left: 3%; }

.division-inner { position: relative; display: grid; gap: clamp(36px, 6vw, 88px); align-items: center; }
.logo-left { grid-template-columns: minmax(220px, 380px) minmax(0, 1fr); }
.logo-right { grid-template-columns: minmax(0, 1fr) minmax(220px, 380px); }

.division-logo {
  padding: 12px; border-radius: var(--r-lg);
  background: color-mix(in srgb, var(--fg) 6%, transparent);
  border: 1px solid var(--frame);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .6), inset 0 1px 0 rgba(255, 255, 255, .12);
  transition: transform .6s var(--ease);
}
.division:hover .division-logo { transform: translateY(-6px) rotate(-.6deg); }
.division-logo img { width: 100%; height: auto; border-radius: var(--r-md); }

.division-kicker { display: inline-block; font-size: 11.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); padding: 7px 13px; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent); background: color-mix(in srgb, var(--accent) 10%, transparent); }
.division-title { font-size: clamp(34px, 4.2vw, 60px); letter-spacing: -.025em; line-height: 1.05; margin: 20px 0 18px; }
.division-copy { font-size: 16.5px; line-height: 1.72; max-width: 58ch; color: var(--copy); margin: 0 0 28px; font-weight: 300; }

.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; max-width: 640px; margin: 0 0 30px; }
.facts > div { padding: 14px 16px; border-radius: var(--r-sm); background: color-mix(in srgb, var(--fg) 5%, transparent); border: 1px solid var(--rule); }
.facts dt { font-size: 10.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--label); margin-bottom: 6px; }
.facts dd { margin: 0; font-size: 14px; line-height: 1.4; }

.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: 500;
  padding: 14px 24px; border-radius: 999px; transition: transform .3s var(--ease), box-shadow .3s;
  box-shadow: 0 12px 30px -12px rgba(0, 0, 0, .5);
}
.division-cta:hover { color: var(--cta-fg); transform: translateY(-2px); box-shadow: 0 18px 40px -14px rgba(0, 0, 0, .6); }

.rvalue { margin-top: 12px; padding: 18px; text-align: center; border-radius: var(--r-md); border: 1px solid rgba(245, 158, 45, .35); background: rgba(245, 158, 45, .07); }
.rvalue-num { font-family: var(--serif); font-size: 46px; line-height: 1; color: #f59e2d; }
.rvalue-label { font-size: 10.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; margin-top: 8px; color: rgba(255, 255, 255, .7); }

/* Division palettes */
.division--poshhaus { --bg: #0d0d0c; }
.division--nehg {
  --bg: #f7f5f2; --fg: #001849; --accent: #7a5a1f;
  --rule: rgba(0, 24, 73, .14); --label: rgba(0, 24, 73, .7); --copy: rgba(0, 24, 73, .78);
  --frame: rgba(0, 24, 73, .14); --num: rgba(0, 24, 73, .06);
  --cta-fg: #f7f5f2; --cta-bg: #001849;
}
.division--nehg::before { background: radial-gradient(60% 80% at 100% 0%, rgba(201, 169, 106, .18), transparent 70%), linear-gradient(135deg, rgba(255, 255, 255, .7) 0%, transparent 40%); }
.division--thermasteel { --bg: #17161a; --accent: #f59e2d; --num: rgba(245, 158, 45, .1); --cta-fg: #17161a; --cta-bg: #f59e2d; }
.division--builders { --bg: #0d2a5e; --accent: #8fc2f2; --num: rgba(255, 255, 255, .07); --cta-fg: #0d2a5e; }
.division--sdb { --bg: #3a668c; --accent: #dbe8f4; --rule: rgba(255, 255, 255, .22); --label: rgba(255, 255, 255, .88); --copy: rgba(255, 255, 255, .88); --num: rgba(255, 255, 255, .1); --cta-fg: #29496b; }
.division--abodemod { --bg: #1c0f2b; --fg: #ffffff; --accent: #c3b1e1; --frame: rgba(195, 177, 225, .3); --num: rgba(195, 177, 225, .09); --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: 60px; padding-bottom: 70px;
  }
  .hscroll .portfolio {
    --slide: min(1240px, calc(100vw - 2 * var(--gutter)));
    display: flex; gap: 28px; 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 - 200px), 720px);
    display: flex; align-items: center; padding: clamp(32px, 4.4vw, 68px);
  }
  .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: 2px; padding: 5px; border-radius: 999px; }
  .hscroll-tabs button {
    font: inherit; font-size: 12.5px; font-weight: 500; color: var(--text-3); white-space: nowrap;
    background: none; border: 0; cursor: pointer; padding: 8px 14px; border-radius: 999px;
    transition: color .25s, background .25s;
  }
  .hscroll-tabs button:hover { color: var(--text); background: rgba(255, 255, 255, .06); }
  .hscroll-tabs button.is-active { color: #1a1508; background: var(--gold-grad); }
  .hscroll-bar { width: 220px; height: 2px; border-radius: 2px; background: rgba(255, 255, 255, .1); overflow: hidden; }
  .hscroll-bar > span { display: block; height: 100%; background: var(--gold-grad); transform-origin: left; transform: scaleX(0); }
}
@media (min-width: 961px) and (max-height: 820px) {
  .hscroll .division-title { font-size: clamp(30px, 3.4vw, 46px); margin: 14px 0 12px; }
  .hscroll .division-copy { font-size: 15px; line-height: 1.6; margin-bottom: 18px; }
  .hscroll .facts { margin-bottom: 18px; }
  .hscroll .facts > div { padding: 10px 12px; }
  .hscroll .logo-left { grid-template-columns: minmax(200px, 300px) minmax(0, 1fr); }
  .hscroll .logo-right { grid-template-columns: minmax(0, 1fr) minmax(200px, 300px); }
  .hscroll .rvalue { padding: 10px; }
  .hscroll .rvalue-num { font-size: 34px; }
}

/* ---------- Who we serve ---------- */
.serve-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.serve-card { display: flex; flex-direction: column; padding: 30px; text-decoration: none; color: var(--text); transition: transform .4s var(--ease), border-color .3s; }
.serve-card:hover { color: var(--text); transform: translateY(-4px); border-color: rgba(201, 169, 106, .35); }
.serve-icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: rgba(201, 169, 106, .12); border: 1px solid rgba(201, 169, 106, .28); margin-bottom: 22px; }
.serve-icon svg { width: 22px; height: 22px; fill: none; stroke: var(--gold-light); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.serve-card h3 { font-size: 24px; 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: 13.5px; font-weight: 500; color: var(--gold-light); }

/* ---------- Timeline ---------- */
.timeline { list-style: none; margin: 0 auto; padding: 0; max-width: 980px; position: relative; }
.timeline::before { content: ""; position: absolute; top: 8px; bottom: 8px; left: 120px; width: 1px; background: linear-gradient(to bottom, transparent, rgba(201, 169, 106, .5) 10%, rgba(201, 169, 106, .5) 90%, transparent); }
.tl-item { display: grid; grid-template-columns: 120px 1fr; gap: 40px; align-items: start; padding: 0 0 22px; position: relative; }
.tl-item::before { content: ""; position: absolute; left: 115px; top: 26px; width: 11px; height: 11px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(201, 169, 106, .18), 0 0 20px rgba(201, 169, 106, .6); }
.tl-year { font-family: var(--serif); font-size: 30px; color: var(--gold-light); padding-top: 12px; text-align: right; padding-right: 26px; }
.tl-card { padding: 24px 28px; }
.tl-card h3 { font-size: 23px; margin-bottom: 8px; }
.tl-card p { margin: 0; font-size: 15px; line-height: 1.65; color: var(--text-2); }
.tl-card--now { border-color: rgba(201, 169, 106, .4); }

/* ---------- 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); font-weight: 300; max-width: 60ch; margin: 22px 0 0; }
.quote { margin: 36px 0 0; padding: 30px 32px; border-left: 2px solid var(--gold); }
.quote p { margin: 0; font-family: var(--serif); font-style: italic; font-size: 22px; line-height: 1.5; }
.quote footer { margin-top: 14px; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-3); }

.about-side { display: grid; gap: 18px; position: sticky; top: 120px; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat { padding: 26px; border-radius: var(--r-md); }
.stat-num { font-family: var(--serif); font-size: clamp(42px, 4.6vw, 64px); line-height: 1; font-variant-numeric: tabular-nums; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { font-size: 11px; font-weight: 600; letter-spacing: .16em; 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: 1.6px solid var(--gold); border-bottom: 1.6px solid var(--gold); transform: rotate(-45deg); }
.standard-list strong { color: var(--text); font-weight: 600; }

/* ---------- Sustainability ---------- */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pillar { padding: 30px 26px; }
.pillar-mark { font-family: var(--serif); font-size: 28px; color: var(--gold); }
.pillar h3 { font-size: 23px; margin: 14px 0 12px; }
.pillar p { margin: 0; font-size: 15px; line-height: 1.65; color: var(--text-2); }
.metrics { margin-top: 18px; display: grid; grid-template-columns: repeat(4, 1fr); padding: 8px; }
.metrics > div { padding: 22px; text-align: center; }
.metrics > div + div { border-left: 1px solid var(--line); }
.metrics strong { display: block; font-family: var(--serif); font-weight: 500; font-size: 34px; color: var(--gold-light); }
.metrics span { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); }

/* ---------- Work with us ---------- */
.partner-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.partner-card { padding: 30px 26px; display: flex; flex-direction: column; }
.partner-card h3 { font-size: 23px; 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: 500; text-decoration: none; color: var(--gold-light); }

/* ---------- 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: 130px; }
.faq-list { display: grid; gap: 12px; }
.faq { border-radius: var(--r-md); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 60px 22px 26px; font-size: 16.5px; font-weight: 500; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%;
  border: 1px solid var(--glass-border); color: var(--gold-light); font-size: 18px; font-weight: 300; transition: transform .3s;
}
.faq[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq p { margin: 0; padding: 0 26px 24px; 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-xl); 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: .18em; 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) invert(.9) contrast(.9) brightness(.9); }

.door-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 28px; }
.door-links a {
  text-decoration: none; color: var(--text-2); font-size: 13.5px; font-weight: 500; padding: 11px 18px; border-radius: 999px;
  border: 1px solid var(--glass-border); background: rgba(255, 255, 255, .04); transition: background .3s, color .3s, border-color .3s;
}
.door-links a:hover { color: var(--ink); background: var(--gold-light); border-color: var(--gold-light); }

/* ---------- Footer ---------- */
.site-footer { margin-top: 120px; padding: 72px 0 40px; border-top: 1px solid var(--line); background: linear-gradient(180deg, rgba(255, 255, 255, .025), transparent); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand img { width: 150px; height: auto; margin-bottom: 18px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: var(--text-3); max-width: 34ch; margin: 0; }
.site-footer h4 { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); 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: var(--text-2); text-decoration: none; font-size: 14px; }
.site-footer ul a:hover, .site-footer address a:hover { color: var(--text); }
.site-footer address { font-style: normal; font-size: 14px; line-height: 1.9; color: var(--text-2); }
.footer-bottom { margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--text-3); }
.footer-bottom a { color: var(--text-3); text-decoration: none; }
.footer-bottom a:hover { color: var(--text); }

/* =========================================================
   Team page
   ========================================================= */
.page-hero { padding-top: 110px; padding-bottom: 40px; text-align: center; max-width: 900px; }
.page-hero .hero-title { font-size: clamp(44px, 5.6vw, 84px); margin: 26px 0 22px; }
.page-hero .hero-lede { margin: 0 auto; }

.leader { display: grid; grid-template-columns: minmax(260px, 380px) minmax(0, 1fr); gap: 0; border-radius: var(--r-xl); overflow: hidden; padding: 0; }
.leader-photo { position: relative; min-height: 420px; background: radial-gradient(circle at 30% 20%, rgba(201, 169, 106, .35), transparent 60%), linear-gradient(160deg, #2a2522, #151312); display: grid; place-items: center; border-right: 1px solid var(--line); }
.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(34px, 3.6vw, 50px); margin: 14px 0 6px; }
.leader-role { font-size: 15px; color: var(--gold-light); margin-bottom: 22px; }
.leader-body p { font-size: 16.5px; line-height: 1.78; color: var(--text-2); font-weight: 300; margin: 0 0 16px; max-width: 62ch; }

.monogram { font-family: var(--serif); font-size: 84px; letter-spacing: .02em; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.member { padding: 26px; 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: radial-gradient(circle at 30% 20%, color-mix(in srgb, var(--tint, #c9a96a) 40%, transparent), transparent 65%), linear-gradient(160deg, #26221f, #141312); border: 1px solid var(--line); }
.member-photo img { width: 100%; height: 100%; object-fit: cover; }
.member-photo .monogram { font-size: 56px; }
.member-division { font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.member h3 { font-size: 24px; 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; }

.culture { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.culture .pillar h3 { font-size: 24px; }

.join { text-align: center; padding: clamp(40px, 6vw, 80px); border-radius: var(--r-xl); }
.join .section-title { max-width: 20ch; margin-left: auto; margin-right: auto; }
.join .btn-row { justify-content: center; margin-top: 34px; }

/* =========================================================
   Process & showroom (home)
   ========================================================= */
.process { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; position: relative; }
.process::before { content: ""; position: absolute; left: 10%; right: 10%; top: 27px; height: 1px; background: linear-gradient(90deg, transparent, rgba(201, 169, 106, .5), transparent); }
.process-step { position: relative; text-align: center; padding: 0 6px; }
.process-dot {
  position: relative; z-index: 1; width: 54px; height: 54px; margin: 0 auto 20px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--serif); font-size: 19px; color: var(--gold-light);
  background: var(--ink-2); border: 1px solid rgba(201, 169, 106, .45);
  box-shadow: 0 0 0 6px rgba(201, 169, 106, .06), 0 0 30px rgba(201, 169, 106, .18);
}
.process-cta { justify-content: center; margin-top: 48px; }
.process-step h3 { font-size: 21px; 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-xl); 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; border-radius: 50%; background: var(--gold-grad); }
.showroom-side {
  position: relative; border-left: 1px solid var(--line); padding: clamp(32px, 5vw, 56px);
  display: flex; flex-direction: column; justify-content: center; gap: 22px;
  background: radial-gradient(80% 60% at 80% 10%, rgba(201, 169, 106, .16), transparent 70%), rgba(255, 255, 255, .02);
}
.showroom-side address { font-style: normal; font-family: var(--serif); font-size: 26px; line-height: 1.35; }

/* =========================================================
   Contact page
   ========================================================= */
.section--tight { padding-top: 40px; }
.contact-layout { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(280px, 1fr); gap: 22px; align-items: start; }
.form-card { padding: clamp(28px, 4vw, 48px); border-radius: var(--r-xl); }
.form-head h2 { font-size: clamp(28px, 2.6vw, 38px); }
.form-head p { margin: 10px 0 30px; font-size: 14.5px; color: var(--text-3); }
.req { color: var(--gold); }

.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: 500; color: var(--text-2); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 15.5px; color: var(--text);
  background: rgba(255, 255, 255, .045); border: 1px solid rgba(255, 255, 255, .12); border-radius: var(--r-sm);
  padding: 14px 16px; outline: none; transition: border-color .25s, background .25s, box-shadow .25s;
  -webkit-appearance: none; appearance: none;
}
.field textarea { resize: vertical; min-height: 150px; line-height: 1.6; }
.field input::placeholder, .field textarea::placeholder { color: rgba(247, 245, 242, .5); }
.field input:hover, .field select:hover, .field textarea:hover { border-color: rgba(255, 255, 255, .2); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); background: rgba(255, 255, 255, .07); box-shadow: 0 0 0 4px rgba(201, 169, 106, .15); }
.field.is-invalid input, .field.is-invalid textarea { border-color: #e2745f; box-shadow: 0 0 0 4px rgba(226, 116, 95, .12); }
.field-error { font-size: 12.5px; color: #f0a08f; }
.select-wrap { position: relative; }
.select-wrap::after { content: ""; position: absolute; right: 18px; top: 50%; width: 8px; height: 8px; border-right: 1.5px solid var(--gold-light); border-bottom: 1.5px solid var(--gold-light); transform: translateY(-70%) rotate(45deg); pointer-events: none; }
.field select { padding-right: 44px; cursor: pointer; }
.field select option { background: #1c1a19; color: var(--text); }

.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; transform: none; }
.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: rgba(226, 116, 95, .1); border: 1px solid rgba(226, 116, 95, .35); color: #f6c2b6; }

.form-success { text-align: center; padding: 40px 10px; }
.form-success h2 { font-size: 40px; 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: 72px; height: 72px; margin: 0 auto; border-radius: 50%; display: grid; place-items: center; background: var(--gold-grad); box-shadow: 0 0 0 10px rgba(201, 169, 106, .12), 0 20px 50px -10px rgba(201, 169, 106, .6); }
.success-icon svg { width: 32px; height: 32px; fill: none; stroke: #1a1508; 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-family: var(--serif); font-size: 30px; color: var(--text); text-decoration: none; }
.info-big--sm { font-family: var(--sans); font-size: 18px; font-weight: 500; word-break: break-all; }
.info-big:hover { color: var(--gold-light); }
.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-xl); overflow: hidden; }
.map-card iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(1) invert(.9) contrast(.9) brightness(.9); }

.direct-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.direct-card { display: flex; align-items: center; gap: 18px; padding: 16px 22px 16px 16px; text-decoration: none; color: var(--text); transition: transform .35s var(--ease), border-color .3s; }
.direct-card:hover { color: var(--text); transform: translateY(-3px); border-color: rgba(201, 169, 106, .35); }
.direct-card img { width: 64px; height: 64px; border-radius: 12px; object-fit: cover; flex: none; }
.direct-card h3 { font-size: 18px; }
.direct-card p { margin: 3px 0 0; font-size: 13.5px; color: var(--text-3); }
.direct-card .btn-arrow { margin-left: auto; color: var(--gold-light); }
.direct-card:hover .btn-arrow { transform: translateX(4px); }

/* =========================================================
   Simple pages (privacy, 404)
   ========================================================= */
.prose { max-width: 780px; margin: 0 auto; padding: clamp(28px, 5vw, 56px); border-radius: var(--r-xl); }
.prose h2 { font-size: 26px; 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; }
.big-404 { font-family: var(--serif); font-size: clamp(120px, 20vw, 220px); line-height: 1; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.notfound .btn-row { justify-content: center; margin-top: 30px; }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .site-nav a:not(.btn) { padding: 10px 10px; font-size: 13px; }
  .chain, .pillars, .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .chain-step:nth-child(2)::after { display: none; }
  .facts { grid-template-columns: 1fr; max-width: 460px; }
  .facts > div { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
  .facts dt { margin: 0; }
}

@media (max-width: 960px) {
  :root { --gutter: 20px; }
  html { scroll-padding-top: 90px; }

  .site-header { padding-top: 10px; }
  .header-shell { padding: 8px 8px 8px 16px; flex-wrap: wrap; border-radius: 28px; }
  .nav-toggle { display: flex; }
  .site-nav { order: 3; width: 100%; flex-direction: column; align-items: stretch; gap: 2px; margin: 0; padding: 8px 4px 10px; display: none; }
  .site-nav.is-open { display: flex; }
  .site-nav a:not(.btn) { padding: 14px 14px; font-size: 15px; border-radius: 14px; }
  .nav-phone { margin: 8px 0 0; justify-content: center; }
  .site-header .header-shell:has(.site-nav.is-open) { background: rgba(20, 19, 18, .92); }

  .hero { grid-template-columns: 1fr; padding-top: 56px; gap: 40px; }
  .hero-visual { max-width: 460px; width: 100%; margin: 0 auto; }
  .chip-a { left: 0; }
  .chip-b { right: 0; }

  .logo-strip { border-radius: var(--r-lg); flex-direction: column; align-items: flex-start; gap: 14px; }
  .logo-strip ul { justify-content: flex-start; gap: 6px 18px; }
  .logo-strip li { font-size: 17px; }

  .section { padding-top: 84px; }
  .section-intro { padding-top: 84px; padding-bottom: 36px; }
  .section-head { margin-bottom: 40px; }

  .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: 320px; }
  .division:hover .division-logo { transform: none; }

  .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 var(--line); }

  .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: 1fr; }
  .process { grid-template-columns: 1fr 1fr; gap: 34px 18px; }
  .process::before { display: none; }
  .showroom { grid-template-columns: 1fr; }
  .showroom-side { border-left: none; border-top: 1px solid var(--line); }
  .contact-layout { grid-template-columns: 1fr; }
  .direct-grid { grid-template-columns: 1fr 1fr; }
  .map-card { height: 320px; }
  .leader-photo { min-height: 300px; border-right: none; border-bottom: 1px solid var(--line); }
}

@media (max-width: 620px) {
  .brand-text { display: none; }
  .hero-title { font-size: clamp(42px, 12vw, 60px); }
  .float-chip { display: none; }
  .chain, .pillars, .partner-grid, .serve-grid, .team-grid, .culture { grid-template-columns: 1fr; }
  .chain-step::after { display: none; }
  .timeline::before { left: 5px; }
  .tl-item { grid-template-columns: 1fr; gap: 10px; padding-left: 30px; }
  .tl-item::before { left: 0; top: 16px; }
  .tl-year { text-align: left; padding: 0; font-size: 26px; }
  .contact-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .division { border-radius: var(--r-lg); }
  .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; }
}

/* ---------- 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; }
}
