/* ============================================================
   CONUCO Bahamas — styles.css
   Theme: land-to-sea. Ocean deep + teal/aqua + leaf green + coral + sand.
   ============================================================ */

:root {
  /* palette */
  --ocean-900: #062a38;
  --ocean-800: #08384a;
  --ocean-700: #0a4f63;
  --teal-500:  #1b9aaa;
  --teal-400:  #2ec4b6;
  --aqua-300:  #7fdfd0;
  --leaf-600:  #4f8a3a;
  --leaf-500:  #6aa84f;
  --coral-500: #ff6b5e;
  --coral-400: #ff8a72;
  --sand-50:   #faf6f0;
  --sand-100:  #f3ece2;
  --sand-200:  #e7dccc;
  --ink-900:   #102a31;
  --ink-700:   #2c474f;
  --ink-500:   #5b7178;
  --white:     #ffffff;

  --maxw: 1140px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 10px rgba(8, 56, 74, 0.06);
  --shadow-md: 0 14px 40px rgba(8, 56, 74, 0.12);
  --shadow-lg: 0 30px 70px rgba(6, 42, 56, 0.22);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- reset / base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--sand-50);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; font-weight: 600; letter-spacing: -0.01em; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-weight: 600; font-size: 0.96rem;
  padding: 13px 26px; border-radius: 999px; cursor: pointer;
  border: 1.5px solid transparent; transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn--sm { padding: 9px 18px; font-size: 0.88rem; }
.btn--lg { padding: 16px 34px; font-size: 1.05rem; }
.btn--primary {
  background: linear-gradient(120deg, var(--teal-500), var(--leaf-500));
  color: var(--white); box-shadow: var(--shadow-md);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); filter: saturate(1.1); }
.btn--ghost { border-color: rgba(8, 56, 74, 0.25); color: var(--ocean-800); background: transparent; }
.btn--ghost:hover { border-color: var(--teal-500); color: var(--teal-500); background: rgba(46, 196, 182, 0.07); }

/* ---------- eyebrow / headings ---------- */
.eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal-500); margin-bottom: 16px;
}
.eyebrow--light { color: var(--aqua-300); }
.grad-text {
  background: linear-gradient(110deg, var(--teal-400), var(--leaf-500) 60%, var(--coral-400));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: all 0.3s var(--ease);
  background: rgba(250, 246, 240, 0);
}
.nav.scrolled {
  background: rgba(250, 246, 240, 0.9);
  backdrop-filter: saturate(1.4) blur(12px);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ocean-800); }
.nav:not(.scrolled) .brand { color: var(--white); }
.brand__mark { display: inline-flex; }
.brand__type {
  font-family: var(--font-display); font-weight: 700; font-size: 1.28rem;
  letter-spacing: 0.02em; line-height: 1; display: flex; flex-direction: column;
}
.brand__sub {
  font-family: var(--font-body); font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.42em; opacity: 0.7; margin-top: 2px;
}
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links > a:not(.btn) {
  font-size: 0.95rem; font-weight: 500; color: var(--ocean-800);
  position: relative; transition: color 0.2s;
}
.nav:not(.scrolled) .nav__links > a:not(.btn) { color: rgba(255,255,255,0.88); }
.nav__links > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -5px; height: 2px; width: 0;
  background: var(--teal-400); transition: width 0.25s var(--ease);
}
.nav__links > a:not(.btn):hover::after { width: 100%; }
.nav:not(.scrolled) .btn--ghost { border-color: rgba(255,255,255,0.5); color: #fff; }
.nav:not(.scrolled) .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,0.12); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 24px; height: 2.5px; background: var(--ocean-800); border-radius: 2px; transition: 0.3s var(--ease); }
.nav:not(.scrolled) .nav__toggle span { background: #fff; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; color: var(--white); overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(46,196,182,0.35), transparent 60%),
    radial-gradient(900px 500px at 10% 110%, rgba(106,168,79,0.30), transparent 55%),
    linear-gradient(160deg, var(--ocean-900), var(--ocean-700) 55%, #0c5f5d);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='200'%3E%3Cpath d='M0 100 C 200 40 400 160 600 100 S 1000 40 1200 100' fill='none' stroke='%23ffffff' stroke-opacity='0.06' stroke-width='2'/%3E%3Cpath d='M0 140 C 200 80 400 200 600 140 S 1000 80 1200 140' fill='none' stroke='%23ffffff' stroke-opacity='0.05' stroke-width='2'/%3E%3C/svg%3E") repeat-x bottom;
  opacity: 0.8;
}
.hero__wrap { padding: 120px 24px 90px; max-width: 980px; }
.hero__title { font-size: clamp(2.7rem, 6.5vw, 5rem); font-weight: 600; margin-bottom: 24px; }
.hero__lede { font-size: clamp(1.05rem, 1.7vw, 1.35rem); max-width: 680px; color: rgba(255,255,255,0.9); margin-bottom: 36px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 52px; }
.hero__philosophy {
  font-family: var(--font-display); font-style: italic; font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--aqua-300); max-width: 620px; border-left: 3px solid rgba(127,223,208,0.5);
  padding-left: 20px;
}

