/* LarnelleHardy.com — single-page build, mentor-inspired direction, strict black/white */

:root {
  --black: #000000;
  --white: #ffffff;
  --off-white: #f3f3f1;
  --card-black: #111111;
  --border: #e4e4e1;
  --border-dark: rgba(255,255,255,0.12);
  --text-primary: #111111;
  --text-secondary: #4a4a4a;
  --muted: #8a8a8a;
  --muted-dark: #b8b8b8;
  --radius: 10px;
  --radius-lg: 14px;
  --max-width: 1080px;
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-pull: "Lora", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  --dots: radial-gradient(circle, rgba(0,0,0,0.08) 1px, transparent 1.4px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  animation: page-fade 0.6s var(--ease-out);
}

@keyframes page-fade { from { opacity: 0; } to { opacity: 1; } }

img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section, .band { padding: 100px 0; position: relative; }
.band-white { background: var(--white); }
.band-off { background: var(--off-white); background-image: var(--dots); background-size: 16px 16px; }
.band-black {
  background: linear-gradient(135deg, #000000 0%, #161616 45%, #2e2e2e 100%);
  color: var(--white); isolation: isolate;
  /* Vignette at top/bottom edges — reads as a slightly recessed panel, not a flat color block */
  box-shadow: inset 0 14px 24px -18px rgba(0,0,0,0.9), inset 0 -14px 24px -18px rgba(0,0,0,0.9);
}

/* Grain texture — tactile, paper-like depth on dark sections */
.band-black::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--noise);
  opacity: 0.05;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}
.band-black > .wrap, .band-black > .highlight-strip { position: relative; z-index: 1; }

h1, h2, h3 { margin: 0 0 16px; }

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 16px;
}
.band-black .eyebrow { color: var(--muted-dark); }

h1.display, h2.display {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-weight: 400;
  line-height: 1.08;
  max-width: 780px;
}
h1.display { font-size: 58px; margin-bottom: 24px; }
h2.display { font-size: 40px; margin-bottom: 22px; }

.lead {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 0 28px;
}
.band-black .lead { color: var(--muted-dark); }

.pull-quote {
  font-family: var(--font-pull);
  font-style: italic;
  font-size: 20px;
  color: var(--text-secondary);
  margin: 0 0 18px;
}
.band-black .pull-quote { color: #d8d8d8; }

/* Hand-drawn squiggle underline accent */
.squiggle { position: relative; display: inline-block; }
.squiggle::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -0.06em;
  height: 0.16em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'%3E%3Cpath d='M0 5 Q 10 0, 20 5 T 40 5 T 60 5 T 80 5 T 100 5' stroke='black' stroke-width='2.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 44px 100%;
}
.squiggle.on-dark::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'%3E%3Cpath d='M0 5 Q 10 0, 20 5 T 40 5 T 60 5 T 80 5 T 100 5' stroke='white' stroke-width='2.5' fill='none'/%3E%3C/svg%3E");
}

/* Nav */
.site-nav {
  background: linear-gradient(120deg, rgba(0,0,0,0.9) 0%, rgba(20,20,20,0.86) 60%, rgba(38,38,38,0.86) 100%);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  padding: 16px 0;
  border-bottom: 1px solid var(--border-dark);
  position: sticky;
  top: 0;
  z-index: 50;
  transition: padding 0.25s ease, box-shadow 0.25s ease;
}
.site-nav.scrolled { padding: 10px 0; box-shadow: 0 10px 28px rgba(0,0,0,0.35); }

