:root {
  --navy: #041b45;
  --navy-dark: #021535;
  --electric: #62b4e5;
  --silver: #9a9da3;
  --paper: #f4f6f8;
  --line: #d5dbe4;
  --body: #102549;
  --muted: #526176;
  --display: "Bahnschrift Condensed", "Arial Narrow", Arial, sans-serif;
  --sans: "Aptos", "Segoe UI", Arial, sans-serif;
  --max: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--body); font-family: var(--sans); background: #fff; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin: 0; }

.site-header {
  height: 94px;
  background: #fff;
  border-bottom: 1px solid #e5e8ed;
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav-wrap {
  max-width: var(--max);
  height: 100%;
  margin: 0 auto;
  padding: 0 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
.brand { width: 245px; min-width: 245px; }
.brand img { width: 245px; }
.primary-nav {
  display: flex;
  gap: 50px;
  margin-left: auto;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 750;
}
.primary-nav a { padding: 10px 0; }
.primary-nav a:hover, .primary-nav .active { color: #217bb8; }
.nav-actions { display: flex; align-items: center; }
.button {
  min-height: 56px;
  min-width: 168px;
  padding: 0 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .4px;
  text-transform: uppercase;
}
.button-primary { color: #fff; background: var(--navy); border: 1px solid var(--navy); }
.button-primary:hover { background: #123667; }
.button-secondary { color: var(--navy); background: #fff; border: 1px solid rgba(4,27,69,.28); }
.button-secondary:hover { border-color: var(--navy); }
.menu-toggle { display: none; }

.about-page { overflow: hidden; }
.eyebrow,
.section-kicker {
  color: #3289c2;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-hero {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 620px;
  padding: 78px 70px 72px;
  display: block;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,.9) 52%, rgba(236,242,248,.7)),
    url("assets/backgrounds/ocean-hero.png") center right / cover no-repeat;
}
.about-hero-copy { max-width: 760px; }
.about-hero h1 {
  margin-top: 18px;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(58px, 6vw, 94px);
  line-height: .9;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.about-hero h1 span { color: #85898f; }
.lead {
  max-width: 660px;
  margin-top: 28px;
  color: #263954;
  font-size: 20px;
  line-height: 1.55;
}
.about-proof {
  max-width: 760px;
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(4,27,69,.22);
  border-bottom: 1px solid rgba(4,27,69,.22);
}
.about-proof span {
  min-height: 88px;
  padding: 17px 20px;
  display: grid;
  align-content: center;
  gap: 5px;
  border-right: 1px solid rgba(4,27,69,.18);
  color: var(--navy);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .7px;
  line-height: 1.25;
  text-transform: uppercase;
}
.about-proof span:last-child { border-right: 0; }
.about-proof strong {
  color: #247fb8;
  font-family: var(--display);
  font-size: 38px;
  line-height: .9;
}
.about-founder-image {
  margin: 0;
  min-width: 0;
}
.about-founder-image img {
  width: 100%;
  aspect-ratio: 16 / 10.5;
  object-fit: cover;
  border: 1px solid rgba(4,27,69,.14);
  box-shadow: 0 28px 70px rgba(4,27,69,.18);
}

.mission-section {
  max-width: 1220px;
  margin: 0 auto;
  padding: 76px 50px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}
.mission-section h2,
.founder-copy h2,
.consultant-section h2,
.sourcing-section h2,
.about-close h2 {
  margin-top: 10px;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(42px, 4.8vw, 68px);
  line-height: .95;
  letter-spacing: .7px;
  text-transform: uppercase;
}
.mission-section > p,
.founder-copy p,
.consultant-section p,
.source-card p,
.about-close p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.reason-grid {
  max-width: 1220px;
  margin: 0 auto;
  padding: 70px 50px 78px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.reason-grid article {
  min-height: 300px;
  padding: 34px 30px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f7f9fb);
}
.reason-grid span {
  color: #2d8cc5;
  font-family: var(--display);
  font-size: 36px;
}
.reason-grid h3,
.source-card h3 {
  margin-top: 18px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
}
.reason-grid p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.founder-section {
  background: var(--navy);
  color: #fff;
}
.founder-section {
  padding: 78px max(50px, calc((100vw - 1220px) / 2 + 50px));
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 58px;
  align-items: center;
}
.founder-copy h2 { color: #fff; }
.founder-copy p { color: rgba(255,255,255,.78); }
.founder-copy p + p { margin-top: 20px; }
.founder-stats {
  display: grid;
  border-top: 1px solid rgba(255,255,255,.22);
}
.founder-stats div {
  min-height: 116px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255,255,255,.22);
}
.founder-stats strong {
  display: block;
  font-family: var(--display);
  font-size: 48px;
  line-height: .95;
  text-transform: uppercase;
}
.founder-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.consultant-section {
  max-width: 1220px;
  margin: 0 auto;
  padding: 88px 50px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 58px;
  align-items: center;
}
.consultant-section figure { margin: 0; }
.consultant-section img {
  width: 100%;
  aspect-ratio: 4 / 5.2;
  object-fit: cover;
  border: 1px solid rgba(4,27,69,.14);
  box-shadow: 0 24px 60px rgba(4,27,69,.14);
}
.consultant-section p + p { margin-top: 18px; }
.consultant-tags {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.consultant-tags span {
  padding: 11px 14px;
  color: var(--navy);
  background: #eef4f9;
  border: 1px solid #cfe0ec;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .7px;
  text-transform: uppercase;
}

.sourcing-section {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 50px 86px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.source-card {
  padding: 42px 38px;
  border: 1px solid var(--line);
  background: #fff;
}
.source-card.dark {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(4,27,69,.96), rgba(2,16,40,.96)),
    url("assets/backgrounds/ocean-hero.png") center / cover no-repeat;
  border-color: var(--navy);
}
.source-card.dark h3 {
  margin-top: 0;
  color: #fff;
  font-size: clamp(42px, 4vw, 61px);
}
.source-card.dark p { color: rgba(255,255,255,.78); }

.about-close {
  padding: 78px 28px 86px;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(98,180,229,.26), transparent 36%),
    linear-gradient(135deg, #041b45, #020f28);
}
.about-close h2 {
  max-width: 900px;
  margin: 0 auto;
  color: #fff;
}
.about-close p {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(255,255,255,.78);
}
.about-actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer {
  padding: 23px 42px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255,255,255,.72);
  background: var(--navy-dark);
  font-size: 12px;
}
.footer a { color: #83c3ea; }

@media (max-width: 1050px) {
  .primary-nav { gap: 24px; }
  .nav-shop { display: none; }
  .about-hero { grid-template-columns: 1fr; padding: 68px 42px; }
  .mission-section,
  .founder-section,
  .consultant-section,
  .sourcing-section { grid-template-columns: 1fr; }
  .consultant-section { align-items: start; }
  .consultant-section figure { max-width: 360px; }
  .reason-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-header { height: 76px; }
  .nav-wrap { padding: 0 20px; }
  .brand, .brand img { width: 185px; min-width: 185px; }
  .menu-toggle {
    width: 42px;
    height: 42px;
    padding: 10px;
    display: grid;
    align-content: center;
    gap: 5px;
    border: 0;
    background: transparent;
  }
  .menu-toggle span { height: 2px; background: var(--navy); }
  .primary-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    padding: 18px 22px 24px;
    display: none;
    flex-direction: column;
    gap: 5px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }
  .primary-nav.open { display: flex; }
  .nav-actions { display: none; }
  .about-hero { min-height: auto; padding: 54px 22px 62px; }
  .about-proof { grid-template-columns: 1fr; }
  .about-proof span { border-right: 0; border-bottom: 1px solid rgba(4,27,69,.18); }
  .about-proof span:last-child { border-bottom: 0; }
  .mission-section,
  .reason-grid,
  .consultant-section,
  .sourcing-section { padding-left: 22px; padding-right: 22px; }
  .founder-section { padding: 62px 22px; }
  .source-card { padding: 32px 26px; }
  .footer { padding: 22px; flex-direction: column; }
}

/* Compact header navigation for Investor link */
.primary-nav { gap: 32px; font-size: 13px; }
.primary-nav a { white-space: nowrap; }
@media (max-width: 1150px) { .primary-nav { gap: 18px; } }
