/* ============================================================
   JOURNEY — CCO Pitch Site
   Aesthetic: Editorial Executive — refined, confident, warm
   Palette: deep ink navy · warm ivory paper · brass · sage
   Type: Fraunces (display serif) + Hanken Grotesk (body)
   ============================================================ */

:root {
  /* Core palette */
  --ink:        #14233b;
  --ink-soft:   #2c3e59;
  --ink-mute:   #5a6b85;
  --paper:      #f6f2e9;
  --paper-2:    #efe7d6;
  --paper-card: #fbf8f1;
  --brass:      #b1873b;
  --brass-deep: #8c682a;
  --brass-glow: rgba(177, 135, 59, 0.16);
  --sage:       #4d7a6e;
  --sage-deep:  #3a5e54;
  --line:       rgba(20, 35, 59, 0.12);
  --line-soft:  rgba(20, 35, 59, 0.07);
  --shadow:     0 24px 60px -32px rgba(20, 35, 59, 0.45);
  --shadow-sm:  0 10px 30px -20px rgba(20, 35, 59, 0.5);

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

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background:
    radial-gradient(1200px 600px at 82% -8%, var(--brass-glow), transparent 60%),
    radial-gradient(900px 500px at -5% 12%, rgba(77, 122, 110, 0.10), transparent 60%),
    var(--paper);
  color: var(--ink);
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* subtle paper grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}

p { margin: 0 0 1rem; }
a { color: var(--brass-deep); text-decoration: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brass-deep);
  margin: 0 0 0.9rem;
}

/* ============================================================
   NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(246, 242, 233, 0.82);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand .monogram {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 9px;
  background: linear-gradient(150deg, var(--ink), var(--ink-soft));
  color: var(--paper);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-sm);
}
.brand .role { color: var(--ink-mute); font-family: "Hanken Grotesk", sans-serif; font-weight: 500; font-size: 0.78rem; letter-spacing: 0.02em; }

.tabs { display: flex; gap: 0.4rem; }
.tabs a {
  position: relative;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.005em;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}
.tabs a:hover { color: var(--ink); background: var(--line-soft); }
.tabs a.active { color: var(--paper); background: var(--ink); box-shadow: var(--shadow-sm); }

.nav-toggle { display: none; }

/* ============================================================
   VIDEO HERO  (embed area at top of every page)
   ============================================================ */
.video-band {
  padding: 44px 0 8px;
}
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(120% 140% at 50% 0%, var(--ink-soft), var(--ink) 70%);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
}
.video-frame iframe,
.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* Placeholder shown until a real embed is pasted in */
.video-placeholder {
  text-align: center;
  color: rgba(246, 242, 233, 0.92);
  padding: 2rem;
  display: grid;
  justify-items: center;
  gap: 0.85rem;
}
.video-placeholder .play {
  width: 76px; height: 76px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(246,242,233,0.08);
  border: 1.5px solid rgba(246,242,233,0.35);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.video-frame:hover .play { transform: scale(1.06); background: var(--brass); border-color: var(--brass); }
.video-placeholder .play svg { width: 26px; height: 26px; margin-left: 4px; fill: var(--paper); }
.video-placeholder .label { font-family: "Fraunces", serif; font-size: 1.1rem; }
.video-placeholder .hint { font-size: 0.8rem; letter-spacing: 0.04em; color: rgba(246,242,233,0.55); max-width: 36ch; }

/* ============================================================
   PAGE HEADER / HERO TEXT
   ============================================================ */
.page-head { padding: 40px 0 14px; }
.page-head h1 {
  font-size: clamp(2.3rem, 5.2vw, 3.9rem);
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 0, "WONK" 0;
}
.page-head .lede {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: var(--ink-soft);
  max-width: 62ch;
  margin-top: 1.1rem;
  line-height: 1.55;
}

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
.section { padding: 30px 0; }
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.05rem);
  margin-bottom: 0.4rem;
}
.section-intro { color: var(--ink-soft); max-width: 64ch; margin-bottom: 1.6rem; }
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