.site-nav .wrap { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

.brand {
  font-family: var(--font-display);
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav-links { display: flex; gap: 22px; flex-wrap: wrap; font-size: 13px; align-items: center; }
.nav-links a { color: #cfcfcf; text-decoration: none; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; transition: color 0.2s ease; }
.nav-links a:hover { color: #fff; }
.nav-links a.cta { color: #000; background: #fff; border-radius: 999px; padding: 8px 18px; }
.nav-links a.cta:hover { opacity: 0.85; }

/* Buttons */
.btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 999px;
  padding: 14px 26px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), opacity 0.2s ease;
}
.btn-dark { background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%); color: var(--white); }
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,0.25); }
.btn-light { background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 100%); color: var(--black); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,0.25); }
.btn-outline { background: transparent; color: inherit; border-color: currentColor; }
.btn-outline:hover { background: rgba(0,0,0,0.06); }
.band-black .btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* Credentials strip */
.credentials { columns: 220px 3; column-gap: 28px; text-align: left; }
.credential { font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-secondary); border-left: 2px solid var(--border); padding-left: 14px; line-height: 1.4; break-inside: avoid; margin-bottom: 24px; }
.credential:last-child { margin-bottom: 0; }
.credential:first-child { border-left: none; padding-left: 0; }
.credential strong { display: block; color: var(--text-primary); font-size: 13px; margin-bottom: 4px; }

/* Brand-mark logos — consistent white "tile" so any source background reads clean.
   Logos that already ship as a filled, edge-to-edge badge (like Promotions' black
   square) use .fill instead, so they aren't double-inset inside another tile. */
.brand-mark {
  width: 60px; height: 60px; object-fit: contain; display: block;
  border-radius: 14px; border: 1px solid var(--border); background: var(--white);
  padding: 8px; margin-bottom: 18px;
  transition: transform 0.35s var(--ease-out);
}
.brand-mark.fill { object-fit: cover; padding: 0; background: none; }
.band-black .brand-mark { border-color: var(--border-dark); box-shadow: 0 10px 24px rgba(0,0,0,0.3); }
.brand-mark-lg { width: 100px; height: 100px; padding: 16px; margin-bottom: 22px; }

/* Brand tree — Goodmen Enterprises as the root, the three companies glowing beneath it.
   No literal chart lines: hierarchy reads through scale, a soft light source behind the
   root, and each card's own brand color igniting on hover. */
#portfolio { padding-top: 96px; padding-bottom: 0; }
#portfolio .content { text-align: center; }
#portfolio .content h2.display,
#portfolio .content .lead { margin-left: auto; margin-right: auto; }
.brand-tree { margin: 64px 0 8px; }

.brand-tree-root { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 64px; }
.brand-tree-root::before {
  content: ""; position: absolute; top: -70px; left: 50%; transform: translateX(-50%);
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 68%);
  pointer-events: none; z-index: 0;
}
.brand-tree-root::after {
  content: ""; position: absolute; top: 100%; left: 50%; width: 1px; height: 58px;
  background: linear-gradient(var(--border-dark), transparent);
  transform: translateX(-50%);
}
.brand-tree-root > * { position: relative; z-index: 1; }
.brand-tree-root-label {
  font-family: var(--font-display); font-size: 15px; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--muted-dark); margin: 0;
}

.brand-tree-branches { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; }
.brand-card {
  position: relative; display: flex; flex-direction: column; align-items: center; text-align: center;
  width: 260px; padding: 32px 26px; text-decoration: none; color: var(--white);
  border: 1px solid var(--border-dark); border-radius: var(--radius-lg); background: #141414;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s var(--ease-out), background 0.3s ease;
}
.brand-card:hover {
  border-color: var(--accent, var(--white));
  box-shadow: 0 24px 56px -12px var(--accent, rgba(0,0,0,0.5)), 0 0 0 1px var(--accent, transparent) inset;
  transform: translateY(-8px);
  background: #181818;
}
.brand-card:hover .brand-mark { transform: scale(1.06); }
.brand-card-name { font-family: var(--font-display); font-size: 15px; text-transform: uppercase; letter-spacing: 0.02em; margin: 0; line-height: 1.3; color: var(--white); }
.brand-card-desc {
  font-size: 13px; color: var(--muted-dark); line-height: 1.55; margin: 0;
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease-out), opacity 0.3s ease, margin-top 0.4s var(--ease-out);
}
.brand-card:hover .brand-card-desc { max-height: 110px; opacity: 1; margin-top: 14px; }

