/* ============================================================
   Prime Bay Commercial — draft site styles
   Institutional / understated. Palette drawn from the logo.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --navy:        #213a5e;
  --navy-deep:   #172a45;
  --navy-ink:    #142236;
  --ink:         #1c2430;
  --body:        #39434f;
  --muted:       #5f6b7a;
  --steel:       #8a97a6;
  --steel-2:     #97a2b0;
  --line:        #e3e7ee;
  --line-soft:   #eef1f5;
  --bg:          #f5f6f8;
  --surface:     #ffffff;
  --surface-2:   #fafbfc;
  --accent:      #b98a3e;   /* restrained brass, used sparingly */

  --maxw: 1140px;
  --gutter: clamp(20px, 5vw, 48px);

  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --shadow-sm: 0 1px 2px rgba(20,34,54,.06);
  --shadow-md: 0 10px 30px rgba(20,34,54,.08);
  --radius: 6px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--navy-deep); }
h1, h2, h3, h4 { color: var(--ink); font-family: var(--serif); font-weight: 500; line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.01em; }
p { margin: 0 0 1.1em; }
ul { margin: 0; padding: 0; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 8vw, 104px); }
.section--tight { padding-block: clamp(44px, 6vw, 72px); }
.section--alt { background: var(--surface); border-block: 1px solid var(--line); }
.center { text-align: center; }
.measure { max-width: 62ch; }
.mx-auto { margin-inline: auto; }

.kicker {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 18px;
}
.kicker::before { content: ""; display: inline-block; width: 26px; height: 1px; background: var(--accent); vertical-align: middle; margin-right: 12px; transform: translateY(-3px); }

.eyebrow { color: var(--muted); font-size: 1.05rem; }
.lede { font-size: 1.2rem; color: var(--body); line-height: 1.6; }

