/* ACE YOUR LEADERSHIP — shared site styles */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Fraunces:ital,wght@0,600;1,500&display=swap');

:root {
  --navy: #10182B;
  --navy-soft: #2A3352;
  --gold: #B7862C;
  --gold-soft: #D9B26B;
  --paper: #F7F6F3;
  --paper-warm: #F1EEE6;
  --ink: #1A1A1A;
  --line: #E4E1D8;
  --muted: #6B6759;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Sora', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* ---------- Nav ---------- */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,246,243,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.site-nav .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand svg { width: 36px; height: 36px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text .ace { font-weight: 800; font-size: 17px; color: var(--navy); letter-spacing: 0.5px; }
.brand-text .tag { font-size: 8.5px; letter-spacing: 2.5px; color: var(--gold); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  text-decoration: none; font-size: 14px; font-weight: 600; color: var(--navy-soft);
  padding: 6px 0; border-bottom: 2px solid transparent; transition: border-color .15s;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { border-color: var(--gold); color: var(--navy); }
.nav-cta {
  background: var(--navy); color: var(--paper) !important; padding: 10px 20px !important;
  border-radius: 3px; border-bottom: none !important;
}
.nav-cta:hover { background: var(--navy-soft) !important; border-color: transparent !important; }

.nav-toggle { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; text-decoration: none; font-family: 'Sora', sans-serif;
  font-weight: 700; font-size: 14.5px; padding: 14px 28px; border-radius: 3px;
  border: 1px solid transparent; cursor: pointer; transition: all .15s;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-soft); }
.btn-ghost { background: transparent; color: var(--paper); border-color: rgba(247,246,243,0.4); }
.btn-ghost:hover { border-color: var(--paper); }
.btn-dark { background: var(--navy); color: var(--paper); }
.btn-dark:hover { background: var(--navy-soft); }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--paper); }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Hero ---------- */
.hero {
  background: var(--navy); color: var(--paper);
  padding: 88px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero .wrap { position: relative; z-index: 2; }
.hero-eyebrow {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-soft);
  font-weight: 700; margin-bottom: 18px;
}
.hero h1 {
  font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(34px, 5.2vw, 58px);
  line-height: 1.08; margin: 0 0 22px; max-width: 780px;
}
.hero h1 em { font-style: italic; font-weight: 500; color: var(--gold-soft); }
.hero p.lede {
  font-size: 19px; line-height: 1.6; max-width: 620px; color: #D7D9E2; margin: 0 0 36px;
}

/* ---------- Sections ---------- */
section { padding: 88px 0; }
.section-tight { padding: 64px 0; }
.eyebrow {
  font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold);
  font-weight: 700; margin-bottom: 14px;
}
h2.section-title {
  font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(28px, 3.6vw, 40px);
  color: var(--navy); margin: 0 0 20px; line-height: 1.15;
}
.lede-body { font-size: 17px; color: var(--muted); max-width: 640px; line-height: 1.65; }

.bg-paper-warm { background: var(--paper-warm); }
.bg-navy { background: var(--navy); color: var(--paper); }
.bg-navy .eyebrow { color: var(--gold-soft); }
.bg-navy h2.section-title { color: var(--paper); }
.bg-navy .lede-body { color: #C9CCD8; }

/* ---------- The Ladder (signature device) ---------- */
.ladder {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: stretch;
  gap: 0; margin-top: 44px;
}
.ladder-step {
  background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--gold);
  padding: 26px 22px; border-radius: 2px;
}
.ladder-step:nth-child(3) { border-top-color: var(--navy-soft); }
.ladder-step:nth-child(5) { border-top-color: var(--navy); }
.ladder-step .num {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold);
  font-weight: 700; margin-bottom: 8px;
}
.ladder-step h4 { font-family: 'Fraunces', serif; font-size: 19px; margin: 0 0 8px; color: var(--navy); }
.ladder-step p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.55; }
.ladder-arrow {
  display: flex; align-items: center; justify-content: center; color: var(--gold);
  font-size: 20px; font-weight: 700; padding: 0 6px;
}

