/* jordanpham.com.au
   Layout and section rhythm after codiesanchez.com.
   Palette is BNB Success (cream, near-black ink, maroon). Type pairs Inter Tight and Inter, standing in for Codie's Neue Haas Grotesk Display and Inter. */

:root {
  --ink: #1f1e1c;
  --ink-2: rgb(31 30 28 / .74);
  --ink-3: rgb(31 30 28 / .64);
  --line: rgb(31 30 28 / .14);
  --cream: #f0ede4;
  --cream-2: #e6e1d3;
  --paper: #ffffff;
  --maroon: #731718;
  --maroon-2: #5a1112;
  --rose: #f6c6c3;
  --display: "Inter Tight", "Helvetica Neue", Arial, sans-serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --script: "Herr Von Muellerhoff", "Brush Script MT", cursive;
  --ease: cubic-bezier(.19, 1, .22, 1);
  --gutter: clamp(1rem, 3.4vw, 3rem);
  --wrap: 84rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 6.5rem; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font: 400 1.0625rem/1.6 var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3 { margin: 0; font-weight: 400; }
p { margin: 0; }
figure { margin: 0; }
::selection { background: var(--maroon); color: #fff; }
:focus-visible { outline: 2px solid var(--maroon); outline-offset: 3px; }

.wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; }
.skip { position: absolute; left: -9999px; top: 0; z-index: 100; background: var(--ink); color: #fff; padding: .75rem 1rem; }
.skip:focus { left: 1rem; top: 1rem; }

.display {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -.03em;
  padding-bottom: .04em;
}
.eyebrow {
  font: 600 .9375rem/1.3 var(--sans);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ------------------------------------------------------------ buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 3.5rem; padding: .9rem 1.75rem;
  font: 600 1rem/1 var(--sans); letter-spacing: .04em; text-transform: uppercase;
  text-decoration: none; border: 0; cursor: pointer;
  transition: background .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}
.btn--block {
  background: var(--maroon); color: #fff;
  box-shadow: 0 10px 22px -10px rgb(115 23 24 / .65);
}
.btn--block:hover { background: var(--maroon-2); transform: translateY(-2px); box-shadow: 0 16px 28px -12px rgb(115 23 24 / .7); }
.btn--pill {
  border-radius: 999px; background: var(--ink); color: #fff;
  text-transform: none; letter-spacing: 0; font-size: 1.0625rem;
  box-shadow: 0 10px 22px -12px rgb(31 30 28 / .6);
}
.btn--pill:hover { background: var(--maroon); transform: translateY(-2px); }
.btn svg { width: 1.1rem; height: 1.1rem; transition: translate .35s var(--ease); }
.btn:hover svg { translate: 3px 0; }

.tlink {
  font-weight: 600; color: var(--maroon);
  text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: .22em;
  transition: color .3s;
}
.tlink:hover { color: var(--ink); }

/* ------------------------------------------------------------ header */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--ink); color: #fff; }
.site-header__bar { display: flex; align-items: center; justify-content: space-between; height: 6.25rem; transition: height .4s var(--ease); }
.site-header.is-scrolled .site-header__bar { height: 4.75rem; }
.brand { display: inline-flex; align-items: center; gap: .35rem; text-decoration: none; }
.brand__mark {
  font: 400 3.1rem/.8 var(--script); color: var(--rose);
  padding: 0 1.15rem 0 .35rem; translate: 0 .06em; letter-spacing: -.02em; white-space: nowrap;
}
.brand__name { font: 500 1.5rem/1 var(--sans); letter-spacing: .03em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 3rem; }
.nav a {
  font: 400 1.0625rem/1 var(--sans); letter-spacing: .04em; text-decoration: none; color: rgb(255 255 255 / .92);
  position: relative; padding-block: .4rem;
}
.nav a.up { text-transform: uppercase; }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -.1rem; height: 1.5px; background: var(--rose);
  transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--rose); }