h1 { font-size: clamp(2.1rem, 4.6vw, 3.35rem); }
h2 { font-size: clamp(1.65rem, 3.2vw, 2.35rem); }
h3 { font-size: 1.28rem; }
.section-head { max-width: 60ch; margin-bottom: clamp(30px, 4vw, 52px); }
.section-head.center { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--sans); font-weight: 600; font-size: .95rem;
  padding: 13px 26px; border-radius: var(--radius);
  border: 1px solid transparent; cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  letter-spacing: .01em;
}
.btn--primary { background: var(--navy); color: #fff; }
.btn--primary:hover { background: var(--navy-deep); color: #fff; transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--navy); border-color: #c9d2de; }
.btn--ghost:hover { border-color: var(--navy); color: var(--navy-deep); }
.btn--light { background: #fff; color: var(--navy-deep); }
.btn--light:hover { background: #eef1f5; color: var(--navy-deep); transform: translateY(-1px); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); color:#fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 78px; }
.brand { display: flex; align-items: center; }
.brand img { height: 44px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin-left: auto; }
.nav-links a {
  font-family: var(--sans); font-size: .95rem; font-weight: 500; color: var(--body);
  padding: 6px 0; position: relative;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a[aria-current="page"] { color: var(--navy); font-weight: 600; }
.nav-links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--accent);
}
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .25s; }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 58%, #24446e 100%);
  color: #eef2f8;
}
.hero::after { /* subtle vignette */
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 85% 15%, rgba(255,255,255,.06), transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; padding-block: clamp(72px, 12vw, 140px); }
.hero__art { position: absolute; inset: 0; z-index: 1; opacity: .5; }
.hero__art svg { position: absolute; right: 0; bottom: 0; width: min(60%, 720px); height: auto; }
.hero h1 { color: #fff; max-width: 16ch; }
.hero .kicker { color: #b7c6dc; }
.hero .kicker::before { background: var(--accent); }
.hero__sub { font-size: 1.18rem; color: #cdd8e8; max-width: 56ch; margin-top: 6px; }
.hero .btn-row { margin-top: 34px; }

/* ---------- Page hero (interior) ---------- */
.page-hero {
  background: linear-gradient(150deg, var(--navy-deep), var(--navy));
  color: #eef2f8; position: relative; overflow: hidden;
}
.page-hero::after {
  content:""; position:absolute; inset:0;
  background: radial-gradient(90% 120% at 90% 0%, rgba(255,255,255,.05), transparent 55%);
}
.page-hero .container { position: relative; z-index: 2; padding-block: clamp(56px, 8vw, 92px); }
.page-hero h1 { color: #fff; }
.page-hero .kicker { color: #b7c6dc; }
.page-hero p { color: #cdd8e8; font-size: 1.15rem; max-width: 58ch; margin-bottom: 0; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.card:hover { border-color: #cdd6e2; box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card h3 { margin-bottom: .35em; }
.card p { margin-bottom: 0; color: var(--muted); font-size: .98rem; }
.card__num { font-family: var(--serif); font-size: 1rem; color: var(--accent); font-weight: 600; display:block; margin-bottom: 12px; }
.card__tag {
  display:inline-block; font-family: var(--serif); font-weight:600; color: var(--navy);
  font-size: 1.05rem; border: 1px solid var(--line); border-radius: 4px;
  width: 40px; height: 40px; line-height: 38px; text-align:center; margin-bottom: 16px;
}

/* feature list (why prime bay) */
.feature-list { list-style: none; display: grid; gap: 2px; }
.feature-list li {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid var(--line);
}
.feature-list li:first-child { border-top: 1px solid var(--line); }
.feature-list .fl-mark { color: var(--accent); font-family: var(--serif); font-weight: 600; flex: none; width: 1.6em; }
.feature-list .fl-body strong { display:block; color: var(--ink); font-weight: 600; margin-bottom: 2px; }
.feature-list .fl-body span { color: var(--muted); font-size: .97rem; }

/* pill list */
.pills { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; }
.pills li {
  background: var(--surface); border: 1px solid var(--line); border-radius: 100px;
  padding: 9px 18px; font-size: .92rem; color: var(--body); font-weight: 500;
}

/* two-col text/media */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }

/* ---------- Strategy band ---------- */
.band {
  background: var(--navy-deep); color: #dfe7f2;
  background-image: linear-gradient(150deg, var(--navy-ink), var(--navy));
}
.band h2, .band h3 { color: #fff; }
.band .kicker { color: #b7c6dc; }
.strategy-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); overflow: hidden; }
.strategy-grid > div { padding: 30px 28px; border-right: 1px solid rgba(255,255,255,.14); }
.strategy-grid > div:last-child { border-right: 0; }
.strategy-grid .st-quote { font-family: var(--serif); font-size: 1.22rem; color: #fff; line-height: 1.3; }

/* ---------- Advisors teaser ---------- */
.advisors {
  border: 1px solid var(--line); border-left: 3px solid var(--accent);
  background: var(--surface); border-radius: var(--radius); padding: clamp(28px, 4vw, 44px);
  display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center;
}
.advisors .kicker { margin-bottom: 10px; }
.advisors h3 { margin-bottom: .3em; }
.advisors p { margin-bottom: 0; color: var(--muted); max-width: 60ch; }

/* ---------- Leadership ---------- */
.leader { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.leader img { width: 100%; aspect-ratio: 1/1; object-fit: cover; object-position: center 22%; background:#e9edf2; }
.leader__body { padding: 26px 26px 30px; }
.leader__body h3 { margin-bottom: 2px; }
.leader__role { color: var(--accent); font-family: var(--sans); font-weight: 600; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.leader__body ul { list-style: none; display: grid; gap: 10px; }
.leader__body li { position: relative; padding-left: 20px; color: var(--muted); font-size: .96rem; line-height: 1.5; }
.leader__body li::before { content: ""; position: absolute; left: 0; top: 10px; width: 7px; height: 7px; border: 1.5px solid var(--accent); border-radius: 50%; }

/* ---------- CTA band ---------- */
.cta {
  background: linear-gradient(150deg, var(--navy-deep), var(--navy)); color: #fff; text-align: center;
}
.cta h2 { color: #fff; }
.cta p { color: #cdd8e8; max-width: 52ch; margin-inline: auto; }
.cta .btn-row { justify-content: center; margin-top: 26px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.3fr .9fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(26px, 3.5vw, 40px); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: .86rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; letter-spacing: .01em; }
.field .req { color: var(--accent); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  padding: 12px 14px; border: 1px solid #d3dae4; border-radius: var(--radius); background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(33,58,94,.12);
}
.field textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: .85rem; color: var(--steel); margin-top: 4px; }
.form-status { display: none; margin-top: 16px; padding: 14px 16px; border-radius: var(--radius); background: #eef4ec; border: 1px solid #cfe0c8; color: #2f5127; font-size: .95rem; }
.form-status.is-visible { display: block; }
.contact-aside h3 { font-size: 1.1rem; }
.contact-aside .info-item { padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-aside .info-item:first-of-type { border-top: 1px solid var(--line); }
.contact-aside .info-item .lbl { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--steel); font-weight: 600; margin-bottom: 4px; }
.contact-aside .info-item .val { color: var(--ink); font-weight: 500; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-ink); color: #b9c4d4; padding-block: 56px 30px; }
.site-footer a { color: #cdd8e8; }
.site-footer a:hover { color: #fff; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand .wordmark { font-family: var(--serif); font-size: 1.5rem; color: #fff; letter-spacing: .06em; font-weight: 500; }
.footer-brand .tagline { font-size: .92rem; color: #91a1b6; margin-top: 8px; letter-spacing: .02em; }
.footer-col h4 { color: #fff; font-family: var(--sans); font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { font-size: .95rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 22px; font-size: .84rem; color: #7c8da3; }
.footer-bottom .draft-flag { color: #c79a4e; }

/* ---------- Draft banner ---------- */
.draft-banner {
  background: #2c2115; color: #f0d9b3; text-align: center; font-size: .82rem; letter-spacing: .03em;
  padding: 8px 16px; border-bottom: 1px solid #43331d;
}
.draft-banner strong { color: #fff; font-weight: 600; }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.text-muted { color: var(--muted); }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .strategy-grid { grid-template-columns: 1fr; }
  .strategy-grid > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .strategy-grid > div:last-child { border-bottom: 0; }
  .advisors { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-cta .btn { padding: 10px 16px; font-size: .9rem; }
  .nav-toggle { display: block; }
  .nav.is-open .nav-links {
    display: flex; position: absolute; top: 78px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: #fff; border-bottom: 1px solid var(--line); padding: 16px var(--gutter) 24px;
    box-shadow: var(--shadow-md);
  }
  .nav.is-open .nav-links a { padding: 10px 0; width: 100%; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  body { font-size: 16px; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ============================================================
   v2 additions — bigger logo, hero schematic, industrial icons
   ============================================================ */

/* Logo + header sizing */
.brand img { height: 62px; }
.nav { height: 96px; }

/* Two-column hero with blueprint panel */
.hero__grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(32px, 5vw, 60px); align-items: center; position: relative; z-index: 2; }
.hero__copy h1 { max-width: 18ch; }
.hero__panel { position: relative; }
.hero__panel svg { width: 100%; height: auto; display: block; }
.hero__cap { margin-top: 12px; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: #93aacb; text-align: right; }

/* Capability band (industrial visuals row) */
.capband { background: var(--surface); border-block: 1px solid var(--line); }
.cap-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.cap { text-align: center; }
.cap-svg { width: 50px; height: 50px; stroke: var(--navy); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; margin: 0 auto 14px; display: block; }
.cap-label { font-weight: 600; font-size: .95rem; color: var(--ink); }
.cap-sub { font-size: .82rem; color: var(--muted); }

/* Card icons */
.card__icon { width: 46px; height: 46px; stroke: var(--navy); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; display: block; margin-bottom: 18px; }
.card--type { display: flex; gap: 18px; align-items: flex-start; }
.card--type .card__icon { flex: none; margin-bottom: 0; margin-top: 2px; }
.card--type .card__num { margin-top: 0; }

@media (max-width: 940px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__panel { max-width: 560px; margin-top: 8px; }
  .hero__cap { text-align: left; }
  .cap-grid { grid-template-columns: repeat(3, 1fr); row-gap: 30px; }
}
@media (max-width: 760px) {
  .nav { height: 78px; }
  .brand img { height: 52px; }
  .nav.is-open .nav-links { top: 78px; }
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   v3 additions — wordmark, 3D warehouse hero, raster icons
   ============================================================ */

/* Text wordmark (replaces logo image) */
.brand { text-decoration: none; }
.brandmark { font-family: var(--serif); font-weight: 600; font-size: 1.6rem; letter-spacing: .01em; color: var(--navy); line-height: 1; white-space: nowrap; }
.brandmark .amp { color: var(--accent); }
.nav { height: 84px; }

/* 3D warehouse model panel */
.hero__model { position: relative; min-height: clamp(360px, 44vw, 500px); border: 1px solid rgba(255,255,255,.16); border-radius: 8px; overflow: hidden; touch-action: pan-y; background: linear-gradient(150deg, var(--navy-deep), var(--navy)); }
.hero__model canvas { position: absolute; inset: 0; display: block; touch-action: pan-y; }
.hm-frame { position: absolute; inset: 14px; border: 1px solid rgba(255,255,255,.14); pointer-events: none; }
.hm-chrome { position: absolute; font-family: ui-monospace, "SF Mono", Menlo, monospace; color: #cfe0f2; letter-spacing: .14em; pointer-events: none; z-index: 2; }
.hm-tl { top: 20px; left: 22px; }
.hm-tl .hm-name { display: block; font-size: 12px; font-weight: 600; letter-spacing: .2em; }
.hm-tl .hm-sub { display: block; font-size: 9px; opacity: .6; margin-top: 5px; }
.hm-br { bottom: 20px; right: 22px; font-size: 9px; opacity: .55; }

/* Raster PNG icons (replace SVG sprite) */
.card__icon { width: 50px; height: 50px; object-fit: contain; stroke: none; }
.cap-svg { width: 56px; height: 56px; object-fit: contain; stroke: none; }

@media (max-width: 940px) {
  .nav { height: 84px; }
}
@media (max-width: 760px) {
  .nav { height: 72px; }
  .nav.is-open .nav-links { top: 72px; }
  .brandmark { font-size: 1.4rem; }
}

/* ============================================================
   v4 — full-bleed 3D hero (model as the centerpiece)
   ============================================================ */
.hero { position: relative; overflow: hidden; display: flex; align-items: flex-end;
  min-height: min(92vh, 880px);
  background: linear-gradient(168deg, var(--navy-deep) 0%, var(--navy) 52%, #244468 100%); }

/* full-bleed canvas host, centered model */
.hero__stage { position: absolute; inset: 0; z-index: 1; touch-action: pan-y; }
.hero__stage canvas { position: absolute; inset: 0; display: block; touch-action: pan-y; }

/* legibility scrim: clear at top so the model breathes, deepening toward the copy */
.hero__scrim { position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(130% 70% at 50% 6%, rgba(255,255,255,.06), transparent 55%),
    linear-gradient(180deg, rgba(19,30,49,0) 34%, rgba(18,28,46,.45) 62%, rgba(18,27,44,.86) 100%); }

/* copy pushed down into the lower band */
.hero .hero__inner { position: relative; z-index: 3; width: 100%; pointer-events: none;
  padding-block: clamp(150px, 26vh, 320px) clamp(46px, 8vh, 100px); }
.hero__copy { max-width: 46rem; }
.hero__copy .kicker { color: #b7c6dc; }
.hero__copy h1 { color: #fff; max-width: 20ch; font-size: clamp(2.35rem, 5vw, 3.9rem); letter-spacing: -.015em; }
.hero__copy .hero__sub { color: #d3deee; font-size: clamp(1.05rem, 1.5vw, 1.25rem); max-width: 54ch; margin-top: 8px; }
.hero__copy .btn-row { margin-top: 32px; }
.hero__copy .btn { pointer-events: auto; }

@media (max-width: 760px) {
  .hero { min-height: 84vh; align-items: flex-end; }
  .hero .hero__inner { padding-block: clamp(120px, 20vh, 220px) clamp(34px, 6vh, 68px); }
  .hero__scrim { background:
    linear-gradient(180deg, rgba(19,30,49,0) 26%, rgba(18,28,46,.5) 56%, rgba(18,27,44,.9) 100%); }
}

/* ============================================================
   v5 — stacked hero: model on top, copy below (smaller)
   ============================================================ */
.hero { display: flex; flex-direction: column; align-items: stretch; min-height: 0; }
.hero__stage { position: relative; inset: auto; width: 100%; height: clamp(300px, 48vh, 520px); z-index: 1; }
.hero .hero__inner { position: relative; z-index: 2; pointer-events: none;
  padding-block: clamp(2px, .6vh, 12px) clamp(48px, 7vh, 92px); }
.hero__copy { max-width: 48rem; }
.hero__copy h1 { color: #fff; max-width: 26ch; font-size: clamp(1.7rem, 2.9vw, 2.45rem); letter-spacing: -.01em; }
.hero__copy .hero__sub { color: #d3deee; font-size: clamp(.98rem, 1.2vw, 1.08rem); max-width: 62ch; margin-top: 6px; }
.hero__copy .btn-row { margin-top: 24px; }
.hero__copy .btn { pointer-events: auto; }

@media (max-width: 760px) {
  .hero { min-height: 0; align-items: stretch; }
  .hero__stage { height: clamp(280px, 44vh, 440px); }
  .hero .hero__inner { padding-block: 14px clamp(34px, 6vh, 60px); }
}

/* ============================================================
   v6 — photographic hero (background image + scrim)
   ============================================================ */
.hero--photo {
  position: relative; overflow: hidden;
  display: flex; flex-direction: row; align-items: flex-end;
  min-height: min(86vh, 800px);
  background-image: url("assets/hero-bg.jpg");
  background-size: cover; background-position: center 42%; background-repeat: no-repeat;
}
.hero--photo .hero__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(9,15,26,.46) 0%, rgba(9,15,26,.18) 24%, rgba(9,15,26,.62) 58%, rgba(9,15,26,.95) 100%),
    linear-gradient(90deg, rgba(9,15,26,.84) 0%, rgba(9,15,26,.32) 50%, rgba(9,15,26,0) 76%);
}
.hero--photo .hero__inner {
  position: relative; z-index: 2; width: 100%; pointer-events: none;
  padding-block: clamp(120px, 22vh, 260px) clamp(52px, 8vh, 104px);
}
.hero--photo .hero__copy { max-width: 46rem; }
.hero--photo .hero__copy .kicker { color: #cfdaeb; }
.hero--photo .hero__copy h1 { color: #fff; max-width: 20ch; font-weight: 600;
  font-size: clamp(2.15rem, 4.5vw, 3.5rem); letter-spacing: -.015em;
  text-shadow: 0 2px 30px rgba(6,12,22,.75), 0 1px 3px rgba(6,12,22,.5); }
.hero--photo .hero__copy .hero__sub { color: #e9eef6; max-width: 56ch; margin-top: 8px;
  text-shadow: 0 1px 16px rgba(6,12,22,.55); }
.hero--photo .hero__copy .btn-row { margin-top: 30px; }
.hero--photo .hero__copy .btn { pointer-events: auto; }

@media (max-width: 760px) {
  .hero--photo { min-height: 78vh; align-items: flex-end; }
  .hero--photo .hero__inner { padding-block: clamp(96px, 16vh, 180px) clamp(40px, 7vh, 72px); }
  .hero--photo .hero__scrim { background:
    linear-gradient(180deg, rgba(9,15,26,.44) 0%, rgba(9,15,26,.2) 24%, rgba(9,15,26,.62) 60%, rgba(9,15,26,.93) 100%); }
}

/* Netlify Forms honeypot — must stay hidden from humans */
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* footer legal links */
.footer-legal a { margin-left: 6px; }
.footer-legal a + a { margin-left: 6px; }

/* legal / policy pages */
.legal { max-width: 800px; }
.legal h2 { margin-top: 1.7em; font-size: 1.4rem; }
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { margin-top: 1.3em; font-size: 1.08rem; }
.legal p, .legal li { color: var(--body); }
.legal ul { list-style: disc; padding-left: 1.3em; margin: 0 0 1.15em; }
.legal li { margin-bottom: .4em; }
.legal .updated { color: var(--muted); font-size: .95rem; margin-bottom: 2.2em; }
.legal a { text-decoration: underline; }

/* ============================================================
   v7 — transparent logo, realistic icons, darker hero eyebrow
   ============================================================ */
.brand img { height: 66px; }
.nav { height: 100px; }

/* hero eyebrow toned down per Rod */
.hero--photo .hero__copy .kicker { color: #ffffff; text-shadow: 0 1px 10px rgba(6,12,22,.55); }

/* realistic render icons need room to read */
.cap-svg { width: 96px; height: 96px; object-fit: contain; }
.card__icon { width: 88px; height: 88px; object-fit: contain; }
.card--type .card__icon { width: 76px; height: 76px; }

@media (max-width: 940px) {
  .nav { height: 92px; }
}
@media (max-width: 760px) {
  .nav { height: 80px; }
  .brand img { height: 54px; }
  .nav.is-open .nav-links { top: 80px; }
  .cap-svg { width: 78px; height: 78px; }
  .card__icon { width: 76px; height: 76px; }
}

/* ============================================================
   v8 — selected leadership experience (About projects list)
   ============================================================ */
.proj-list { list-style: none; border-top: 1px solid var(--line); }
.proj-list li { display: flex; justify-content: space-between; gap: 24px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.proj-main { color: var(--ink); font-weight: 500; }
.proj-loc { color: var(--muted); font-size: .95rem; white-space: nowrap; }
.proj-note { margin-top: 22px; color: var(--muted); font-size: .9rem; font-style: italic; max-width: 74ch; }
@media (max-width: 600px) {
  .proj-list li { flex-direction: column; gap: 3px; }
  .proj-loc { white-space: normal; }
}
