/* ════════════════════════════════════════════════════════
   A1J GROUP — CORPORATE STYLESHEET
   Design: Executive · Minimal · Gold accents
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ════════════════════════════════════════════════════════ */

:root {
  --black:   #0a0a0a;
  --off-black: #111111;
  --charcoal: #1a1a1a;
  --dark-mid: #222222;
  --mid:     #444444;
  --muted:   #888888;
  --border:  #e0e0e0;
  --border-dark: #2a2a2a;
  --light:   #f5f4f1;
  --white:   #ffffff;
  --gold:    #b8922a;
  --gold-light: #d4aa5a;
  --gold-dim: rgba(184,146,42,0.15);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --nav-h: 80px;
  --container: 1280px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
address { font-style: normal; }
input, select, textarea, button { font-family: var(--font-body); }

/* ─── TYPOGRAPHY ─────────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.1; }
h1 { font-size: clamp(3.5rem, 7vw, 7rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2.2rem, 4vw, 3.8rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.4rem, 2vw, 1.8rem); }
em { font-style: italic; color: var(--gold); }
p { font-size: 1rem; line-height: 1.75; color: var(--mid); }

/* ─── CONTAINER ──────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}

/* ─── BUTTONS ────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--black);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid var(--black);
  transition: all 0.3s var(--ease);
}
.btn-primary:hover { background: var(--gold); border-color: var(--gold); }

.btn-ghost {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: var(--black);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid var(--black);
  transition: all 0.3s var(--ease);
}
.btn-ghost:hover { background: var(--black); color: var(--white); }

.btn-sm { padding: 10px 22px; font-size: 0.78rem; }
.btn-full { width: 100%; text-align: center; }

/* ─── SECTION TAGS ───────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  margin-bottom: 1.5rem;
}

/* ─── SECTION HEADER ─────────────────────────────────── */
.section-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
}
.section-header h2 { max-width: 20ch; }
.section-link {
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  align-self: flex-start;
}
.section-link:hover { text-decoration: underline; }

/* ─── SCROLL REVEAL ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
#nav.scrolled {
  border-color: var(--border);
  box-shadow: 0 1px 30px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.logo-mark {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.02em;
}
.logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links > li > a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--mid);
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--black); }
.caret { font-size: 0.7em; }

/* Dropdown */
.has-drop { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  min-width: 200px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-50%) translateY(-6px);
}
.has-drop:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.82rem;
  color: var(--mid);
  letter-spacing: 0.04em;
  transition: all 0.15s;
}
.dropdown li a:hover { color: var(--black); background: var(--light); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--black);
  transition: all 0.3s;
}

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--light);
  z-index: 0;
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
}
.hero-lines {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 45%;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 59px,
    rgba(0,0,0,0.04) 59px,
    rgba(0,0,0,0.04) 60px
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.hero-headline {
  font-size: clamp(4.5rem, 9vw, 9rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 2.5rem;
  max-width: 10ch;
}
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--mid);
  max-width: 52ch;
  margin-bottom: 3rem;
}
.hero-cta { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }

.hero-scroll-hint {
  position: absolute;
  bottom: 3rem;
  left: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 1;
}
.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.4;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.2)} }

/* ─── REVEAL STAGGER ─────────────────────────────────── */
.hero .reveal:nth-child(1) { transition-delay: 0.1s; }
.hero .reveal:nth-child(2) { transition-delay: 0.25s; }
.hero .reveal:nth-child(3) { transition-delay: 0.4s; }
.hero .reveal:nth-child(4) { transition-delay: 0.55s; }

/* ═══════════════════════════════════════════════════════
   TICKER
   ═══════════════════════════════════════════════════════ */
.ticker-wrap {
  background: var(--black);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
  gap: 3rem;
  align-items: center;
}
.ticker-track span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}
.ticker-track .sep { color: var(--gold); }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ═══════════════════════════════════════════════════════
   STATEMENT
   ═══════════════════════════════════════════════════════ */
