/* ==========================================================================
   Executive Advising — shared styles for /advisory and /advisory/more-info
   Palette and type carried over from the approved design; layout rebuilt
   responsively (the source export used fixed multi-column grids only).
   ========================================================================== */

:root {
  --paper: #E7DFCE;
  --card: #F6F0E4;
  --card-alt: #FBF7EC;
  --plum: #4B1F42;
  --navy: #1C3A5B;
  --navy-soft: #2C4763;
  --rust: #C7502B;
  --amber: #E8A268;
  --line: #D8CBB4;
  --line-soft: #E4DAC4;
  --muted: #7A7260;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Lato', -apple-system, 'Segoe UI', sans-serif;
  --shell-pad: 64px;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--navy-soft);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--rust); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--plum); }
a:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 3px;
}

img { max-width: 100%; }

/* ---- Shell ------------------------------------------------------------- */

.page { max-width: 900px; margin: 0 auto; padding: 48px 24px; }

.shell {
  background: var(--card);
  box-shadow: 0 2px 24px rgba(40, 30, 20, .18);
  position: relative;
  overflow: hidden;
}

/* faint drafting grid behind the hero — replaces the celestial_grid raster */
.shell::before {
  content: "";
  position: absolute;
  left: -120px;
  top: 30px;
  width: 460px;
  height: 460px;
  background-image:
    radial-gradient(circle at center, rgba(28, 58, 91, .30) 1px, transparent 1.4px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(circle at 40% 40%, #000, transparent 70%);
  mask-image: radial-gradient(circle at 40% 40%, #000, transparent 70%);
  opacity: .45;
  pointer-events: none;
}

.eyebrow-bar,
.shell-foot {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 10px;
  letter-spacing: .24em;
  color: var(--navy);
  font-weight: 700;
}

.eyebrow-bar { padding: 36px var(--shell-pad) 0; }
.eyebrow-bar .dot { color: var(--rust); }

.brandline { display: flex; align-items: center; gap: 8px; }
.brandline img { width: 18px; height: 18px; object-fit: contain; }

.shell-body {
  position: relative;
  padding: 48px var(--shell-pad) 56px;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.shell-foot {
  border-top: 1px solid var(--line);
  padding: 16px var(--shell-pad);
  font-size: 9.5px;
  letter-spacing: .22em;
}
.shell-foot img { width: 16px; height: 16px; object-fit: contain; }
.shell-foot a { color: var(--navy); }
.shell-foot a:hover { color: var(--rust); }

/* ---- Type -------------------------------------------------------------- */

h1, h2, h3 { font-family: var(--serif); color: var(--plum); margin: 0; }

.hero { display: flex; flex-direction: column; gap: 18px; padding-left: 96px; }

.hero h1 {
  font-weight: 600;
  font-size: clamp(40px, 6.2vw, 58px);
  line-height: 1.02;
}

.kicker {
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.5;
}

.lede { font-size: 16px; line-height: 1.65; max-width: 500px; }

.section-title { font-size: clamp(24px, 3.4vw, 30px); font-weight: 600; }
.rule-top { border-top: 1px solid var(--line); padding-top: 36px; }

.label {
  font-size: 10px;
  letter-spacing: .22em;
  color: var(--rust);
  font-weight: 700;
}

/* ---- Fast-read strip --------------------------------------------------- */

.readstrip {
  background: var(--navy);
  padding: 22px 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.readstrip div { display: flex; flex-direction: column; gap: 5px; }
.readstrip dt, .readstrip .rs-label {
  font-size: 10px; letter-spacing: .2em; color: var(--amber); font-weight: 700;
}
.readstrip .rs-body { font-size: 13px; line-height: 1.5; color: var(--card); }

/* ---- Advisor ----------------------------------------------------------- */

.advisor { display: grid; grid-template-columns: 220px 1fr; gap: 32px; align-items: center; }
.advisor img.portrait { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.advisor .stack { display: flex; flex-direction: column; gap: 10px; }
.advisor .name { font-family: var(--serif); font-size: 30px; font-weight: 600; color: var(--plum); }
.advisor .creds { font-size: 12.5px; line-height: 1.6; color: var(--navy); font-weight: 700; }
.advisor .bio { font-size: 14px; line-height: 1.6; }
.textlink { font-size: 12px; letter-spacing: .14em; font-weight: 700; }

/* ---- Levers ------------------------------------------------------------ */

.levers { display: flex; flex-direction: column; gap: 14px; }
.lever {
  display: grid;
  grid-template-columns: 52px 170px 1fr;
  gap: 20px;
  align-items: center;
  border: 1px solid var(--line);
  padding: 16px 22px;
  transition: border-color .2s ease, transform .2s ease;
}
.lever:hover { border-color: var(--rust); transform: translateX(3px); }
.lever img { width: 44px; height: 44px; object-fit: contain; }
.lever .n { font-size: 10px; letter-spacing: .18em; color: var(--rust); font-weight: 700; }
.lever .t { font-family: var(--serif); font-size: 23px; font-weight: 700; color: var(--navy); }
.lever p { font-size: 13px; line-height: 1.55; margin: 0; }

/* ---- Calibration table ------------------------------------------------- */

.calibration {
  border: 1px solid var(--line);
  background: var(--card-alt);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cal-row {
  display: grid;
  grid-template-columns: 150px repeat(4, 1fr) 60px;
  gap: 8px;
  align-items: center;
}
.cal-head {
  font-size: 9.5px;
  letter-spacing: .14em;
  color: var(--muted);
  font-weight: 700;
  align-items: end;
}
.cal-row .lever-name {
  font-family: var(--serif); font-size: 17px; font-weight: 700; color: var(--navy);
}
.bar { height: 26px; display: block; }
.bar.low  { background: #C65A3A; }
.bar.mid  { background: #E2A93B; }
.bar.high { background: #7E8C5E; }
.score { text-align: right; font-weight: 700; font-size: 14px; }
.score.low  { color: #C65A3A; }
.score.mid  { color: #E2A93B; }
.score.high { color: #7E8C5E; }
.cal-note {
  border-top: 1px solid var(--line-soft);
  padding-top: 12px;
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
  font-style: italic;
}

/* ---- Signs / benefits -------------------------------------------------- */

.signs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 32px; font-size: 13.5px; line-height: 1.5; }
.signs li { display: flex; gap: 10px; list-style: none; }
.signs li::before { content: "—"; color: var(--rust); flex: none; }
.signs { margin: 0; padding: 0; }

.benefits { display: grid; grid-template-columns: 220px 1fr; gap: 32px; }
.benefits ol { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 14px; line-height: 1.55; counter-reset: b; }
.benefits li { display: flex; gap: 12px; counter-increment: b; }
.benefits li::before {
  content: "0" counter(b);
  color: var(--navy);
  font-weight: 700;
  flex: none;
}

/* ---- Caring truth panel ------------------------------------------------ */

.panel {
  background: var(--plum);
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
/* heat bands — replaces the heat_bands raster */
.panel::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -30px;
  height: 180px;
  background: repeating-linear-gradient(
    -8deg,
    rgba(232, 162, 104, .30) 0 6px,
    rgba(232, 162, 104, 0) 6px 22px
  );
  pointer-events: none;
}
.panel > * { position: relative; z-index: 1; }
.panel .label { color: var(--amber); }
.panel .lines { display: flex; flex-direction: column; gap: 8px; font-size: 14px; line-height: 1.6; color: var(--card); }
.panel .close {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.4;
  color: var(--card);
  font-style: italic;
  border-top: 1px solid rgba(246, 240, 228, .25);
  padding-top: 16px;
}

/* ---- Steps ------------------------------------------------------------- */

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step {
  border: 1px solid var(--line);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.step .t { font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--navy); }
.step p { font-size: 13px; line-height: 1.55; margin: 0; }

/* ---- CTAs -------------------------------------------------------------- */

.cta-block { display: flex; flex-direction: column; gap: 14px; }
.cta-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: center; }
.cta-row .why { font-size: 12.5px; line-height: 1.5; color: var(--muted); }

.btn {
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  padding: 16px 24px;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--plum); color: var(--card); }
.btn-primary:hover { background: var(--navy); color: var(--card); }

.btn-secondary { border: 1px solid var(--navy); color: var(--navy); font-size: 13.5px; padding: 14px 24px; }
.btn-secondary:hover { background: var(--navy); color: var(--card); }

.btn-tertiary { border: 1px solid #C9BFA8; color: var(--muted); font-size: 13.5px; padding: 14px 24px; }
.btn-tertiary:hover { border-color: var(--navy); color: var(--navy); }

.btn-amber { background: var(--amber); color: var(--plum); align-self: flex-start; }
.btn-amber:hover { background: var(--card); color: var(--plum); }

/* ---- More-info page specifics ------------------------------------------ */

.pull {
  font-family: var(--serif);
  font-size: clamp(19px, 2.6vw, 22px);
  font-style: italic;
  color: var(--plum);
  line-height: 1.4;
  border-left: 3px solid var(--rust);
  padding-left: 20px;
}

.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 40px; }
.duo h3, .prose h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}
.duo p, .prose p { font-size: 13.5px; line-height: 1.6; margin: 0 0 8px; }
.duo ul, .prose ul { font-size: 13.5px; line-height: 1.6; margin: 0; padding-left: 18px; }
.duo li, .prose li { margin-bottom: 4px; }

.insight {
  grid-column: 1 / -1;
  background: var(--card-alt);
  border: 1px solid var(--line);
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.insight .q {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--plum);
  line-height: 1.4;
}

.terms {
  background: var(--navy);
  padding: 22px 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 440px;
}
.terms div { display: flex; flex-direction: column; gap: 4px; }
.terms .k { font-size: 10px; letter-spacing: .18em; color: var(--amber); font-weight: 700; }
.terms .v { font-size: 15px; color: var(--card); font-weight: 700; }

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.values div { display: flex; flex-direction: column; gap: 4px; }
.values .n { font-family: var(--serif); font-size: 17px; font-weight: 700; color: var(--plum); }
.values .d { font-size: 12px; line-height: 1.5; font-style: italic; }

.culminations { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.culminations figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.culminations img { width: 38px; height: 38px; }
.culminations .n { font-size: 10.5px; letter-spacing: .06em; font-weight: 700; color: var(--navy); }
.culminations .d { font-size: 11px; color: var(--muted); line-height: 1.4; }

.subhead { font-family: var(--serif); font-size: 20px; color: var(--plum); margin: 0; }

.closing {
  background: var(--plum);
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.closing p { font-size: 14px; color: var(--card); line-height: 1.6; margin: 0; max-width: 520px; }

/* ---- Entrance motion --------------------------------------------------- */

.reveal { animation: rise .7s cubic-bezier(.2, .7, .3, 1) both; }
.reveal:nth-of-type(2) { animation-delay: .06s; }
.reveal:nth-of-type(3) { animation-delay: .12s; }
.reveal:nth-of-type(4) { animation-delay: .18s; }

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

/* ---- Responsive -------------------------------------------------------- */

@media (max-width: 860px) {
  :root { --shell-pad: 40px; }
  .page { padding: 28px 16px; }
  .hero { padding-left: 0; }
  .readstrip { grid-template-columns: 1fr; gap: 18px; }
  .advisor { grid-template-columns: 180px 1fr; gap: 24px; align-items: start; }
  .benefits { grid-template-columns: 1fr; gap: 18px; }
  .steps { grid-template-columns: 1fr; }
  .signs { grid-template-columns: 1fr; }
  .duo { grid-template-columns: 1fr; gap: 26px; }
  .values { grid-template-columns: 1fr 1fr; }
  .culminations { grid-template-columns: repeat(3, 1fr); }
  .cta-row { grid-template-columns: 1fr; gap: 8px; }
  .lever { grid-template-columns: 44px 1fr; gap: 14px 16px; }
  .lever p { grid-column: 1 / -1; }
  .lever:hover { transform: none; }
  .cal-row { grid-template-columns: 96px repeat(4, 1fr) 42px; gap: 5px; }
  .bar { height: 20px; }
  .panel, .closing { padding: 28px 24px; }
}

@media (max-width: 560px) {
  :root { --shell-pad: 22px; }
  .shell-body { padding: 32px var(--shell-pad) 40px; gap: 34px; }
  .advisor { grid-template-columns: 1fr; }
  .advisor img.portrait { max-width: 220px; }
  .values { grid-template-columns: 1fr; }
  .culminations { grid-template-columns: repeat(2, 1fr); }
  .terms { max-width: none; }
  .cal-row { grid-template-columns: 80px repeat(4, 1fr) 34px; font-size: 12px; }
  .cal-head { font-size: 8px; letter-spacing: .06em; }
  .eyebrow-bar { font-size: 9px; letter-spacing: .16em; }
}

@media print {
  body { background: #fff; }
  .shell { box-shadow: none; }
}
