/* ═══════════════════════════════════════════════
   HAMID ABAWI - leadership site
   Dark editorial · Fraunces + Inter · gold accent
═══════════════════════════════════════════════ */
:root {
  --bg: #0b0e12;
  --bg-2: #0f1218;
  --surface: rgba(255,255,255,0.045);
  --surface-2: rgba(255,255,255,0.08);
  --ink: #f5f2ec;
  --body: #cfd5de;          /* primary body text - high contrast */
  --muted: #b9c0cb;         /* secondary text - brightened for readability */
  --muted-2: #8b929d;       /* tertiary / meta */
  --line: rgba(255,255,255,0.11);
  --line-2: rgba(255,255,255,0.20);
  --gold: #c8a86a;
  --gold-2: #e8d2a0;

  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --max: 1180px;
  --nav-h: 88px;
  --tr: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--sans); background: var(--bg); color: var(--body); line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; }
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--gold), var(--gold-2)); z-index: 200; box-shadow: 0 0 10px rgba(200,168,106,0.5); }
body::before { content: ""; position: fixed; inset: 0; z-index: 300; pointer-events: none; opacity: 0.035; mix-blend-mode: overlay; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
section[id] { scroll-margin-top: var(--nav-h); }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.reveal { opacity: 0; transform: translateY(34px) scale(0.985); transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16,0.84,0.44,1); transition-delay: var(--rd, 0s); }
.reveal.in { opacity: 1; transform: none; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--sans); font-size: 14px; font-weight: 500; letter-spacing: 0.01em; padding: 12px 24px; border-radius: 999px; cursor: pointer; border: 1px solid transparent; transition: transform var(--tr), background var(--tr), border-color var(--tr), color var(--tr); white-space: nowrap; }
.btn-gold { background: var(--gold); color: #1a1305; font-weight: 600; }
.btn-gold:hover { background: var(--gold-2); transform: translateY(-1px); }
.btn-light { background: var(--ink); color: #14171c; }
.btn-light:hover { background: #fff; transform: translateY(-1px); }
.btn-ghost { background: rgba(255,255,255,0.03); color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); }

/* Section headers */
.section-eyebrow { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 18px; }
.section-title { font-family: var(--serif); font-weight: 500; font-size: clamp(26px, 3.4vw, 42px); line-height: 1.16; letter-spacing: -0.01em; color: var(--ink); }
.section-head { max-width: 700px; margin-bottom: 56px; }

/* ═══ NAV ═══ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h); transition: background var(--tr), border-color var(--tr), backdrop-filter var(--tr); border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(11,14,18,0.78); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom-color: var(--line); }
.nav-inner { height: var(--nav-h); max-width: var(--max); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 60px; height: 60px; flex-shrink: 0; transition: filter 0.35s ease, transform 0.35s ease; }
.brand-mark svg { width: 100%; height: 100%; overflow: visible; transform-origin: center; animation: hbreath 6s ease-in-out 2.6s infinite; }
.brand-mark svg rect { transform-box: fill-box; }
.brand-mark svg .h-l { transform-origin: top center; animation: hgrowY 0.55s cubic-bezier(0.2,0.85,0.3,1) 0.15s both; }
.brand-mark svg .h-r { transform-origin: bottom center; animation: hgrowY 0.55s cubic-bezier(0.2,0.85,0.3,1) 0.3s both; }
.brand-mark svg .h-c { transform-origin: center; animation: hgrowX 0.5s cubic-bezier(0.2,0.85,0.3,1) 0.55s both; }
.brand:hover .brand-mark { transform: scale(1.08); filter: drop-shadow(0 0 16px rgba(200,168,106,0.6)); }
@keyframes hgrowY { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes hgrowX { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes hbreath { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
.brand-name { font-size: 16px; font-weight: 600; letter-spacing: 0.01em; color: var(--ink); }
.nav-links { display: none; align-items: center; gap: 30px; }
.nav-links a { font-size: 14px; font-weight: 400; color: var(--muted); transition: color var(--tr); }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: none; padding: 10px 20px; font-size: 13px; }
.nav-burger { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 42px; padding: 11px; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; cursor: pointer; }
.nav-burger span { display: block; height: 1.6px; width: 100%; background: var(--ink); border-radius: 2px; transition: transform var(--tr), opacity var(--tr); }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.3px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.3px) rotate(-45deg); }
.nav-mobile { position: absolute; top: calc(var(--nav-h) - 6px); left: 16px; right: 16px; background: rgba(13,16,22,0.94); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--line); border-radius: 18px; padding: 14px; display: flex; flex-direction: column; gap: 4px; }
.nav-mobile[hidden] { display: none; }
.nav-mobile a:not(.btn) { padding: 12px 14px; font-size: 16px; color: var(--ink); border-radius: 10px; }
.nav-mobile a:not(.btn):hover { background: var(--surface); }
.nav-mobile .btn { margin-top: 8px; }

/* ═══ HERO ═══ */
.hero { position: relative; min-height: 100svh; min-height: 100vh; display: flex; align-items: flex-end; overflow: hidden;
  background: linear-gradient(180deg, #0c0f15 0%, #0b0e12 62%); }
.hero-bg { position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(90% 75% at 82% 26%, rgba(200,168,106,0.13), transparent 58%); }
.hero-cut { position: absolute; z-index: 1; bottom: 0; right: -4%; height: 62vh; width: auto; max-width: none; object-fit: contain; object-position: bottom right; pointer-events: none; user-select: none; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 5%, #000 82%, transparent 99%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 5%, #000 82%, transparent 99%); }
.hero-veil { position: absolute; inset: 0; z-index: 2; pointer-events: none; background:
  linear-gradient(180deg, rgba(11,14,18,0.30) 0%, rgba(11,14,18,0) 26%, rgba(11,14,18,0.55) 70%, rgba(11,14,18,0.97) 100%),
  linear-gradient(90deg, rgba(11,14,18,0.92) 0%, rgba(11,14,18,0.55) 40%, rgba(11,14,18,0) 74%); }
.hero-content { position: relative; z-index: 3; width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px calc(46px + env(safe-area-inset-bottom)); }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 20px; }
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px rgba(200,168,106,0.8); }
.hero-name { font-family: var(--serif); font-weight: 500; font-size: clamp(48px, 9vw, 104px); line-height: 0.98; letter-spacing: -0.025em; color: #fff; }
.hero-role { margin-top: 16px; font-size: clamp(13px, 1.6vw, 16px); font-weight: 500; letter-spacing: 0.01em; color: var(--gold-2); }
.hero-lede { margin-top: 20px; max-width: 540px; font-size: clamp(15.5px, 1.7vw, 18px); line-height: 1.62; color: rgba(255,255,255,0.9); }
.hero-lede strong { color: #fff; font-weight: 600; }
.hero-actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-pills { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px; }
.glass-pill { font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,0.95); background: rgba(255,255,255,0.06); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.16); border-radius: 999px; padding: 8px 16px; }

/* ═══ METRICS ═══ */
.metrics { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.metrics-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
.metric { padding: 28px 0; display: flex; flex-direction: column; gap: 8px; border-bottom: 1px solid var(--line); }
.metric:last-child { border-bottom: none; }
.metric-num { font-family: var(--serif); font-weight: 500; font-size: 30px; color: var(--gold-2); letter-spacing: -0.01em; }
.metric-label { font-size: 14px; line-height: 1.5; color: var(--muted); max-width: 280px; }

/* ═══ ABOUT ═══ */
.about { padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.about-left .section-title { font-size: clamp(28px, 4vw, 46px); }
.about-right p { font-size: 17px; line-height: 1.8; color: var(--body); margin-bottom: 18px; }
.about-right p strong { color: var(--ink); font-weight: 600; }
.pull-quote { font-family: var(--serif); font-style: italic; font-size: clamp(19px, 2.4vw, 26px); line-height: 1.4; color: var(--ink); border-left: 2px solid var(--gold); padding-left: 22px; margin-top: 30px; }

/* ═══ EXPERTISE ═══ */
.expertise { padding: 100px 0; background: var(--bg-2); border-top: 1px solid var(--line); }
.cards-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 28px; transition: border-color var(--tr), background var(--tr), transform var(--tr); }
.card:hover { border-color: var(--line-2); background: var(--surface-2); transform: translateY(-3px); }
.card-icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(200,168,106,0.12); border: 1px solid rgba(200,168,106,0.28); color: var(--gold-2); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.card-icon svg { width: 22px; height: 22px; }
.card h3 { font-family: var(--serif); font-weight: 500; font-size: 20px; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.01em; }
.card p { font-size: 15px; line-height: 1.66; color: var(--muted); }

/* ═══ LEADERSHIP & VENTURES ═══ */
.leadership { padding: 100px 0; }
.lead-cols { display: grid; grid-template-columns: 1fr; gap: 48px; }
.lead-col-label { font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 22px; }
.role-list li { padding: 20px 0; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 4px; }
.role-list li:first-child { border-top: none; padding-top: 0; }
.role-name { font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--ink); }
.role-org { font-size: 13px; color: var(--gold-2); letter-spacing: 0.02em; }
.role-note { font-size: 14.5px; line-height: 1.55; color: var(--muted); margin-top: 4px; }
.venture-list { display: grid; gap: 12px; }
.venture-list a { display: flex; flex-direction: column; gap: 3px; padding: 16px 18px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; transition: border-color var(--tr), background var(--tr), transform var(--tr); }
.venture-list a:hover { border-color: var(--line-2); background: var(--surface-2); transform: translateY(-2px); }
.venture-name { font-size: 16px; font-weight: 600; color: var(--ink); }
.venture-desc { font-size: 14px; color: var(--muted); }

/* ═══ EXPERIENCE ═══ */
.experience { padding: 100px 0; background: var(--bg-2); border-top: 1px solid var(--line); }
.timeline { position: relative; }
.timeline li { display: grid; grid-template-columns: 1fr; gap: 6px; padding: 28px 0; border-top: 1px solid var(--line); }
.timeline li:first-child { border-top: none; padding-top: 0; }
.tl-when { font-size: 13px; font-weight: 600; letter-spacing: 0.05em; color: var(--gold-2); }
.tl-body h3 { font-family: var(--serif); font-weight: 500; font-size: 21px; color: var(--ink); letter-spacing: -0.01em; margin-bottom: 4px; }
.tl-tag { font-family: var(--sans); font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold-2); background: rgba(200,168,106,0.13); border: 1px solid rgba(200,168,106,0.3); border-radius: 6px; padding: 2px 7px; vertical-align: middle; margin-left: 8px; }
.tl-org { font-size: 13.5px; color: var(--muted-2); margin-bottom: 12px; }
.tl-body p:last-child { font-size: 15px; line-height: 1.72; color: var(--muted); max-width: 760px; }

.exp-earlier { margin-top: 44px; padding-top: 32px; border-top: 1px solid var(--line); }
.exp-earlier-label { font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 18px; }
.exp-earlier-list { display: grid; gap: 12px; }
.exp-earlier-list li { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 14px; padding-bottom: 12px; border-bottom: 1px dashed var(--line); }
.exp-earlier-list li:last-child { border-bottom: none; }
.ee-role { font-size: 15px; font-weight: 500; color: var(--ink); }
.ee-org { font-size: 14px; color: var(--muted); }
.ee-when { font-size: 13px; color: var(--muted-2); margin-left: auto; }
.education { margin-top: 36px; padding-top: 32px; border-top: 1px solid var(--line); }
.edu-item { display: flex; justify-content: space-between; align-items: baseline; gap: 10px 28px; flex-wrap: wrap; }
.edu-degree { font-family: var(--serif); font-weight: 500; font-size: 22px; color: var(--ink); letter-spacing: -0.01em; }
.edu-minor { font-size: 14.5px; color: var(--gold-2); margin-top: 4px; }
.edu-school { font-size: 14.5px; color: var(--muted); margin-top: 6px; }
.edu-when { font-size: 13px; font-weight: 600; letter-spacing: 0.05em; color: var(--gold-2); white-space: nowrap; }

/* ═══ PRESS & SPEAKING ═══ */
.press { padding: 100px 0; }
.press-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.press-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; transition: border-color var(--tr), transform var(--tr), background var(--tr); }
.press-card:hover { border-color: var(--line-2); background: var(--surface-2); transform: translateY(-4px); }
.press-thumb { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; background: #11151b; }
.press-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.press-card:hover .press-thumb img { transform: scale(1.05); }
.press-thumb-text { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #181208, #0d1014); border-bottom: 1px solid var(--line); }
.press-thumb-word { font-family: var(--serif); font-size: 28px; color: var(--gold-2); text-align: center; line-height: 1.05; }
.press-thumb-word em { font-style: italic; font-size: 15px; color: var(--muted); }
.press-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.press-play span { width: 56px; height: 56px; border-radius: 50%; background: rgba(11,14,18,0.55); border: 1.5px solid rgba(255,255,255,0.78); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 16px; padding-left: 3px; transition: background var(--tr), color var(--tr), border-color var(--tr); }
.press-card:hover .press-play span { background: var(--gold); color: #14110a; border-color: var(--gold); }
.press-card-meta { display: flex; flex-direction: column; gap: 6px; padding: 18px 20px 22px; }
.press-card .press-outlet { font-size: 11.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-2); }
.press-card .press-headline { font-family: var(--serif); font-size: 17px; line-height: 1.3; color: var(--ink); }
.speaking-block { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--line); }
.speaking-block .press-col-label { margin-bottom: 18px; }
.speaking-block .speak-list { display: grid; grid-template-columns: 1fr; gap: 0; }
.speaking-block .speak-list li { border-top: 1px solid var(--line); padding: 18px 0; }
.speaking-block .speak-list li:first-child { border-top: 1px solid var(--line); }
.press-cols { display: grid; grid-template-columns: 1fr; gap: 48px; }
.press-col-label { font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 8px; }
.press-list li, .speak-list li { border-top: 1px solid var(--line); }
.press-list li:first-child, .speak-list li:first-child { border-top: none; }
.press-list a { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2px 14px; padding: 20px 4px 20px 0; transition: padding var(--tr); }
.press-list a:hover { padding-left: 8px; }
.press-outlet { grid-column: 1; font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--gold-2); }
.press-headline { grid-column: 1; font-family: var(--serif); font-size: 18px; color: var(--ink); line-height: 1.3; }
.press-arrow { grid-column: 2; grid-row: 1 / span 2; font-size: 18px; color: var(--muted-2); transition: color var(--tr), transform var(--tr); }
.press-list a:hover .press-arrow { color: var(--gold-2); transform: translate(2px,-2px); }
.speak-list li { display: flex; flex-direction: column; gap: 3px; padding: 20px 0; }
.speak-list a.speak-link { display: flex; flex-direction: column; gap: 3px; transition: padding var(--tr); }
.speak-list a.speak-link:hover { padding-left: 8px; }
.speak-list a.speak-link:hover .speak-event { color: var(--gold-2); }
.speak-event { font-family: var(--serif); font-size: 18px; color: var(--ink); line-height: 1.3; }
.speak-src { font-family: var(--sans); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold-2); margin-left: 8px; }
.speak-note { font-size: 13.5px; color: var(--muted); }
.press-list a.is-video .press-arrow { color: var(--gold-2); font-size: 13px; }