@media (max-width: 760px) {
  .brand-tree-root::before, .brand-tree-root::after { display: none; }
  .brand-tree-root { margin-bottom: 32px; }
  .brand-tree-branches { flex-direction: column; align-items: center; }
  .brand-card { width: 100%; max-width: 320px; }
  .brand-card-desc { max-height: none; opacity: 1; margin-top: 14px; }
}

/* Press carousel — horizontally scrollable, snap-aligned, no JS needed */
.press-carousel {
  display: flex; gap: 20px; overflow-x: auto; padding: 6px 6px 16px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  margin: 24px -6px 0;
}
.press-carousel { scrollbar-width: thin; scrollbar-color: var(--border) transparent; }
.press-carousel::-webkit-scrollbar { height: 6px; }
.press-carousel::-webkit-scrollbar-track { background: transparent; }
.press-carousel::-webkit-scrollbar-thumb { background: var(--border); border-radius: 999px; }
.press-card {
  scroll-snap-align: start; flex: 0 0 260px; display: block;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 22px; text-decoration: none; color: var(--text-primary);
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.press-card:hover { border-color: var(--black); box-shadow: 0 14px 32px rgba(0,0,0,0.1); transform: translateY(-3px); }
.press-card .press-outlet { font-family: var(--font-display); font-size: 20px; text-transform: uppercase; margin: 0 0 6px; }
.press-card p { font-size: 13px; color: var(--text-secondary); margin: 0; }
.press-link { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 10px; display: block; text-decoration: none; color: var(--text-primary); }
.band-black .press-link { color: var(--white); }

/* Testimonial carousel — same pattern as press carousel */
.testimonial-carousel {
  display: flex; gap: 20px; overflow-x: auto; padding: 6px 6px 16px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  margin: 24px -6px 0;
}
.testimonial-carousel { scrollbar-width: thin; scrollbar-color: var(--border-dark) transparent; }
.testimonial-carousel::-webkit-scrollbar { height: 6px; }
.testimonial-carousel::-webkit-scrollbar-track { background: transparent; }
.testimonial-carousel::-webkit-scrollbar-thumb { background: var(--border-dark); border-radius: 999px; }
.testimonial-card {
  scroll-snap-align: start; flex: 0 0 300px;
  background: #141414; border: 1px solid var(--border-dark); border-radius: var(--radius-lg);
  padding: 24px;
}
.testimonial-card .stars { color: #fff; font-size: 13px; letter-spacing: 0.1em; margin: 0 0 12px; }
.testimonial-card p.quote { font-family: var(--font-pull); font-style: italic; font-size: 15px; line-height: 1.5; color: #e4e4e4; margin: 0 0 16px; }
.testimonial-card p.attribution { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted-dark); margin: 0; }

/* Visual timeline — scroll-pop milestones */
.timeline-visual { position: relative; margin-top: 64px; padding-left: 36px; }
.timeline-visual::before {
  content: ""; position: absolute; left: 5px; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(var(--border), var(--border) 100%);
}
.band-black .timeline-visual::before { background: var(--border-dark); }
.timeline-node {
  position: relative; padding-bottom: 44px;
  opacity: 0; transform: translateY(24px) scale(0.94);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.timeline-node.in-view { opacity: 1; transform: translateY(0) scale(1); }
.timeline-node:last-child { padding-bottom: 0; }
.timeline-node::before {
  content: ""; position: absolute; left: -35px; top: 6px; width: 13px; height: 13px;
  border-radius: 50%; background: var(--black); border: 2px solid var(--black);
  box-shadow: 0 0 0 4px var(--white);
}
.band-black .timeline-node::before { background: var(--white); border-color: var(--white); box-shadow: 0 0 0 4px #0e0e0e; }
.timeline-node .year { font-family: var(--font-display); font-size: 36px; margin: 0 0 6px; }
.timeline-node .tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-primary); margin: 0 0 6px; }
.band-black .timeline-node .tag { color: var(--white); }
.timeline-node p.desc { font-size: 14px; color: var(--text-secondary); margin: 0; max-width: 520px; }
.band-black .timeline-node p.desc { color: var(--muted-dark); }

/* Media gallery (Speaking & Media section) */
.media-gallery { display: flex; gap: 20px; flex-wrap: wrap; margin: 24px 0 0; }
.media-gallery .media-frame { flex: 1 1 260px; max-width: 320px; }

/* Highlight strip — bold stat numbers */
.highlight-strip { background: linear-gradient(120deg, #f7f7f6 0%, #ececea 100%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 30px 0; color: var(--text-primary); margin-top: 48px; }
.highlight-strip .wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 32px 36px; }
.highlight-strip .stat { flex: 0 1 190px; text-align: center; }
.stat .num { font-family: var(--font-display); font-size: 32px; margin: 0; font-variant-numeric: tabular-nums; color: var(--text-primary); }
.stat .label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); margin: 6px 0 0; }

/* Card grid (GrowthBot Pro features, Goodmen Life services) */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 8px; }
.card {
  display: block; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 22px; position: relative; overflow: hidden; color: var(--text-primary); text-decoration: none;
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.card:hover {
  border-color: var(--black);
  box-shadow: 0 4px 8px rgba(0,0,0,0.06), 0 20px 40px rgba(0,0,0,0.12);
  transform: translateY(-4px) rotate(-0.35deg);
}
.card h3 { font-size: 16px; margin: 0 0 6px; }
.card p { font-size: 13px; color: var(--text-secondary); margin: 0; }
.card .card-link { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-primary); margin-top: 10px; display: block; }

