/* ===========================================================================
   Valor Advisory — shared stylesheet
   Brand: navy #133159 · pink #ffcaca · rose #ff8e8f · peach #ffe4ca
   Display: Alta (serif)  ·  Body: Cooper Hewitt (sans)
   =========================================================================== */

/* ── Fonts ───────────────────────────────────────────────────────────── */
@font-face {
  font-family: "Alta";
  src: url("/fonts/alta-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cooper Hewitt";
  src: url("/fonts/CooperHewitt-Book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cooper Hewitt";
  src: url("/fonts/CooperHewitt-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cooper Hewitt";
  src: url("/fonts/CooperHewitt-Semibold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cooper Hewitt";
  src: url("/fonts/CooperHewitt-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── Tokens ──────────────────────────────────────────────────────────── */
:root {
  --navy: #133159;
  --navy-90: #1c3d68;
  --pink: #ffcaca;
  --rose: #ff8e8f;
  --peach: #ffe4ca;
  --white: #ffffff;
  --paper: #fbf8f5;

  --ink: #133159;
  --ink-70: rgba(19, 49, 89, 0.72);
  --ink-55: rgba(19, 49, 89, 0.58);
  --ink-12: rgba(19, 49, 89, 0.12);

  --serif: "Alta", "Georgia", serif;
  --sans: "Cooper Hewitt", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1120px;
  --measure: 720px;
  --radius: 10px;
  --shadow: 0 18px 50px -28px rgba(19, 49, 89, 0.45);
}

/* ── Reset ───────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: var(--sans);
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  font-size: 17px;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
::selection {
  background: var(--pink);
  color: var(--navy);
}
:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Layout helpers ──────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}
.section {
  padding: 96px 0;
}
.section--tight {
  padding: 72px 0;
}
.measure {
  max-width: var(--measure);
}
.center {
  text-align: center;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
section[id] {
  scroll-margin-top: 96px;
}

/* ── Type ────────────────────────────────────────────────────────────── */
.eyebrow {
  font-size: 12.5px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 18px;
}
.display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.4px;
}
h1.display {
  font-size: clamp(34px, 5.4vw, 62px);
}
h2.display {
  font-size: clamp(28px, 3.6vw, 42px);
}
h3.display {
  font-size: clamp(20px, 2.2vw, 25px);
}
.lead {
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.6;
  color: var(--ink-70);
}
.prose p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--ink-70);
  margin-bottom: 22px;
}
.prose p:last-child {
  margin-bottom: 0;
}
.prose strong {
  color: var(--ink);
  font-weight: 600;
}

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-pink {
  background: var(--pink);
  color: var(--navy);
}
.btn-pink:hover {
  background: #ffd9d9;
  box-shadow: 0 12px 30px -14px rgba(255, 142, 143, 0.8);
}
.btn-navy {
  background: var(--navy);
  color: var(--pink);
}
.btn-navy:hover {
  background: var(--navy-90);
  box-shadow: var(--shadow);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--ink-12);
}
.btn-ghost:hover {
  border-color: var(--rose);
}
.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 202, 202, 0.4);
}
.btn-ghost-light:hover {
  border-color: var(--pink);
}

/* ── Header / Nav ────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--ink-12);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.brand img {
  height: 38px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  font-size: 14.5px;
  color: var(--ink-70);
  text-decoration: none;
  transition: color 0.18s ease;
}
.nav-links a:hover {
  color: var(--navy);
}
.nav-cta {
  padding: 10px 20px;
  border-radius: 7px;
  background: var(--navy);
  color: var(--pink) !important;
  font-weight: 600;
}
.nav-cta:hover {
  background: var(--navy-90);
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.2s;
}

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    900px 480px at 50% -8%,
    rgba(255, 202, 202, 0.16),
    transparent 70%
  );
  pointer-events: none;
}
.hero-inner {
  position: relative;
  padding: 120px 0 132px;
  text-align: center;
}
.hero h1 {
  color: var(--pink);
  max-width: 880px;
  margin: 0 auto 26px;
}
.hero .lead {
  color: rgba(255, 255, 255, 0.72);
  max-width: 600px;
  margin: 0 auto 38px;
}
.scroll-cue {
  margin-top: 46px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* Personal two-column hero (photo + intro) */
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding: 76px 0 84px;
}
.hero-eyebrow {
  font-size: 12.5px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--pink);
  margin-bottom: 20px;
}
.hero-copy h1 {
  color: var(--pink);
  margin: 0 0 22px;
  max-width: none;
}
.hero-sub {
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(17px, 1.7vw, 19px);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 0 36px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-photo {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 4 / 5;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.55);
}
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--pink);
  border-radius: var(--radius);
  z-index: -1;
}

