/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #FBF7EE;
  --bg-2:      #F3ECDC;
  --paper:     #FFFFFF;
  --ink:       #16140F;
  --ink-soft:  #2B2621;
  --ink-mute:  #6E6659;
  --accent:    #0A4FAD;
  --accent-2:  #06327A;
  --moss:      #46543F;
  --line:      rgba(22,20,15,0.10);

  --bg-deep:   #14120D;
  --bg-deep-2: #1C1912;
  --cream:     #F3ECDC;
  --cream-2:   #C9BFA9;

  --sans:   'Inter', system-ui, sans-serif;
  --display:'Manrope', system-ui, sans-serif;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 2; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.02em; font-family: var(--display); color: var(--ink); }
em { font-style: normal; color: var(--accent); }
::selection { background: var(--accent); color: var(--cream); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--ink); color: var(--cream);
  z-index: 9999; border-radius: 8px; font-weight: 500;
}
.skip-link:focus { top: 1rem; }

.section-kicker {
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: .9rem;
}
.section-kicker--dark { color: var(--accent); }
.section-title {
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  font-weight: 800;
  max-width: 20ch;
  margin-bottom: 1rem;
}
.section-note { color: var(--ink-mute); max-width: 46ch; margin-top: -.4rem; margin-bottom: 2.5rem; }

.kicker {
  font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-2); margin-bottom: 1.4rem; display: inline-flex; align-items: center; gap: .5rem;
}
.kicker::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