/* Product cards — category name up front, description reveals on hover */
.product-card h3 { margin-bottom: 0; }
.product-card-desc {
  font-size: 13px; color: var(--text-secondary); line-height: 1.5; margin: 0;
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height 0.35s var(--ease-out), opacity 0.3s ease, margin-top 0.35s var(--ease-out);
}
.product-card:hover .product-card-desc { max-height: 100px; opacity: 1; margin-top: 8px; }

/* Seal / badge — physical "stamped" credential mark */
.seal {
  width: 118px; height: 118px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; text-align: center;
  border: 2px solid currentColor; position: relative; transform: rotate(-8deg);
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.02em;
}
.seal::before {
  content: ""; position: absolute; inset: 6px; border: 1px dashed currentColor; border-radius: 50%; opacity: 0.5;
}
.seal .seal-top { position: absolute; top: 14px; font-size: 9px; letter-spacing: 0.14em; font-family: var(--font-sans); font-weight: 700; }
.seal .seal-mid { font-size: 15px; line-height: 1.15; }
.seal .seal-bottom { position: absolute; bottom: 16px; font-size: 8px; letter-spacing: 0.1em; font-family: var(--font-sans); font-weight: 700; }

/* Venture divider cards (Portfolio jump targets) */
.venture-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 16px; margin-bottom: 8px; }

