:root {
  --ink-950: #050B0D; --ink-900: #0A1518; --ink-850: #0D1B1F; --ink-800: #141F23;
  --slate-700: #254750; --slate-600: #3A6068; --slate-500: #5A828A; --slate-400: #7C9AA1;
  --slate-300: #b1bac1; --slate-200: #D1D6DA; --slate-100: #E8EBED; --slate-75: #F1F3F4; --slate-50: #F7F8F9;
  --white: #FFFFFF; --canvas: #FAFAFA; --canvas-warm: #F6F7F4;
  --gold: #C8A951; --gold-bright: #E6C97E; --gold-deep: #A88A3A; --gold-soft: #F5EBC8;
  --ink: #0A0F11; --ink-muted: #4A5459; --ink-soft: #7A848A;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Hanken Grotesk', -apple-system, sans-serif; background: var(--canvas); color: var(--slate-700); line-height: 1.55; -webkit-font-smoothing: antialiased; letter-spacing: -0.005em; }
.mono { font-family: 'Geist Mono', monospace; font-feature-settings: "zero"; }

/* NAV */
nav.top { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 20px 40px; display: flex; align-items: center; justify-content: space-between; background: rgba(250,250,250,0.70); backdrop-filter: blur(16px) saturate(180%); -webkit-backdrop-filter: blur(16px) saturate(180%); border-bottom: 1px solid transparent; transition: all 0.3s ease; }
nav.top.scrolled { padding: 12px 40px; background: rgba(250,250,250,0.85); border-bottom: 1px solid var(--slate-100); }
/* People page: near-solid nav (translucent glass reads poorly over the photo hero) */
nav.top.nav-solid { background: rgba(250,250,250,0.95); border-bottom: 1px solid var(--slate-100); }
nav.top.nav-solid.scrolled { background: rgba(250,250,250,0.97); }
nav.top .logo { display: flex; align-items: center; gap: 14px; color: var(--slate-700); font-weight: 700; font-size: 17px; letter-spacing: -0.02em; text-decoration: none; }
nav.top .logo-mark { width: 42px; height: 38px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
nav.top .logo-mark img { width: 100%; height: 100%; object-fit: contain; }
nav.top .logo .text { display: flex; flex-direction: column; line-height: 1.1; }
nav.top .logo .text .name { font-family: 'Anton', 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 400; color: var(--slate-700); letter-spacing: 0.02em; line-height: 1; text-transform: uppercase; }
nav.top .logo .text .sub { font-family: 'Bahnschrift', 'Barlow Condensed', sans-serif; font-size: 10px; letter-spacing: 0.02em; color: var(--slate-700); font-weight: 500; margin-top: 2px; }
nav.top ul { display: flex; gap: 2px; list-style: none; align-items: center; background: rgba(37,71,80,0.03); border: 1px solid var(--slate-100); padding: 4px; border-radius: 100px; }
nav.top ul a { color: var(--ink-muted); text-decoration: none; font-size: 13.5px; font-weight: 500; padding: 8px 16px; border-radius: 100px; transition: all 0.2s; letter-spacing: -0.01em; }
nav.top ul a:hover, nav.top ul a.active { color: var(--slate-700); background: var(--white); box-shadow: 0 1px 2px rgba(0,0,0,0.04); }

/* Nav dropdown (Publications → Legal Publications / Latest News) */
nav.top ul li.has-dropdown { position: relative; }
nav.top ul li.has-dropdown > a { display: inline-flex; align-items: center; gap: 5px; }
nav.top ul li.has-dropdown .caret { opacity: 0.55; transition: transform 0.2s ease; }
nav.top ul li.has-dropdown:hover .caret,
nav.top ul li.has-dropdown:focus-within .caret { transform: rotate(180deg); }
nav.top ul li.has-dropdown .dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 210px; display: flex; flex-direction: column; gap: 2px;
  margin-top: 10px; padding: 6px;
  background: var(--white); border: 1px solid var(--slate-100); border-radius: 14px;
  box-shadow: 0 14px 36px rgba(10,21,24,0.13);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease; z-index: 60;
}
/* invisible bridge across the gap so hover doesn't drop */
nav.top ul li.has-dropdown .dropdown::before { content: ''; position: absolute; left: 0; right: 0; top: -12px; height: 12px; }
nav.top ul li.has-dropdown:hover .dropdown,
nav.top ul li.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
nav.top ul li.has-dropdown .dropdown a {
  padding: 9px 14px; border-radius: 9px; font-size: 13.5px; white-space: nowrap; box-shadow: none;
}
nav.top ul li.has-dropdown .dropdown a:hover { background: var(--canvas); color: var(--slate-700); box-shadow: none; }
nav.top .nav-right { display: flex; align-items: center; gap: 16px; }
nav.top .phone { color: var(--ink-muted); text-decoration: none; font-family: 'Geist Mono', monospace; font-size: 13px; transition: color 0.15s; }
nav.top .phone:hover { color: var(--gold-deep); }
nav.top .cta { position: relative; background: linear-gradient(180deg, var(--ink-900) 0%, var(--slate-700) 100%); color: var(--white); padding: 11px 20px; font-size: 13.5px; font-weight: 600; border: none; border-radius: 100px; cursor: pointer; transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; letter-spacing: -0.01em; box-shadow: 0 1px 0 rgba(255,255,255,0.1) inset, 0 4px 14px rgba(10,21,24,0.2); text-decoration: none; }
nav.top .cta:hover { transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,0.1) inset, 0 8px 24px rgba(10,21,24,0.3); }

/* HERO */
.hero { position: relative; background: var(--canvas); color: var(--slate-700); padding: 140px 40px 80px; min-height: 100vh; overflow: hidden; display: flex; align-items: center; }
.hero::before { content: ''; position: absolute; top: -20%; right: -10%; width: 80%; height: 120%; background: radial-gradient(circle at 70% 40%, rgba(200,169,81,0.12) 0%, transparent 50%); pointer-events: none; }
.hero::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(to right, rgba(37,71,80,0.04) 1px, transparent 1px), linear-gradient(to bottom, rgba(37,71,80,0.04) 1px, transparent 1px); background-size: 72px 72px; mask-image: radial-gradient(ellipse at 30% 50%, black 30%, transparent 80%); -webkit-mask-image: radial-gradient(ellipse at 30% 50%, black 30%, transparent 80%); pointer-events: none; }
.hero-inner { max-width: 1400px; margin: 0 auto; width: 100%; position: relative; z-index: 3; display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 60px; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; padding: 8px 16px; background: var(--white); border: 1px solid var(--slate-100); border-radius: 100px; font-family: 'Geist Mono', monospace; font-size: 11.5px; letter-spacing: 0.04em; color: var(--slate-700); margin-bottom: 40px; text-transform: uppercase; box-shadow: 0 1px 2px rgba(37,71,80,0.04); opacity: 0; animation: fadeUp 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s forwards; }
.hero-eyebrow .pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold); animation: pulse 2.4s ease infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 10px var(--gold), 0 0 0 0 rgba(200,169,81,0.5); } 50% { box-shadow: 0 0 10px var(--gold), 0 0 0 8px rgba(200,169,81,0); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-headline { font-size: clamp(48px,7.5vw,112px); font-weight: 700; line-height: 0.96; letter-spacing: -0.05em; color: var(--slate-700); margin-bottom: 40px; opacity: 0; animation: fadeUp 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s forwards; }
.hero-headline .accent { background: linear-gradient(100deg, var(--gold-deep) 0%, var(--gold) 40%, var(--gold-bright) 60%, var(--gold-deep) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-style: normal; font-weight: 500; letter-spacing: -0.04em; padding-right: 0.08em; }
.hero-headline .period { color: var(--gold); -webkit-text-fill-color: var(--gold); font-weight: 700; }
.hero-description { font-size: 18px; line-height: 1.6; color: var(--ink-muted); max-width: 580px; margin-bottom: 48px; font-weight: 400; opacity: 0; animation: fadeUp 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.35s forwards; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; opacity: 0; animation: fadeUp 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s forwards; }
.hero-right { position: relative; opacity: 0; animation: fadeUp 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s forwards; }
.hero-arch { position: relative; aspect-ratio: 3/4.2; background: var(--ink-900); border-radius: 50% 50% 0 0 / 22% 22% 0 0; overflow: hidden; box-shadow: 0 30px 80px -20px rgba(10,21,24,0.35); }
.hero-arch img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.2) contrast(1.08) brightness(1.02) saturate(0.9); }
.hero-arch::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,21,24,0.15) 0%, rgba(10,21,24,0) 30%, rgba(255,255,255,0.45) 70%, rgba(255,255,255,0.75) 100%); pointer-events: none; }
.hero-arch::after { content: ''; position: absolute; top: 14px; left: 14px; right: 14px; bottom: 0; border: 1px solid rgba(200,169,81,0.65); border-bottom: none; border-radius: 50% 50% 0 0 / 22% 22% 0 0; pointer-events: none; }
.arch-caption { position: absolute; left: 28px; right: 28px; bottom: 30px; text-align: center; z-index: 2; }
.arch-caption .numeral { display: block; font-family: 'Anton', sans-serif; font-size: clamp(44px,5.6vw,72px); line-height: 0.9; letter-spacing: 0.02em; color: var(--slate-700); margin-bottom: 10px; }
.arch-caption .rule { display: block; width: 32px; height: 2px; background: var(--gold); margin: 0 auto 12px; }
.arch-caption .kicker { display: block; font-family: 'Geist Mono', monospace; font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--slate-700); font-weight: 600; margin-bottom: 6px; }
.arch-caption .title { display: block; font-family: 'Hanken Grotesk', sans-serif; font-size: 17px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.3; color: var(--slate-700); }
.hero-marker { position: absolute; bottom: 32px; left: 40px; right: 40px; display: flex; justify-content: space-between; z-index: 3; font-family: 'Geist Mono', monospace; font-size: 11px; letter-spacing: 0.04em; color: var(--slate-500); text-transform: uppercase; opacity: 0; animation: fadeUp 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.8s forwards; }
.hero-marker .corner { display: flex; align-items: center; gap: 10px; }
.hero-marker .bracket { width: 12px; height: 12px; border-left: 1px solid var(--gold); border-top: 1px solid var(--gold); }
.hero-marker .bracket.br { border: none; border-right: 1px solid var(--gold); border-bottom: 1px solid var(--gold); }