/* ---------- stats ---------- */
.stats { background: var(--ocean-800); color: #fff; padding: 0; }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; padding: 0 24px;
}
.stat { text-align: center; padding: 38px 18px; border-right: 1px solid rgba(255,255,255,0.1); }
.stat:last-child { border-right: 0; }
.stat__num {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3rem); color: var(--aqua-300); line-height: 1;
}
.stat__label { display: block; font-size: 0.9rem; color: rgba(255,255,255,0.78); margin-top: 10px; }

/* ---------- sections ---------- */
.section { padding: 100px 0; }
.section--tint { background: var(--sand-100); }
.section__head { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.section__head h2 { font-size: clamp(2rem, 3.6vw, 2.85rem); margin-bottom: 18px; color: var(--ocean-900); }
.section__lede { font-size: 1.1rem; color: var(--ink-700); }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step {
  background: var(--white); border-radius: var(--radius); padding: 30px 26px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--sand-200);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step__num {
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  color: var(--white); background: linear-gradient(135deg, var(--teal-500), var(--leaf-500));
  width: 44px; height: 44px; border-radius: 12px; display: inline-flex;
  align-items: center; justify-content: center; margin-bottom: 18px;
}
.step h3 { font-size: 1.22rem; margin-bottom: 8px; color: var(--ocean-800); }
.step p { font-size: 0.96rem; color: var(--ink-700); }

/* ---------- plays ---------- */
.plays { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.play {
  background: var(--white); border-radius: var(--radius); padding: 34px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--sand-200);
  position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.play::before {
  content: ""; position: absolute; top: 0; left: 0; width: 6px; height: 100%;
  background: var(--teal-500);
}
.play[data-accent="teal"]::before   { background: linear-gradient(var(--teal-500), var(--teal-400)); }
.play[data-accent="indigo"]::before { background: linear-gradient(#5563c1, #7c8ce0); }
.play[data-accent="ocean"]::before  { background: linear-gradient(var(--ocean-700), var(--teal-400)); }
.play[data-accent="coral"]::before  { background: linear-gradient(var(--coral-500), var(--coral-400)); }
.play:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.play__tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--teal-500); margin-bottom: 12px;
}
.play h3 { font-size: 1.7rem; color: var(--ocean-900); margin-bottom: 6px; }
.play__fund, .play__focus { font-size: 0.92rem; font-weight: 600; color: var(--ink-500); margin-bottom: 16px; }
.play p { color: var(--ink-700); font-size: 0.98rem; }
.play__tools { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.play__tools li {
  font-size: 0.8rem; font-weight: 600; color: var(--ocean-800);
  background: var(--sand-100); border: 1px solid var(--sand-200);
  padding: 5px 13px; border-radius: 999px;
}

/* ---------- cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--white); border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--sand-200);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card__icon {
  font-size: 1.8rem; width: 58px; height: 58px; border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--sand-100), #fff);
  border: 1px solid var(--sand-200); margin-bottom: 18px;
}
.card h3 { font-size: 1.4rem; color: var(--ocean-900); }
.card__role { font-size: 0.86rem; font-weight: 700; color: var(--teal-500); margin-bottom: 12px; letter-spacing: 0.02em; }
.card p { color: var(--ink-700); font-size: 0.96rem; }
.card__meta { margin-top: 16px; font-size: 0.82rem; font-weight: 600; color: var(--ink-500); border-top: 1px solid var(--sand-200); padding-top: 12px; }

/* ---------- blue economy ---------- */
.blue { position: relative; color: #fff; padding: 110px 0; overflow: hidden; }
.blue__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(800px 500px at 90% 10%, rgba(127,223,208,0.25), transparent 60%),
    linear-gradient(150deg, var(--ocean-900), #0a4f63 60%, #0c6f6a);
}
.blue__bg::after {
  content: ""; position: absolute; inset: 0; opacity: 0.5;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='600'%3E%3Cg fill='none' stroke='%237fdfd0' stroke-opacity='0.12' stroke-width='1.5'%3E%3Cpath d='M0 300 C 150 250 300 350 450 300 S 750 250 900 300 1050 350 1200 300'/%3E%3Cpath d='M0 360 C 150 310 300 410 450 360 S 750 310 900 360 1050 410 1200 360'/%3E%3Cpath d='M0 420 C 150 370 300 470 450 420 S 750 370 900 420 1050 470 1200 420'/%3E%3C/g%3E%3C/svg%3E") center/cover;
}
.blue__wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.blue__content { max-width: 560px; }
.blue__visual {
  margin: 0; border-radius: var(--radius);
  background: rgba(4, 26, 34, 0.35);
  border: 1px solid rgba(127, 223, 208, 0.22);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.blue__visual img { width: 100%; height: auto; display: block; }
.blue__visual figcaption {
  font-size: 0.85rem; color: rgba(255, 255, 255, 0.72);
  padding: 14px 20px; border-top: 1px solid rgba(127, 223, 208, 0.18);
  background: rgba(4, 26, 34, 0.45);
}

/* live coastal conditions */
.blue__live-wrap { margin-top: 44px; }
.blue__live {
  background: rgba(4, 26, 34, 0.42);
  border: 1px solid rgba(127, 223, 208, 0.22);
  border-radius: var(--radius); padding: 24px 28px;
  backdrop-filter: blur(4px);
}
.blue__live-head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.live-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--teal-400);
  box-shadow: 0 0 0 0 rgba(46, 196, 182, 0.7); animation: livePulse 2s ease-out infinite;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(46, 196, 182, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(46, 196, 182, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 196, 182, 0); }
}
.blue__live-title { font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.82rem; color: #fff; }
.blue__live-loc { font-size: 0.92rem; color: var(--aqua-300); }
.blue__live-btn {
  margin-left: auto; font: inherit; font-size: 0.82rem; font-weight: 600; cursor: pointer;
  color: #fff; background: rgba(46, 196, 182, 0.12); border: 1px solid rgba(127, 223, 208, 0.4);
  padding: 7px 15px; border-radius: 999px; transition: all 0.2s var(--ease);
}
.blue__live-btn:hover { background: rgba(46, 196, 182, 0.25); border-color: var(--aqua-300); }
.blue__live-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.live-metric {
  display: flex; flex-direction: column; gap: 5px;
  padding: 16px 18px; border-radius: var(--radius-sm);
  background: rgba(8, 56, 74, 0.4); border: 1px solid rgba(127, 223, 208, 0.12);
}
.live-val { font-family: var(--font-display); font-weight: 600; font-size: 1.9rem; color: #fff; line-height: 1; }
.live-unit { font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; color: var(--aqua-300); margin-left: 4px; }
.live-lbl { font-size: 0.82rem; color: rgba(255, 255, 255, 0.72); }
.blue__live-foot { margin-top: 18px; font-size: 0.8rem; color: rgba(255, 255, 255, 0.6); }
.blue__live-foot a { color: var(--aqua-300); text-decoration: underline; text-underline-offset: 2px; }
.blue__content h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); margin-bottom: 20px; }
.blue__content p { color: rgba(255,255,255,0.9); margin-bottom: 16px; font-size: 1.05rem; }
.blue__list { list-style: none; margin-top: 26px; display: grid; gap: 12px; }
.blue__list li { position: relative; padding-left: 30px; color: rgba(255,255,255,0.92); }
.blue__list li::before {
  content: "≈"; position: absolute; left: 0; top: -1px; color: var(--aqua-300);
  font-weight: 700; font-size: 1.1rem;
}

/* ---------- timeline ---------- */
.timeline { list-style: none; position: relative; display: grid; gap: 24px; max-width: 860px; margin: 0 auto; }
.timeline::before {
  content: ""; position: absolute; left: 28px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(var(--teal-400), var(--leaf-500), var(--coral-400));
}
.timeline__item {
  position: relative; background: var(--white); border-radius: var(--radius);
  padding: 26px 30px 26px 70px; box-shadow: var(--shadow-sm); border: 1px solid var(--sand-200);
}
.timeline__item::before {
  content: ""; position: absolute; left: 19px; top: 30px; width: 20px; height: 20px;
  border-radius: 50%; background: #fff; border: 4px solid var(--teal-500);
  box-shadow: 0 0 0 4px var(--sand-100);
}
.timeline__phase { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral-500); }
.timeline__item h3 { font-size: 1.4rem; color: var(--ocean-900); margin: 4px 0 8px; }
.timeline__item p { color: var(--ink-700); font-size: 0.97rem; }
.timeline__fund {
  display: inline-block; margin-top: 14px; font-size: 0.82rem; font-weight: 600;
  color: var(--teal-500); background: rgba(46,196,182,0.1); padding: 5px 13px; border-radius: 999px;
}

/* ---------- roles ---------- */
.roles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.role {
  background: var(--white); border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--sand-200); border-top: 4px solid var(--teal-500);
}
.role:nth-child(2) { border-top-color: var(--leaf-500); }
.role:nth-child(3) { border-top-color: var(--coral-500); }
.role h3 { font-size: 1.35rem; color: var(--ocean-900); }
.role__tag { font-size: 0.84rem; font-weight: 700; color: var(--teal-500); margin-bottom: 12px; letter-spacing: 0.02em; }
.role p { color: var(--ink-700); font-size: 0.96rem; }
.role__link {
  display: inline-block; margin-top: 16px; font-size: 0.9rem; font-weight: 600;
  color: var(--teal-500); transition: gap 0.2s var(--ease), color 0.2s;
}
.role__link:hover { color: var(--leaf-600); }

/* ---------- cta ---------- */
.cta { padding: 100px 0; background: linear-gradient(150deg, var(--leaf-600), var(--teal-500) 70%, var(--ocean-700)); color: #fff; }
.cta__wrap { max-width: 720px; margin: 0 auto; text-align: center; }
.cta__wrap h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; }
.cta__wrap p { font-size: 1.15rem; color: rgba(255,255,255,0.92); margin-bottom: 34px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta .btn--primary { background: #fff; color: var(--ocean-800); }
.cta .btn--primary:hover { background: var(--sand-50); }
.cta .btn--ghost { border-color: rgba(255,255,255,0.6); color: #fff; }
.cta .btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

/* ---------- footer ---------- */
.footer { background: var(--ocean-900); color: rgba(255,255,255,0.78); padding: 64px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.brand--footer { color: #fff; margin-bottom: 16px; }
.footer__brand p { font-size: 0.95rem; max-width: 420px; margin-top: 16px; }
.footer__col h4 { font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--aqua-300); margin-bottom: 16px; }
.footer__col a { display: block; font-size: 0.95rem; padding: 5px 0; color: rgba(255,255,255,0.78); transition: color 0.2s; }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 24px; font-size: 0.85rem; }
.footer__motto { font-family: var(--font-display); font-style: italic; color: var(--aqua-300); }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .roles { grid-template-columns: 1fr; }
  .blue__wrap { grid-template-columns: 1fr; gap: 40px; }
  .blue__content { max-width: 640px; }
  .blue__live-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav__links {
    position: fixed; top: 64px; right: 16px; left: 16px;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(250,246,240,0.98); backdrop-filter: blur(12px);
    border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow-lg);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: 0.25s var(--ease);
  }
  .nav__links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links > a:not(.btn) { color: var(--ocean-800) !important; padding: 10px 6px; }
  .nav__links .btn { margin-top: 8px; }
  .nav:not(.scrolled) .nav__links > a:not(.btn) { color: var(--ocean-800) !important; }
  .nav__toggle { display: flex; }
  .plays { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .hero__wrap { padding: 110px 24px 70px; }
}
@media (max-width: 480px) {
  .stats__grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
}

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

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.page-hero {
  position: relative; color: #fff; overflow: hidden;
  padding: 150px 0 80px;
}
.page-hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(900px 500px at 85% -20%, rgba(46,196,182,0.30), transparent 60%),
    linear-gradient(160deg, var(--ocean-900), var(--ocean-700) 60%, #0c5f5d);
}
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); margin-bottom: 18px; }
.page-hero p { color: rgba(255,255,255,0.9); max-width: 700px; font-size: clamp(1.05rem, 1.6vw, 1.25rem); }

/* founder profile */
.founder { max-width: 820px; margin: 0 auto; }
.founder__header { display: flex; align-items: center; gap: 28px; margin-bottom: 30px; }
.founder__photo {
  width: 180px; height: 180px; flex-shrink: 0;
  border-radius: 18px; object-fit: cover; object-position: center 25%;
  box-shadow: var(--shadow-md); border: 1px solid var(--sand-200);
}
.founder__name { font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--ocean-900); margin-bottom: 4px; }
.founder__bio { max-width: 760px; }
.founder__bio p { color: var(--ink-700); font-size: 1.05rem; margin-bottom: 16px; }
.creds { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.creds li {
  font-size: 0.84rem; font-weight: 600; color: var(--ocean-800);
  background: var(--sand-100); border: 1px solid var(--sand-200);
  padding: 7px 15px; border-radius: 999px;
}

/* narrative prose */
.narrative { max-width: 820px; margin: 0 auto; }
.narrative p { color: var(--ink-700); font-size: 1.08rem; line-height: 1.8; margin-bottom: 22px; }
.narrative strong { color: var(--ocean-800); font-weight: 600; }

/* experience domains */
.domains {
  max-width: 820px; margin: 44px auto 0; padding-top: 32px;
  border-top: 1px solid var(--sand-200);
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.domains__stat {
  font-family: var(--font-display); font-weight: 700; font-size: 2rem;
  color: var(--teal-500); line-height: 1; white-space: nowrap;
}
.domains__label { font-size: 0.9rem; font-weight: 600; color: var(--ink-500); margin-right: 4px; }
.domains__list { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }
.domains__list li {
  font-size: 0.84rem; font-weight: 600; color: var(--ocean-800);
  background: #fff; border: 1px solid var(--sand-200);
  padding: 7px 15px; border-radius: 999px;
}

/* philosophy block */
.container.narrow { max-width: 760px; text-align: center; }
.philosophy__quote {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem); color: var(--ocean-900);
  margin-bottom: 20px;
}
.philosophy__body { color: var(--ink-700); font-size: 1.1rem; max-width: 620px; margin: 0 auto; }

@media (max-width: 560px) {
  .founder__header { flex-direction: column; align-items: flex-start; gap: 18px; }
  .founder__photo { width: 150px; height: 150px; }
}
@media (max-width: 760px) {
  .page-hero { padding: 120px 0 60px; }
}