/* ── Client logo strip ───────────────────────────────────────────────── */
.logo-strip {
  padding: 28px 0 32px;
  border-top: 1px solid var(--ink-10);
  border-bottom: 1px solid var(--ink-10);
  background: var(--paper);
}
.logo-strip__label {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-55);
  margin: 0 0 28px;
}
.logo-strip__row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 56px;
}
.logo-strip__row img {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  transition: opacity 0.2s;
}
.logo-strip__row img:hover {
  opacity: 0.8;
}

/* ── Section heading block ───────────────────────────────────────────── */
.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
}
.section-head.left {
  margin-left: 0;
}
.section-head .lead {
  margin-top: 16px;
}

/* ── Backgrounds ─────────────────────────────────────────────────────── */
.bg-paper {
  background: var(--paper);
}
.bg-navy {
  background: var(--navy);
  color: var(--white);
}
.rule {
  width: 64px;
  height: 2px;
  background: var(--rose);
  border: 0;
  margin: 0 auto;
}

/* ── Pillars (How I work) ────────────────────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--ink-12);
  border: 1px solid var(--ink-12);
  border-radius: var(--radius);
  overflow: hidden;
}
.pillar {
  background: var(--white);
  padding: 36px 34px;
}
.pillar h3 {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.pillar p {
  font-size: 15.5px;
  line-height: 1.72;
  color: var(--ink-70);
}
.note-line {
  margin-top: 40px;
  font-size: 16px;
  color: var(--ink-55);
  text-align: center;
}

/* ── Proof cards ─────────────────────────────────────────────────────── */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.proof-card {
  background: var(--white);
  border: 1px solid var(--ink-12);
  border-left: 3px solid var(--pink);
  border-radius: 8px;
  padding: 26px 28px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-70);
  transition: border-color 0.2s, transform 0.2s;
}
.proof-card:hover {
  border-left-color: var(--rose);
  transform: translateY(-2px);
}
.proof-card b {
  color: var(--ink);
  font-weight: 600;
}

/* ── Testimonials ────────────────────────────────────────────────────── */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.quote {
  background: var(--white);
  border: 1px solid var(--ink-12);
  border-radius: var(--radius);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
}
.quote .mark {
  font-family: var(--serif);
  font-size: 46px;
  line-height: 0.5;
  color: var(--pink);
  margin-bottom: 18px;
}
.quote p {
  font-size: 15.5px;
  line-height: 1.72;
  color: var(--ink-70);
  margin-bottom: 22px;
}
.quote .by {
  margin-top: auto;
  font-size: 14px;
}
.quote .by strong {
  display: block;
  color: var(--navy);
  font-weight: 600;
}
.quote .by span {
  display: block;
  color: var(--ink-55);
  font-size: 13px;
}
.quote .verify {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--navy);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.15s, color 0.15s;
}
.quote .verify:hover {
  opacity: 1;
  color: var(--rose);
}
.quote blockquote {
  position: relative;
  max-height: 9em;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.quote blockquote::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3em;
  background: linear-gradient(transparent, var(--white));
  pointer-events: none;
  transition: opacity 0.2s;
}
.quote blockquote.expanded {
  max-height: 200em;
}
.quote blockquote.expanded::after {
  opacity: 0;
}
.quote-toggle {
  background: none;
  border: none;
  padding: 0;
  margin: -4px 0 16px;
  font-size: 12px;
  font-family: inherit;
  color: rgba(19, 49, 89, 0.4);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  display: block;
}
.quote-toggle:hover {
  color: var(--navy);
}

