/* ═══════════════════════════════════════════════════════════════
   AWANE JONES — personal site
   Shares the brand system of The Founder's Guide:
   cool neutrals + deep navy + amber, system sans, editorial rhythm.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg:        #f5f5f7;
  --paper:    #ffffff;
  --ink:      #1d1d1f;
  --ink-2:    #424245;
  --ink-3:    #6e6e73;
  --ink-4:    #a1a1a6;
  --rule:     rgba(0,0,0,0.10);
  --rule-2:   rgba(0,0,0,0.055);
  --navy:     #1d2b4a;
  --navy-2:   #2d3e63;
  --amber:    #c8813a;
  --amber-ink:#7a4d1c;
  --bone:     #ededf0;
  --ok:       #1f7a4d;

  --wide:   1200px;
  --col:    760px;
  --gutter: clamp(24px, 6vw, 96px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
  font-size: 19px;
}
::selection { background: var(--amber); color: #fff; }
img { display: block; max-width: 100%; }

/* ── Top bar ─────────────────────────────────────────────────── */
.topbar {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gutter); height: 64px;
  background: rgba(245,245,247,0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--rule-2);
}
.topbar .wordmark { font-size: 16px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); text-decoration: none; }
.topbar .wordmark em { font-style: italic; font-weight: 500; color: var(--ink-3); }
.topbar nav { display: flex; gap: 26px; font-size: 14px; font-weight: 500; align-items: center; }
.topbar nav a { color: var(--ink-3); text-decoration: none; transition: color 160ms ease; }
.topbar nav a:hover { color: var(--ink); }
.topbar nav a.pill {
  padding: 7px 16px; border-radius: 999px; background: var(--ink); color: #fff;
}
.topbar nav a.pill:hover { background: var(--navy); }
@media (max-width: 740px) { .topbar nav a:not(.pill) { display: none; } }

/* ── Layout primitives ───────────────────────────────────────── */
.wrap   { max-width: var(--col);  margin: 0 auto; padding: 0 var(--gutter); }
.wrap-w { max-width: var(--wide); margin: 0 auto; padding: 0 var(--gutter); }

.eyebrow {
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 700; color: var(--navy); margin: 0;
}