/* BUTTONS */
.btn-primary-dark { position: relative; background: linear-gradient(180deg, var(--ink-900) 0%, var(--slate-700) 100%); color: var(--white); padding: 16px 28px; font-size: 14.5px; font-weight: 600; border: none; border-radius: 100px; cursor: pointer; transition: all 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); text-decoration: none; display: inline-flex; align-items: center; gap: 10px; letter-spacing: -0.01em; box-shadow: 0 1px 0 rgba(255,255,255,0.1) inset, 0 8px 24px rgba(10,21,24,0.15); }
.btn-primary-dark:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255,255,255,0.1) inset, 0 16px 40px rgba(10,21,24,0.25); color: var(--white); }
.btn-secondary-light { background: var(--white); color: var(--slate-700); padding: 16px 28px; font-size: 14.5px; font-weight: 500; border: 1px solid var(--slate-200); border-radius: 100px; cursor: pointer; transition: all 0.25s; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; letter-spacing: -0.01em; box-shadow: 0 1px 2px rgba(37,71,80,0.04); }
.btn-secondary-light:hover { border-color: var(--slate-700); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(37,71,80,0.1); color: var(--slate-700); }
.btn-outline-dark { background: transparent; color: var(--slate-700); padding: 16px 28px; font-size: 14.5px; font-weight: 500; border: 1px solid var(--slate-200); border-radius: 100px; cursor: pointer; transition: all 0.25s; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; letter-spacing: -0.01em; }
.btn-outline-dark:hover { background: var(--ink-900); border-color: var(--ink-900); color: var(--white); transform: translateY(-1px); box-shadow: 0 12px 32px rgba(10,21,24,0.2); }
.btn-premium-light { position: relative; background: linear-gradient(180deg, var(--white), #ECEFF1); color: var(--ink-900); padding: 16px 28px; font-size: 14.5px; font-weight: 600; border: none; border-radius: 100px; cursor: pointer; transition: all 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); text-decoration: none; display: inline-flex; align-items: center; gap: 10px; letter-spacing: -0.01em; box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset, 0 12px 32px rgba(200,169,81,0.15); }
.btn-premium-light:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset, 0 20px 48px rgba(200,169,81,0.25); color: var(--ink-900); }
.btn-ghost-premium { background: transparent; color: var(--white); padding: 16px 28px; font-size: 14.5px; font-weight: 500; border: 1px solid rgba(255,255,255,0.14); border-radius: 100px; cursor: pointer; transition: all 0.25s; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; letter-spacing: -0.01em; }
.btn-ghost-premium:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.04); color: var(--white); }

/* SECTION TAGS */
.section-tag { display: inline-flex; align-items: center; gap: 10px; font-family: 'Geist Mono', monospace; font-size: 11.5px; color: var(--slate-700); letter-spacing: 0.06em; margin-bottom: 24px; text-transform: uppercase; padding: 6px 14px; background: var(--white); border: 1px solid var(--slate-100); border-radius: 100px; }
.section-tag .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 6px var(--gold); }

/* STATS BAR */
.stats-bar { background: var(--white); padding: 64px 40px; border-top: 1px solid var(--slate-100); border-bottom: 1px solid var(--slate-100); }
.stats-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; }
.stat-premium { position: relative; padding-left: 20px; }
.stat-premium::before { content: ''; position: absolute; left: 0; top: 4px; width: 3px; height: 44px; background: linear-gradient(180deg, var(--gold) 0%, transparent 100%); }
.stat-premium .value { font-size: 56px; font-weight: 700; line-height: 1; letter-spacing: -0.04em; margin-bottom: 12px; color: var(--slate-700); }
.stat-premium .value .plus { color: var(--gold); font-weight: 500; font-size: 40px; }
.stat-premium .label { font-family: 'Geist Mono', monospace; font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--slate-500); }

/* ABOUT */
.about { background: var(--canvas); padding: 160px 40px 100px; }
.about-inner { max-width: 1400px; margin: 0 auto; }
.about-title { font-size: clamp(48px,6vw,88px); font-weight: 700; line-height: 0.98; letter-spacing: -0.045em; color: var(--slate-700); margin-bottom: 64px; }
.about-title .outline { color: inherit; }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-text { font-size: 18px; line-height: 1.75; color: var(--ink-muted); }
.about-text p { margin-bottom: 24px; }
.about-text .lead { font-size: 21px; font-weight: 500; font-style: normal; color: var(--slate-700); letter-spacing: -0.01em; line-height: 1.6; }
.about-text .lead em { font-style: normal; font-weight: 500; color: var(--slate-700); }
.about-features { display: flex; flex-direction: column; gap: 20px; }
.about-feature { background: var(--white); border: 1px solid var(--slate-100); border-radius: 14px; padding: 24px; display: flex; gap: 24px; align-items: flex-start; transition: background 0.2s; }
.about-feature:hover { background: var(--slate-50); }
.about-feature .idx { font-family: 'Geist Mono', monospace; font-size: 12px; font-weight: 600; color: var(--gold-deep); letter-spacing: 0.04em; padding-top: 2px; flex-shrink: 0; }
.about-feature h4 { font-size: 17px; font-weight: 600; color: var(--slate-700); margin-bottom: 6px; letter-spacing: -0.01em; }
.about-feature p { font-size: 15px; color: var(--ink-muted); line-height: 1.6; margin: 0; }

/* EXPERTISE */
.expertise { background: var(--white); padding: 100px 40px 160px; border-top: 1px solid var(--slate-100); border-bottom: 1px solid var(--slate-100); position: relative; }
.expertise::before { content: ''; position: absolute; top: 10%; left: 50%; transform: translateX(-50%); width: 60%; height: 60%; background: radial-gradient(ellipse at center, rgba(200,169,81,0.05) 0%, transparent 60%); pointer-events: none; }
.expertise-inner { max-width: 1400px; margin: 0 auto; position: relative; }
.expertise-header { display: grid; grid-template-columns: 1.5fr 1fr; gap: 80px; align-items: end; margin-bottom: 80px; }
.expertise-title { font-size: clamp(44px,5.5vw,80px); font-weight: 700; line-height: 0.98; letter-spacing: -0.045em; color: var(--slate-700); }
.expertise-title .outline { color: inherit; }
.expertise-subtitle { font-size: 19px; line-height: 1.7; color: var(--ink-muted); max-width: 460px; }
.expertise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.exp-card { background: var(--white); padding: 28px 26px 24px; cursor: pointer; transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1); position: relative; min-height: 240px; display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--slate-100); border-radius: 14px; box-shadow: 0 1px 2px rgba(37,71,80,0.04); isolation: isolate; text-decoration: none; }
.exp-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold) 100%); transform: scaleX(0); transform-origin: left; transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1); z-index: 2; }
.exp-card::after { content: attr(data-number); position: absolute; bottom: -26px; right: -16px; font-family: 'Hanken Grotesk', sans-serif; font-size: 170px; font-weight: 800; line-height: 1; color: var(--slate-700); opacity: 0.04; letter-spacing: -0.08em; pointer-events: none; transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1); z-index: 0; }
.exp-card:hover { transform: translateY(-6px); border-color: var(--slate-200); box-shadow: 0 30px 60px -20px rgba(37,71,80,0.18); }
.exp-card:hover::before { transform: scaleX(1); }
.exp-card:hover::after { opacity: 0.08; bottom: -20px; right: -10px; }
.exp-card > * { position: relative; z-index: 1; }
.exp-card .top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 28px; }
.exp-card .card-num { font-family: 'Anton', 'Barlow Condensed', sans-serif; font-size: 48px; line-height: 0.85; color: var(--slate-700); letter-spacing: 0.02em; position: relative; padding-bottom: 12px; }
.exp-card .card-num::after { content: ''; position: absolute; left: 0; bottom: 0; width: 24px; height: 2px; background: var(--gold); transition: width 0.4s cubic-bezier(0.215, 0.61, 0.355, 1); }
.exp-card:hover .card-num::after { width: 44px; }
.exp-card h3 { font-size: 19px; font-weight: 700; color: var(--slate-700); letter-spacing: -0.022em; margin-bottom: 9px; line-height: 1.22; }
.exp-card p { font-size: 13.5px; line-height: 1.55; color: var(--ink-muted); flex-grow: 1; margin-bottom: 18px; }
.exp-card .action { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding-top: 15px; border-top: 1px solid var(--slate-100); font-size: 11.5px; color: var(--slate-700); font-weight: 600; letter-spacing: 0.04em; font-family: 'Geist Mono', monospace; text-transform: uppercase; transition: all 0.3s; }
.exp-card .action .arrow-wrap { width: 26px; height: 26px; border-radius: 50%; background: var(--canvas); border: 1px solid var(--slate-100); display: flex; align-items: center; justify-content: center; color: var(--slate-700); transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1); }
.exp-card:hover .action { color: var(--gold-deep); }
.exp-card:hover .action .arrow-wrap { background: var(--slate-700); color: var(--gold); border-color: var(--slate-700); transform: translateX(4px); }
.exp-card .action .arrow-wrap svg { width: 12px; height: 12px; }
.exp-footer { margin-top: 48px; display: flex; justify-content: center; }
.btn-pill-light {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  background: transparent;
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 14px; font-weight: 600;
  color: var(--slate-700);
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.btn-pill-light:hover { border-color: var(--slate-400); box-shadow: 0 1px 2px rgba(37,71,80,0.06); color: var(--slate-700); }
.btn-pill-light .arrow { display: inline-block; transition: transform 0.2s; }
.btn-pill-light:hover .arrow { transform: translateX(3px); }

/* VALUES */
.values { background: var(--canvas); padding: 160px 40px; }
.values-inner { max-width: 1400px; margin: 0 auto; }
.values-header { margin-bottom: 80px; }
.values-title { font-size: clamp(44px,5.5vw,80px); font-weight: 700; line-height: 0.98; letter-spacing: -0.045em; color: var(--slate-700); max-width: 900px; }
.values-title .outline { color: inherit; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--slate-200); }
.value-item { padding: 40px 32px 32px 0; border-right: 1px solid var(--slate-200); position: relative; transition: all 0.3s; }
.value-item:last-child { border-right: none; padding-right: 0; }
.value-item:hover { padding-left: 12px; background: rgba(37,71,80,0.015); }
.value-item::before { content: ''; position: absolute; top: -1px; left: 0; width: 60px; height: 2px; background: var(--gold); }
.value-item .num { font-family: 'Geist Mono', monospace; font-size: 12px; color: var(--slate-500); margin-bottom: 32px; letter-spacing: 0.04em; }
.value-item h3 { font-size: 22px; font-weight: 600; color: var(--slate-700); letter-spacing: -0.025em; margin-bottom: 12px; line-height: 1.15; }
.value-item p { font-size: 14.5px; color: var(--ink-muted); line-height: 1.6; }