.divider {
  display: flex; align-items: center; gap: 1rem;
  margin: 8px 0 0;
}
.divider::before, .divider::after { content: ""; height: 1px; background: var(--line); flex: 1; }
.divider span { font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--brass-deep); font-weight: 600; }

/* ============================================================
   CARDS / CHIPS / GRID PRIMITIVES
   ============================================================ */
.card {
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow-sm);
}
.grid { display: grid; gap: 1.1rem; }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.grid.three { grid-template-columns: repeat(3, 1fr); }

.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--paper-card);
  border: 1px solid var(--line);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
}

/* ============================================================
   RESUME — contact + timeline
   ============================================================ */
.contact-row {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem;
  margin-top: 1.4rem;
  font-size: 0.92rem; color: var(--ink-soft); font-weight: 500;
}
.contact-row span { display: inline-flex; align-items: center; gap: 0.45rem; }
.contact-row svg { width: 15px; height: 15px; stroke: var(--brass-deep); fill: none; stroke-width: 1.7; }

.timeline { position: relative; margin-top: 0.5rem; }
.job {
  position: relative;
  padding: 0 0 0 30px;
  margin-bottom: 2.2rem;
}
.job::before {
  content: ""; position: absolute; left: 5px; top: 8px; bottom: -2.2rem;
  width: 2px; background: linear-gradient(var(--brass) 0%, var(--line) 90%);
}
.job:last-child::before { display: none; }
.job::after {
  content: ""; position: absolute; left: 0; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--brass); box-shadow: 0 0 0 4px var(--brass-glow);
}
.job .co { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.4rem 0.8rem; }
.job .co h3 { font-size: 1.35rem; }
.job .co .meta { color: var(--ink-mute); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.02em; }
.job .blurb { color: var(--ink-mute); font-size: 0.92rem; font-style: italic; margin: 0.3rem 0 1rem; }

.role-block { margin: 0 0 1.2rem; }
.role-block .rb-head {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 0.3rem;
  margin-bottom: 0.5rem;
}
.role-block .rb-head .title { font-weight: 700; color: var(--ink); font-size: 1.02rem; }
.role-block .rb-head .yrs { font-size: 0.82rem; color: var(--brass-deep); font-weight: 600; letter-spacing: 0.04em; }
.role-block ul { margin: 0; padding-left: 1.1rem; }
.role-block li { margin-bottom: 0.45rem; color: var(--ink-soft); }
.role-block li b { color: var(--ink); font-weight: 700; }

