/* oneteamoneheart.com — design tokens.
   "Many ships, one heart": midnight/sea navy ground, sea-mist editorial
   sections (deliberately NOT cream), sunrise coral + sun gold as the one
   warm accent. Signature: the heart-pennant fleet divider. */
:root {
  --midnight: #0D1F2E;     /* darkest navy: hero, footer, dark bands */
  --sea: #14374F;          /* mid navy: cards on midnight, gradients */
  --horizon: #1E4A66;      /* lightest navy: hairlines/edges on dark */
  --mist: #EDF2EF;         /* light section base (sea-glass, not cream) */
  --mist-deep: #E0E9E4;    /* panels/cards on mist */
  --mist-line: #D3DFD8;    /* hairlines on mist */
  --ink: #16293A;          /* body text on mist */
  --foam: #F4F8F5;         /* text on navy */
  --foam-dim: #B8C9CE;     /* secondary text on navy */
  --coral: #E8664A;        /* sunrise accent: pennants, CTAs */
  --coral-deep: #B4402A;   /* accent with contrast on light bg */
  --sun: #F2B441;          /* gold: gradient partner, sparing */
  --display: "Fraunces", Georgia, serif;
  --body: "Work Sans", -apple-system, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--midnight);
  font-size: 16.5px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--display); font-weight: 500; line-height: 1.18; letter-spacing: -.01em; }

a { color: inherit; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--sun); outline-offset: 2px; }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--coral); color: var(--midnight); padding: .6rem 1rem; z-index: 100; }
.skip-link:focus { left: 0; }

.wrap { max-width: 1020px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--mono); font-size: .76rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--coral); display: block; margin-bottom: 1rem;
}
.band--mist .eyebrow { color: var(--coral-deep); }