/* TEAM */
.team { background: var(--white); padding: 160px 40px 100px; position: relative; overflow: hidden; border-top: 1px solid var(--slate-100); border-bottom: 1px solid var(--slate-100); }
.team::before { content: ''; position: absolute; top: 0; right: 0; width: 40%; height: 60%; background: radial-gradient(ellipse at 100% 0%, rgba(200,169,81,0.07) 0%, transparent 60%); pointer-events: none; }
.team-inner { max-width: 1400px; margin: 0 auto; position: relative; }
.team-header { display: grid; grid-template-columns: 1.5fr 1fr; gap: 80px; align-items: end; margin-bottom: 80px; }
.team-title { font-size: clamp(44px,5.5vw,80px); font-weight: 700; line-height: 0.98; letter-spacing: -0.045em; color: var(--slate-700); }
.team-title .outline { color: inherit; }
.team-header p { font-size: 17px; color: var(--ink-muted); line-height: 1.6; max-width: 380px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; align-items: start; }
.member { position: relative; cursor: pointer; display: flex; flex-direction: column; transition: opacity 0.6s ease, transform 0.6s ease; text-decoration: none; color: inherit; }
.member .photo-wrap { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 14px; margin-bottom: 22px; background: var(--slate-100); box-shadow: 0 1px 2px rgba(37,71,80,0.04); transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1); }
.member:hover .photo-wrap { transform: translateY(-4px); box-shadow: 0 30px 60px -20px rgba(37,71,80,0.25); }
.member .photo-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,21,24,0.45) 0%, transparent 45%); z-index: 1; pointer-events: none; }
.member .photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top center; filter: saturate(1.05) contrast(1.02); transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1); }
.member:hover .photo-wrap img { transform: scale(1.05); }
.member .tag { position: absolute; top: 16px; left: 16px; background: rgba(255,255,255,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(200,169,81,0.3); color: var(--gold-deep); font-family: 'Geist Mono', monospace; font-size: 10.5px; padding: 5px 10px; border-radius: 100px; letter-spacing: 0.06em; z-index: 2; text-transform: uppercase; font-weight: 600; }
.member .role { font-family: 'Geist Mono', monospace; font-size: 11px; letter-spacing: 0.05em; color: var(--gold-deep); margin-bottom: 6px; text-transform: uppercase; font-weight: 600; }
.member h3 { font-size: 16px; font-weight: 600; color: var(--slate-700); letter-spacing: -0.02em; margin-bottom: 6px; line-height: 1.2; }
.member .bio { font-size: 12px; line-height: 1.5; color: var(--ink-muted); margin-bottom: 10px; }
.tier-grid.compact .member h3 { font-size: 14px; margin-bottom: 4px; }
.tier-grid.compact .member .role { font-size: 12px; }
@media (min-width: 1024px) { .member h3 { font-size: 17px; } .member .bio { font-size: 12.5px; } }
@media (min-width: 1280px) { .member h3 { font-size: 18px; } }
.member .links { display: flex; gap: 8px; padding-top: 12px; border-top: 1px solid var(--slate-100); }
.member .links a { width: 32px; height: 32px; border-radius: 8px; background: var(--slate-50); border: 1px solid var(--slate-100); color: var(--slate-600); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all 0.2s; }
.member .links a:hover { background: var(--ink-900); border-color: var(--ink-900); color: var(--gold); }
.member .links a svg { width: 13px; height: 13px; flex-shrink: 0; }

/* INSIGHTS */
.insights { background: var(--canvas); padding: 100px 40px 160px; }
.insights-inner { max-width: 1400px; margin: 0 auto; }
.insights-header { display: grid; grid-template-columns: 1.5fr 1fr; gap: 80px; align-items: end; margin-bottom: 80px; }
.insights-title { font-size: clamp(44px,5.5vw,80px); font-weight: 700; line-height: 0.98; letter-spacing: -0.045em; color: var(--slate-700); }
.insights-title .outline { color: inherit; }
.insights-header .right { display: flex; flex-direction: column; align-items: flex-end; gap: 24px; }
.insights-header p { font-size: 16px; color: var(--ink-muted); line-height: 1.6; max-width: 380px; text-align: right; }
.insights-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 24px; }
.insight { background: var(--white); border: 1px solid var(--slate-100); border-radius: 14px; overflow: hidden; cursor: pointer; transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1); display: flex; flex-direction: column; box-shadow: 0 1px 2px rgba(37,71,80,0.04); text-decoration: none; }
.insight:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -20px rgba(37,71,80,0.2); border-color: var(--slate-200); }
.insight.featured .thumb { aspect-ratio: 16/11; }
.insight .thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--slate-100); position: relative; }
.insight .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1); }
.insight:hover .thumb img { transform: scale(1.05); }
.insight .thumb .date-badge { position: absolute; top: 16px; left: 16px; background: rgba(255,255,255,0.94); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); color: var(--slate-700); font-family: 'Geist Mono', monospace; font-size: 11px; padding: 6px 12px; border-radius: 100px; letter-spacing: 0.02em; font-weight: 600; opacity: 0; transition: opacity 0.3s; }
.insight:hover .thumb .date-badge { opacity: 1; }
.insight .body { padding: 24px 24px 28px; flex-grow: 1; display: flex; flex-direction: column; }
.insight .tag-line { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.insight .tag { font-family: 'Geist Mono', monospace; font-size: 10.5px; color: var(--slate-700); letter-spacing: 0.05em; padding: 4px 10px; background: var(--slate-50); border: 1px solid var(--slate-100); border-radius: 100px; font-weight: 600; }
.insight .tag.featured-tag { background: var(--gold); color: var(--slate-700); border-color: var(--gold); }
.insight .dot-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--slate-300); }
.insight .read-time { font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--slate-500); }
.insight h3 { font-size: 22px; font-weight: 600; color: var(--slate-700); letter-spacing: -0.025em; line-height: 1.2; margin-bottom: 12px; }
.insight.featured h3 { font-size: 28px; }
.insight p { font-size: 14.5px; line-height: 1.6; color: var(--ink-muted); flex-grow: 1; margin-bottom: 20px; }
.insight .link { display: flex; align-items: center; gap: 8px; font-family: 'Geist Mono', monospace; font-size: 12px; color: var(--slate-700); letter-spacing: 0.02em; transition: gap 0.2s; font-weight: 600; }
.insight:hover .link { gap: 12px; color: var(--gold-deep); }