.nav-toggle { display: none; background: none; border: 0; color: #fff; padding: .5rem; cursor: pointer; }
.nav-toggle svg { width: 1.75rem; height: 1.75rem; }

@media (max-width: 63.99rem) {
  .site-header__bar { height: 4.5rem; }
  .site-header.is-scrolled .site-header__bar { height: 4.5rem; }
  .brand__mark { font-size: 2.5rem; }
  .brand__name { font-size: 1.125rem; }
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 4.5rem 0 auto 0; flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--ink); padding: .5rem var(--gutter) 1.5rem; border-top: 1px solid rgb(255 255 255 / .12);
    transform: translateY(-.5rem); opacity: 0; visibility: hidden;
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  }
  .nav.is-open { transform: none; opacity: 1; visibility: visible; }
  .nav a { width: 100%; padding: 1rem 0; font-size: 1.125rem; border-bottom: 1px solid rgb(255 255 255 / .1); }
  .nav a::after { display: none; }
}

/* ------------------------------------------------------------ hero */
.hero { background: linear-gradient(var(--cream-2), var(--cream) 42%); padding: clamp(3rem, 6.5vw, 6rem) 0 clamp(4rem, 7vw, 7.5rem); }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.hero__copy { padding-top: .75rem; max-width: 40rem; }
.hero h1 { font-size: clamp(2.6rem, 4.7vw, 4.4rem); margin: 1.25rem 0 1.75rem; }
.hero h1 em { font-style: normal; color: var(--maroon); }
.hero p { font-size: clamp(1.125rem, 1.45vw, 1.3125rem); line-height: 1.45; color: var(--ink-2); max-width: 36rem; }
.hero p + p { margin-top: 1.4rem; }
.hero__ctas { margin-top: 2.4rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem 1.75rem; }
.hero__photo { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--ink); }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__tag {
  position: absolute; left: 1rem; bottom: 1rem; background: rgb(31 30 28 / .82); color: #fff;
  font: 500 .8125rem/1.3 var(--sans); letter-spacing: .03em; padding: .55rem .8rem;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
@media (max-width: 55.99rem) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__photo { max-width: 34rem; }
}