/* ── Notes / article cards ───────────────────────────────────────────── */
.note-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.note-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--ink-12);
  border-radius: var(--radius);
  padding: 30px 28px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.note-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--pink);
}
.note-card .kicker {
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 14px;
}
.note-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 21px;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 14px;
}
.note-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-70);
  margin-bottom: 22px;
}
.note-card .more {
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.note-card:hover .more {
  color: var(--rose);
}

/* ── About block ─────────────────────────────────────────────────────── */
.about {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.about-photo {
  position: relative;
}
.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
/* Show the photo at its true (uncropped) proportions, at a sensible size */
.about-photo--natural {
  max-width: 340px;
}
.about-photo--natural img {
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
}
.about-photo::before {
  content: "";
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 1px solid var(--pink);
  border-radius: var(--radius);
  z-index: -1;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.tag {
  font-size: 12.5px;
  padding: 6px 14px;
  border: 1px solid var(--ink-12);
  border-radius: 20px;
  color: var(--ink-55);
  text-decoration: none;
}
.tag-link {
  border-color: var(--pink);
  color: var(--navy);
}

/* ── CTA band ────────────────────────────────────────────────────────── */
.cta-band {
  text-align: center;
}
.cta-band h2 {
  color: var(--pink);
  margin-bottom: 20px;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.74);
  max-width: 560px;
  margin: 0 auto 34px;
  font-size: 18px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-sub {
  margin-top: 22px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.55);
}
.cta-sub a {
  color: var(--pink);
}

/* ── Lead magnet ─────────────────────────────────────────────────────── */
.lead-magnet {
  background: var(--white);
  border: 1px solid var(--pink);
  border-radius: 16px;
  padding: 48px 44px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow);
}
.lead-magnet h2 {
  margin-bottom: 14px;
}
.lead-magnet p {
  color: var(--ink-70);
  font-size: 17px;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 28px;
}
.lead-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
}
.lead-form input {
  flex: 1;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 15px;
  border: 1px solid var(--ink-12);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
  outline: none;
}
.lead-form input:focus {
  border-color: var(--rose);
}
.lead-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--ink-55);
}
.lead-success {
  display: none;
  color: var(--navy);
  font-size: 16px;
  font-weight: 600;
}

/* ── FAQ ─────────────────────────────────────────────────────────────── */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--ink-12);
}
.faq-item {
  border-bottom: 1px solid var(--ink-12);
  padding: 28px 0;
  scroll-margin-top: 100px;
}
.faq-item h3 {
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.faq-item h3 .anchor {
  opacity: 0;
  color: var(--rose);
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  transition: opacity 0.15s;
}
.faq-item:hover h3 .anchor,
.faq-item:target h3 .anchor {
  opacity: 1;
}
.faq-item:target {
  background: rgba(255, 228, 202, 0.28);
  border-radius: 8px;
  padding-left: 16px;
  padding-right: 16px;
}
.faq-item p {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ink-70);
}
.faq-bullets {
  margin: 10px 0 14px;
  padding-left: 22px;
  color: var(--ink-70);
}
.faq-bullets li {
  font-size: 16.5px;
  line-height: 1.7;
  margin-bottom: 4px;
}
.faq-bullets li::marker {
  color: var(--rose);
}

/* ── Article ─────────────────────────────────────────────────────────── */
.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 0 40px;
}
.breadcrumb {
  font-size: 13.5px;
  color: var(--ink-55);
  margin-bottom: 26px;
}
.breadcrumb a {
  color: var(--rose);
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.article h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 20px;
}
.article .standfirst {
  font-size: 20px;
  line-height: 1.6;
  color: var(--ink-70);
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--ink-12);
}
.article h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 27px;
  color: var(--navy);
  margin: 44px 0 16px;
}
.article p {
  font-size: 18px;
  line-height: 1.82;
  color: var(--ink-70);
  margin-bottom: 22px;
}
.article p strong {
  color: var(--ink);
  font-weight: 600;
}
.article-foot {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--ink-12);
}

/* ── Footer ──────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.6);
  padding: 56px 0 40px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 28px;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 3px;
  color: var(--pink);
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 14.5px;
  max-width: 320px;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14.5px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--pink);
}
.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--ink-12);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
    box-shadow: var(--shadow);
    display: none;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    padding: 0 28px;
  }
  .nav-links a {
    display: block;
    padding: 13px 0;
    border-bottom: 1px solid var(--ink-12);
  }
  .nav-links li:last-child a {
    border-bottom: 0;
  }
  .nav-cta {
    display: inline-block;
    margin: 10px 0;
  }
  .about {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-photo {
    max-width: 360px;
  }
  .about-photo::before {
    inset: 12px -12px -12px 12px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding: 72px 0 84px;
  }
  .hero-copy {
    order: 2;
  }
  .hero-photo {
    order: 1;
    max-width: 300px;
  }
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
}
@media (max-width: 720px) {
  body {
    font-size: 16px;
  }
  .section {
    padding: 68px 0;
  }
  .hero-inner {
    padding: 88px 0 92px;
  }
  .pillars,
  .proof-grid,
  .quotes,
  .note-grid {
    grid-template-columns: 1fr;
  }
  .lead-form {
    flex-direction: column;
  }
  .lead-magnet {
    padding: 36px 24px;
  }
  .footer-grid {
    flex-direction: column;
  }
}