/* FINAL CTA */
.final-cta { background: var(--ink-950); color: var(--white); padding: 140px 40px; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 20%, rgba(37,71,80,0.5) 0%, transparent 50%), radial-gradient(ellipse at 75% 80%, rgba(200,169,81,0.15) 0%, transparent 50%); }
.final-cta::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(to right, rgba(177,186,193,0.04) 1px, transparent 1px), linear-gradient(to bottom, rgba(177,186,193,0.04) 1px, transparent 1px); background-size: 64px 64px; mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%); pointer-events: none; }
.final-cta-inner { max-width: 1100px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.final-cta .badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; border: 1px solid rgba(200,169,81,0.25); background: rgba(200,169,81,0.04); border-radius: 100px; font-family: 'Geist Mono', monospace; font-size: 11.5px; color: var(--gold); margin-bottom: 40px; letter-spacing: 0.06em; text-transform: uppercase; }
.final-cta .badge .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 8px var(--gold); }
.final-cta h2 { font-size: clamp(48px,7vw,96px); font-weight: 700; line-height: 0.98; letter-spacing: -0.05em; color: var(--white); margin-bottom: 28px; }
.final-cta h2 .accent { background: linear-gradient(100deg, var(--gold) 0%, var(--gold-bright) 40%, var(--gold) 70%, var(--gold-deep) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-style: normal; font-weight: 500; }
.final-cta p { font-size: 19px; line-height: 1.6; color: var(--slate-300); margin-bottom: 48px; max-width: 620px; margin-left: auto; margin-right: auto; }
.final-cta-buttons { display: inline-flex; gap: 14px; align-items: center; flex-wrap: wrap; justify-content: center; }

/* FOOTER */
footer { background: var(--ink-950); color: var(--white); padding: 100px 40px 40px; border-top: 1px solid rgba(200,169,81,0.08); }
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.2fr; gap: 80px; padding-bottom: 64px; border-bottom: 1px solid rgba(177,186,193,0.08); }
.footer-brand .logo { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.footer-brand .logo-mark { width: 50px; height: 46px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.footer-brand .logo-mark img { width: 100%; height: 100%; object-fit: contain; filter: brightness(1.15); }
.footer-brand .logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.footer-brand .logo-text .name { font-family: 'Anton', 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 400; letter-spacing: 0.02em; line-height: 1; text-transform: uppercase; }
.footer-brand .logo-text .sub { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; color: var(--gold); letter-spacing: 0.02em; margin-top: 3px; font-weight: 500; }
.footer-brand p { font-size: 14.5px; line-height: 1.65; color: var(--slate-400); max-width: 360px; margin-bottom: 28px; }
.footer-brand .motto-pill { display: inline-flex; align-items: center; padding: 8px 14px; background: rgba(200,169,81,0.06); border: 1px solid rgba(200,169,81,0.15); border-radius: 100px; font-family: 'Geist Mono', monospace; font-size: 12.5px; color: var(--gold); letter-spacing: 0.04em; }
.footer-col h4 { font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--slate-400); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 24px; font-weight: 500; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { color: var(--slate-200); text-decoration: none; font-size: 14.5px; transition: color 0.15s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-contact p { color: var(--slate-300); font-size: 14.5px; line-height: 1.6; margin-bottom: 4px; }
.footer-contact .mono { font-family: 'Geist Mono', monospace; font-size: 13.5px; }
.footer-contact .divider { height: 1px; background: rgba(177,186,193,0.08); margin: 16px 0; }
.footer-bottom { padding-top: 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-bottom .left { font-family: 'Geist Mono', monospace; font-size: 11.5px; color: var(--slate-400); letter-spacing: 0.04em; }
.footer-bottom .social { display: flex; gap: 8px; }
.footer-bottom .social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(177,186,193,0.04); border: 1px solid rgba(177,186,193,0.1); color: var(--slate-300); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all 0.2s; }
.footer-bottom .social a:hover { background: rgba(200,169,81,0.08); border-color: var(--gold); color: var(--gold); }
.footer-bottom .social svg { width: 15px; height: 15px; }

/* MOBILE NAV */
.menu-btn { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; width: 36px; height: 36px; padding: 0; background: transparent; border: none; cursor: pointer; }
.menu-btn span { display: block; width: 24px; height: 4px; background: var(--ink-900); border-radius: 1px; transition: transform 0.28s ease, opacity 0.2s ease; transform-origin: center; }
.mobile-panel { display: none; position: fixed; top: 50%; right: 16px; width: 210px; z-index: 99; background: rgba(255,255,255,0.96); backdrop-filter: blur(20px) saturate(160%); -webkit-backdrop-filter: blur(20px) saturate(160%); border-radius: 18px; box-shadow: 0 16px 48px rgba(10,21,24,0.14); flex-direction: column; overflow: hidden; pointer-events: none; transform: translateX(calc(100% + 20px)) translateY(-50%); transition: transform 0.32s cubic-bezier(0.34,1.56,0.64,1); }
.mobile-backdrop { display: none; position: fixed; inset: 0; z-index: 98; background: transparent; opacity: 0; pointer-events: none; }
.mobile-panel > ul { list-style: none; display: flex; flex-direction: column; padding: 10px 0; }
.mobile-panel > ul a { display: block; text-align: center; font-size: 15.5px; font-weight: 500; color: var(--slate-700); text-decoration: none; padding: 13px 24px; transition: background 0.15s; }
.mobile-panel > ul a:hover { background: rgba(37,71,80,0.05); }
.mobile-foot { padding: 10px 16px 14px; border-top: 1px solid var(--slate-100); }
.mobile-foot .phone-link { display: block; text-align: center; color: var(--slate-400); font-family: 'Geist Mono', monospace; font-size: 11px; text-decoration: none; letter-spacing: 0.03em; margin-bottom: 8px; }
.mobile-foot .mobile-cta { display: block; text-align: center; background: var(--slate-700); color: var(--white); padding: 10px; border-radius: 10px; font-size: 13px; font-weight: 600; text-decoration: none; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  nav.top { padding: 14px 20px; } nav.top.scrolled { padding: 10px 20px; }
  nav.top ul, nav.top .phone, nav.top .cta { display: none; }
  .menu-btn { display: flex; } .mobile-panel { display: flex; } .mobile-backdrop { display: block; }
  nav.top.menu-open .menu-btn span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  nav.top.menu-open .menu-btn span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  nav.top.menu-open .menu-btn span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
  nav.top.menu-open + .mobile-panel { pointer-events: auto; transform: translateX(0) translateY(-50%); }
  nav.top.menu-open ~ .mobile-backdrop { pointer-events: auto; }
  .hero { padding: 110px 20px 60px; min-height: auto; } .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-headline { font-size: 56px; } .hero-marker { display: none !important; }
  .stats-bar { padding: 48px 20px; } .stats-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about { padding: 100px 20px; } .about-content { grid-template-columns: 1fr; gap: 48px; }
  .expertise { padding: 100px 20px; } .expertise-header { grid-template-columns: 1fr; gap: 24px; } .expertise-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .values { padding: 100px 20px; } .values-grid { grid-template-columns: 1fr 1fr; border-top: none; }
  .value-item { border-right: none; border-top: 1px solid var(--slate-200); padding: 32px 16px 24px 0; }
  .team { padding: 100px 20px; } .team-header { grid-template-columns: 1fr; gap: 24px; } .team-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .insights { padding: 100px 20px; } .insights-header { grid-template-columns: 1fr; gap: 24px; } .insights-header .right { align-items: flex-start; } .insights-header p { text-align: left; } .insights-grid { grid-template-columns: 1fr; }
  .final-cta { padding: 100px 20px; }
  footer { padding: 60px 20px 32px; } .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; padding-bottom: 40px; } .footer-brand { grid-column: span 2; }
}
@media (max-width: 640px) {
  nav.top { padding: 12px 14px; } .hero { padding: 88px 16px 48px; }
  .hero-headline { font-size: clamp(34px,10vw,44px); line-height: 1.02; letter-spacing: -0.03em; }
  .hero-buttons { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-buttons a { justify-content: center; width: 100%; padding: 14px 20px; }
  .stats-inner { grid-template-columns: 1fr; } .expertise-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; } .values-grid { grid-template-columns: 1fr; }
  .value-item { padding: 32px 0 24px !important; }
  .footer-grid { grid-template-columns: 1fr; } .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* PAGE HERO (inner pages) — matches design-preview/assets/style.css */
.page-hero { position: relative; padding: 180px 40px 100px; background: var(--canvas); color: var(--slate-700); border-bottom: 1px solid var(--slate-100); overflow: hidden; }
.page-hero::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 60%; height: 100%;
  background: radial-gradient(circle at 70% 40%, rgba(200, 169, 81, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(37, 71, 80, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(37, 71, 80, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 80%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 1400px; margin: 0 auto; }
.page-hero-title { font-size: clamp(56px,8vw,120px); font-weight: 700; line-height: 0.96; letter-spacing: -0.05em; color: var(--slate-700); margin: 24px 0 28px; }
.page-hero-title .outline { color: inherit; }
.page-hero-sub { font-size: 20px; color: var(--ink-muted); max-width: 600px; line-height: 1.6; }

/* STORY */
.story { padding: 160px 40px; background: var(--canvas); }
.story-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 100px; align-items: start; }
.story h2 { font-size: clamp(44px,5.5vw,80px); font-weight: 700; line-height: 0.98; letter-spacing: -0.045em; color: var(--slate-700); position: sticky; top: 120px; }
.story h2 .outline { color: inherit; }
.story-body { font-size: 18px; line-height: 1.7; color: var(--ink-muted); }
.story-body p { margin-bottom: 28px; }
.story-body .lead { font-size: 24px; font-weight: 500; color: var(--slate-700); letter-spacing: -0.02em; line-height: 1.4; }
.pull-quote { display: block; padding: 32px 0 32px 40px; border-left: 2px solid var(--gold); margin: 40px 0; font-size: 22px; font-style: normal; color: var(--slate-700); font-weight: 500; line-height: 1.4; letter-spacing: -0.015em; }

/* VVM */
.vvm { padding: 160px 40px; background: var(--white); border-top: 1px solid var(--slate-100); border-bottom: 1px solid var(--slate-100); }
.vvm-inner { max-width: 1400px; margin: 0 auto; }
.vvm-header { text-align: center; margin-bottom: 80px; }
.vvm-header h2 { font-size: clamp(44px,5.5vw,80px); font-weight: 700; line-height: 0.98; letter-spacing: -0.045em; color: var(--slate-700); margin-top: 16px; }
.vvm-header h2 .outline { color: inherit; }
.vvm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vvm-card { background: var(--white); border: 1px solid var(--slate-100); border-radius: 16px; padding: 40px; text-align: center; position: relative; overflow: hidden; transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1); box-shadow: 0 1px 2px rgba(37,71,80,0.04); }
.vvm-card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -20px rgba(37,71,80,0.15); border-color: var(--gold); }
.vvm-card::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 2px; background: var(--gold); }
.vvm-card .roman { font-family: 'Hanken Grotesk', serif; font-size: 72px; font-weight: 300; font-style: italic; line-height: 1; color: var(--slate-700); letter-spacing: -0.02em; margin: 8px auto 28px; display: inline-block; position: relative; padding-bottom: 14px; transition: color 0.3s; }
.vvm-card .roman::after { content: ''; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 32px; height: 2px; background: var(--gold); transition: width 0.4s cubic-bezier(0.215, 0.61, 0.355, 1); }
.vvm-card:hover .roman { color: var(--gold-deep); }
.vvm-card:hover .roman::after { width: 56px; }
.vvm-card .kicker { font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--gold-deep); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; font-weight: 600; }
.vvm-card h3 { font-size: 24px; font-weight: 600; color: var(--slate-700); letter-spacing: -0.02em; margin-bottom: 16px; line-height: 1.2; }
.vvm-card p { font-size: 15px; line-height: 1.6; color: var(--ink-muted); }
.vvm-card.motto .roman { color: var(--gold-deep); font-weight: 400; }

/* COMPETITIVE EDGE — advantages (matches design-preview/about.html) */
.advantages { padding: 160px 40px; background: var(--canvas); }
.advantages-inner { max-width: 1400px; margin: 0 auto; }
.advantages-header { margin-bottom: 80px; max-width: 800px; }
.advantages-header h2 { font-size: clamp(44px,5.5vw,80px); font-weight: 700; line-height: 0.98; letter-spacing: -0.045em; color: var(--slate-700); margin-top: 16px; }
.advantages-header h2 .outline { color: inherit; }
.advantages-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; background: var(--slate-100); border: 1px solid var(--slate-100); border-radius: 14px; overflow: hidden; box-shadow: 0 30px 60px -30px rgba(37,71,80,0.15); }
.advantage { background: var(--white); padding: 32px 28px 40px; transition: background 0.3s; cursor: pointer; display: flex; flex-direction: column; }
.advantage:hover { background: var(--canvas); }
.advantage .big-num { font-family: 'Anton','Barlow Condensed',sans-serif; font-size: 48px; line-height: 0.85; color: var(--slate-700); letter-spacing: 0.02em; margin-bottom: 24px; position: relative; padding-bottom: 12px; transition: color 0.3s ease; }
.advantage .big-num::after { content: ''; position: absolute; left: 0; bottom: 0; width: 24px; height: 2px; background: var(--gold); transition: width 0.4s cubic-bezier(0.215, 0.61, 0.355, 1); }
.advantage:hover .big-num::after { width: 40px; }
.advantage h3 { font-size: 17px; font-weight: 600; color: var(--slate-700); letter-spacing: -0.01em; margin-bottom: 10px; line-height: 1.2; }
.advantage p { font-size: 13.5px; line-height: 1.55; color: var(--ink-muted); }

/* RESPONSIVE — inner pages */
@media (max-width: 1024px) {
  .page-hero { padding: 110px 20px 60px; }
  .story { padding: 100px 20px; } .story-inner { grid-template-columns: 1fr; gap: 48px; }
  .story h2 { position: static; }
  .vvm { padding: 100px 20px; } .vvm-grid { grid-template-columns: 1fr; }
  .advantages { padding: 100px 20px; } .advantages-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .advantages-grid { grid-template-columns: 1fr; }
  .vvm-grid { grid-template-columns: 1fr; }
}

/* EXPERTISE LISTING PAGE */
.all-expertise { padding: 80px 40px 160px; background: var(--canvas); }
.all-expertise-inner { max-width: 1400px; margin: 0 auto; }

.cluster { margin-bottom: 80px; }
.cluster:last-child { margin-bottom: 0; }
.cluster-header {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 32px;
}
.cluster-header .num {
  font-family: 'Geist Mono', monospace; font-size: 13px;
  color: var(--gold-deep); letter-spacing: 0.06em; font-weight: 600;
}
.cluster-header h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700; color: var(--slate-700);
  letter-spacing: -0.03em; line-height: 1; flex: 1;
}
.cluster-header .count {
  font-family: 'Geist Mono', monospace; font-size: 12px;
  color: var(--slate-500);
  padding: 4px 10px; background: var(--white);
  border: 1px solid var(--slate-100); border-radius: 100px;
}
@media (max-width: 1024px) {
  .cluster-header { flex-wrap: wrap; gap: 12px; }
}

.cluster-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 1024px) { .all-expertise { padding: 60px 20px 100px; } .cluster-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cluster-grid { grid-template-columns: 1fr; } }