/* ═══ CONTACT ═══ */
.contact { padding: 110px 0; text-align: center; }
.contact-inner { max-width: 660px; }
.contact-title { font-family: var(--serif); font-weight: 500; font-size: clamp(28px, 4.2vw, 48px); line-height: 1.12; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 18px; }
.contact-lede { font-size: 16.5px; line-height: 1.7; color: var(--muted); max-width: 540px; margin: 0 auto 32px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.contact-meta { margin-top: 28px; font-size: 13px; color: var(--muted-2); letter-spacing: 0.02em; }
.contact-form { max-width: 560px; margin: 36px auto 4px; text-align: left; display: flex; flex-direction: column; gap: 14px; }
.contact-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 14px; }
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form textarea { width: 100%; font-family: var(--sans); font-size: 15px; color: var(--ink); background: rgba(255,255,255,0.04); border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; transition: border-color var(--tr), background var(--tr); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--muted-2); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.06); }
.contact-form textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-bottom { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 4px; }
.contact-linkedin { font-size: 14px; color: var(--muted); transition: color var(--tr); }
.contact-linkedin:hover { color: var(--gold-2); }
.form-status { font-size: 14px; min-height: 20px; margin-top: 2px; }
.form-status.ok { color: #84d3a6; }
.form-status.err { color: #e6a8a8; }

/* ═══ FOOTER ═══ */
.footer { border-top: 1px solid var(--line); padding: 30px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--muted-2); }
.footer-tag { font-family: var(--serif); font-style: italic; color: var(--muted); }

/* ═══ RESPONSIVE ═══ */
@media (min-width: 560px) {
  .hero-cut { height: 66vh; right: 0; }
  .form-row { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 720px) {
  .container, .nav-inner, .hero-content { padding-left: 40px; padding-right: 40px; }
  .metrics-grid { grid-template-columns: repeat(4, 1fr); gap: 28px; }
  .metric { border-bottom: none; border-left: 1px solid var(--line); padding: 10px 0 10px 24px; }
  .metric:first-child { border-left: none; padding-left: 0; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .press-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline li { grid-template-columns: 160px 1fr; gap: 30px; }
  .hero-content { padding-bottom: 60px; }
  .hero-cut { height: 74vh; right: 2%; }
}
@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-burger { display: none; }
  .nav-mobile { display: none !important; }

  .hero { align-items: center; }
  .hero-cut { height: auto; width: min(46vw, 600px); bottom: 0; right: clamp(0px, calc((100vw - var(--max)) / 2 - 24px), 90px); }
  .hero-veil { background:
    linear-gradient(90deg, var(--bg) 3%, rgba(11,14,18,0.5) 32%, rgba(11,14,18,0) 60%),
    linear-gradient(180deg, transparent 68%, rgba(11,14,18,0.55) 100%); }
  .hero-content { padding-bottom: 0; }
  .hero-content > * { max-width: 560px; }
  .hero-name { font-size: clamp(64px, 6.6vw, 108px); }
  .hero-lede { max-width: 500px; }

  .about-grid { grid-template-columns: 0.85fr 1.15fr; gap: 56px; }
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .lead-cols { grid-template-columns: 1.1fr 0.9fr; gap: 72px; }
  .venture-list { grid-template-columns: 1fr 1fr; }
  .press-grid { grid-template-columns: repeat(3, 1fr); }
  .speaking-block .speak-list { grid-template-columns: repeat(3, 1fr); column-gap: 36px; }
}
@media (min-width: 1320px) {
  .hero-cut { width: min(44vw, 660px); right: calc((100vw - var(--max)) / 2 - 70px); }
}

/* Phones: stack the hero (photo on top, text below) so text never sits on the image */
@media (max-width: 719px) {
  .hero { flex-direction: column; justify-content: flex-start; align-items: stretch; min-height: auto; padding-top: calc(var(--nav-h) + 6px); padding-bottom: 46px; }
  .hero-cut { position: static; order: -1; align-self: center; height: auto; width: min(80%, 330px); max-width: 80%; right: auto; bottom: auto; margin: 0 auto 2px; }
  .hero-veil { display: none; }
  .hero-content { position: relative; z-index: 3; padding: 8px 24px 0; margin: 0; max-width: 100%; }
  .hero-content > * { max-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