/* ------------------------------------------------------------ feature card (the "book" slot) */
.feature { padding-bottom: clamp(4rem, 8vw, 8rem); }
.feature__card {
  background: var(--paper); border-radius: clamp(1.25rem, 2.4vw, 2rem);
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 5rem); align-items: center;
  padding: clamp(2.5rem, 7vw, 7.5rem) clamp(1.5rem, 5vw, 5.5rem);
}
.feature__visual { display: flex; justify-content: center; }
.browser {
  width: 100%; max-width: 34rem; border-radius: .9rem; overflow: hidden; background: #fff;
  box-shadow: 0 2px 0 rgb(31 30 28 / .04), 0 40px 60px -30px rgb(31 30 28 / .45), 0 0 0 1px rgb(31 30 28 / .1);
  transform: perspective(1400px) rotateY(9deg) rotateX(2deg); transition: transform .9s var(--ease);
}
.feature__card:hover .browser { transform: perspective(1400px) rotateY(3deg) rotateX(1deg); }
.browser__bar { display: flex; align-items: center; gap: .4rem; height: 2rem; padding: 0 .8rem; background: #f3f1ec; border-bottom: 1px solid var(--line); }
.browser__bar i { width: .6rem; height: .6rem; border-radius: 50%; background: #d8d3c6; }
.browser__bar span { margin-left: .8rem; flex: 1; height: 1.1rem; border-radius: 999px; background: #fff; font: 500 .625rem/1.1rem var(--sans); color: var(--ink-3); padding-left: .6rem; }
.feature__logo { height: 3.25rem; width: auto; margin-bottom: 1.5rem; }
.feature h2 { font-size: clamp(2.4rem, 4vw, 3.75rem); }
.feature__lead { margin-top: 1.25rem; font: 600 clamp(1.25rem, 1.9vw, 1.625rem)/1.3 var(--display); letter-spacing: -.02em; max-width: 30rem; }
.feature__body { margin-top: 1rem; color: var(--ink-2); max-width: 30rem; }
.feature .btn { margin-top: 2rem; }
@media (max-width: 55.99rem) {
  .feature__card { grid-template-columns: 1fr; }
  .feature__copy { order: -1; }
  .browser { transform: none; }
  .feature__card:hover .browser { transform: none; }
}

/* ------------------------------------------------------------ welcome */
.welcome { position: relative; overflow: hidden; background: linear-gradient(180deg, #e2dccd 0%, #ebe6da 55%, #e4ddcc 100%); }
.welcome__ghost {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; pointer-events: none; user-select: none;
  font: 800 clamp(7rem, 21vw, 21rem)/.82 var(--sans); letter-spacing: -.05em; text-transform: uppercase;
  color: rgb(255 255 255 / .5); white-space: nowrap; padding-left: 1vw;
}
.welcome__ghost span:last-child { padding-left: 6vw; }
.welcome__grid { position: relative; display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(1.5rem, 4vw, 4rem); align-items: end; }
.welcome__portrait { align-self: end; display: flex; justify-content: center; padding-top: 4rem; }
.welcome__portrait img { width: min(100%, 31rem); filter: drop-shadow(0 30px 40px rgb(31 30 28 / .18)); }
.welcome__copy { padding-top: clamp(4rem, 9vw, 8.5rem); }
.welcome h2 { font-size: clamp(2.4rem, 4.1vw, 3.9rem); }
.welcome__lead { margin-top: 2rem; font-weight: 700; font-size: 1.1875rem; line-height: 1.45; }
.welcome__copy p:not(.welcome__lead) { margin-top: 1.1rem; color: var(--ink-2); max-width: 40rem; }
.welcome .btn { margin-top: 2rem; }
.social {
  margin-top: 2.5rem; background: var(--ink); color: #fff; border-radius: 1.25rem 1.25rem 0 0;
  padding: 1.75rem clamp(1.25rem, 3vw, 2.5rem) 2rem; text-align: center;
}
.social h3, .social__title { font: 700 1.25rem/1.2 var(--sans); color: rgb(255 255 255 / .9); letter-spacing: 0; }
.social ul { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.social a { display: flex; flex-direction: column; align-items: center; gap: .75rem; text-decoration: none; color: rgb(255 255 255 / .92); transition: color .3s, transform .4s var(--ease); }
.social a:hover { color: var(--rose); transform: translateY(-3px); }
.social svg { width: 2.5rem; height: 2.5rem; }
.social b { font: 700 1.125rem/1 var(--sans); }
.social small { display: block; margin-top: .35rem; font-size: .75rem; color: rgb(255 255 255 / .5); letter-spacing: .02em; }
@media (max-width: 55.99rem) {
  .welcome__grid { grid-template-columns: 1fr; }
  .welcome__copy { padding-top: 3.5rem; }
  .welcome__portrait { order: 3; padding-top: 1rem; }
  .welcome__portrait img { width: min(80%, 22rem); }
  .social { border-radius: 1.25rem; margin-bottom: 0; }
}
@media (max-width: 30rem) {
  .social ul { grid-template-columns: repeat(2, 1fr); row-gap: 1.75rem; }
}

/* ------------------------------------------------------------ offers */
.offers { padding: clamp(4.5rem, 8vw, 7.5rem) 0 clamp(4rem, 7vw, 6rem); text-align: center; }
.offers h2 { font-size: clamp(2.25rem, 4vw, 3.75rem); }
.offers__sub { margin: 1rem auto 0; color: var(--ink-2); max-width: 46rem; font-size: 1.125rem; }
.offers__grid { margin: clamp(3rem, 5vw, 4.5rem) auto 0; max-width: 76rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2rem, 4.4vw, 4rem); text-align: left; }
.offer { position: relative; }
.offer__img { aspect-ratio: 1.1; overflow: hidden; background: var(--ink); }
.offer__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.offer:hover .offer__img img { transform: scale(1.04); }
.offer__body { position: relative; padding: 1.2rem 0 0 3.75rem; }
.offer__body::before { content: ""; position: absolute; left: 1.25rem; top: -5.25rem; width: 3px; height: 7.5rem; background: var(--maroon); }
.offer h3 { font: 600 clamp(1.5rem, 2vw, 1.875rem)/1.15 var(--display); letter-spacing: -.025em; }
.offer p { margin-top: 1rem; color: var(--ink-2); }
.offer .tlink { display: inline-block; margin-top: 1.25rem; }
@media (max-width: 55.99rem) {
  .offers__grid { grid-template-columns: 1fr; max-width: 32rem; gap: 3.5rem; }
}

/* ------------------------------------------------------------ press card */
.press { padding-bottom: clamp(4.5rem, 8vw, 6rem); }
.press__card { background: var(--ink); color: #fff; border-radius: clamp(1.25rem, 2.6vw, 2.5rem); padding: clamp(3rem, 6vw, 4.5rem) clamp(1.25rem, 4vw, 3rem); text-align: center; }
.press h2 { font-size: clamp(2.1rem, 3.8vw, 3.5rem); }
.press__sub { margin-top: .75rem; color: rgb(255 255 255 / .75); }
.press__logos { margin-top: 2.25rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.press__logo {
  width: 14rem; height: 7rem; padding: 1.1rem 1.5rem; background: #fff; border-radius: .9rem;
  display: flex; align-items: center; justify-content: center;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.press__logo:hover { transform: translateY(-3px); box-shadow: 0 18px 30px -18px rgb(0 0 0 / .6); }
.press__logo img { width: auto; height: auto; max-width: 100%; max-height: 3.6rem; object-fit: contain; }
.press__logo--wide img { max-height: 1.9rem; }
@media (max-width: 30rem) { .press__logo { width: 100%; } }

/* ------------------------------------------------------------ watch (the podcast slot) */
.watch__band { position: relative; height: clamp(18rem, 37.5vw, 34rem); overflow: hidden; background: var(--ink); }
.watch__band img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.watch__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 3rem; align-items: start; max-width: 70rem; margin-inline: auto; }
.watch__copy { padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(4rem, 7vw, 7rem); }
.watch .eyebrow { text-transform: none; letter-spacing: -.005em; font-size: 1.25rem; font-weight: 600; }
.watch h2 { margin-top: 1.25rem; font-size: clamp(2.4rem, 4vw, 3.75rem); }
.watch .btn { margin-top: 2rem; }
.watch__where { margin-top: 2.25rem; font-weight: 600; font-size: 1.125rem; }
.badges { margin-top: 1.25rem; display: flex; flex-wrap: wrap; gap: .75rem; }
.badge {
  display: inline-flex; align-items: center; gap: .6rem; height: 2.75rem; padding: 0 1rem .05rem .75rem; border-radius: .5rem;
  background: var(--ink); color: #fff; text-decoration: none; transition: background .3s;
}
.badge:hover { background: var(--maroon); }
.badge svg { width: 1.5rem; height: 1.5rem; }
.badge span { display: flex; flex-direction: column; font: 500 1.0625rem/1 var(--sans); }
.badge small { font-size: .625rem; letter-spacing: .03em; margin-bottom: .2rem; opacity: .8; }

.phone-slot { position: relative; }
.phone {
  position: relative; margin: calc(clamp(18rem, 37.5vw, 34rem) * -.22) auto 0; width: min(100%, 19rem);
  border-radius: 2.9rem; padding: .7rem; background: #111; box-shadow: 0 0 0 2px #3b3a37, 0 40px 70px -30px rgb(31 30 28 / .6);
}
.phone__screen { border-radius: 2.3rem; overflow: hidden; background: #fff; height: 36rem; position: relative; }
.phone__screen::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3.5rem; background: linear-gradient(rgb(255 255 255 / 0), #fff 70%); pointer-events: none; }
.phone__status { display: flex; justify-content: space-between; align-items: center; padding: .85rem 1.4rem .4rem 1.6rem; font: 600 .8125rem/1 var(--sans); }
.phone__status svg { width: 3.4rem; height: .75rem; }
.phone__island { position: absolute; top: .55rem; left: 50%; translate: -50% 0; width: 5.5rem; height: 1.5rem; border-radius: 999px; background: #111; }
.yt { padding: .5rem .9rem 0; }
.yt__head { display: flex; gap: .75rem; align-items: center; }
.yt__avatar { width: 3.75rem; height: 3.75rem; border-radius: 50%; object-fit: cover; object-position: 50% 12%; background: var(--cream-2); }
.yt__name { font: 700 1.0625rem/1.2 var(--sans); }
.yt__meta { font-size: .6875rem; color: #606060; line-height: 1.4; margin-top: .15rem; }
.yt__sub { margin-top: .75rem; display: block; width: 100%; text-align: center; background: #0f0f0f; color: #fff; border-radius: 999px; font: 600 .8125rem/2.25rem var(--sans); text-decoration: none; }
.yt__tabs { display: flex; gap: 1.1rem; margin-top: .85rem; border-bottom: 1px solid #e5e5e5; font: 600 .75rem/1 var(--sans); color: #606060; }
.yt__tabs span { padding-bottom: .6rem; }
.yt__tabs .on { color: #0f0f0f; box-shadow: inset 0 -2px 0 #0f0f0f; }
.yt__list { list-style: none; margin: 0; padding: .8rem 0 0; display: grid; gap: .9rem; }
.yt__list a { display: block; text-decoration: none; }
.yt__thumb { position: relative; border-radius: .6rem; overflow: hidden; aspect-ratio: 16 / 9; background: #ddd; }
.yt__thumb img { width: 100%; height: 100%; object-fit: cover; }
.yt__thumb time { position: absolute; right: .35rem; bottom: .35rem; background: rgb(0 0 0 / .8); color: #fff; font: 600 .625rem/1 var(--sans); padding: .2rem .3rem; border-radius: .25rem; }
.yt__title { margin-top: .45rem; font: 600 .8125rem/1.3 var(--sans); color: #0f0f0f; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
@media (max-width: 55.99rem) {
  .watch__grid { grid-template-columns: 1fr; gap: 0; }
  .phone-slot { order: -1; }
  .watch__copy { padding-top: 2.5rem; }
}

/* ------------------------------------------------------------ mosaic */
.mosaic { display: grid; gap: 1rem; }
.mosaic__row { display: flex; gap: 1rem; height: clamp(11rem, 26vw, 23rem); }
.mosaic__row figure { margin: 0; overflow: hidden; background: var(--ink); flex: var(--r) 1 0; min-width: 0; }
.mosaic__row img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.mosaic__row figure:hover img { transform: scale(1.04); }
@media (max-width: 40rem) {
  .mosaic__row { height: auto; flex-wrap: wrap; }
  .mosaic__row figure { flex: 1 1 calc(50% - .5rem); aspect-ratio: 1; }
  .mosaic__row figure:first-child { flex-basis: 100%; aspect-ratio: 1.5; }
}

/* ------------------------------------------------------------ closing photo */
.closing { position: relative; margin-top: 1rem; height: clamp(22rem, 52vw, 48rem); overflow: hidden; }
.closing img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; }
.closing::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgb(240 237 228 / 0) 45%, rgb(240 237 228 / .75) 80%, var(--cream) 100%); }
.closing figcaption { position: absolute; left: 50%; bottom: 1.5rem; translate: -50% 0; z-index: 1; font-size: .8125rem; color: var(--ink-3); white-space: nowrap; }
@media (max-width: 40rem) { .closing figcaption { white-space: normal; width: calc(100% - 2 * var(--gutter)); text-align: center; } }

/* ------------------------------------------------------------ footer */
.site-footer { padding: clamp(2.5rem, 5vw, 4rem) 0 2.5rem; }
.footer__top { display: grid; grid-template-columns: auto 1fr auto; gap: 3rem; align-items: start; }
.site-footer .brand__mark { color: var(--maroon); }
.site-footer .brand__name { font-size: 1.25rem; }
.footer__year { font-size: .9375rem; color: var(--ink-3); margin-left: .25rem; }
.footer__nav { display: grid; grid-template-columns: repeat(2, max-content); column-gap: 4rem; row-gap: .9rem; padding-top: .9rem; justify-self: center; }
.footer__nav a { text-decoration: none; font-weight: 500; font-size: .9375rem; }
.footer__nav a:hover { color: var(--maroon); }
.footer__social { display: flex; gap: 1.1rem; padding-top: .9rem; }
.footer__social a { color: var(--ink); transition: color .3s; }
.footer__social a:hover { color: var(--maroon); }
.footer__social svg { width: 1.5rem; height: 1.5rem; }
.footer__legal { margin-top: 3.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: .75rem 2rem; font-size: .8125rem; color: var(--ink-3); }
.footer__legal a { color: var(--ink-2); }
@media (max-width: 55.99rem) {
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__nav { justify-self: start; padding-top: 0; }
  .footer__social { padding-top: 0; }
}

/* ------------------------------------------------------------ about page */
.a-hero { background: linear-gradient(var(--cream-2), var(--cream) 42%); padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(3.5rem, 6vw, 6rem); }
.a-hero__grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.a-hero h1 { font-size: clamp(2.6rem, 4.9vw, 4.6rem); margin-top: 1.25rem; }
.a-hero__intro { margin-top: 2rem; font-size: clamp(1.125rem, 1.45vw, 1.3125rem); line-height: 1.5; color: var(--ink-2); max-width: 38rem; }
.a-hero__intro strong { color: var(--ink); font-weight: 700; }
.a-hero__intro a, .community__copy p a { color: var(--maroon); font-weight: 600; text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: .2em; }
.a-hero__intro a:hover, .community__copy p a:hover { color: var(--ink); }
.a-hero__photo { aspect-ratio: 4 / 5; overflow: hidden; background: var(--ink); }
.a-hero__photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 55.99rem) { .a-hero__grid { grid-template-columns: 1fr; } .a-hero__photo { max-width: 30rem; } }

.story { padding: clamp(3.5rem, 7vw, 6.5rem) 0; background: var(--paper); }
.story__col { max-width: 60rem; margin-inline: auto; }
.story__col > p { font-size: 1.25rem; line-height: 1.65; color: var(--ink-2); }
.story__col > p + p { margin-top: 1.4rem; }
.pull { margin: clamp(2.5rem, 5vw, 4rem) 0; padding-left: clamp(1.25rem, 3vw, 2.5rem); border-left: 3px solid var(--maroon); }
.pull blockquote { margin: 0; font: 500 clamp(1.45rem, 2.4vw, 2rem)/1.28 var(--display); letter-spacing: -.02em; color: var(--ink); }
.pull figcaption { margin-top: 1rem; font-size: .9375rem; color: var(--ink-3); }
.story__figure { margin: clamp(2.5rem, 5vw, 4rem) calc(50% - min(50vw - var(--gutter), 42rem)); }
.story__figure img { width: 100%; }
.story__figure figcaption { margin-top: .75rem; font-size: .875rem; color: var(--ink-3); text-align: center; padding-inline: var(--gutter); }

.mission { background: var(--maroon); color: #fff; padding: clamp(3.5rem, 7vw, 6rem) 0; text-align: center; }
.mission p.eyebrow { color: var(--rose); }
.mission h2 { margin: 1.25rem auto 0; max-width: 54rem; font-size: clamp(2.1rem, 4.2vw, 3.9rem); }

.run { padding: clamp(4rem, 8vw, 7rem) 0; }
.run__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.run h2 { font-size: clamp(2.25rem, 4vw, 3.75rem); }
.run__copy p { margin-top: 1.25rem; color: var(--ink-2); font-size: 1.125rem; max-width: 34rem; }
.run__photo img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.stats { margin-top: clamp(3rem, 5vw, 4.5rem); display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.stat { padding: 1.75rem 1.5rem 0 0; }
.stat + .stat { padding-left: 1.5rem; border-left: 1px solid var(--line); }
.stat b { display: block; font: 600 clamp(1.9rem, 3vw, 2.9rem)/1 var(--display); letter-spacing: -.035em; color: var(--maroon); }
.stat span { display: block; margin-top: .6rem; font-size: .9375rem; color: var(--ink-2); line-height: 1.4; }
.stats__note { margin-top: 1.75rem; font-size: .8125rem; color: var(--ink-3); max-width: 50rem; }
@media (max-width: 55.99rem) {
  .run__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { padding-left: 0; border-left: 0; }
  .stat:nth-child(n+3) { margin-top: 1.5rem; }
}

.community { padding: 0 0 clamp(4rem, 8vw, 7rem); }
.community__card { background: var(--paper); border-radius: clamp(1.25rem, 2.4vw, 2rem); padding: clamp(2.5rem, 6vw, 5.5rem) clamp(1.5rem, 5vw, 5.5rem); display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 5rem); }
.community .eyebrow { color: var(--maroon); }
.community h2 { margin-top: 1rem; font-size: clamp(2.2rem, 3.8vw, 3.5rem); }
.community__copy p:not(.eyebrow) { margin-top: 1.25rem; color: var(--ink-2); max-width: 30rem; }
.community .btn { margin-top: 2rem; }
.checks { list-style: none; margin: 0; padding: 0; align-self: center; }
.checks li { display: flex; gap: 1rem; align-items: baseline; padding: 1.1rem 0; border-bottom: 1px solid var(--line); font-size: 1.125rem; }
.checks li:first-child { border-top: 1px solid var(--line); }
.checks b { font: 600 1.625rem/1 var(--display); letter-spacing: -.03em; color: var(--maroon); min-width: 6rem; }
@media (max-width: 55.99rem) { .community__card { grid-template-columns: 1fr; } }


/* ------------------------------------------------------------ connect page */
.c-hero { background: linear-gradient(var(--cream-2), var(--cream) 30%); padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(3.5rem, 6vw, 5rem); text-align: center; }
.c-hero h1 { font-size: clamp(2.6rem, 4.9vw, 4.6rem); }
.c-hero__sub { margin-top: 1rem; font-size: 1.125rem; color: var(--ink-2); }
.c-hero__sub a { color: var(--maroon); font-weight: 600; text-underline-offset: .2em; }
.c-social { margin-top: clamp(2.5rem, 4vw, 3.5rem); }
.c-social .social { max-width: 40rem; margin: 0 auto; border-radius: 1.25rem; }
.c-cta { padding: clamp(1.5rem, 3vw, 2.5rem) 0 clamp(3.5rem, 6vw, 5rem); text-align: center; }
.c-cta h2 { font-size: clamp(2.25rem, 4vw, 3.75rem); }
.c-cta p { margin: 1rem auto 0; max-width: 34rem; color: var(--ink-2); font-size: 1.125rem; }
.c-cta .btn { margin-top: 2rem; }
.c-mosaic { position: relative; padding-top: 3rem; }
.tablet {
  position: absolute; left: 50%; top: 0; bottom: 1.5rem; translate: -50% 0; width: min(33rem, 40%);
  padding: .75rem; border-radius: 2rem; background: #111; box-shadow: 0 0 0 2px #3b3a37, 0 50px 80px -40px rgb(0 0 0 / .7);
}
.tablet__screen { height: 100%; overflow: hidden; border-radius: 1.4rem; background: #fff; padding: 1.4rem 1.4rem 0; position: relative; }
.tablet__screen::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4rem; background: linear-gradient(rgb(255 255 255 / 0), #fff 75%); }
.tablet__title { text-align: center; font: 700 1.125rem/1.2 var(--display); letter-spacing: -.01em; padding-bottom: 1rem; border-bottom: 1px solid #ececec; }
.tablet__list { list-style: none; margin: 0; padding: 0; }
.tablet__list li + li { border-top: 1px solid #ececec; }
.tablet__list a { display: grid; grid-template-columns: 9.5rem 1fr; gap: 1rem; align-items: start; padding: 1rem 0; text-decoration: none; }
.tablet__list a:hover b { color: var(--maroon); }
.tablet__thumb { display: block; aspect-ratio: 16 / 9; border-radius: .5rem; overflow: hidden; background: #ddd; }
.tablet__thumb img { width: 100%; height: 100%; object-fit: cover; }
.tablet__txt { display: flex; flex-direction: column; gap: .3rem; }
.tablet__txt small { align-self: flex-start; padding: .15rem .5rem; border: 1px solid var(--maroon); border-radius: 999px; color: var(--maroon); font: 600 .625rem/1.2 var(--sans); letter-spacing: .04em; text-transform: uppercase; }
.tablet__txt b { font: 700 .875rem/1.3 var(--display); color: var(--ink); transition: color .3s; }
.tablet__txt em { font-style: normal; font-size: .75rem; color: var(--ink-3); }
@media (max-width: 55.99rem) {
  .c-mosaic { display: flex; flex-direction: column-reverse; gap: 2rem; padding-top: 0; }
  .tablet { position: relative; left: auto; top: auto; bottom: auto; translate: none; width: min(100% - 2 * var(--gutter), 30rem); margin: 0 auto; }
  .tablet__screen { height: 30rem; }
}
@media (max-width: 40rem) {
  .tablet__list a { grid-template-columns: 7rem 1fr; gap: .75rem; }
}

/* ------------------------------------------------------------ reveal */
.js .rv { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1.1s var(--ease); transition-delay: var(--d, 0s); }
.js .rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .rv { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