/* EXPERTISE DETAIL */
.page-hero-detail { padding: 160px 40px 80px; background: var(--canvas); border-bottom: 1px solid var(--slate-100); }
.hero-detail-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 80px; align-items: end; }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--ink-muted); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.back-link:hover { color: var(--slate-700); }
.hero-detail-right { display: flex; flex-direction: column; gap: 16px; }
.meta-card { background: var(--white); border: 1px solid var(--slate-100); border-radius: 12px; padding: 20px 24px; box-shadow: 0 1px 2px rgba(37,71,80,0.04); }
.meta-card .label { font-family: 'Geist Mono', monospace; font-size: 10.5px; color: var(--slate-500); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px; }
.meta-card .value { font-size: 16px; font-weight: 600; color: var(--slate-700); letter-spacing: -0.01em; }
.detail-content { padding: 100px 40px 140px; background: var(--canvas); }
.content-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 8fr 4fr; gap: 80px; align-items: start; }
.content-main { max-width: 780px; }
.expertise-body { font-size: 17px; line-height: 1.7; color: var(--ink-muted); }
.expertise-body h2 { font-size: 28px; font-weight: 700; color: var(--slate-700); letter-spacing: -0.025em; margin: 40px 0 16px; line-height: 1.2; }
.expertise-body h3 { font-size: 22px; font-weight: 600; color: var(--slate-700); letter-spacing: -0.02em; margin: 32px 0 12px; }
.expertise-body p { margin-bottom: 20px; }
.expertise-body ul { padding-left: 24px; margin-bottom: 20px; }
.expertise-body ul li { margin-bottom: 8px; line-height: 1.6; }
.callout { padding: 32px 36px; background: linear-gradient(135deg, var(--slate-700) 0%, #1B3A44 100%); border-radius: 12px; position: relative; overflow: hidden; }
.callout .kicker { font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; margin-bottom: 10px; }
.callout h3 { font-size: 20px; font-weight: 600; color: #fff; letter-spacing: -0.02em; margin-bottom: 10px; line-height: 1.3; }
.callout p { color: rgba(255,255,255,0.68); font-size: 15px; line-height: 1.6; margin: 0; }
.sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 16px; }
.side-card { background: var(--white); border: 1px solid var(--slate-100); border-radius: 14px; padding: 24px; box-shadow: 0 1px 2px rgba(37,71,80,0.04); }
.side-card h4 { font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--slate-500); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; font-weight: 600; }
.side-card ul { list-style: none; }
.side-card ul li { border-bottom: 1px solid var(--slate-100); }
.side-card ul li:last-child { border-bottom: none; }
.side-card ul a { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; font-size: 14px; color: var(--ink-muted); text-decoration: none; transition: color 0.2s; gap: 8px; }
.side-card ul a:hover { color: var(--slate-700); }
.cite-text { font-size: 13.5px; line-height: 1.65; color: var(--ink-muted); }
.cite-text em { font-style: normal; }
/* Publication share row */
.pub-share { display: flex; align-items: center; gap: 14px; margin-top: 22px; flex-wrap: wrap; }
.pub-share .ps-label { font-family: 'Geist Mono', monospace; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate-500); }
.pub-share .ps-icons { display: flex; gap: 8px; }
.pub-share .ps-icons a, .pub-share .ps-icons button { width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--slate-100); border-radius: 50%; color: var(--slate-700); background: var(--white); cursor: pointer; padding: 0; transition: all 0.2s; }
.pub-share .ps-icons a:hover, .pub-share .ps-icons button:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.pub-share .ps-icons .copied { border-color: var(--gold); color: var(--gold); }
@media (max-width: 1024px) {
  .hero-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-detail-right { display: none; }
  .detail-content { padding: 60px 20px 100px; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}

/* PEOPLE LISTING */
.team-all { padding: 60px 40px 140px; background: var(--canvas); }
.team-all-inner { max-width: 1100px; margin: 0 auto; }
.tier { margin-bottom: 64px; }
.tier:last-child { margin-bottom: 0; }
.tier-header { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; padding-bottom: 16px; border-bottom: 1px solid var(--slate-200); }
.tier-header .num { font-family: 'Geist Mono', monospace; font-size: 13px; color: var(--gold-deep); letter-spacing: 0.06em; font-weight: 600; }
.tier-header h2 { font-size: clamp(28px,3.5vw,40px); font-weight: 700; color: var(--slate-700); letter-spacing: -0.03em; line-height: 1; flex: 1; }
.tier-header .count { font-family: 'Geist Mono', monospace; font-size: 12px; color: var(--slate-500); padding: 4px 10px; background: var(--white); border: 1px solid var(--slate-100); border-radius: 100px; }
.tier-grid { display: grid; gap: 24px; }
.tier-grid > *:not(.member) { display: none; }
.tier-grid.standard { grid-template-columns: repeat(3, 1fr); }
.tier-grid.compact { grid-template-columns: repeat(4, 1fr); }

/* PERSON PROFILE */
.profile-hero { padding: 160px 40px 80px; background: var(--canvas); border-bottom: 1px solid var(--slate-100); position: relative; overflow: hidden; }
.profile-hero::before { content: ''; position: absolute; top: 0; right: 0; width: 60%; height: 100%; background: radial-gradient(circle at 70% 40%, rgba(200,169,81,0.08) 0%, transparent 60%); pointer-events: none; }
.profile-hero-inner { max-width: 1400px; margin: 0 auto; position: relative; z-index: 2; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: center; }
.profile-photo { position: relative; aspect-ratio: 4/5; max-width: 380px; width: 100%; margin: 0 auto; border-radius: 14px; overflow: hidden; box-shadow: 0 30px 80px -20px rgba(37,71,80,0.25); }
.profile-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; filter: saturate(1.05) contrast(1.02); }
.profile-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,21,24,0.4) 0%, transparent 50%); }
.profile-photo .name-overlay { position: absolute; bottom: 28px; left: 28px; right: 28px; z-index: 2; }
.profile-photo .name-overlay .badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; background: rgba(10,21,24,0.7); backdrop-filter: blur(12px); border: 1px solid rgba(200,169,81,0.3); border-radius: 100px; font-family: 'Geist Mono', monospace; font-size: 10px; color: var(--gold); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }
.role-title { font-family: 'Geist Mono', monospace; font-size: 13.5px; color: var(--slate-700); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; padding: 8px 14px; display: inline-block; background: var(--white); border: 1px solid var(--slate-100); border-radius: 100px; margin-bottom: 24px; }
.profile-summary { font-size: 18px; line-height: 1.6; color: var(--ink-muted); margin-bottom: 32px; max-width: 560px; }
.contact-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.contact-chip { display: flex; align-items: center; gap: 10px; padding: 14px 18px; background: var(--white); border: 1px solid var(--slate-100); border-radius: 12px; text-decoration: none; transition: all 0.2s; }
.contact-chip:hover { border-color: var(--gold); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(200,169,81,0.1); }
.contact-chip svg { width: 18px; height: 18px; color: var(--gold-deep); flex-shrink: 0; }
.contact-chip .info { display: flex; flex-direction: column; }
.contact-chip .label { font-family: 'Geist Mono', monospace; font-size: 10px; color: var(--slate-500); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }
.contact-chip .value { font-size: 14px; font-weight: 500; color: var(--slate-700); letter-spacing: -0.01em; }

@media (max-width: 1024px) {
  .team-all { padding: 48px 20px 100px; }
  .tier-grid.standard { grid-template-columns: repeat(2, 1fr); }
  .tier-grid.compact { grid-template-columns: repeat(3, 1fr); }
  .profile-hero { padding: 110px 20px 60px; }
  .profile-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .profile-photo { max-width: 280px; }
}
@media (max-width: 640px) {
  .tier-grid.standard { grid-template-columns: 1fr; }
  .tier-grid.compact { grid-template-columns: repeat(2, 1fr); }
  .contact-row { flex-direction: column; }
}

.member .photo-wrap.compact { aspect-ratio: 1/1; border-radius: 10px; }

/* People card — two-line text below photo */
.member .card-badge { font-family: 'Geist Mono', monospace; font-size: 11px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 6px; }
.member .role-sub { font-size: 13px; font-weight: 500; line-height: 1.3; letter-spacing: -0.01em; color: var(--slate-600); margin-bottom: 8px; }
.tier-grid.compact .member .role-sub { font-size: 12px; margin-bottom: 4px; }
@media (min-width: 1024px) { .member .role-sub { font-size: 13.5px; } }

/* PUBLICATIONS LISTING */
.pub-filter-bar { background: var(--white); padding: 24px 40px; border-bottom: 1px solid var(--slate-100); position: sticky; top: 0; z-index: 10; backdrop-filter: blur(12px); }
.pub-filter-inner { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.filter-tabs { display: flex; gap: 4px; padding: 4px; background: var(--canvas); border: 1px solid var(--slate-100); border-radius: 100px; overflow-x: auto; scrollbar-width: none; }
.filter-tabs::-webkit-scrollbar { display: none; }
.filter-tabs button { padding: 10px 18px; border: none; background: transparent; font-family: 'Hanken Grotesk', sans-serif; font-size: 13px; font-weight: 500; color: var(--ink-muted); border-radius: 100px; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.filter-tabs button.active { background: var(--ink-900); color: var(--white); box-shadow: 0 4px 12px rgba(10,21,24,0.2); }
.filter-tabs button:hover:not(.active) { color: var(--slate-700); }
.filter-meta { font-family: 'Geist Mono', monospace; font-size: 12px; color: var(--slate-500); letter-spacing: 0.04em; }
.insights-grid-section { padding: 40px 40px 140px; background: var(--canvas); }
.grid-inner { max-width: 1400px; margin: 0 auto; }
.pub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pub-pagination { margin-top: 48px; display: flex; justify-content: center; }
.pag-inner { display: flex; align-items: center; gap: 12px; }
.pag-btn { padding: 12px 24px; border: 1px solid var(--slate-200); border-radius: 100px; font-size: 13.5px; font-weight: 500; color: var(--slate-700); text-decoration: none; transition: all 0.2s; cursor: pointer; }
.pag-btn:hover { background: var(--slate-700); color: var(--white); border-color: var(--slate-700); }
.pag-btn.disabled { color: var(--slate-300); cursor: default; pointer-events: none; }
.pag-info { font-family: 'Geist Mono', monospace; font-size: 12px; color: var(--slate-500); letter-spacing: 0.04em; padding: 0 8px; }

/* PUBLICATION DETAIL */
.pub-hero { padding: 140px 40px 80px; background: var(--white); position: relative; overflow: hidden; border-bottom: 1px solid var(--slate-100); }
.pub-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 55% 70% at 85% 50%, rgba(200,169,81,0.07) 0%, transparent 60%); pointer-events: none; }
.pub-hero-inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 300px 1fr; gap: 72px; align-items: start; position: relative; z-index: 2; }
.pub-cover { position: relative; width: 100%; aspect-ratio: 1/1; border-radius: 8px; overflow: hidden; background: var(--ink-900); box-shadow: 0 30px 60px -22px rgba(10,21,24,0.45); }
.pub-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.pub-cover:hover img { transform: scale(1.04); }
.pub-cover::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 62%, rgba(10,21,24,0.50) 100%); z-index: 1; pointer-events: none; }
.pub-cover .corner { position: absolute; left: -1px; bottom: -1px; width: 84px; height: 84px; border-left: 3px solid var(--gold); border-bottom: 3px solid var(--gold); border-radius: 0 0 0 8px; z-index: 2; pointer-events: none; }
.pub-cover .cover-meta { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 22px; display: flex; justify-content: space-between; align-items: flex-end; color: #fff; }
.pub-cover .cover-meta .lbl { display: block; font-family: 'Geist Mono', monospace; font-size: 9.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.78; margin-bottom: 4px; }
.pub-cover .cover-meta .val { font-family: 'Geist Mono', monospace; font-size: 17px; font-weight: 700; letter-spacing: 0.02em; line-height: 1; }
.pub-cover .cover-meta .right { text-align: right; }
.pub-details { padding-top: 4px; }
.pub-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.pub-tags .ptag { font-family: 'Geist Mono', monospace; font-size: 10.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 13px; border-radius: 100px; border: 1px solid var(--slate-100); color: var(--slate-700); background: var(--canvas); }
.pub-tags .ptag-gold { background: var(--gold); border-color: var(--gold); color: var(--ink-900); }
.pub-details h1 { font-size: clamp(26px,3.2vw,46px); font-weight: 700; line-height: 1.07; letter-spacing: -0.03em; color: var(--slate-700); margin-bottom: 18px; }
.pub-details .lead { font-size: 16.5px; line-height: 1.65; color: var(--ink-muted); margin-bottom: 36px; max-width: 580px; }
.pub-meta-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--slate-100); border-radius: 12px; overflow: hidden; margin-bottom: 28px; }
.pmeta-item { padding: 15px 20px; border-right: 1px solid var(--slate-100); }
.pmeta-item:last-child { border-right: none; }
.pmeta-item .pm-label { font-family: 'Geist Mono', monospace; font-size: 9.5px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: var(--slate-400); margin-bottom: 5px; }
.pmeta-item .pm-val { font-size: 15px; font-weight: 700; color: var(--slate-700); letter-spacing: -0.015em; }