.statement {
  padding: 120px 0;
  border-bottom: 1px solid var(--border);
}
.statement-inner {
  display: flex;
  gap: 6rem;
  align-items: flex-start;
}
.statement-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  white-space: nowrap;
  margin-top: 0.6rem;
}
.statement-text {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--black);
  max-width: 30ch;
}

/* ═══════════════════════════════════════════════════════
   BUSINESSES (homepage grid)
   ═══════════════════════════════════════════════════════ */
.businesses {
  padding: 120px 0;
  background: var(--white);
}
.biz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.biz-card {
  background: var(--white);
  display: block;
  transition: background 0.3s;
}
.biz-card:hover { background: var(--black); }
.biz-card-wide { grid-column: span 3; }
.biz-card-inner {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 320px;
  position: relative;
}
.biz-card-wide .biz-card-inner { min-height: 200px; flex-direction: row; align-items: center; gap: 4rem; }
.biz-icon { width: 48px; height: 48px; color: var(--gold); flex-shrink: 0; }
.biz-icon svg { width: 100%; height: 100%; }
.biz-num {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
}
.biz-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--black);
  transition: color 0.3s;
}
.biz-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--mid);
  transition: color 0.3s;
  max-width: 36ch;
}
.biz-sub-brands {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: auto;
}
.biz-arrow {
  position: absolute;
  bottom: 3rem; right: 3rem;
  font-size: 1.2rem;
  color: var(--muted);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s;
}
.biz-card:hover h3, .biz-card:hover p { color: var(--white); }
.biz-card:hover .biz-sub-brands { color: var(--gold-light); }
.biz-card:hover .biz-num { color: rgba(255,255,255,0.4); }
.biz-card:hover .biz-arrow { opacity: 1; color: var(--gold); transform: translateX(0); }
.biz-card-wide:hover { background: var(--off-black); }

/* ═══════════════════════════════════════════════════════
   IMPACT
   ═══════════════════════════════════════════════════════ */
.impact {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.impact-bg {
  position: absolute;
  inset: 0;
  background: var(--black);
  z-index: 0;
}
.impact .container { position: relative; z-index: 1; }
.impact .section-header { color: var(--white); }
.impact .section-header h2 { color: var(--white); }
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
  margin-top: 4rem;
}
.impact-item {
  background: var(--off-black);
  padding: 3rem 2.5rem;
  text-align: left;
}
.impact-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.impact-label {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════
   VISION
   ═══════════════════════════════════════════════════════ */
.vision { padding: 120px 0; border-bottom: 1px solid var(--border); }
.vision-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}
.vision-text { display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; }
.vision-text p { max-width: 48ch; }