[data-reveal] {
  opacity: 0; transform: translateY(28px) scale(.985);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  will-change: transform, opacity;
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal][data-split] { opacity: 1; transform: none; }

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .85rem 1.6rem; border-radius: 100px;
  font-weight: 600; font-size: .96rem;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), background .3s;
}
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { transform: translateY(-3px) scale(1.025); box-shadow: 0 16px 30px -10px rgba(22,20,15,.4); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn-ghost:hover { transform: translateY(-3px) scale(1.025); box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn-ghost--dark { color: var(--cream); box-shadow: inset 0 0 0 1.5px rgba(243,236,220,.3); }
.btn-ghost--dark:hover { box-shadow: inset 0 0 0 1.5px var(--cream); }
.btn-small { padding: .6rem 1.15rem; font-size: .85rem; }
.btn-large { padding: 1.05rem 2.1rem; font-size: 1.02rem; }

/* =============================================================
   5. Nav
   ============================================================= */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 100;
  transition: background-color .4s var(--ease-out), backdrop-filter .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(251,247,238,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 1.1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.nav-logo { font-family: var(--display); font-weight: 800; font-size: 1.15rem; color: var(--ink); display: inline-flex; align-items: center; }
.nav-logo-img { height: 30px; width: auto; display: block; }
.nav-logo-dot { color: var(--accent); }
.nav-links { display: none; gap: 2rem; font-size: .92rem; font-weight: 500; }
.nav-links a { position: relative; padding-bottom: 2px; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav .btn-small { display: none; }
.nav-burger {
  width: 36px; height: 36px; display: grid; place-items: center; gap: 5px;
}
.nav-burger span { display: block; width: 20px; height: 2px; background: var(--ink); transition: transform .3s var(--ease-out), opacity .3s; }
.nav-mobile {
  display: none; flex-direction: column; gap: 1.1rem;
  padding: 1rem 1.5rem 1.6rem; background: var(--bg);
}
.nav-mobile a { font-weight: 600; font-size: 1.05rem; }
.nav-mobile.is-open { display: flex; }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav .btn-small { display: inline-flex; }
  .nav-burger { display: none; }
}

/* =============================================================
   6. Hero
   ============================================================= */
.hero {
  position: relative; overflow: clip;
  padding: 9.5rem 1.5rem 5rem;
  display: flex; flex-direction: column; gap: 3.5rem;
}
.hero-mesh {
  position: absolute; inset: -10% -10% auto -10%; height: 130%;
  background:
    radial-gradient(46% 38% at 82% 8%, rgba(10,79,173,.30), transparent 60%),
    radial-gradient(38% 32% at 12% 30%, rgba(70,84,63,.16), transparent 60%),
    var(--bg);
  z-index: -2;
}
.hero-grain {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  opacity: .1; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}
.hero-inner { max-width: 720px; }
.hero-title {
  font-size: clamp(2.4rem, 6.4vw, 4.4rem);
  font-weight: 800;
  margin-bottom: 1.4rem;
}
.hero-sub { font-size: 1.08rem; color: var(--ink-mute); max-width: 46ch; margin-bottom: 2.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-visual { position: relative; align-self: center; width: 100%; max-width: 780px; margin: 0 auto; }

/* Browser mockups */
.browser-mock {
  background: var(--paper);
  border-radius: 18px;
  box-shadow: 0 40px 90px -30px rgba(22,20,15,.35), 0 0 0 1px var(--line);
  overflow: hidden;
}
.browser-mock--hero { transform: rotate(-2deg); }
.browser-bar { display: flex; gap: 7px; padding: .9rem 1.1rem; background: var(--bg-2); }
.browser-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.browser-dot:nth-child(1) { background: #3E7BE0; }
.browser-body { padding: 1.6rem; display: flex; flex-direction: column; gap: .8rem; }
.browser-body--photo { padding: 0; }
.browser-body--photo img { width: 100%; height: 260px; object-fit: cover; display: block; }
.mock-block { height: 26px; border-radius: 8px; background: var(--bg-2); }
.mock-block--wide { width: 100%; height: 54px; }
.mock-block--half { width: 47%; display: inline-block; }
.mock-block--short { height: 16px; }
.mock-block--accent { background: linear-gradient(120deg, var(--accent), var(--accent-2)); opacity: .85; }
.browser-body:has(.mock-block--half) { flex-direction: row; flex-wrap: wrap; gap: 6%; }
.browser-body > .mock-block--wide { flex-basis: 100%; }

.floating-card {
  position: absolute;
  background: var(--paper);
  border-radius: 16px;
  padding: 1rem 1.2rem;
  box-shadow: 0 24px 50px -18px rgba(22,20,15,.3), 0 0 0 1px var(--line);
  display: flex; flex-direction: column; gap: .3rem;
  animation: floatSlow 7s ease-in-out infinite;
}
.floating-card-label { font-size: .72rem; color: var(--ink-mute); font-weight: 500; }
.floating-card-value { font-family: var(--display); font-weight: 800; font-size: 1.5rem; color: var(--ink); }
.floating-card--speed { top: -6%; right: -2%; animation-delay: .3s; }
.floating-card--sat { bottom: -8%; left: -4%; animation-delay: 1.1s; }

@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* =============================================================
   7. Benefits
   ============================================================= */
.benefits { padding: 6rem 1.5rem; max-width: 1280px; margin: 0 auto; }
.benefit-list { display: flex; flex-direction: column; gap: 4rem; margin-top: 3rem; }
.benefit-panel { display: grid; gap: 2rem; align-items: center; }
.benefit-visual { position: relative; }
.benefit-tag {
  position: absolute; top: -14px; left: 20px; z-index: 2;
  background: var(--ink); color: var(--cream);
  font-size: .74rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: .5rem 1rem; border-radius: 100px;
}
.mock-panel {
  background: var(--bg-2); border-radius: 22px; height: 280px;
  display: grid; place-items: center; overflow: hidden;
  box-shadow: 0 0 0 1px var(--line);
}
.mock-gauge { position: relative; display: grid; place-items: center; }
.mock-gauge-ring { width: 140px; height: 140px; transform: rotate(-90deg); }
.mock-gauge-track { fill: none; stroke: var(--line); stroke-width: 8; }
.mock-gauge-fill { fill: none; stroke: var(--accent); stroke-width: 8; stroke-linecap: round; stroke-dasharray: 326.7; stroke-dashoffset: 326.7; transition: stroke-dashoffset 1.4s var(--ease-soft); }
.is-revealed .mock-gauge-fill { stroke-dashoffset: calc(326.7 - (326.7 * 0.92)); }
.mock-gauge-value { position: absolute; font-family: var(--display); font-weight: 800; font-size: 1.6rem; color: var(--ink); }
.mock-shield { width: 110px; height: 128px; }
.mock-shield-body { fill: var(--paper); stroke: var(--accent); stroke-width: 3; }
.mock-shield-check { fill: none; stroke: var(--moss); stroke-width: 6; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 60; stroke-dashoffset: 60; transition: stroke-dashoffset 1s var(--ease-soft) .3s; }
.is-revealed .mock-shield-check { stroke-dashoffset: 0; }
.mock-chart { display: flex; align-items: flex-end; gap: .7rem; height: 160px; }
.mock-chart span { width: 18px; border-radius: 6px 6px 0 0; background: linear-gradient(180deg, var(--accent), var(--accent-2)); height: 0; transition: height 1s var(--ease-soft); }
.is-revealed .mock-chart span { height: var(--h); }
.benefit-copy h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: .8rem; }
.benefit-copy p { color: var(--ink-mute); max-width: 42ch; }

@media (min-width: 720px) {
  .benefit-panel { grid-template-columns: 1fr 1fr; }
  .benefit-panel:nth-child(even) .benefit-visual { order: 2; }
}

/* =============================================================
   8. Marquee
   ============================================================= */
.marquee { overflow: hidden; position: relative; padding: 1.8rem 0; background: var(--bg-2); }
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(90deg, var(--bg-2), transparent); }
.marquee::after  { right: 0; background: linear-gradient(270deg, var(--bg-2), transparent); }
.marquee-track {
  display: inline-flex; gap: 2.4rem; white-space: nowrap; will-change: transform;
  font-family: var(--display); font-weight: 700; font-size: 1.3rem; color: var(--ink-mute);
}
.marquee-track span:nth-child(odd) { color: var(--accent-2); }

/* =============================================================
   9. Process / sticky narrative
   ============================================================= */
.process { padding: 7rem 1.5rem; max-width: 1280px; margin: 0 auto; }
.narrative { margin-top: 3rem; }
.narrative-figure { margin-bottom: 3rem; }
.narrative-text { display: flex; flex-direction: column; gap: 5rem; }
.narrative-step h3 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); margin: .5rem 0 .8rem; }
.narrative-step p { color: var(--ink-mute); max-width: 42ch; margin-bottom: 1.2rem; }
.step-eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-2);
}