@media (max-width: 1024px) {
  .pub-filter-bar { padding: 16px 20px; }
  .insights-grid-section { padding: 32px 20px 100px; }
  .pub-grid { grid-template-columns: repeat(2, 1fr); }
  .pub-hero { padding: 110px 20px 60px; }
  .pub-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .pub-cover-stage { max-width: 280px; }
  .pub-meta-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .pub-grid { grid-template-columns: 1fr; }
}

/* Publications cluster grouping */
.pub-cluster { margin-bottom: 64px; }
.pub-cluster:last-child { margin-bottom: 0; }
.pub-cluster-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 28px; padding-bottom: 16px; border-bottom: 1px solid var(--slate-200); }
.pub-cluster-header h3 { font-size: clamp(22px,2.5vw,32px); font-weight: 700; color: var(--slate-700); letter-spacing: -0.025em; }
.pub-cluster-header .count { font-family: 'Geist Mono', monospace; font-size: 11.5px; color: var(--slate-500); letter-spacing: 0.04em; }
/* Page hero gold accent */
.page-hero-title .accent { background: linear-gradient(100deg, var(--gold-deep) 0%, var(--gold) 40%, var(--gold-bright) 60%, var(--gold-deep) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-style: normal; font-weight: 500; }

/* CONTACT PAGE */
.contact-section { padding: 100px 40px 140px; background: var(--canvas); }
.contact-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 64px; align-items: start; }
.form-wrap { background: var(--white); border: 1px solid var(--slate-100); border-radius: 20px; padding: 48px; box-shadow: 0 30px 80px -30px rgba(37,71,80,0.15); }
.form-header { margin-bottom: 32px; }
.form-kicker { display: inline-flex; align-items: center; gap: 8px; font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--gold-deep); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; padding: 5px 12px; background: rgba(200,169,81,0.08); border: 1px solid rgba(200,169,81,0.2); border-radius: 100px; font-weight: 600; }
.form-kicker::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 6px var(--gold); }
.form-header h2 { font-size: clamp(32px,4vw,48px); font-weight: 700; color: var(--slate-700); letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 14px; }
.form-header h2 .accent { background: linear-gradient(100deg, var(--gold-deep) 0%, var(--gold) 40%, var(--gold-bright) 60%, var(--gold-deep) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-style: normal; font-weight: 500; }
.form-header p { font-size: 16px; color: var(--ink-muted); line-height: 1.55; }
.form-success { display: flex; align-items: center; gap: 10px; padding: 14px 18px; background: rgba(37,71,80,0.06); border: 1px solid rgba(37,71,80,0.15); border-radius: 10px; color: var(--slate-700); font-size: 14.5px; font-weight: 500; margin-bottom: 24px; }
.form-row { display: grid; gap: 16px; margin-bottom: 16px; }
.form-row.two-col { grid-template-columns: 1fr 1fr; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label { font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--slate-600); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }
.form-field label .req { color: var(--gold-deep); }
.form-field input, .form-field textarea { padding: 14px 18px; background: var(--canvas); border: 1px solid var(--slate-100); border-radius: 10px; font-family: 'Hanken Grotesk', sans-serif; font-size: 15px; color: var(--slate-700); outline: none; transition: all 0.2s; font-weight: 500; }
.form-field textarea { min-height: 140px; resize: vertical; line-height: 1.55; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--slate-700); background: var(--white); box-shadow: 0 0 0 4px rgba(37,71,80,0.08); }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--ink-soft); }
.field-error { font-size: 12.5px; color: #c0392b; font-weight: 500; }
.form-footer { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--slate-100); display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.form-notice { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--ink-muted); }
.form-notice svg { width: 16px; height: 16px; color: var(--gold-deep); flex-shrink: 0; }
.submit-btn { background: linear-gradient(180deg, var(--ink-900) 0%, var(--slate-700) 100%); color: var(--white); padding: 16px 32px; font-size: 14.5px; font-weight: 600; border: none; border-radius: 100px; cursor: pointer; transition: all 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); display: inline-flex; align-items: center; gap: 10px; letter-spacing: -0.01em; box-shadow: 0 1px 0 rgba(255,255,255,0.1) inset, 0 8px 24px rgba(10,21,24,0.15); }
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255,255,255,0.1) inset, 0 16px 40px rgba(10,21,24,0.25); }
.submit-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.info-stack { display: flex; flex-direction: column; gap: 20px; }
.info-card { background: var(--white); border: 1px solid var(--slate-100); border-radius: 16px; padding: 28px; box-shadow: 0 1px 2px rgba(37,71,80,0.04); transition: all 0.2s; }
.info-card:hover { border-color: var(--slate-200); box-shadow: 0 12px 32px -10px rgba(37,71,80,0.1); }
.info-card h4 { font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--slate-500); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; font-weight: 600; }
.info-card .item { display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--slate-100); }
.info-card .item:last-child { border-bottom: none; }
.info-card .item .ico { width: 36px; height: 36px; border-radius: 8px; background: linear-gradient(135deg, rgba(200,169,81,0.15) 0%, rgba(200,169,81,0.04) 100%); border: 1px solid rgba(200,169,81,0.2); color: var(--gold-deep); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-card .item .ico svg { width: 16px; height: 16px; }
.info-card .item .text { flex: 1; }
.info-card .item .label { font-family: 'Geist Mono', monospace; font-size: 10.5px; color: var(--slate-500); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 4px; font-weight: 600; }
.info-card .item .value { font-size: 14.5px; color: var(--slate-700); font-weight: 500; letter-spacing: -0.01em; line-height: 1.4; }
.info-card .item a.value { text-decoration: none; transition: color 0.15s; }
.info-card .item a.value:hover { color: var(--gold-deep); }
.info-card .item .value.mono { font-family: 'Geist Mono', monospace; font-size: 13.5px; }
.hours-list { display: flex; flex-direction: column; }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px dashed var(--slate-100); font-size: 14px; }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--slate-700); font-weight: 500; }
.hours-row .time { font-family: 'Geist Mono', monospace; font-size: 12.5px; color: var(--ink-muted); }
.hours-row.closed .time { color: #c0392b; }
.info-card.urgent { background: linear-gradient(135deg, var(--ink-900) 0%, var(--slate-700) 100%); border-color: rgba(200,169,81,0.2); box-shadow: 0 20px 40px -20px rgba(10,21,24,0.3); }
.info-card.urgent h4 { color: var(--gold); }
.info-card.urgent h3 { font-size: 22px; font-weight: 600; color: var(--white); letter-spacing: -0.02em; margin-bottom: 10px; line-height: 1.25; }
.info-card.urgent p { font-size: 14px; line-height: 1.55; color: var(--slate-300); margin-bottom: 18px; }
.urgent-phone { display: inline-flex; align-items: center; gap: 10px; padding: 14px 20px; background: var(--gold); color: var(--ink-900); text-decoration: none; border-radius: 100px; font-size: 14px; font-weight: 600; letter-spacing: -0.01em; transition: all 0.2s; }
.urgent-phone:hover { background: var(--gold-bright); transform: translateY(-1px); }
@media (max-width: 1024px) { .contact-section { padding: 60px 20px 100px; } .contact-inner { grid-template-columns: 1fr; } .form-wrap { padding: 32px 24px; } }
@media (max-width: 640px) { .form-row.two-col { grid-template-columns: 1fr; } .form-footer { flex-direction: column; align-items: stretch; } .submit-btn { justify-content: center; } }

/* ── Scroll-to-top button ── */
.scroll-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 80;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--slate-700); color: var(--white); border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, background 0.2s;
  box-shadow: 0 6px 16px rgba(37,71,80,0.18);
}
.scroll-top.is-visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--gold-deep); }
@media (max-width: 640px) { .scroll-top { right: 16px; bottom: 16px; } }