/* Rings graphic */
.vision-graphic { display: flex; justify-content: center; }
.vision-rings {
  position: relative;
  width: 380px;
  height: 380px;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 16px;
}
.ring span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}
.r1 {
  inset: 0;
  border-color: var(--gold);
  color: var(--gold);
}
.r2 {
  inset: 40px;
  border-color: var(--mid);
  color: var(--mid);
}
.r3 {
  inset: 80px;
  border-color: var(--border);
  color: var(--muted);
}
.ring-center {
  position: absolute;
  inset: 130px;
  border-radius: 50%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════
   FOUNDER
   ═══════════════════════════════════════════════════════ */
.founder { padding: 120px 0; background: var(--light); border-bottom: 1px solid var(--border); }
.founder-container {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 8rem;
  align-items: center;
}
.founder-photo { display: flex; justify-content: center; }
.founder-img-wrap { position: relative; }
.founder-placeholder {
  width: 260px;
  height: 300px;
  background: linear-gradient(135deg, #e8e5df 0%, #d4cfc5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.founder-placeholder svg { width: 120px; height: 140px; }
.founder-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 20px;
  white-space: nowrap;
  font-weight: 500;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.5;
  color: var(--gold);
  margin-bottom: 2rem;
}
blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--charcoal);
  margin-bottom: 2.5rem;
  max-width: 42ch;
}
.founder-credit { display: flex; flex-direction: column; gap: 4px; }
.founder-credit strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--black);
}
.founder-credit span {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════
   NEWS PREVIEW (homepage)
   ═══════════════════════════════════════════════════════ */
.news-preview { padding: 120px 0; border-bottom: 1px solid var(--border); }
.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.news-card {
  background: var(--white);
  padding: 3rem;
  transition: background 0.3s;
}
.news-card:hover { background: var(--light); }
.news-card-feat { grid-row: span 2; }
.news-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 10px;
  margin-bottom: 1.5rem;
}
.news-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--black);
  margin-bottom: 1rem;
}
.news-card-feat h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  margin-bottom: 1.5rem;
}
.news-card p { font-size: 0.92rem; line-height: 1.7; margin-bottom: 1.5rem; }
.news-meta time {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}
.news-feat-bottom {
  margin-top: auto;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════
   CAREERS CTA
   ═══════════════════════════════════════════════════════ */
.careers-cta { padding: 120px 0; background: var(--light); }
.careers-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}
.careers-text { display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; }
.careers-text p { max-width: 40ch; }
.careers-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: flex-start;
}
.careers-tags span {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid var(--border);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  background: var(--white);
  transition: all 0.2s;
}
.careers-tags span:hover { border-color: var(--gold); color: var(--gold); }

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
footer {
  background: var(--black);
  padding: 80px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 6rem;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-dark);
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
}
.footer-bottom-links { display: flex; gap: 2rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.25); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ═══════════════════════════════════════════════════════
   PAGE HERO (inner pages)
   ═══════════════════════════════════════════════════════ */
.page-hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  position: relative;
  border-bottom: none;
}
.page-hero-content { max-width: 70%; }
.page-headline { font-size: clamp(3rem, 6vw, 6rem); font-weight: 300; letter-spacing: -0.025em; margin-bottom: 2rem; }
.page-sub { font-size: 1.05rem; line-height: 1.7; color: var(--mid); max-width: 55ch; }
.page-hero-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, var(--gold) 0%, var(--border) 40%, transparent 100%);
}

/* ═══════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════ */
.about-story { padding: 100px 0; border-bottom: 1px solid var(--border); }
.about-story-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 8rem;
  align-items: flex-start;
}
.about-story-left h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.about-story-right { display: flex; flex-direction: column; gap: 1.5rem; }
.about-story-right p { font-size: 1rem; line-height: 1.8; max-width: 65ch; }

.values { padding: 100px 0; background: var(--light); border-bottom: 1px solid var(--border); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.value-item {
  background: var(--white);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.3s;
}
.value-item:hover { background: var(--black); }
.value-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.value-item h3 { font-size: 1.3rem; color: var(--black); transition: color 0.3s; }
.value-item p { font-size: 0.88rem; max-width: 28ch; transition: color 0.3s; }
.value-item:hover h3, .value-item:hover p { color: var(--white); }
.value-item:hover .value-num { color: var(--gold-light); }

.leadership { padding: 100px 0; border-bottom: 1px solid var(--border); }
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}
.leader-card { display: flex; flex-direction: column; gap: 1rem; }
.leader-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  border: 1px solid var(--border);
}
.leader-photo svg { width: 60%; }
.leader-card h3 { font-size: 1.2rem; color: var(--black); }
.leader-title {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.leader-card p { font-size: 0.85rem; line-height: 1.6; }

.milestones { padding: 100px 0; }
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 4rem;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  align-items: flex-start;
}
.timeline-item:last-child { border-bottom: 1px solid var(--border); }
.timeline-year {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.timeline-content h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.timeline-content p { font-size: 0.9rem; max-width: 55ch; }

/* ═══════════════════════════════════════════════════════
   BUSINESSES PAGE
   ═══════════════════════════════════════════════════════ */
.biz-nav-sticky {
  position: sticky;
  top: var(--nav-h);
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.biz-nav-list {
  display: flex;
  gap: 0;
}
.biz-nav-list li a {
  display: block;
  padding: 18px 28px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  border-right: 1px solid var(--border);
  transition: all 0.2s;
}
.biz-nav-list li a:hover { color: var(--black); background: var(--light); }

.biz-detail { padding: 0 0 80px; }
.biz-alt { background: var(--light); }
.biz-detail-header {
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 60px;
}
.biz-alt .biz-detail-header { border-bottom-color: rgba(0,0,0,0.08); }
.biz-detail-num {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.biz-detail-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--black);
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}
.biz-detail-sub {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 50ch;
}
.biz-detail-body {}
.biz-detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 6rem;
  align-items: flex-start;
  margin-bottom: 5rem;
}
.biz-detail-text { display: flex; flex-direction: column; gap: 1.5rem; }
.biz-detail-text p { font-size: 1rem; line-height: 1.8; max-width: 60ch; }
.biz-detail-brands { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 0.5rem; }
.brand-pill {
  padding: 8px 18px;
  border: 1px solid var(--border);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
}
.biz-detail-stats { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); }
.det-stat { padding: 2rem; border-bottom: 1px solid var(--border); }
.det-stat:last-child { border-bottom: none; }
.det-stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.det-stat-label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