/* ---------- Pillars (ACE) ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.pillar {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--gold);
  padding: 30px 26px; border-radius: 2px;
}
.pillar:nth-child(2) { border-left-color: var(--navy-soft); }
.pillar:nth-child(3) { border-left-color: var(--navy); }
.pillar .eyebrow-small {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold);
  font-weight: 700; margin-bottom: 6px;
}
.pillar h3 { font-family: 'Fraunces', serif; font-size: 22px; margin: 4px 0 10px; color: var(--navy); }
.pillar p { font-size: 14.5px; color: var(--muted); margin: 0; }

/* ---------- Cards / grid ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: 3px; padding: 30px;
}

/* ---------- Book mock cover ---------- */
.book-cover {
  background: var(--navy); color: var(--paper); border-radius: 3px;
  padding: 46px 34px; text-align: center; position: relative;
  box-shadow: 0 24px 50px rgba(16,24,43,0.28);
  border-top: 8px solid var(--gold);
}
.book-cover .b-title {
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 40px; line-height: 1.05;
  text-transform: uppercase; margin: 18px 0 6px;
}
.book-cover .b-and { display: block; font-style: italic; font-weight: 500; color: var(--gold-soft); font-size: 26px; margin: 4px 0; text-transform: none; }
.book-cover .b-seal {
  width: 150px; height: 150px; border: 2px solid var(--paper); border-radius: 50%;
  margin: 26px auto 20px; display: flex; align-items: center; justify-content: center;
  flex-direction: column; padding: 14px;
}
.book-cover .b-seal-inner { border: 1px solid rgba(247,246,243,0.5); border-radius: 50%; width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 10px; text-align: center; }
.book-cover .b-seal-sub { font-size: 11.5px; line-height: 1.4; }
.book-cover .b-author { margin-top: 22px; letter-spacing: 3px; font-weight: 700; color: var(--gold-soft); font-size: 14px; }

/* ---------- Quote / testimonial ---------- */
.quote-block {
  border-left: 3px solid var(--gold); padding-left: 22px; margin: 20px 0;
  font-family: 'Fraunces', serif; font-style: italic; font-size: 19px; color: var(--navy);
  line-height: 1.5;
}
.quote-attr { font-family: 'Sora', sans-serif; font-style: normal; font-size: 13px; color: var(--muted); margin-top: 10px; font-weight: 600; }

.praise-placeholder {
  border: 1px dashed var(--line); border-radius: 3px; padding: 26px; text-align: center;
  color: var(--muted); font-size: 14px;
}

/* ---------- Stats strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.stat { text-align: center; }
.stat .num { font-family: 'Fraunces', serif; font-size: 40px; color: var(--gold); font-weight: 600; }
.stat .label { font-size: 12.5px; color: #C9CCD8; letter-spacing: 0.5px; margin-top: 4px; }

/* ---------- Footer ---------- */
footer { background: var(--navy); color: #B9BCC8; padding: 60px 0 30px; }
footer .foot-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(247,246,243,0.12); }
footer .foot-brand { display: flex; align-items: center; gap: 12px; }
footer .foot-brand svg { width: 34px; height: 34px; }
footer .foot-brand .ace { color: var(--paper); font-weight: 800; font-size: 16px; }
footer .foot-brand .tag { color: var(--gold-soft); font-size: 8px; letter-spacing: 2px; font-weight: 600; }
footer nav { display: flex; gap: 28px; flex-wrap: wrap; }
footer nav a { text-decoration: none; color: #C9CCD8; font-size: 14px; }
footer nav a:hover { color: var(--gold-soft); }
footer .foot-cta { text-align: right; }
footer .foot-cta a { color: var(--gold-soft); text-decoration: none; font-weight: 700; }
.foot-bottom { padding-top: 24px; font-size: 12.5px; color: #7D8095; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ---------- Photo placeholder ---------- */
.photo-frame {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--navy-soft), var(--navy));
  border: 1px solid rgba(247,246,243,0.15);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-placeholder {
  aspect-ratio: 4 / 5;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; color: rgba(247,246,243,0.55); text-align: center; padding: 24px;
}
.photo-placeholder svg { width: 56px; height: 56px; opacity: 0.6; }
.photo-placeholder .ph-label {
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700;
  color: rgba(247,246,243,0.8);
}
.photo-placeholder .ph-note { font-size: 12.5px; max-width: 220px; line-height: 1.5; }
.photo-frame-square { aspect-ratio: 1 / 1; }
.photo-frame-wide { aspect-ratio: 16 / 10; }

/* ---------- Utility ---------- */

.center { text-align: center; }
.mt-lg { margin-top: 48px; }
.small-note { font-size: 13px; color: var(--muted); }

@media (max-width: 860px) {
  .grid-2, .grid-3, .pillars { grid-template-columns: 1fr; }
  .ladder { grid-template-columns: 1fr; }
  .ladder-arrow { transform: rotate(90deg); padding: 8px 0; }
  .nav-links { display: none; }
  footer .foot-cta { text-align: left; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