/* ========== ABOUT — HISTORY TIMELINE ========== */
.timeline { background: var(--white); padding: 160px 40px; border-top: 1px solid var(--slate-100); border-bottom: 1px solid var(--slate-100); }
.timeline-inner { max-width: 1100px; margin: 0 auto; }
.timeline-header { text-align: center; margin-bottom: 80px; }
.timeline-header h2 { font-size: clamp(44px, 5.5vw, 80px); font-weight: 700; line-height: 0.98; letter-spacing: -0.045em; color: var(--slate-700); margin-top: 16px; }
.timeline-header h2 .outline { color: inherit; }
.timeline-list { position: relative; padding-left: 40px; }
.timeline-list::before { content: ''; position: absolute; left: 11px; top: 10px; bottom: 10px; width: 1px; background: linear-gradient(180deg, var(--gold) 0%, var(--slate-200) 80%, transparent 100%); }
.timeline-item { position: relative; padding-bottom: 60px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before { content: ''; position: absolute; left: -35px; top: 10px; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 3px var(--white), 0 0 0 4px rgba(200, 169, 81, 0.25); }
.timeline-item .date { font-family: 'Geist Mono', monospace; font-size: 12px; color: var(--gold-deep); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; margin-bottom: 10px; }
.timeline-item h3 { font-size: 24px; font-weight: 600; color: var(--slate-700); letter-spacing: -0.02em; margin-bottom: 10px; line-height: 1.2; }
.timeline-item p { font-size: 15.5px; line-height: 1.65; color: var(--ink-muted); }
@media (max-width: 1024px) { .timeline { padding: 100px 20px; } }

/* ========== PUBLICATION DETAIL — RELATED GRID ========== */
.related { padding: 80px 40px 100px; background: var(--white); border-top: 1px solid var(--slate-100); }
.related-inner { max-width: 1400px; margin: 0 auto; }
.related-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; margin-bottom: 48px; }
.related-header h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; color: var(--slate-700); letter-spacing: -0.03em; line-height: 1; }
.related-header h2 .outline { color: inherit; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rel-pub { background: var(--canvas); border: 1px solid var(--slate-100); border-radius: 14px; overflow: hidden; text-decoration: none; color: inherit; cursor: pointer; transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1); display: flex; flex-direction: column; }
.rel-pub:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -20px rgba(37,71,80,0.2); border-color: var(--slate-200); }
.rel-pub .thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--slate-100); position: relative; }
.rel-pub .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1); }
.rel-pub:hover .thumb img { transform: scale(1.05); }
.rel-pub .thumb::after { content: 'PDF'; position: absolute; top: 14px; right: 14px; background: var(--gold); color: var(--ink-900); font-family: 'Geist Mono', monospace; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; padding: 4px 10px; border-radius: 100px; }
.rel-pub .rp-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.rel-pub .rp-meta { display: flex; gap: 8px; align-items: center; margin-bottom: 12px; }
.rel-pub .rp-tag { font-family: 'Geist Mono', monospace; font-size: 10px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--slate-700); padding: 3px 9px; background: var(--white); border: 1px solid var(--slate-100); border-radius: 100px; }
.rel-pub .rp-pages { font-family: 'Geist Mono', monospace; font-size: 10.5px; color: var(--slate-500); letter-spacing: 0.02em; }
.rel-pub h3 { font-size: 17px; font-weight: 600; color: var(--slate-700); letter-spacing: -0.02em; line-height: 1.3; margin-bottom: 10px; flex: 1; }
.rel-pub .rp-link { display: flex; align-items: center; gap: 8px; font-family: 'Geist Mono', monospace; font-size: 11px; font-weight: 600; color: var(--slate-700); letter-spacing: 0.02em; margin-top: 14px; transition: gap 0.2s; }
.rel-pub:hover .rp-link { gap: 12px; color: var(--gold-deep); }
@media (max-width: 1024px) { .related { padding: 60px 20px 80px; } .related-grid { grid-template-columns: 1fr; } }

/* ========== CONTACT — MAP SECTION ========== */
.map-section { padding: 0; background: var(--white); border-top: 1px solid var(--slate-100); border-bottom: 1px solid var(--slate-100); }
.map-wrap { position: relative; height: 480px; background: var(--slate-100); overflow: hidden; }
.map-wrap iframe { width: 100%; height: 100%; border: none; filter: grayscale(15%) contrast(1.05); }
.map-pin-card { position: absolute; top: 40px; left: 40px; background: var(--white); border-radius: 16px; padding: 24px; max-width: 340px; box-shadow: 0 30px 60px -20px rgba(37,71,80,0.25); border: 1px solid var(--slate-100); z-index: 2; }
.map-pin-card h4 { font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--gold-deep); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; font-weight: 600; }
.map-pin-card h3 { font-size: 20px; font-weight: 600; color: var(--slate-700); letter-spacing: -0.02em; margin-bottom: 12px; line-height: 1.25; }
.map-pin-card p { font-size: 14px; line-height: 1.55; color: var(--ink-muted); margin-bottom: 18px; }
.map-pin-card a { display: inline-flex; align-items: center; gap: 8px; font-family: 'Geist Mono', monospace; font-size: 12px; color: var(--slate-700); text-decoration: none; padding: 10px 16px; background: var(--canvas); border: 1px solid var(--slate-100); border-radius: 100px; transition: all 0.2s; font-weight: 600; letter-spacing: 0.02em; }
.map-pin-card a:hover { background: var(--ink-900); color: var(--gold); border-color: var(--ink-900); }
@media (max-width: 1024px) { .map-wrap { height: 360px; } .map-pin-card { top: 20px; left: 20px; right: 20px; max-width: none; } }
/* Mobile: reduce the location card to 70% (−30%) */
@media (max-width: 640px) { .map-pin-card { transform: scale(0.7); transform-origin: top left; } }

/* ========== FILTER BAR (People + Expertise) ========== */
.filter-bar { background: var(--white); padding: 14px 40px; border-bottom: 1px solid var(--slate-100); position: sticky; top: 64px; z-index: 30; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); transition: padding 0.3s ease; }
.filter-bar.scrolled { padding: 8px 40px; }
.filter-inner { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.filter-tabs { display: flex; gap: 4px; padding: 4px; background: var(--canvas); border: 1px solid var(--slate-100); border-radius: 100px; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; }
.filter-tabs::-webkit-scrollbar { display: none; }
.filter-tabs a, .filter-tabs button { padding: 10px 18px; border: none; background: transparent; font-family: 'Hanken Grotesk', sans-serif; font-size: 13px; font-weight: 500; color: var(--ink-muted); letter-spacing: -0.01em; border-radius: 100px; cursor: pointer; transition: all 0.2s; white-space: nowrap; text-decoration: none; display: inline-flex; align-items: center; }
.filter-tabs a.active, .filter-tabs button.active { background: var(--ink-900); color: var(--white); box-shadow: 0 4px 12px rgba(10,21,24,0.2); }
.filter-tabs a:hover:not(.active), .filter-tabs button:hover:not(.active) { color: var(--slate-700); }
/* People filter bar — smaller pills */
.filter-bar .filter-tabs { padding: 3px; }
.filter-bar .filter-tabs a, .filter-bar .filter-tabs button { padding: 6px 14px; font-size: 12px; }
@media (max-width: 1024px) { .filter-bar { padding: 10px 16px; top: 58px; } .filter-bar.scrolled { padding: 6px 16px; } }
.filter-meta { font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--slate-500); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }

/* ========================================================================
   PUBLICATIONS LISTING CARD — self-contained, independent of .insight.
   Cards size to their own content (align-items:start on the grid); title
   and bio are clamped to 2 lines for visual rhythm without forced stretch.
   ======================================================================== */
.pub-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pub-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(37, 71, 80, 0.04);
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1),
              box-shadow 0.3s cubic-bezier(0.215, 0.61, 0.355, 1),
              border-color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.pub-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -20px rgba(37, 71, 80, 0.2);
  border-color: var(--slate-200);
}

.pub-card-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--slate-100);
  overflow: hidden;
}
.pub-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.pub-card:hover .pub-card-thumb img { transform: scale(1.04); }
.pub-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--slate-100);
}

.pub-card-date {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--slate-700);
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 100px;
  letter-spacing: 0.02em;
  font-weight: 600;
}

.pub-card-body {
  padding: 18px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pub-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.pub-card-tag {
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px;
  color: var(--slate-700);
  letter-spacing: 0.05em;
  padding: 4px 10px;
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: 100px;
  font-weight: 600;
}
.pub-card-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--slate-300);
}
.pub-card-year {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--slate-500);
}

.pub-card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--slate-700);
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pub-card-bio {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-muted);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pub-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  font-family: 'Geist Mono', monospace;
  font-size: 11.5px;
  color: var(--slate-700);
  letter-spacing: 0.02em;
  font-weight: 600;
  transition: gap 0.2s, color 0.2s;
}
.pub-card:hover .pub-card-link {
  gap: 10px;
  color: var(--gold-deep);
}

@media (max-width: 1024px) {
  .pub-card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .pub-card-grid { grid-template-columns: 1fr; }
  .pub-card-body { padding: 16px 18px 20px; }
}

/* ========== CONTACT FORM — additions for v2 parity ========== */
/* Matter Type select — styled to match other form inputs */
.form-field .form-select {
  width: 100%;
  padding: 14px 18px;
  background: var(--canvas);
  border: 1px solid var(--slate-100);
  border-radius: 10px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--slate-700);
  outline: none;
  transition: all 0.2s;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235A828A' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 14px;
  padding-right: 44px;
}
.form-field .form-select:focus {
  border-color: var(--slate-700);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(37,71,80,0.08);
}
.form-field .form-select option:first-child { color: var(--slate-400); }

/* Success screen — replaces the form post-submit */
.form-success-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px;
}
.form-success-screen .form-success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(200,169,81,0.12);
  border: 1px solid rgba(200,169,81,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-deep);
  margin-bottom: 24px;
}
.form-success-screen .form-success-icon svg { width: 24px; height: 24px; }
.form-success-screen h3 {
  font-size: 26px; font-weight: 700; letter-spacing: -0.025em;
  color: var(--slate-700); margin-bottom: 12px;
}
.form-success-screen p {
  font-size: 15px; line-height: 1.6; color: var(--ink-muted);
  max-width: 400px; margin-bottom: 28px;
}
.form-success-reset {
  background: transparent; border: 1px solid var(--slate-200);
  color: var(--slate-700); padding: 10px 20px; border-radius: 100px;
  font-family: 'Hanken Grotesk', sans-serif; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
}
.form-success-reset:hover { border-color: var(--slate-700); background: var(--canvas); }

/* Submit button spinner */
.submit-btn .spin { animation: btn-spin 0.8s linear infinite; }
@keyframes btn-spin { to { transform: rotate(360deg); } }