@media (min-width: 960px) {
  .narrative { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
  .narrative-figure { position: sticky; top: 14vh; height: fit-content; margin-bottom: 0; }
  .narrative-text { gap: 9rem; padding-top: 2rem; }
}

/* =============================================================
   10. Risks (dark)
   ============================================================= */
.risks { background: var(--bg-deep); padding: 7rem 1.5rem; }
.risks-inner { max-width: 1100px; margin: 0 auto; }
.risks-title { color: var(--cream); font-size: clamp(2rem, 4.6vw, 3.2rem); max-width: 22ch; margin-bottom: 3.5rem; }
.risks-grid { display: grid; gap: 2.5rem; }
.risk-value { display: block; font-family: var(--display); font-weight: 800; font-size: clamp(2.6rem, 5vw, 3.6rem); color: var(--accent); margin-bottom: .6rem; }
.risk-stat p { color: var(--cream-2); max-width: 32ch; }

@media (min-width: 720px) {
  .risks-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =============================================================
   11. Portfolio
   ============================================================= */
.portfolio { padding: 7rem 1.5rem; max-width: 1280px; margin: 0 auto; }
.portfolio-grid { display: grid; gap: 1.6rem; margin-top: 2.5rem; grid-template-columns: 1fr; }
.portfolio-card {
  border-radius: 20px; overflow: hidden; background: var(--paper);
  box-shadow: 0 0 0 1px var(--line);
  transition: transform .55s var(--ease-soft), box-shadow .5s;
}
.portfolio-card:hover { box-shadow: 0 40px 70px -25px rgba(22,20,15,.35), 0 0 0 1px var(--line); }
.portfolio-thumb { height: 200px; position: relative; overflow: hidden; display: grid; place-items: center; }
.portfolio-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-soft); }
.portfolio-thumb::after { content: ""; position: absolute; inset: 0; mix-blend-mode: multiply; opacity: .42; }
.portfolio-card--sage .portfolio-thumb::after { background: linear-gradient(135deg, #7C8F6D, #46543F); }
.portfolio-card--terracotta .portfolio-thumb::after { background: linear-gradient(135deg, #D98052, #A6512C); }
.portfolio-card--ink .portfolio-thumb::after { background: linear-gradient(135deg, #4A463C, #16140F); }
.portfolio-card--amber .portfolio-thumb::after { background: linear-gradient(135deg, #3E7BE0, #0A4FAD); }
.portfolio-card--moss .portfolio-thumb::after { background: linear-gradient(135deg, #5C7A5A, #33452F); }
.portfolio-card--clay .portfolio-thumb::after { background: linear-gradient(135deg, #B97A5A, #7A4B34); }
.portfolio-card:hover .portfolio-thumb img { transform: scale(1.08); }
.portfolio-meta { padding: 1.2rem 1.4rem 1.5rem; display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.portfolio-meta h3 { font-size: 1.05rem; }
.portfolio-meta span { font-size: .8rem; color: var(--ink-mute); white-space: nowrap; }

@media (min-width: 720px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }

/* =============================================================
   12. Final CTA (dark cinematic)
   ============================================================= */
.finalcta {
  position: relative; overflow: clip;
  background: var(--bg-deep-2);
  padding: 8rem 1.5rem; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.finalcta-mesh {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(50% 60% at 50% 0%, rgba(10,79,173,.24), transparent 65%),
    radial-gradient(40% 40% at 85% 90%, rgba(70,84,63,.18), transparent 60%);
}
.finalcta > * { position: relative; z-index: 1; }
.finalcta-title { color: var(--cream); font-size: clamp(2.2rem, 5.6vw, 3.8rem); max-width: 22ch; margin-bottom: 1.3rem; }
.finalcta-title em { color: var(--accent); }
.finalcta-sub { color: var(--cream-2); max-width: 46ch; margin-bottom: 2.4rem; }
.finalcta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* =============================================================
   13. Footer
   ============================================================= */
.footer { padding: 3.5rem 1.5rem 2rem; max-width: 1280px; margin: 0 auto; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 1.6rem; justify-content: space-between; align-items: center; padding-bottom: 2rem; border-bottom: 1px solid var(--line); }
.footer-logo { font-family: var(--display); font-weight: 800; font-size: 1.1rem; display: inline-flex; align-items: center; }
.footer-logo-img { height: 26px; width: auto; display: block; }
.footer-links { display: flex; gap: 1.6rem; font-size: .9rem; flex-wrap: wrap; }
.footer-social { display: flex; gap: 1.2rem; font-size: .9rem; color: var(--ink-mute); }
.footer-copy { padding-top: 1.6rem; font-size: .82rem; color: var(--ink-mute); }

/* =============================================================
   14. Splash & scroll progress
   ============================================================= */
.splash {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg);
  display: grid; place-items: center;
  pointer-events: auto;
  transition: opacity .9s, clip-path 1.1s;
  animation: splashSafety .01s 4.5s forwards;
}
.splash.is-out { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
@keyframes splashSafety { to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); } }
.splash-inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.splash-mark { font-family: var(--display); font-weight: 800; font-size: 1.4rem; color: var(--ink); }
.splash-mark-img { width: 150px; height: auto; }
.splash-line { width: 140px; height: 2px; background: var(--line); position: relative; overflow: hidden; border-radius: 100px; }
.splash-line::after {
  content: ""; position: absolute; inset: 0; background: var(--accent);
  animation: splashLoad 1.4s var(--ease-soft) forwards;
  transform: scaleX(0); transform-origin: left;
}
@keyframes splashLoad { to { transform: scaleX(1); } }

.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 200; background: rgba(0,0,0,0.05); pointer-events: none; }
.scroll-progress span { display: block; height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); transform-origin: 0 0; transform: scaleX(0); transition: transform .08s linear; }

/* =============================================================
   15. Tilt (functional micro-interaction)
   ============================================================= */
.has-tilt {
  --rx: 0deg; --ry: 0deg;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .55s var(--ease-soft);
}
.has-tilt:hover { transition-duration: .15s; }

/* =============================================================
   16. Reduced motion — only truly intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .floating-card { animation: none; }
}

/* =============================================================
   18. About page — hero, concept narrative, thesis, founder
   ============================================================= */
.kicker--light { color: var(--cream); }
.kicker--light::before { background: var(--accent); }

.about-hero {
  position: relative; height: 92vh; min-height: 560px;
  display: flex; align-items: flex-end; overflow: clip;
}
.about-hero-media { position: absolute; inset: 0; z-index: 0; }
.about-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.about-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,18,13,.35) 0%, rgba(20,18,13,.15) 40%, rgba(20,18,13,.82) 100%);
}
.about-hero-content { position: relative; z-index: 2; padding: 0 1.5rem 4.5rem; max-width: 760px; }
.about-hero-title { color: var(--cream); font-size: clamp(2.4rem, 6.6vw, 4.6rem); font-weight: 800; margin-bottom: 1.2rem; }
.about-hero-sub { color: var(--cream-2); font-size: 1.08rem; max-width: 46ch; margin-bottom: 2rem; }
.floating-card--about { position: relative; margin-top: 2rem; display: inline-flex; animation: none; }

.about-narrative { padding: 7rem 1.5rem; max-width: 1280px; margin: 0 auto; }
.about-figure-frame {
  border-radius: 22px; overflow: hidden; height: 62vh; min-height: 420px; max-height: 640px;
  box-shadow: 0 40px 90px -30px rgba(22,20,15,.35), 0 0 0 1px var(--line);
}
.about-figure-frame img { width: 100%; height: 100%; object-fit: cover; transition: opacity .5s var(--ease-soft); }

.thesis { background: var(--bg-deep); padding: 8rem 1.5rem; text-align: center; }
.thesis-title { color: var(--cream); font-size: clamp(2.2rem, 5.6vw, 3.8rem); max-width: 22ch; margin: 0 auto 1.4rem; }
.thesis-sub { color: var(--cream-2); max-width: 52ch; margin: 0 auto; }

.founder { padding: 7rem 1.5rem; max-width: 1100px; margin: 0 auto; display: grid; gap: 3rem; }
.founder-quote { font-family: var(--display); font-size: clamp(1.4rem, 2.6vw, 1.9rem); font-weight: 600; color: var(--ink); line-height: 1.4; max-width: 60ch; }
.founder-sign { margin-top: 1.6rem; }
.founder-sign-name { font-weight: 700; color: var(--ink); }
.founder-media { display: flex; gap: 1rem; }
.founder-media img { flex: 1; border-radius: 18px; height: 220px; object-fit: cover; box-shadow: 0 0 0 1px var(--line); }

@media (min-width: 960px) {
  .founder { grid-template-columns: 1.3fr 1fr; align-items: center; }
  .founder-media { flex-direction: column; }
  .founder-media img { height: 170px; }
}


/* =============================================================
   17. Responsive type scale-ups
   ============================================================= */
@media (min-width: 1024px) {
  .hero { padding-top: 11rem; flex-direction: row; align-items: center; gap: 4rem; }
  .hero-inner { flex: 1; }
  .hero-visual { flex: 1; max-width: 560px; margin: 0; }
}