.biz-offerings h3 { font-size: 1.5rem; margin-bottom: 2rem; }
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.offering {
  background: var(--white);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.biz-alt .offering { background: var(--white); }
.offering-icon { font-size: 1.2rem; color: var(--gold); }
.offering h4 { font-size: 1rem; font-family: var(--font-display); font-weight: 500; }
.offering p { font-size: 0.85rem; line-height: 1.6; }

.ventures-cta {
  background: var(--black);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
.ventures-cta h3 { font-size: 1.8rem; color: var(--white); }
.ventures-cta p { color: rgba(255,255,255,0.6); max-width: 55ch; }

/* ═══════════════════════════════════════════════════════
   NEWS PAGE
   ═══════════════════════════════════════════════════════ */
.news-filter-bar {
  border-bottom: 1px solid var(--border);
  background: var(--white);
  position: sticky;
  top: var(--nav-h);
  z-index: 50;
}
.news-filters { display: flex; gap: 0; }
.nf-btn {
  padding: 18px 24px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: none;
  border-right: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
}
.nf-btn:hover { color: var(--black); }
.nf-btn.active { color: var(--black); border-bottom: 2px solid var(--gold); margin-bottom: -1px; }

.news-page { padding: 80px 0 120px; }
.news-feat {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.news-feat-meta { display: flex; align-items: center; gap: 1.5rem; }
.news-feat-meta time { font-size: 0.75rem; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; }
.news-feat h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 400; max-width: 22ch; line-height: 1.2; }
.news-feat p { max-width: 70ch; }

.news-list { display: flex; flex-direction: column; gap: 0; }
.news-list-item {
  display: grid;
  grid-template-columns: 1fr;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.news-list-item:hover { background: var(--light); padding-left: 1.5rem; margin: 0 -1.5rem; padding-right: 1.5rem; }
.nli-meta { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 1rem; }
.nli-meta time { font-size: 0.75rem; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; }
.news-list-item h3 { font-size: 1.3rem; font-weight: 400; max-width: 55ch; line-height: 1.3; margin-bottom: 0.8rem; }
.news-list-item p { font-size: 0.88rem; max-width: 65ch; }

.press-contact {
  padding: 80px 0;
  background: var(--light);
  border-top: 1px solid var(--border);
}
.press-contact-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
.press-contact-inner h2 { font-size: 2.5rem; }
.press-contact-inner p { max-width: 50ch; }

/* ═══════════════════════════════════════════════════════
   CAREERS PAGE
   ═══════════════════════════════════════════════════════ */
.why-a1j { padding: 100px 0; border-bottom: 1px solid var(--border); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.why-item {
  background: var(--white);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.why-num {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 500;
}
.why-item h3 { font-size: 1.2rem; }
.why-item p { font-size: 0.88rem; line-height: 1.7; }

.open-roles { padding: 80px 0 120px; }
.roles-group {
  border: 1px solid var(--border);
  margin-bottom: 2px;
}
.roles-group-header {
  background: var(--light);
  padding: 1.5rem 2.5rem;
  border-bottom: 1px solid var(--border);
}
.roles-div-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.role-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2.5rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.role-item:last-child { border-bottom: none; }
.role-item:hover { background: var(--light); }
.role-info { display: flex; flex-direction: column; gap: 6px; }
.role-info h3 { font-size: 1.1rem; font-weight: 400; }
.role-meta { display: flex; gap: 1.5rem; }
.role-meta span {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}

.spontaneous { padding: 80px 0; background: var(--black); }
.spontaneous-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
.spontaneous-inner h2 { font-size: 2.5rem; color: var(--white); }
.spontaneous-inner p { color: rgba(255,255,255,0.5); max-width: 50ch; }

/* ═══════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════ */
.contact-body { padding: 80px 0 120px; border-bottom: 1px solid var(--border); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 8rem;
  align-items: flex-start;
}
.contact-form-wrap h2 { margin-bottom: 3rem; font-size: 2rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 0.92rem;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--gold); }
.form-field textarea { resize: vertical; }

.contact-details { display: flex; flex-direction: column; gap: 3rem; }
.contact-office h3 { font-size: 1.2rem; margin-bottom: 1rem; }
.contact-office address { font-size: 0.9rem; line-height: 1.8; color: var(--mid); }
.contact-link {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.88rem;
  color: var(--gold);
  transition: color 0.2s;
}
.contact-link:hover { color: var(--black); }

.contact-channels { display: flex; flex-direction: column; gap: 1.5rem; }
.channel-item {
  padding: 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.channel-item h4 { font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
.channel-item a { font-size: 0.95rem; font-weight: 500; color: var(--black); transition: color 0.2s; }
.channel-item a:hover { color: var(--gold); }
.channel-item p { font-size: 0.82rem; line-height: 1.5; }

.contact-social h4 { font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.social-links { display: flex; gap: 1.5rem; }
.social-link { font-size: 0.85rem; color: var(--mid); transition: color 0.2s; }
.social-link:hover { color: var(--gold); }

.offices-strip { padding: 80px 0; background: var(--light); }
.offices-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.office-card {
  background: var(--white);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: background 0.2s;
}
.office-card:hover { background: var(--black); }
.office-card h3 { font-size: 1.2rem; color: var(--black); transition: color 0.2s; }
.office-card:hover h3 { color: var(--white); }
.office-card p { font-size: 0.8rem; color: var(--muted); line-height: 1.5; transition: color 0.2s; }
.office-card:hover p { color: rgba(255,255,255,0.5); }
.office-badge {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 3px 8px;
  align-self: flex-start;
}

/* ═══════════════════════════════════════════════════════
   MOBILE NAV
   ═══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 2rem 0;
    gap: 0;
    border-top: 1px solid var(--border);
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a { padding: 1.2rem 2rem; border-bottom: 1px solid var(--border); }
  .dropdown { display: none; }
  .hamburger { display: flex; }

  .container { padding: 0 24px; }
  .hero-content { padding: 0 24px; }
  .hero-scroll-hint { left: 24px; }

  h1 { font-size: clamp(3rem, 12vw, 5rem); }
  h2 { font-size: clamp(2rem, 8vw, 3rem); }

  .biz-grid { grid-template-columns: 1fr; }
  .biz-card-wide { grid-column: span 1; }
  .biz-card-wide .biz-card-inner { flex-direction: column; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .vision-container { grid-template-columns: 1fr; }
  .vision-graphic { display: none; }
  .founder-container { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card-feat { grid-row: auto; }
  .careers-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .statement-inner { flex-direction: column; gap: 2rem; }
  .about-story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .leadership-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
  .biz-detail-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .offices-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero-content { max-width: 100%; }
  .biz-nav-list { flex-wrap: wrap; }
  .news-filters { flex-wrap: wrap; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .leadership-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .offerings-grid { grid-template-columns: 1fr; }
  .offices-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 1fr; gap: 1rem; }
}