/* Timeline / accordion (native <details>) for Career + On-Ramps */
.timeline-company { border-top: 1px solid var(--border); padding: 22px 0; }
.band-black .timeline-company { border-top-color: var(--border-dark); }
.timeline-company:last-child { border-bottom: 1px solid var(--border); }
.band-black .timeline-company:last-child { border-bottom-color: var(--border-dark); }
.timeline-company summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  font-weight: 700; font-size: 16px;
}
.timeline-company summary::-webkit-details-marker { display: none; }
.timeline-company summary::after {
  content: "+"; font-family: var(--font-display); font-size: 20px; color: var(--muted); transition: transform 0.2s ease;
}
.timeline-company[open] summary::after { content: "\2212"; }
.timeline-company .meta { font-size: 13px; color: var(--muted); font-weight: 400; margin-left: 10px; }
.timeline-role { padding: 14px 0 0 0; border-top: 1px dashed var(--border); margin-top: 14px; }
.band-black .timeline-role { border-top-color: var(--border-dark); }
.timeline-role:first-of-type { margin-top: 18px; }
.timeline-role h4 { margin: 0 0 2px; font-size: 14px; }
.timeline-role .dates { font-size: 12px; color: var(--muted); margin: 0 0 6px; }
.timeline-role p.desc { font-size: 13.5px; color: var(--text-secondary); margin: 0; }
.band-black .timeline-role p.desc { color: var(--muted-dark); }

/* Prose */
.prose { max-width: 700px; }
.prose p { margin: 0 0 18px; font-size: 16.5px; line-height: 1.7; color: var(--text-secondary); }
.band-black .prose p { color: var(--muted-dark); }
.prose a { color: inherit; text-decoration: underline; text-decoration-color: var(--border); text-underline-offset: 3px; }
.prose a:hover { text-decoration-color: currentColor; }

/* Story section — editorial chapter treatment */
.story-head { max-width: 640px; margin-bottom: 36px; }
.story-head h2 { margin-bottom: 0; }

.pull-quote-big {
  margin: 8px 0 40px; padding: 4px 0 4px 28px;
  border-left: 3px solid var(--black);
  font-family: var(--font-pull); font-style: italic;
  font-size: 26px; line-height: 1.45;
  color: var(--text-primary);
}
.band-black .pull-quote-big { border-left-color: var(--white); color: var(--white); }

.story-media { margin: 6px 0 34px; }
.story-media .media-frame { max-width: 100%; }
.story-media figcaption {
  margin-top: 12px; font-family: var(--font-pull); font-style: italic; font-size: 13px;
  letter-spacing: 0.01em; color: var(--muted);
}

.story-close {
  margin: 64px auto 0; padding-top: 40px; max-width: 700px;
  border-top: 1px solid var(--border); text-align: center;
}

/* Story two-column grid — sticky chapter nav fills the measure's dead space at desktop */
.story-rail { display: none; }
@media (min-width: 960px) {
  .story-grid { display: grid; grid-template-columns: minmax(0, 700px) 1fr; gap: 56px; align-items: start; }
  .story-rail { display: block; position: sticky; top: 110px; }
}

.rail-card { margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--border); }
.rail-card-num { font-family: var(--font-display); font-size: 44px; margin: 0; color: var(--text-primary); }
.rail-card-label { font-size: 13px; color: var(--muted); margin: 8px 0 0; max-width: 220px; line-height: 1.5; }

/* Oversized watermark numeral — quiet depth cue behind the narrative.
   Positioned flush (not overflowing) so .story-block can stay overflow:visible,
   which position:sticky on the chapter rail further down requires. */