/* big stat callouts */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 0 0 0.5rem; }
.stat {
  background: linear-gradient(160deg, var(--ink), var(--ink-soft));
  color: var(--paper);
  border-radius: 14px;
  padding: 1.3rem 1.2rem;
  box-shadow: var(--shadow-sm);
}
.stat .n { font-family: "Fraunces", serif; font-size: 2rem; line-height: 1; color: #f3d9a4; }
.stat .n small { font-size: 1.1rem; }
.stat .t { font-size: 0.82rem; color: rgba(246,242,233,0.78); margin-top: 0.5rem; line-height: 1.4; }

/* ============================================================
   GROWTH STRATEGY — pillars, EHO, tiers, metrics, plan
   ============================================================ */

/* Enemy / Hero / Outcome */
.eho { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.eho .card { position: relative; overflow: hidden; }
.eho .tag {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700;
  margin-bottom: 0.7rem; display: inline-block;
}
.eho .enemy .tag { color: #a8503f; }
.eho .hero .tag { color: var(--sage-deep); }
.eho .outcome .tag { color: var(--brass-deep); }
.eho h3 { font-size: 1.18rem; margin-bottom: 0.5rem; }
.eho p { font-size: 0.93rem; color: var(--ink-soft); margin: 0; }

/* three pillars overview */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; counter-reset: pillar; }
.pillar {
  position: relative;
  background: linear-gradient(165deg, var(--ink) 0%, #1b2e4b 100%);
  color: var(--paper);
  border-radius: 18px;
  padding: 1.7rem 1.5rem 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.pillar::before {
  counter-increment: pillar;
  content: "0" counter(pillar);
  position: absolute; top: 0.7rem; right: 1rem;
  font-family: "Fraunces", serif; font-size: 3.4rem; line-height: 1;
  color: rgba(243, 217, 164, 0.14);
  font-weight: 600;
}
.pillar h3 { color: var(--paper); font-size: 1.3rem; margin-bottom: 0.6rem; max-width: 14ch; }
.pillar p { color: rgba(246,242,233,0.8); font-size: 0.92rem; margin: 0; }
.pillar .seq { margin-top: 1.1rem; font-size: 0.78rem; color: #f3d9a4; letter-spacing: 0.03em; font-weight: 600; }

/* track cards */
.track { border-left: 3px solid var(--brass); padding-left: 1.1rem; margin-bottom: 1.4rem; }
.track h4 { font-size: 1.08rem; margin-bottom: 0.35rem; }
.track h4 .k { color: var(--brass-deep); font-family: "Hanken Grotesk", sans-serif; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.08em; display: block; margin-bottom: 0.2rem; }
.track p { font-size: 0.93rem; color: var(--ink-soft); }
.track ul { margin: 0.3rem 0 0; padding-left: 1.1rem; }
.track li { color: var(--ink-soft); margin-bottom: 0.35rem; font-size: 0.93rem; }
.track li b { color: var(--ink); }

/* tier table for DSO targets */
.tiers { display: grid; gap: 1rem; }
.tier-group .tier-head {
  display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.7rem;
}
.tier-group .badge {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 0.7rem; border-radius: 999px;
}
.badge.t1 { background: var(--sage); color: #fff; }
.badge.t2 { background: var(--paper-2); color: var(--ink-soft); border: 1px solid var(--line); }
.tier-group .tier-head .desc { font-size: 0.88rem; color: var(--ink-mute); font-weight: 500; }
.targets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
.target {
  background: var(--paper-card); border: 1px solid var(--line);
  border-radius: 12px; padding: 0.95rem 1.05rem;
}
.target .name { font-weight: 700; color: var(--ink); font-size: 0.98rem; }
.target .note { font-size: 0.83rem; color: var(--ink-mute); margin-top: 0.25rem; line-height: 1.45; }
.target .scale { font-size: 0.75rem; color: var(--brass-deep); font-weight: 700; margin-top: 0.4rem; letter-spacing: 0.02em; }

/* value-angle cards */
.angles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.angle { background: var(--paper-card); border: 1px solid var(--line); border-radius: 14px; padding: 1.3rem; }
.angle .q { font-family: "Fraunces", serif; font-size: 1.12rem; color: var(--ink); margin-bottom: 0.5rem; line-height: 1.25; }
.angle .a { font-size: 0.9rem; color: var(--ink-soft); margin: 0; }

/* metrics dashboard table */
.metrics-table { width: 100%; border-collapse: collapse; background: var(--paper-card); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.metrics-table th, .metrics-table td { text-align: left; padding: 1rem 1.2rem; vertical-align: top; font-size: 0.92rem; }
.metrics-table thead th { background: var(--ink); color: var(--paper); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; }
.metrics-table tbody tr + tr td { border-top: 1px solid var(--line); }
.metrics-table .pillar-cell { font-family: "Fraunces", serif; font-weight: 600; color: var(--ink); font-size: 1rem; width: 22%; }
.metrics-table td { color: var(--ink-soft); }
.metrics-table .target-90 { color: var(--ink); }

/* KEY METRIC pull */
.keymetric {
  display: flex; align-items: flex-start; gap: 0.8rem;
  background: var(--brass-glow); border: 1px solid rgba(177,135,59,0.3);
  border-radius: 12px; padding: 1rem 1.2rem; margin-top: 1.2rem;
}
.keymetric .lab { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; color: var(--brass-deep); white-space: nowrap; padding-top: 0.1rem; }
.keymetric .val { font-weight: 600; color: var(--ink); font-size: 0.96rem; }

/* 90-day plan timeline */
.plan { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.phase {
  background: var(--paper-card); border: 1px solid var(--line); border-radius: 16px;
  padding: 1.4rem 1.4rem 1.5rem; position: relative; box-shadow: var(--shadow-sm);
}
.phase .days { font-family: "Fraunces", serif; color: var(--brass-deep); font-size: 0.95rem; font-weight: 600; letter-spacing: 0.02em; }
.phase h4 { font-size: 1.2rem; margin: 0.2rem 0 0.8rem; }
.phase ul { margin: 0; padding-left: 1.05rem; }
.phase li { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 0.5rem; }

/* closing banner */
.mantra {
  text-align: center;
  background: linear-gradient(165deg, var(--ink), #1b2e4b);
  color: var(--paper);
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: var(--shadow);
}
.mantra .m-eyebrow { color: #f3d9a4; letter-spacing: 0.24em; text-transform: uppercase; font-size: 0.72rem; font-weight: 600; }
.mantra h2 { color: var(--paper); font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 0.8rem 0; }
.mantra p { color: rgba(246,242,233,0.78); max-width: 54ch; margin: 0 auto; }

/* ============================================================
   MY WHY — placeholder
   ============================================================ */
.coming {
  text-align: center;
  padding: 70px 24px 90px;
  display: grid; justify-items: center; gap: 1.2rem;
}
.coming .mark {
  width: 84px; height: 84px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1.5px solid var(--line); background: var(--paper-card);
  box-shadow: var(--shadow-sm);
}
.coming .mark svg { width: 34px; height: 34px; stroke: var(--brass); fill: none; stroke-width: 1.5; }
.coming h2 { font-size: clamp(2rem, 5vw, 3.2rem); }
.coming p { color: var(--ink-soft); max-width: 52ch; font-size: 1.08rem; }
.coming .soon { font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; color: var(--brass-deep); border: 1px solid var(--line); padding: 0.5rem 1.1rem; border-radius: 999px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  margin-top: 50px;
  border-top: 1px solid var(--line);
  padding: 30px 0 46px;
}
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; align-items: center; justify-content: space-between; }
.site-footer .who { font-family: "Fraunces", serif; font-weight: 600; color: var(--ink); }
.site-footer .meta { font-size: 0.85rem; color: var(--ink-mute); }

/* ============================================================
   PDF DOWNLOAD
   ============================================================ */
.doc-download { text-align: center; padding: 0 0 6px; }
.doc-dl {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.5rem;
  border: 1px solid var(--brass);
  border-radius: 999px;
  background: var(--brass-glow);
  color: var(--brass-deep);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.doc-dl:hover {
  background: var(--brass);
  color: var(--paper);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px var(--brass-glow);
}
.doc-dl svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; }

/* ============================================================
   ENTRANCE ANIMATION
   ============================================================ */
@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; animation: rise 0.8s var(--ease) forwards; }
.reveal.d1 { animation-delay: 0.08s; }
.reveal.d2 { animation-delay: 0.18s; }
.reveal.d3 { animation-delay: 0.28s; }
.reveal.d4 { animation-delay: 0.38s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none; opacity: 1; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .grid.two, .grid.three,
  .eho, .pillars, .targets, .angles, .plan, .stat-row { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .nav { height: auto; padding: 12px 0; flex-direction: column; align-items: flex-start; gap: 0.7rem; }
  .tabs { width: 100%; }
  .tabs a { flex: 1; text-align: center; padding: 0.55rem 0.6rem; font-size: 0.86rem; }
  .targets { grid-template-columns: 1fr; }
  .metrics-table thead { display: none; }
  .metrics-table, .metrics-table tbody, .metrics-table tr, .metrics-table td { display: block; width: 100%; }
  .metrics-table td { border-top: 1px solid var(--line); }
  .metrics-table .pillar-cell { background: var(--paper-2); }
}