h1, h2, h3, h4 { margin: 0; letter-spacing: -0.03em; line-height: 1.06; font-weight: 600; }
h2 { font-size: clamp(34px, 5.4vw, 62px); }
h3 { font-size: clamp(24px, 3.2vw, 36px); letter-spacing: -0.025em; }
h4 { font-size: 21px; letter-spacing: -0.015em; }
em.it { font-style: italic; font-weight: 500; }
p { margin: 0 0 1.1em; color: var(--ink-2); }
p:last-child { margin: 0; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  background: #000; color: #f5f5f7;
  position: relative; overflow: hidden;
  padding: clamp(96px, 16vh, 180px) 0 clamp(72px, 12vh, 130px);
}
.hero .hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  opacity: 0.32; filter: grayscale(0.2) contrast(1.05);
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.55) 50%, #000 100%);
}
.hero .wrap-w { position: relative; z-index: 2; }
.hero .badge {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600; color: rgba(245,245,247,0.7); margin-bottom: 36px;
}
.hero .badge .two { color: var(--amber); font-size: 28px; font-weight: 700; letter-spacing: -0.04em; }
.hero h1 { font-size: clamp(64px, 13vw, 180px); font-weight: 700; letter-spacing: -0.05em; line-height: 0.9; }
.hero h1 em { font-style: italic; font-weight: 500; color: var(--amber); }
.hero .intro { margin-top: 40px; max-width: 60ch; font-size: clamp(18px, 2.1vw, 23px); line-height: 1.5; color: rgba(245,245,247,0.8); font-weight: 400; }
.hero .pills { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero .pills span {
  font-size: 14px; font-weight: 500; padding: 9px 18px; border-radius: 999px;
  background: rgba(255,255,255,0.08); color: rgba(245,245,247,0.85);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.14);
}
.hero .cta-row { margin-top: 44px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero a.cta {
  display: inline-flex; align-items: center; gap: 10px; padding: 16px 30px;
  border-radius: 999px; font-size: 16px; font-weight: 600; text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}
.hero a.cta.primary { background: var(--amber); color: #1d1d1f; }
.hero a.cta.primary:hover { transform: translateY(-2px); background: #d8924a; }
.hero a.cta.ghost { background: transparent; color: #f5f5f7; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.3); }
.hero a.cta.ghost:hover { background: rgba(255,255,255,0.08); }

/* Social proof / brand strip */
.proof { background: var(--paper); border-bottom: 1px solid var(--rule); padding: clamp(40px, 6vh, 72px) 0; }
.proof .lbl { text-align: center; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; color: var(--ink-4); margin-bottom: 30px; }
.proof .brands { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 16px 38px; }
.proof .brands span { font-size: clamp(17px, 2.3vw, 25px); font-weight: 700; letter-spacing: -0.02em; color: var(--ink-3); }
.proof .spoke { text-align: center; margin-top: 34px; font-size: 14px; color: var(--ink-4); letter-spacing: 0.04em; }
.proof .spoke strong { color: var(--ink-2); font-weight: 600; }

/* Recognition band */
.creds { margin-top: clamp(40px, 6vh, 64px); display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-radius: 22px; overflow: hidden; box-shadow: 0 0 0 1px var(--rule); }
@media (max-width: 820px) { .creds { grid-template-columns: 1fr; } }
.cred { padding: clamp(28px, 3vw, 40px); min-height: 190px; display: flex; flex-direction: column; justify-content: space-between; }
.cred.navy  { background: var(--navy); color: #f5f5f7; }
.cred.amber { background: var(--amber); color: var(--ink); }
.cred.bone  { background: var(--bone); color: var(--ink); }
.cred .ce { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; }
.cred.navy .ce  { color: var(--amber); }
.cred.amber .ce { color: rgba(29,29,31,0.7); }
.cred.bone .ce  { color: var(--amber-ink); }
.cred h4 { font-size: clamp(21px, 2.3vw, 27px); margin-top: auto; line-height: 1.12; }
.cred.navy h4 { color: #fff; }
.cred p { font-size: 15px; margin-top: 10px; }
.cred.navy p  { color: rgba(245,245,247,0.7); }
.cred.amber p { color: rgba(29,29,31,0.72); }
.cred.bone p  { color: var(--ink-3); }

/* ── Section scaffolding ─────────────────────────────────────── */
.section { padding: clamp(72px, 12vh, 150px) 0; }
.section.paper { background: var(--paper); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.section-head { max-width: 30ch; margin-bottom: clamp(40px, 6vh, 72px); }
.section-head h2 { margin-top: 16px; }
.section-head h2 em { font-style: italic; font-weight: 500; color: var(--amber); }
.section-head .sub { margin-top: 18px; font-size: 19px; color: var(--ink-3); }

/* ── Work intro (portrait beside the heading) ────────────────── */
.work-intro { display: grid; grid-template-columns: 1fr 0.85fr; gap: clamp(32px, 5vw, 72px); align-items: center; margin-bottom: clamp(48px, 7vh, 80px); }
@media (max-width: 820px) { .work-intro { grid-template-columns: 1fr; gap: 32px; } }
.work-intro h2 { margin-top: 16px; }
.work-intro h2 em { font-style: italic; font-weight: 500; color: var(--amber); }
.work-intro .sub { margin-top: 18px; font-size: 19px; color: var(--ink-3); }
.wi-figure { position: relative; margin: 0; border-radius: 22px; overflow: hidden; box-shadow: 0 0 0 1px var(--rule); aspect-ratio: 4 / 5; background: var(--navy); }
.wi-figure img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; display: block; }
.wi-figure .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 24px; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; color: #fff; background: linear-gradient(180deg, transparent, rgba(0,0,0,0.7)); }

/* ── Ventures ────────────────────────────────────────────────── */
.venture { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 22px; overflow: hidden; box-shadow: 0 0 0 1px var(--rule); margin-bottom: 32px; background: var(--paper); }
.venture:nth-child(even) { grid-template-columns: 1fr 1fr; }
.venture:nth-child(even) .v-media { order: 2; }
@media (max-width: 820px) { .venture, .venture:nth-child(even) { grid-template-columns: 1fr; } .venture:nth-child(even) .v-media { order: 0; } }
.v-media { position: relative; min-height: 360px; background: var(--navy) center/cover no-repeat; }
.v-media.video { min-height: 0; background: #000; display: flex; align-items: center; justify-content: center; }
.v-media iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.v-media.video iframe { position: static; inset: auto; width: 100%; height: auto; aspect-ratio: 16 / 9; }
.v-media .tag {
  position: absolute; top: 20px; left: 20px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700;
  padding: 7px 14px; border-radius: 999px; background: rgba(0,0,0,0.6); color: #fff;
  backdrop-filter: blur(8px);
}
.v-media .tag.acq { background: var(--amber); color: #1d1d1f; }
.v-body { padding: clamp(32px, 4vw, 52px); display: flex; flex-direction: column; }
.v-body .v-kicker { font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber-ink); font-weight: 700; }
.v-body h3 { margin: 14px 0 6px; }
.v-body .v-role { font-size: 15px; color: var(--ink-3); font-weight: 600; letter-spacing: 0.01em; }
.v-body p { margin-top: 18px; font-size: 17px; color: var(--ink-2); }
.v-body ul { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 11px; }
.v-body li { font-size: 16px; color: var(--ink-2); display: flex; gap: 12px; align-items: flex-start; }
.v-body li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--amber); margin-top: 9px; flex-shrink: 0; }

/* small credit strip under media */
.credit-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 32px; }
@media (max-width: 820px) { .credit-strip { grid-template-columns: 1fr; } }
.credit { border-radius: 18px; overflow: hidden; box-shadow: 0 0 0 1px var(--rule); background: var(--paper); }
.credit .c-img { height: 220px; background: var(--navy) center/cover no-repeat; }
.credit .c-cap { padding: 20px 24px; }
.credit .c-cap .src { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber-ink); font-weight: 700; }
.credit .c-cap h4 { margin-top: 6px; }

/* ── Pull quote ──────────────────────────────────────────────── */
.pullquote { padding: clamp(64px, 11vh, 130px) 0; text-align: center; }
.pullquote q { display: block; font-size: clamp(26px, 4.2vw, 48px); line-height: 1.18; font-weight: 500; letter-spacing: -0.03em; quotes: none; text-wrap: balance; max-width: 24ch; margin: 0 auto; }
.pullquote .cite { margin-top: 26px; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }
.pullquote.dark { background: var(--navy); color: #f5f5f7; }
.pullquote.dark .cite { color: rgba(245,245,247,0.6); }

/* ── Timeline ────────────────────────────────────────────────── */
.timeline { display: grid; gap: 0; border-top: 1px solid var(--rule); }
.tl-row {
  display: grid; grid-template-columns: 160px 1fr; gap: 32px;
  padding: 32px 8px; border-bottom: 1px solid var(--rule);
  transition: background 200ms ease, padding-left 200ms ease;
}
.tl-row:hover { background: var(--paper); padding-left: 20px; }
.tl-row.highlight { background: var(--navy); color: #f5f5f7; border-radius: 16px; border-bottom: 1px solid transparent; }
.tl-row.highlight:hover { padding-left: 8px; }
.tl-when { font-size: 14px; font-weight: 700; letter-spacing: 0.04em; color: var(--ink-3); text-transform: uppercase; }
.tl-row.highlight .tl-when { color: var(--amber); }
.tl-role { font-size: 14px; color: var(--ink-3); font-weight: 500; margin-top: 4px; }
.tl-row.highlight .tl-role { color: rgba(245,245,247,0.6); }
.tl-co { font-size: clamp(22px, 2.6vw, 30px); font-weight: 600; letter-spacing: -0.02em; }
.tl-row.highlight .tl-co { color: #fff; }
.tl-desc { margin-top: 12px; font-size: 16px; color: var(--ink-2); line-height: 1.5; max-width: 60ch; }
.tl-row.highlight .tl-desc { color: rgba(245,245,247,0.78); }
.tl-badge { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; color: var(--amber); }
.tl-badge::before { content: "✦"; }

/* ── Expertise grid ──────────────────────────────────────────── */
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-radius: 22px; overflow: hidden; box-shadow: 0 0 0 1px var(--rule); }
@media (max-width: 900px) { .exp-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .exp-grid { grid-template-columns: 1fr; } }
.exp {
  padding: clamp(28px, 3vw, 40px); background: var(--paper);
  box-shadow: 0 0 0 0.5px var(--rule); min-height: 240px;
  display: flex; flex-direction: column;
}
.exp .en { font-size: 14px; font-weight: 700; color: var(--amber); letter-spacing: 0.04em; }
.exp h4 { margin: 16px 0 12px; font-size: 24px; }
.exp p { font-size: 16px; color: var(--ink-3); line-height: 1.5; margin: 0; }

/* ── Advisory CTA ────────────────────────────────────────────── */
.advisory-cta { margin-top: clamp(40px, 6vh, 64px); text-align: center; }
.advisory-cta a {
  display: inline-flex; align-items: center; gap: 10px; padding: 17px 36px;
  border-radius: 999px; background: var(--ink); color: #fff; font-size: 16px; font-weight: 600;
  text-decoration: none; transition: transform 160ms ease, background 160ms ease;
}
.advisory-cta a:hover { transform: translateY(-2px); background: var(--navy); }

/* ── MMA split ───────────────────────────────────────────────── */
.mma { background: #000; color: #f5f5f7; overflow: hidden; }
.mma .split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
@media (max-width: 820px) { .mma .split { grid-template-columns: 1fr; } }
.mma .m-img { min-height: 520px; background: #111 center/cover no-repeat; }
.mma .m-body { padding: clamp(48px, 7vw, 110px) var(--gutter); display: flex; flex-direction: column; justify-content: center; max-width: 640px; }
.mma .eyebrow { color: var(--amber); }
.mma h2 { color: #fff; margin: 18px 0 28px; }
.mma h2 em { font-style: italic; font-weight: 500; color: var(--amber); }
.mma p { color: rgba(245,245,247,0.78); font-size: 18px; }
.mma p strong { color: #fff; }
.mma .mq { margin-top: 32px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.16); font-size: 21px; font-weight: 500; letter-spacing: -0.015em; color: #fff; line-height: 1.35; font-style: italic; }

/* ── Guide promo band ────────────────────────────────────────── */
.promo { background: var(--amber); color: #1d1d1f; padding: clamp(56px, 9vh, 110px) 0; }
.promo .row { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 820px) { .promo .row { grid-template-columns: 1fr; gap: 32px; } }
.promo .eyebrow { color: var(--amber-ink); }
.promo h2 { margin-top: 14px; max-width: 16ch; line-height: 1.02; }
.promo .psub { margin-top: 18px; font-size: 18px; color: rgba(29,29,31,0.82); max-width: 46ch; }
.promo-points { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 12px; }
.promo-points li { font-size: 16px; color: rgba(29,29,31,0.85); display: flex; gap: 12px; align-items: flex-start; font-weight: 500; }
.promo-points li::before { content: "✓"; font-weight: 700; color: #1d1d1f; flex-shrink: 0; }
.promo .act { display: flex; flex-direction: column; align-items: stretch; gap: 14px; }
.promo a.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 20px 34px;
  border-radius: 16px; background: #1d1d1f; color: #fff; font-size: 18px; font-weight: 600;
  text-decoration: none; transition: transform 160ms ease, background 160ms ease;
}
.promo a.btn:hover { transform: translateY(-2px); background: var(--navy); }
.promo a.btn.alt { background: transparent; color: #1d1d1f; box-shadow: inset 0 0 0 1.5px rgba(29,29,31,0.35); font-size: 16px; padding: 16px 34px; }
.promo a.btn.alt:hover { background: rgba(29,29,31,0.06); transform: none; }
.promo .meta { text-align: center; font-size: 13px; letter-spacing: 0.06em; color: rgba(29,29,31,0.6); font-weight: 600; margin-top: 4px; }

/* ── Contact ─────────────────────────────────────────────────── */
.contact { background: #000; color: #f5f5f7; padding: clamp(80px, 13vh, 160px) 0; text-align: center; }
.contact .eyebrow { color: var(--amber); }
.contact h2 { color: #fff; margin: 18px 0 0; }
.contact h2 em { font-style: italic; font-weight: 500; color: var(--amber); }
.contact .links { margin-top: 48px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.contact a.link {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; border-radius: 999px;
  font-size: 16px; font-weight: 600; text-decoration: none; transition: transform 160ms ease, background 160ms ease;
}
.contact a.link.primary { background: var(--amber); color: #1d1d1f; }
.contact a.link.primary:hover { transform: translateY(-2px); background: #d8924a; }
.contact a.link.ghost { background: transparent; color: #f5f5f7; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.3); }
.contact a.link.ghost:hover { background: rgba(255,255,255,0.08); }

/* ── Footer ──────────────────────────────────────────────────── */
.foot { background: #000; color: rgba(245,245,247,0.5); padding: 32px 0 48px; border-top: 1px solid rgba(255,255,255,0.1); }
.foot .row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; letter-spacing: 0.04em; }

.progress { position: absolute; left: 0; bottom: -1px; height: 2px; background: var(--amber); width: 0; }