/* ========== HERO BREADCRUMBS + PAGE TITLE (matches design-preview/assets/style.css) ========== */
.breadcrumbs {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Geist Mono', monospace; font-size: 11.5px;
  color: var(--slate-500);
  margin-bottom: 32px;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.breadcrumbs a { color: var(--slate-500); text-decoration: none; transition: color 0.15s; }
.breadcrumbs a:hover { color: var(--gold-deep); }
.breadcrumbs .sep { color: var(--slate-300); }
.breadcrumbs .current { color: var(--slate-700); }

.page-title {
  font-size: clamp(52px, 7vw, 104px);
  font-weight: 700; line-height: 0.96; letter-spacing: -0.05em;
  color: var(--slate-700);
  margin-bottom: 24px; max-width: 1100px;
}
.page-title .accent {
  background: linear-gradient(100deg, var(--gold-deep) 0%, var(--gold) 40%, var(--gold-bright) 60%, var(--gold-deep) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  font-style: normal; font-weight: 500;
}
.page-subtitle {
  font-size: 19px; line-height: 1.6;
  color: var(--ink-muted);
  max-width: 640px;
}
/* Editorial intro band beneath a page hero (SEO/AEO indexable copy) */
.page-intro { background: var(--canvas); padding: 52px 40px 60px; }
.page-intro-inner { max-width: 1400px; margin: 0 auto; }
.page-intro p { font-size: 17px; line-height: 1.78; color: var(--ink-muted); }
.page-intro p + p { margin-top: 18px; }
@media (max-width: 1024px) { .page-intro { padding: 40px 16px 48px; } }
@media (max-width: 640px)  { .page-intro { padding: 32px 16px 40px; } .page-intro p { font-size: 15.5px; } }
@media (max-width: 1024px) { .page-title { font-size: 52px; } }
@media (max-width: 640px)  { .page-title { font-size: clamp(34px, 10vw, 44px); } .page-subtitle { font-size: 15.5px; } }

/* ========== PAGE HERO — has-image variant (People page) ========== */
.page-hero.has-image .page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.page-hero.has-image .page-title { font-size: clamp(44px, 5.2vw, 82px); }

.page-hero-media {
  position: relative;
  aspect-ratio: 3 / 2;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 60px -24px rgba(10, 21, 24, 0.35),
              0 8px 20px -10px rgba(10, 21, 24, 0.2);
}
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  transition: transform 0.9s ease;
}
.page-hero-media:hover img { transform: scale(1.03); }
.page-hero-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 21, 24, 0.55) 100%);
  z-index: 1;
  pointer-events: none;
}
.page-hero-media::after {
  content: '';
  position: absolute;
  left: -14px;
  bottom: -14px;
  width: 110px;
  height: 110px;
  border-left: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  border-radius: 0 0 0 14px;
  pointer-events: none;
  z-index: 2;
}
.page-hero-media .media-tag {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 2;
  font-family: 'Geist Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(10, 21, 24, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 1024px) {
  .page-hero.has-image .page-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .page-hero-media { aspect-ratio: 16 / 10; }
}

/* ── People hero — full-bleed background-image variant ───────────────── */
.page-hero.has-image { color: #fff; border-bottom: none; }
.page-hero.has-image .page-hero-inner { display: block; }
.page-hero.has-image .page-hero-content { max-width: 760px; }
.page-hero.has-image .page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 0;
  box-shadow: none;
  aspect-ratio: auto;
}
.page-hero.has-image .page-hero-media img { object-position: center top; }
.page-hero.has-image .page-hero-media::before {
  background: linear-gradient(180deg, rgba(10, 21, 24, 0.28) 0%, rgba(10, 21, 24, 0.08) 50%, rgba(10, 21, 24, 0.25) 100%);
  z-index: 1;
}
.page-hero.has-image .page-hero-media::after { display: none; }
.page-hero.has-image .page-title { color: #fff; }
.page-hero.has-image .page-subtitle { color: rgba(255, 255, 255, 0.86); }
.page-hero.has-image .breadcrumbs,
.page-hero.has-image .breadcrumbs a,
.page-hero.has-image .breadcrumbs .current { color: rgba(255, 255, 255, 0.82); }

/* ========================================================================
   PERSON PROFILE — body content, credentials, related team, CV card.
   Hero classes (.profile-hero, .profile-photo, .role-title, .contact-row,
   etc.) are styled earlier in this file; this block adds the parts missing
   for design parity with design-preview/person.html.
   ======================================================================== */
.profile-content { padding: 100px 40px 140px; background: var(--canvas); }
.content-grid.is-wide { grid-template-columns: 1fr; }
.content-grid.is-wide .content-main { max-width: 820px; margin: 0 auto; }

.profile-info h1 {
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: var(--slate-700);
  margin: 0 0 16px;
}
.profile-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Body typography — first <p> auto-promotes to a lead paragraph. */
.content-main h2 {
  font-size: 32px; font-weight: 700;
  color: var(--slate-700); letter-spacing: -0.025em;
  margin: 48px 0 20px; line-height: 1.15;
}
.content-main h2:first-child { margin-top: 0; }
.content-main h3 {
  font-size: 22px; font-weight: 600;
  color: var(--slate-700); letter-spacing: -0.02em;
  margin: 32px 0 12px; line-height: 1.25;
}
.content-main p {
  font-size: 17px; line-height: 1.7;
  color: var(--ink-muted); margin-bottom: 20px;
}
.content-main p:first-of-type,
.content-main p.lead {
  font-size: 21px; font-weight: 500;
  color: var(--slate-700); letter-spacing: -0.01em;
  line-height: 1.5; margin-bottom: 32px;
}
.content-main ul {
  font-size: 17px; line-height: 1.7;
  color: var(--ink-muted); padding-left: 24px; margin-bottom: 20px;
}
.content-main ul li { margin-bottom: 8px; }
.content-main strong { color: var(--slate-700); font-weight: 600; }
.content-main a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 2px; }
.content-main a:hover { color: var(--gold); }
/* Callout is inside .content-main — re-assert light text over the prose color rules */
.content-main .callout h3 { color: #fff; }
.content-main .callout p { color: rgba(255, 255, 255, 0.78); }

/* Credentials */
.credential-list { display: flex; flex-direction: column; margin: 20px 0; }
.credential {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 20px; padding: 18px 0;
  border-top: 1px solid var(--slate-200);
}
.credential .year {
  font-family: 'Geist Mono', monospace; font-size: 12px;
  color: var(--gold-deep); letter-spacing: 0.04em;
  font-weight: 600; padding-top: 2px;
}
.credential .detail h4 {
  font-size: 16px; font-weight: 600;
  color: var(--slate-700); letter-spacing: -0.01em;
  margin-bottom: 4px; line-height: 1.3;
}
.credential .detail p {
  font-size: 14px; color: var(--ink-muted);
  line-height: 1.5; margin: 0;
}

/* Sidebar — CV download variant */
.side-card-download {
  background: linear-gradient(135deg, rgba(200,169,81,0.10) 0%, rgba(200,169,81,0.02) 100%);
  border-color: rgba(200,169,81,0.25);
}
.side-card-download .icon-box {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--gold); color: var(--ink-900);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.side-card-download h4 { color: var(--gold-deep); }
.side-card-download h3 {
  font-size: 18px; font-weight: 600;
  color: var(--slate-700); letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.side-card-download p {
  font-size: 13.5px; line-height: 1.5;
  color: var(--ink-muted); margin: 0 0 18px;
}
.btn-download {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px; background: var(--ink-900); color: var(--white);
  border-radius: 100px; text-decoration: none;
  font-size: 13px; font-weight: 600; letter-spacing: -0.01em;
  transition: all 0.2s;
}
.btn-download:hover { background: var(--slate-700); transform: translateY(-1px); color: var(--white); }

/* Related-team section — reuses .related shell, adds .related-card. */
.related-team { padding-top: 100px; padding-bottom: 100px; }
.related-card {
  display: flex; gap: 16px; align-items: center;
  padding: 16px; background: var(--canvas);
  border: 1px solid var(--slate-100); border-radius: 14px;
  text-decoration: none; color: inherit;
  transition: all 0.2s;
}
.related-card:hover {
  border-color: var(--gold); transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,71,80,0.1);
}
.related-card img,
.related-card .related-card-placeholder {
  width: 72px; height: 72px; border-radius: 12px;
  object-fit: cover; flex-shrink: 0;
}
.related-card .related-card-placeholder {
  background: var(--slate-100);
  display: flex; align-items: center; justify-content: center;
}
.related-card .info { flex: 1; min-width: 0; }
.related-card .role {
  font-family: 'Geist Mono', monospace; font-size: 10px;
  color: var(--gold-deep); letter-spacing: 0.06em;
  text-transform: uppercase; font-weight: 600;
  margin-bottom: 4px;
}
.related-card h3 {
  font-size: 16px; font-weight: 600;
  color: var(--slate-700); letter-spacing: -0.01em;
  margin: 0 0 4px;
}
.related-card p {
  font-size: 13px; color: var(--ink-muted);
  line-height: 1.4; margin: 0;
}

@media (max-width: 1024px) {
  .profile-content { padding: 60px 20px 100px; }
  .profile-photo { max-width: 100%; }
  .contact-row { flex-direction: column; }
  .contact-chip { width: 100%; }
  .related-team { padding-top: 80px; padding-bottom: 80px; }
}

/* ========================================================================
   NEWSLETTER BLOCK — Publications page subscription CTA.
   Matches v2 NewsletterBlock: dark ink-900 rounded card with gold radial
   glow, 2-col layout (text + pill form). Mounted via <livewire:subscribers />.
   ======================================================================== */
.newsletter-section { padding: 0 40px 56px; background: var(--canvas); }
.newsletter-block {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  background: var(--ink-900);
  color: var(--white);
  border-radius: 20px;
  padding: 80px 40px;
  overflow: hidden;
}
.newsletter-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(200,169,81,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.newsletter-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.newsletter-text h3 {
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  color: var(--white);
}
.newsletter-text h3 .accent {
  background: linear-gradient(100deg, var(--gold-deep) 0%, var(--gold) 40%, var(--gold-bright) 60%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
  font-weight: 500;
}
.newsletter-text p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate-300);
  max-width: 460px;
  margin: 0;
}
.newsletter-form {
  display: flex;
  gap: 8px;
  padding: 4px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,169,81,0.2);
  border-radius: 999px;
}
.newsletter-email {
  flex: 1;
  min-width: 0;
  padding: 14px 20px;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 15px;
  color: var(--white);
}
.newsletter-email::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-email:disabled { cursor: not-allowed; }
.newsletter-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--gold);
  border: none;
  border-radius: 999px;
  color: var(--ink-900);
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.newsletter-submit:hover:not(:disabled) { background: var(--gold-bright); }
.newsletter-submit:disabled { opacity: 0.75; cursor: not-allowed; }
.newsletter-submit span { display: inline-flex; align-items: center; gap: 8px; }
.newsletter-error {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--gold-bright);
}

@media (max-width: 768px) {
  .newsletter-section { padding: 0 20px 48px; }
  .newsletter-block { padding: 56px 24px; border-radius: 16px; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 32px; }
  .newsletter-form { flex-direction: column; padding: 8px; }
  .newsletter-submit { width: 100%; justify-content: center; }
}

/* ── Cookie consent banner ─────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1000;
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #254750;            /* slate-700 */
  color: #FAFAFA;
  border: 1px solid rgba(200, 169, 81, 0.35); /* gold */
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(10, 21, 24, 0.35);
  transform: translateY(140%);    /* off-screen, no CLS */
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.cookie-banner--visible { transform: translateY(0); opacity: 1; }
.cookie-banner__text { margin: 0; flex: 1 1 280px; font-size: 0.9rem; line-height: 1.5; }
.cookie-banner__actions { display: flex; gap: 0.5rem; flex: 0 0 auto; }
.cookie-banner__btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0.55rem 1.1rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.cookie-banner__btn--solid { background: #C8A951; color: #0A1518; }   /* gold */
.cookie-banner__btn--ghost { background: transparent; color: #FAFAFA; border-color: rgba(250, 250, 250, 0.4); }
@media (prefers-reduced-motion: reduce) {
  .cookie-banner { transition: none; }
}