/* ---- header ---- */
.site-header { background: var(--midnight); border-bottom: 1px solid var(--horizon); }
.site-header .wrap {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  padding-top: 18px; padding-bottom: 18px;
}
.wordmark {
  font-family: var(--display); font-size: 1.18rem; color: var(--foam);
  text-decoration: none; letter-spacing: .01em; margin-right: auto;
  display: inline-flex; align-items: center; gap: 10px;
}
.wordmark img { display: block; }
.site-nav { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.site-nav a {
  color: var(--foam-dim); text-decoration: none; font-size: .95rem; font-weight: 500;
}
.site-nav a:hover { color: var(--foam); }
.site-nav a.btn { color: var(--midnight); }

/* ---- buttons ---- */
.btn {
  display: inline-block; padding: .78rem 1.5rem; border-radius: 999px;
  text-decoration: none; font-weight: 600; font-size: 1rem; line-height: 1.3;
  transition: transform .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-coral { background: var(--coral); color: var(--midnight); }
.btn-coral:hover { background: #F07A5F; }
.btn-ghost { border: 1.5px solid var(--horizon); color: var(--foam); }
.btn-ghost:hover { border-color: var(--foam-dim); }
.band--sunrise .btn-deep { background: var(--midnight); color: var(--foam); }
.band--sunrise .btn-deep:hover { background: var(--sea); }

/* ---- bands ---- */
.band { padding: 5.5rem 0; }
.band--deep { background: var(--midnight); color: var(--foam); }
.band--sea { background: linear-gradient(180deg, var(--midnight), var(--sea)); color: var(--foam); }
.band--mist { background: var(--mist); color: var(--ink); }
.band--mist + .band--mist { border-top: 1px solid var(--mist-line); }
.band--sunrise {
  background: linear-gradient(120deg, var(--coral) 0%, #EE8A55 55%, var(--sun) 100%);
  color: var(--midnight);
}
.band--deep h2, .band--sea h2 { color: var(--foam); }
.band--deep .lede, .band--sea .lede { color: var(--foam-dim); }

.band h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 1.1rem; }
.lede { font-size: 1.14rem; max-width: 46rem; }
.prose { max-width: 46rem; }
.prose p + p { margin-top: 1.1rem; }
.prose strong { font-weight: 600; }

/* ---- hero ---- */
.hero {
  background:
    radial-gradient(115% 75% at 50% 108%, rgba(232, 102, 74, .38) 0%, rgba(242, 180, 65, .14) 38%, rgba(13, 31, 46, 0) 68%),
    var(--midnight);
  color: var(--foam);
  padding: 5.5rem 0 0;
  text-align: center;
}
.hero h1 {
  font-size: clamp(2.7rem, 7vw, 4.4rem);
  color: var(--foam);
  margin-bottom: 1.2rem;
}
.hero h1 em { font-style: italic; color: var(--sun); }
.hero .lede { margin: 0 auto 2.2rem; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-figure { margin: 0 auto; max-width: 1020px; padding: 0 24px; }
.hero-figure img {
  display: block; width: 100%; height: auto; border-radius: 14px 14px 0 0;
  border: 1px solid var(--horizon); border-bottom: 0;
}

/* ---- the fleet divider (signature) ---- */
.band--sea { overflow: hidden; }
.fleet { display: block; width: 100%; max-width: 1020px; margin: 2.5rem auto 0; height: auto; color: var(--foam); }
@media (max-width: 720px) {
  .fleet { min-width: 680px; margin-left: 50%; transform: translateX(-50%); }
}
.fleet .pennant { fill: var(--coral); }
.fleet .water { stroke: var(--horizon); }

/* ---- pull quote (captains & crew) ---- */
.pullquote {
  font-family: var(--display); font-style: italic; font-weight: 400;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem); line-height: 1.35;
  color: var(--foam); max-width: 44rem; margin: 1.4rem 0 1.6rem;
}
.pullquote .mark { color: var(--coral); }

/* ---- cards ---- */
.cards { display: grid; gap: 20px; margin-top: 2.4rem; }
.cards-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.cards-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.card {
  border-radius: 14px; padding: 1.7rem 1.6rem;
  background: var(--mist-deep); border: 1px solid var(--mist-line);
}
.card h3 { font-size: 1.28rem; margin-bottom: .6rem; }
.card p { font-size: .99rem; }
.card--promise { border-top: 4px solid var(--coral-deep); }
.card--deep { background: var(--sea); border-color: var(--horizon); color: var(--foam); }
.card--deep h3 { color: var(--foam); }
.card--deep p { color: var(--foam-dim); }

/* ---- book callout ---- */
.book { display: flex; gap: 28px; align-items: flex-start; flex-wrap: wrap; margin-top: 2rem; }
.book-cover {
  flex: 0 0 130px; aspect-ratio: 2 / 3; border-radius: 6px;
  background: linear-gradient(160deg, var(--sea), var(--horizon));
  border: 1px solid var(--horizon);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-style: italic; color: var(--foam);
  text-align: center; padding: 12px; font-size: .82rem; line-height: 1.4;
}
.book-body { flex: 1 1 320px; }
.book-body h3 { font-size: 1.35rem; color: var(--foam); margin-bottom: .6rem; }
.book-body p { color: var(--foam-dim); margin-bottom: 1.2rem; }
.book-body a.textlink { color: var(--sun); }

/* ---- join ---- */
.people { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); margin-top: 2.4rem; }
.person {
  background: rgba(13, 31, 46, .92); color: var(--foam);
  border-radius: 14px; padding: 1.8rem 1.6rem; text-align: center;
}
.person .avatar {
  width: 74px; height: 74px; border-radius: 50%; margin: 0 auto 1rem;
  background: var(--sea); border: 2.5px solid var(--coral);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 1.5rem; color: var(--foam);
}
.person h3 { color: var(--foam); font-size: 1.3rem; margin-bottom: .2rem; }
.person .role { color: var(--foam-dim); font-size: .95rem; margin-bottom: 1.2rem; }
.band--sunrise .lede { color: rgba(13, 31, 46, .85); }
.band--sunrise .eyebrow { color: var(--midnight); }

/* ---- footer ---- */
.site-footer { background: var(--midnight); color: var(--foam-dim); padding: 3rem 0 3.5rem; border-top: 1px solid var(--horizon); }
.site-footer .wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; align-items: center; }
.site-footer .foot-line { font-family: var(--display); font-style: italic; color: var(--foam); }
.site-footer a { color: var(--foam-dim); }

/* ---- responsive ---- */
@media (max-width: 720px) {
  .band { padding: 3.8rem 0; }
  .hero { padding-top: 3.8rem; }
  .site-header .wrap { justify-content: center; }
  .wordmark { margin-right: 0; }
  .site-nav { justify-content: center; }
}