.story-block { position: relative; }
.story-block::after {
  content: "01"; position: absolute; top: 0; right: 0;
  font-family: var(--font-display); font-size: 380px; line-height: 1;
  color: var(--off-white); z-index: 0; pointer-events: none; user-select: none;
}
.story-block > .wrap { position: relative; z-index: 1; }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 14px; max-width: 480px; }
.contact-form label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-form input, .contact-form textarea {
  font-size: 14px; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius);
  font-family: inherit; background: var(--white); color: var(--text-primary); outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.band-black .contact-form input, .band-black .contact-form textarea { border-color: var(--border-dark); background: #0d0d0d; color: #fff; }
.contact-form input:focus, .contact-form textarea:focus { border-color: currentColor; box-shadow: 0 0 0 3px rgba(0,0,0,0.08); }
.band-black .contact-form input:focus, .band-black .contact-form textarea:focus { box-shadow: 0 0 0 3px rgba(255,255,255,0.12); }

/* Footer */
.site-footer { background: var(--off-white); padding: 28px 0; font-size: 13px; color: var(--muted); border-top: 1px solid var(--border); }
.site-footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-mark { width: 32px; height: 32px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.site-footer a { text-decoration: none; color: var(--muted); transition: color 0.2s ease; }
.site-footer a:hover { color: var(--text-primary); }
.footer-links { display: flex; gap: 16px; }

/* Media frame — designed placeholder that degrades gracefully until a real photo lands */
.media-frame {
  width: 100%; aspect-ratio: 4 / 5; border-radius: var(--radius-lg); overflow: hidden;
  position: relative; border: 1px solid var(--border);
  background: var(--off-white) var(--dots); background-size: 16px 16px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.08);
}
.media-frame::before {
  content: attr(data-mono);
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 12px; letter-spacing: 0.1em; line-height: 1.5;
  color: var(--muted); text-transform: uppercase; text-align: center; padding: 24px;
}
.media-frame img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; display: block; }
.media-frame.frame-landscape { aspect-ratio: 3 / 2; }

.hero-photo { width: 100%; max-width: 380px; }

/* Hero headshot has a white/soft-blur background — fade its edges into the
   white page instead of sitting in a hard rectangular box */
.hero-photo .media-frame {
  border: none;
  box-shadow: none;
  background: transparent;
}
.hero-photo .media-frame img {
  -webkit-mask-image: radial-gradient(ellipse 72% 78% at center, black 62%, transparent 100%);
  mask-image: radial-gradient(ellipse 72% 78% at center, black 62%, transparent 100%);
  animation: hero-settle 1.6s var(--ease-out) both;
}
@keyframes hero-settle { from { transform: scale(1.08); } to { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) {
  .hero-photo .media-frame img { animation: none; }
}
/* JS adds a subtle cursor-tracked tilt to this frame on pointer devices */
.hero-photo .media-frame { transition: transform 0.3s var(--ease-out); will-change: transform; }

/* Press bar — compact "as seen in" credibility strip under the hero */
.press-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--off-white); padding: 20px 0; }
.press-bar .wrap { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px 0; }
.press-bar-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); margin-right: 28px; }
.press-bar-items { display: flex; align-items: center; flex-wrap: wrap; }
.press-bar-item {
  font-family: var(--font-display); font-size: 16px; letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--text-primary); padding: 0 24px; text-decoration: none;
}
.press-bar-item:not(:last-child) { border-right: 1px solid var(--border); }
a.press-bar-item:hover { color: var(--muted); }

.split { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }
.split .content { flex: 1; min-width: 320px; }

/* Hero: taller, airier, its own visual moment */
.hero-block { padding: 96px 0 88px; }
.hero-block .lead { font-size: 19px; }
.hero-block .btn-row { margin-top: 32px; }
.hero-block .hero-photo { max-width: 360px; }

/* Story: the full narrative gets real room to breathe, set off from the hero above */
.story-block { padding-top: 24px; border-top: 1px solid var(--border); }
.story-block > .wrap > .eyebrow { margin-bottom: 24px; }

/* Two adjacent dark sections shouldn't fuse into one slab */
.band-black + .band-black { border-top: 1px solid rgba(255,255,255,0.08); }

/* Scroll reveal (JS-added) */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); transition-delay: var(--d, 0s); }
.reveal.in-view { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 720px) {
  h1.display { font-size: 38px; }
  h2.display { font-size: 28px; }
  .nav-links { display: none; }
  .credential { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 12px; }
  .credential:first-child { border-top: none; padding-top: 0; }
  .pull-quote-big { font-size: 20px; padding-left: 18px; }
  .story-block::after { font-size: 160px; }
  .timeline-node .year { font-size: 28px; }
}
