/* ==========================================================================
   Dr. Lakisha(R) - drlakisha.com
   Shared stylesheet. Brand system per Website Rebuild Brief V1, Section 6.
   Colors verified from the Canva Brand Kit, 2026-07-09.
   Brand type is Lovelace (display) plus Lovelace Text, with Canva Sans for body.
   Lovelace and Canva Sans are licensed and cannot be self-served here, so the
   site uses Fraunces as the Lovelace substitute and Inter for Canva Sans.
   American English punctuation only. No em dashes anywhere.
   ========================================================================== */

:root {
  /* Canva Brand Kit: Brand Colors (exact hex, verified from the kit 2026-07-09) */
  --obsidian:       #0D0D0D;  /* near-black, primary structure and text */
  --shadow-slate:   #FFFFFF;  /* white */
  --salt-silver:    #ECECEC;  /* cool light neutral */
  --moonlit-ivory:  #F6F2E9;  /* warm parchment, text pages */
  --sulfur-gold:    #D4A850;  /* the brand gold, accents and buttons */
  --earth-amber:    #9E7840;  /* deep gold, hover and borders */
  --sovereign-blue: #4A6C8F;  /* brand blue */
  --midnight-cobalt:#2E4A66;  /* deep navy */
  --mercury-grey:   #BFC3C6;  /* cool grey */

  /* Canva Brand Kit: Portal Glows (mapped to the three portals) */
  --glow-legacy:         #ECECEC;  /* Salt / public tier */
  --glow-legacy-fade:    #FFFFFF;
  --glow-grief:          #D4A850;  /* Sulfur / Alkemist Mother */
  --glow-grief-fade:     #9E7840;
  --glow-sovereign:      #4A6C8F;  /* Mercury / Dutchess */
  --glow-sovereign-fade: #2E4A66;

  /* Semantic aliases used across the pages, bound to the brand palette */
  --charcoal:  var(--obsidian);       /* primary text, structure, icons */
  --onyx:      #242424;               /* soft dark backgrounds, derived from Obsidian */
  --sandstone: #DDD6CE;               /* warm hero neutral; not in the kit, see note in report */
  --linen:     var(--moonlit-ivory);  /* text-heavy pages, parchment */
  --gold:      var(--sulfur-gold);    /* accents, buttons, emphasis; sparing */

  --gold-deep: var(--earth-amber);    /* gold hover / borders */
  --ink-soft:  #4a4742;               /* muted body text on light */
  --line:      #cfc7bb;               /* hairline dividers on light */

  --measure: 42rem;      /* reading width */
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(4rem, 9vw, 8rem);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Threshold identity accents. Salt silver, Sulfur gold, Mercury blue.
     Text tones are legible members of each family (true Salt silver #ECECEC
     is invisible as small text on light, so Salt text uses a steel silver). */
  --accent: var(--sovereign-blue);   /* default falls back to Mercury blue */
  --accent-dark: #9fb6cf;
}

body.tier-salt    { --accent: #646A72; --accent-dark: #C7CBD0; }  /* silver family */
body.tier-sulfur  { --accent: #8A6A24; --accent-dark: #F0D99A; }  /* gold family */
body.tier-mercury { --accent: #4A6C8F; --accent-dark: #9FB6CF; }  /* blue family */

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

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

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--linen);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.1rem, 5.2vw, 3.9rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }

p { margin: 0 0 1.2em; }

.serif { font-family: var(--serif); }
.reg   { font-size: 0.72em; vertical-align: 0.35em; letter-spacing: 0; }

/* ---- Layout helpers ---- */
.wrap { max-width: 74rem; margin: 0 auto; padding-inline: var(--gutter); }
.narrow { max-width: 52rem; }
.measure { max-width: var(--measure); }
.section { padding-block: var(--section-y); }
.center { text-align: center; }
.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.1rem;
}
.lede { font-size: clamp(1.12rem, 1.8vw, 1.32rem); color: var(--ink-soft); }
.rule { width: 3rem; height: 2px; background: var(--accent); border: 0; margin: 2rem 0; }
.rule.center { margin-inline: auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 0.9rem 1.7rem;
  border-radius: 2px;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.btn-solid {
  background: var(--charcoal);
  color: var(--linen);
  border: 1.5px solid var(--charcoal);
}
.btn-solid:hover { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: var(--linen); }
.btn-gold { background: var(--gold); color: var(--charcoal); border: 1.5px solid var(--gold); }
.btn-gold:hover { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
/* Salt pages carry silver, not gold: recolor the accent CTA to the Salt accent. */
.tier-salt .btn-gold { background: var(--accent); color: var(--linen); border-color: var(--accent); }
.tier-salt .btn-gold:hover { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn-row.center { justify-content: center; }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--linen) 92%, transparent);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 74px;
  max-width: 74rem; margin: 0 auto; padding-inline: var(--gutter);
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { height: 40px; width: auto; }
.brand .brand-text {
  font-family: var(--serif); font-size: 1.35rem; color: var(--charcoal);
  letter-spacing: 0.01em;
}
.nav-links { display: flex; gap: 1.6rem; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-family: var(--sans); font-size: 0.9rem; font-weight: 500;
  text-decoration: none; color: var(--charcoal); letter-spacing: 0.01em;
  padding: 0.4rem 0; position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--sovereign-blue); transition: width .25s ease;
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--sovereign-blue); }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  font-size: 1.5rem; color: var(--charcoal); line-height: 1; padding: 0.25rem;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 74px; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--linen);
    border-bottom: 1px solid var(--line); padding: 0.5rem 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.85rem var(--gutter); }
  .nav-links a::after { display: none; }
}

/* ---- Hero ---- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(95% 95% at 14% 6%, rgba(255,255,255,.95), transparent 55%),
    radial-gradient(115% 105% at 94% 104%, rgba(74,108,143,.30), transparent 60%),
    radial-gradient(80% 80% at 62% 122%, rgba(46,74,102,.15), transparent 60%),
    linear-gradient(158deg, #f5f2ec 0%, #e9eaec 48%, #dde3ea 100%);
  color: var(--ink);
  min-height: min(86vh, 760px);
  display: flex; align-items: center;
  padding-block: clamp(3.5rem, 8vw, 6rem);
}
.hero::after {
  content: ""; position: absolute; top: -4%; right: -3%;
  width: min(44%, 520px); aspect-ratio: 220 / 440;
  -webkit-mask: url("botanical-sprig.svg") no-repeat center / contain;
  mask: url("botanical-sprig.svg") no-repeat center / contain;
  background-color: rgba(74,108,143,.5);
  opacity: .5; pointer-events: none;
}
.hero .wrap { width: 100%; position: relative; z-index: 1; }
.hero-logo { height: clamp(58px, 7.5vw, 94px); width: auto; margin-bottom: 1.6rem; }
.hero h1 { max-width: 18ch; color: var(--ink); }
.hero .lede { max-width: 46ch; margin-top: 0.5rem; color: var(--ink-soft); }
.hero .btn-row { margin-top: 2.2rem; }

/* ---- Credential band ---- */
.credband { background: linear-gradient(120deg, #141a24, #1f2b3b); color: var(--linen); }
.credband .grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; text-align: center;
}
.credband .cell {
  padding: 2.2rem 1.2rem; border-right: 1px solid rgba(245,238,229,.12);
  font-family: var(--sans); font-size: 0.92rem; line-height: 1.45;
  display: flex; align-items: center; justify-content: center;
}
.credband .cell:last-child { border-right: 0; }
.credband .cell strong { color: var(--gold); font-weight: 600; }
@media (max-width: 900px) {
  .credband .grid { grid-template-columns: repeat(2, 1fr); }
  .credband .cell:nth-child(2n) { border-right: 0; }
  .credband .cell { border-bottom: 1px solid rgba(245,238,229,.12); }
}
@media (max-width: 520px) { .credband .grid { grid-template-columns: 1fr; }
  .credband .cell { border-right: 0; } }

/* ---- Portals ---- */
.portals {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #161821 0%, #20232e 100%);
  color: var(--linen);
}
.portals .eyebrow { color: #9fb6cf; }
.portals h2 { color: #fbf6ee; }
.portals .lede { color: var(--mercury-grey); }
.portal-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 900px) { .portal-grid { grid-template-columns: 1fr; max-width: 34rem; margin-inline: auto; } }

.portal {
  position: relative; display: flex; flex-direction: column;
  padding: 2.4rem 2rem 2.2rem; border: 1px solid rgba(255,255,255,.09);
  border-radius: 7px;
  text-decoration: none; color: inherit; overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  min-height: 22rem;
}
.portal::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.portal:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -24px rgba(22,22,22,.45); }
.portal:hover::before { transform: scaleX(1); }
.portal .element {
  font-family: var(--serif); font-size: 0.82rem; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--gold-deep); margin-bottom: 1rem;
}
.portal h3 { margin-bottom: 0.15rem; }
.portal .doorway {
  font-family: var(--sans); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft);
  margin-bottom: 1rem;
}
.portal .tier {
  display: inline-block; font-family: var(--sans); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; padding: 0.32rem 0.75rem;
  border-radius: 999px; border: 1px solid var(--gold-deep); color: var(--gold-deep);
  margin-bottom: 1rem; align-self: flex-start;
}
.portal.salt .tier { border-color: var(--gold); color: var(--gold); }
.portal p { font-size: 0.98rem; color: var(--ink-soft); }
.portal .enter {
  margin-top: auto; font-family: var(--sans); font-weight: 600; font-size: 0.9rem;
  color: var(--charcoal); letter-spacing: 0.02em;
}
.portal .enter::after { content: " \2192"; color: var(--gold-deep); }

/* Portal registers, lit by the Brand Kit Portal Glows */
.portal.salt {
  background:
    radial-gradient(125% 80% at 50% -12%, rgba(236,236,236,.95), transparent 60%),
    linear-gradient(165deg, #f7f3ec, #e6e1d7);
  color: #20242e; border-color: rgba(0,0,0,.08);
}
.portal.salt .element { color: #646A72; }
.portal.salt .tier { border-color: #646A72; color: #646A72; }
.portal.salt .doorway { color: #6a6456; }
.portal.salt p { color: #454239; }
.portal.salt .enter { color: #646A72; }
.portal.salt .enter::after { color: #646A72; }
.portal.mercury .enter::after { color: #9fb6cf; }

.portal.sulfur {
  background:
    radial-gradient(125% 85% at 50% -14%, rgba(212,168,80,.9), rgba(158,120,64,.4) 44%, transparent 74%),
    linear-gradient(165deg, #241d10, #17130a);
  color: #faf5ec; border-color: rgba(212,168,80,.24);
}
.portal.sulfur .element { color: #f0d99a; }
.portal.sulfur .tier { border-color: var(--gold); color: var(--gold); }
.portal.sulfur .doorway { color: rgba(250,245,236,.7); }
.portal.sulfur p { color: rgba(250,245,236,.86); }
.portal.sulfur .enter { color: #f0d99a; }

.portal.mercury {
  background:
    radial-gradient(125% 85% at 50% -14%, rgba(74,108,143,.95), rgba(46,74,102,.45) 44%, transparent 74%),
    linear-gradient(165deg, #141a24, #0f141c);
  color: #eef1f5; border-color: rgba(74,108,143,.3);
}
.portal.mercury .element { color: #cdd8e6; }
.portal.mercury .tier { border-color: var(--sovereign-blue); color: #9fb6cf; }
.portal.mercury .doorway { color: rgba(238,241,245,.7); }
.portal.mercury p { color: rgba(238,241,245,.85); }
.portal.mercury .enter { color: #cdd8e6; }

/* ---- Generic content pages ---- */
.page-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(95% 110% at 90% -10%, rgba(255,255,255,.85), transparent 55%),
    radial-gradient(100% 120% at 4% 110%, rgba(74,108,143,.24), transparent 60%),
    linear-gradient(158deg, #f2eee7, #e4e8ec);
  color: var(--ink);
  padding-block: clamp(3.2rem, 7vw, 5.2rem);
}
.page-hero::after {
  content: ""; position: absolute; top: -22%; right: -3%;
  width: min(30%, 300px); aspect-ratio: 220 / 440;
  -webkit-mask: url("botanical-sprig.svg") no-repeat center / contain;
  mask: url("botanical-sprig.svg") no-repeat center / contain;
  background-color: rgba(74,108,143,.42);
  opacity: .5; pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { max-width: 20ch; color: var(--ink); }
.page-hero .lede { max-width: 52ch; color: var(--ink-soft); }
.page-hero.dark {
  background:
    radial-gradient(100% 120% at 88% -10%, rgba(191,195,198,.14), transparent 55%),
    radial-gradient(95% 120% at 0% 110%, rgba(74,108,143,.44), transparent 60%),
    linear-gradient(158deg, #0f151f, #1c2c40);
  color: var(--linen);
}
.page-hero.dark h1 { color: #fbf6ee; }
.page-hero.dark .lede { color: rgba(245,238,229,.85); }
.page-hero.dark .eyebrow { color: var(--accent-dark); }
.page-hero.dark::after { background-color: rgba(236,236,236,.4); }

.prose { max-width: var(--measure); }
.prose h2 { margin-top: 2.4em; }
.prose h3 { margin-top: 1.8em; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: 0.5rem; }

.alt {
  background:
    radial-gradient(70% 120% at 50% -20%, rgba(74,108,143,.09), transparent 55%),
    linear-gradient(180deg, #eef0f2, #e5e9ec);
}
.dark {
  position: relative; overflow: hidden;
  background:
    radial-gradient(90% 120% at 50% 122%, rgba(74,108,143,.34), transparent 60%),
    radial-gradient(70% 90% at 50% -12%, rgba(191,195,198,.10), transparent 60%),
    linear-gradient(200deg, #16202e, #0d1017);
  color: var(--linen);
}
.section.dark::after {
  content: ""; position: absolute; bottom: -20%; left: 50%; transform: translateX(-50%);
  width: min(72%, 660px); aspect-ratio: 220 / 440;
  -webkit-mask: url("botanical-sprig.svg") no-repeat center / contain;
  mask: url("botanical-sprig.svg") no-repeat center / contain;
  background-color: rgba(191,195,198,.5);
  opacity: .16; pointer-events: none;
}
.section.dark .wrap { position: relative; z-index: 1; }
.dark .eyebrow { color: var(--accent-dark); }
.dark a { color: #b9c8d8; }

/* ---- Offer / feature cards ---- */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
@media (max-width: 720px) { .cards { grid-template-columns: 1fr; } }
.card {
  background: var(--linen); border: 1px solid var(--line);
  padding: 2rem 1.9rem; display: flex; flex-direction: column;
  border-radius: 5px; box-shadow: 0 12px 32px -24px rgba(22,22,22,.4);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 22px 46px -26px rgba(22,22,22,.45); border-color: var(--gold); }
.alt .card { background: var(--linen); }
.card h3 { margin-bottom: 0.4rem; }
.card p { font-size: 0.98rem; color: var(--ink-soft); }
.card .enter { margin-top: auto; padding-top: 1rem; font-weight: 600; font-size: 0.9rem; text-decoration: none; }
.card .enter::after { content: " \2192"; color: var(--gold-deep); }

/* ---- Placeholder blocks (awaiting assets) ---- */
.placeholder {
  border: 1px dashed var(--gold-deep); background: rgba(210,187,142,.09);
  color: var(--ink-soft); font-family: var(--sans); font-size: 0.86rem;
  padding: 1rem 1.2rem; border-radius: 2px; margin: 1.5rem 0;
}
.placeholder strong { color: var(--gold-deep); letter-spacing: 0.06em; }
.portrait-frame {
  aspect-ratio: 4 / 5; background: var(--sandstone);
  border: 1px solid var(--line); display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--ink-soft); font-family: var(--sans); font-size: 0.82rem;
  letter-spacing: 0.04em; padding: 1.5rem;
}

/* ---- Coming soon card (memoir) ---- */
.comingsoon {
  border: 1px solid var(--gold); background: var(--linen);
  padding: 2.4rem 2rem; text-align: center; max-width: 30rem;
}
.comingsoon .badge {
  display: inline-block; font-family: var(--sans); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep);
  border: 1px solid var(--gold); padding: 0.3rem 0.8rem; margin-bottom: 1.2rem;
}
.comingsoon .title { font-family: var(--serif); font-size: 1.6rem; font-style: italic; }

/* ---- Contact / form ---- */
.form { max-width: 34rem; }
.form label { display: block; font-size: 0.86rem; font-weight: 600; margin: 1.2rem 0 0.4rem; }
.form input, .form textarea, .form select {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--charcoal);
  background: var(--linen); border: 1px solid var(--line); border-radius: 2px;
  padding: 0.75rem 0.9rem;
}
.form input:focus, .form textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.form textarea { min-height: 8rem; resize: vertical; }

/* ---- Footer ---- */
.site-footer { background: var(--charcoal); color: var(--linen); padding-block: 3.5rem; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; } }
.site-footer .brand-text { color: var(--linen); font-family: var(--serif); font-size: 1.5rem; }
.site-footer p { color: rgba(245,238,229,.72); font-size: 0.92rem; }
.site-footer h4 {
  font-family: var(--sans); font-size: 0.76rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: #9fb6cf; margin: 0 0 1rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.6rem; }
.site-footer a { color: rgba(245,238,229,.82); text-decoration: none; font-size: 0.92rem; }
.site-footer a:hover { color: var(--gold); }
.footer-legal {
  border-top: 1px solid rgba(245,238,229,.14); margin-top: 2.5rem; padding-top: 1.5rem;
  font-size: 0.82rem; color: rgba(245,238,229,.6);
}
.footer-legal .positioning { font-family: var(--serif); color: rgba(245,238,229,.85); font-size: 0.98rem; margin-bottom: 0.8rem; }
.footer-legal.positioning::before {
  content: ""; display: block; width: 210px; max-width: 72%; height: 48px;
  background: url("logo-drlakisha-script.png") no-repeat left center / contain;
  filter: brightness(0) invert(1); opacity: .92; margin-bottom: 1rem;
}

/* ---- Press list ---- */
.press-list { list-style: none; margin: 1.5rem 0 0; padding: 0; }
.press-list li {
  border-top: 1px solid var(--line); padding: 1.1rem 0;
  display: flex; flex-wrap: wrap; gap: 0.25rem 0.9rem; align-items: baseline;
}
.press-list li:last-child { border-bottom: 1px solid var(--line); }
.press-list .pub { font-weight: 600; color: var(--charcoal); text-decoration: none; }
.press-list .pub:hover { color: var(--sovereign-blue); }
.press-list .pub::after { content: " \2197"; color: var(--sovereign-blue); font-weight: 400; }
.press-list .desc { color: var(--ink-soft); font-size: 0.96rem; }

/* ---- Clinical note ---- */
.clinical-note {
  font-size: 0.82rem; color: var(--ink-soft); border-left: 2px solid var(--gold);
  padding-left: 1rem; margin-top: 1.5rem; font-style: italic;
}

/* ---- Alchemical glyphs on the portals ---- */
.portal .glyph { display: block; width: 42px; height: 42px; margin-bottom: 0.9rem; }
.portal .glyph svg { width: 100%; height: 100%; display: block; }
.portal.salt .glyph { color: #646A72; }
.portal.sulfur .glyph { color: var(--gold); }
.portal.mercury .glyph { color: #9fb6cf; }

/* ---- Gallery ---- */
.gallery-grid { columns: 3 250px; column-gap: 1.1rem; margin-top: 2.5rem; }
.gallery-grid figure { margin: 0 0 1.1rem; break-inside: avoid; }
.gallery-grid img { width: 100%; height: auto; border-radius: 6px; display: block; box-shadow: 0 16px 44px -28px rgba(22,22,22,.5); }
.gallery-grid figcaption { font-family: var(--sans); font-size: 0.76rem; color: var(--ink-soft); margin-top: 0.4rem; letter-spacing: 0.02em; }

/* ---- Memoir cover ---- */
.memoir-cover { max-width: 330px; margin-inline: auto; aspect-ratio: 3 / 4; background-size: cover; background-position: center; border-radius: 4px; box-shadow: 0 30px 72px -30px rgba(0,0,0,.65); }

/* ---- Photo slots (graceful: branded gradient shows until an image is dropped in) ---- */
.photo-slot {
  background-color: #e6e9ec; background-size: cover; background-position: center;
  border-radius: 6px; overflow: hidden; box-shadow: 0 16px 44px -28px rgba(22,22,22,.45);
  width: 100%;
}
.photo-slot.portrait  { aspect-ratio: 4 / 5; }
.photo-slot.landscape { aspect-ratio: 16 / 10; }
.photo-slot.wide      { aspect-ratio: 21 / 9; }
.photo-caption { font-family: var(--sans); font-size: 0.78rem; color: var(--ink-soft); margin-top: 0.5rem; letter-spacing: 0.02em; }

.bio-grid { display: grid; grid-template-columns: 0.8fr 1.5fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
@media (max-width: 760px) {
  .bio-grid { grid-template-columns: 1fr; max-width: 26rem; }
  .bio-grid .photo-slot.portrait { max-width: 22rem; }
}

.feature-band .fb-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 0; align-items: stretch; }
.feature-band .fb-img { min-height: 340px; height: 100%; border-radius: 6px 0 0 6px; }
.feature-band .fb-text {
  background: linear-gradient(180deg, #eef0f2, #e5e9ec); padding: clamp(2rem, 5vw, 3.5rem);
  display: flex; flex-direction: column; justify-content: center; border-radius: 0 6px 6px 0;
}
.feature-band blockquote {
  font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem, 2.4vw, 2.05rem);
  line-height: 1.3; color: var(--ink); margin: 0;
}
.feature-band blockquote .mark { color: var(--sovereign-blue); font-style: normal; font-size: 1.2em; line-height: 0; }
.feature-band cite { display: block; margin-top: 1.4rem; font-family: var(--sans); font-style: normal; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sovereign-blue); font-weight: 600; }
@media (max-width: 760px) {
  .feature-band .fb-grid { grid-template-columns: 1fr; }
  .feature-band .fb-img { border-radius: 6px 6px 0 0; min-height: 240px; }
  .feature-band .fb-text { border-radius: 0 0 6px 6px; }
}

/* ---- Reveal on scroll (progressive enhancement; visible by default without JS) ---- */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---- Accessibility: skip link and keyboard focus visibility ---- */
.skip-link {
  position: absolute;
  left: 0.5rem;
  top: -3rem;
  z-index: 1000;
  background: var(--charcoal);
  color: var(--linen);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.65rem 1.1rem;
  border-radius: 0 0 4px 4px;
  transition: top .18s ease;
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---- Utility ---- */
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
  border: 0; padding: 0; margin: -1px;
}

/* ---- Featured in (credibility bar) ---- */
.featured-in { background: var(--linen); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.featured-in .wrap { padding-block: 1.5rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.55rem 1.6rem; }
.featured-in .label { font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); }
.featured-in a.pubname { font-family: var(--serif); font-size: clamp(1rem, 1.6vw, 1.22rem); color: var(--charcoal); text-decoration: none; opacity: 0.85; transition: opacity .2s ease, color .2s ease; }
.featured-in a.pubname:hover { opacity: 1; color: var(--sovereign-blue); }
.featured-in .all { font-family: var(--sans); font-size: 0.82rem; font-weight: 600; color: var(--sovereign-blue); text-decoration: none; }
.featured-in .all::after { content: " \2192"; }
@media (max-width: 620px) { .featured-in .wrap { gap: 0.5rem 1rem; } }

/* ---- Start-here hint (portals) ---- */
.start-here { font-family: var(--sans); font-size: 0.98rem; font-weight: 500; color: var(--mercury-grey); margin-top: 1.1rem; }
.start-here strong { color: #fbf6ee; font-weight: 600; }

/* ---- FAQ accordion (structured for FAQ rich results) ---- */
.faq { max-width: 52rem; margin-top: 1.5rem; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 1.15rem 2.2rem 1.15rem 0; position: relative; font-family: var(--serif); font-size: clamp(1.1rem, 1.7vw, 1.32rem); color: var(--charcoal); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0.2rem; top: 0.95rem; font-family: var(--sans); font-size: 1.5rem; line-height: 1; color: var(--gold-deep); }
.faq details[open] summary::after { content: "\2212"; }
.faq summary:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.faq .faq-a { padding: 0 0 1.35rem; color: var(--ink-soft); }
.faq .faq-a p { margin: 0 0 0.8rem; }
.faq .faq-a p:last-child { margin-bottom: 0; }

/* ---- Inline lead-magnet block (free ECS primer) ---- */
.leadmagnet { background: linear-gradient(165deg, #f7f3ec, #e9eaec); border: 1px solid var(--line); border-radius: 8px; padding: clamp(1.7rem, 3.4vw, 2.6rem); text-align: center; max-width: 46rem; margin-inline: auto; }
.leadmagnet .gift-eyebrow { font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); margin: 0 0 0.7rem; }
.leadmagnet h3 { margin-bottom: 0.5rem; }
.leadmagnet p.lm-lede { color: var(--ink-soft); max-width: 34rem; margin-inline: auto; }
.leadmagnet .newsletter-form { flex-direction: row; flex-wrap: wrap; justify-content: center; max-width: 34rem; margin: 1.4rem auto 0; }
.leadmagnet .newsletter-form input[type="email"], .leadmagnet .newsletter-form input[type="text"] { flex: 1 1 15rem; }
.leadmagnet .newsletter-consent { width: 100%; text-align: center; }

/* ---- Lead-magnet download slot (revealed after signup) ---- */
.nl-download[hidden] { display: none; }
.nl-download { margin-top: 0.9rem; }
.nl-download a { display: inline-block; font-family: var(--sans); font-weight: 600; font-size: 0.9rem; color: var(--accent); text-decoration: none; border: 1px solid var(--accent); border-radius: 4px; padding: 0.6rem 1rem; }
.nl-download a:hover { background: var(--accent); color: var(--linen); }
.newsletter-gift { font-family: var(--sans); font-size: 0.76rem; font-weight: 600; letter-spacing: 0.05em; color: var(--gold-deep); margin: 0 0 0.5rem; }

/* ---- Speaker one-sheet slot ---- */
.onesheet { display: grid; grid-template-columns: 0.68fr 1.32fr; gap: clamp(1.5rem, 3vw, 2.6rem); align-items: center; margin-top: 2rem; }
.onesheet .photo-slot { background-color: #e6e9ec; }
@media (max-width: 640px) { .onesheet { grid-template-columns: 1fr; max-width: 28rem; margin-inline: auto; } }

/* ---- Footer legal links ---- */
.footer-links { margin: 0.7rem 0 0; font-size: 0.82rem; }
.footer-links a { color: rgba(245,238,229,.7); text-decoration: none; }
.footer-links a:hover { color: var(--gold); }
.footer-links .sep { color: rgba(245,238,229,.3); margin: 0 0.4rem; }

/* ---- Video embeds (privacy-enhanced youtube-nocookie) ---- */
.video-embed {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  border-radius: 8px; overflow: hidden; background: #0d1017;
  box-shadow: 0 18px 44px -28px rgba(13,13,13,.55);
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-embed.placeholder-slot {
  display: flex; align-items: center; justify-content: center; text-align: center; padding: 1.5rem;
  border: 1px dashed rgba(159,182,207,.4);
  background:
    radial-gradient(120% 120% at 50% -10%, rgba(74,108,143,.5), transparent 60%),
    linear-gradient(160deg, #16202e, #0d1017);
  color: var(--linen);
}
.video-embed .ph-inner { max-width: 26rem; }
.video-embed .ph-play {
  width: 56px; height: 56px; margin: 0 auto 1.1rem; border-radius: 50%;
  border: 2px solid rgba(159,182,207,.6); display: flex; align-items: center; justify-content: center;
}
.video-embed .ph-play::after {
  content: ""; margin-left: 4px;
  border-left: 15px solid rgba(159,182,207,.85);
  border-top: 9px solid transparent; border-bottom: 9px solid transparent;
}
.video-embed .ph-badge {
  display: inline-block; font-family: var(--sans); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: #9fb6cf;
  border: 1px solid rgba(159,182,207,.5); border-radius: 999px; padding: 0.3rem 0.75rem; margin-bottom: 0.8rem;
}
.video-embed .ph-inner p { font-size: 0.9rem; color: rgba(238,241,245,.82); margin: 0; }

/* ---- Watch page ---- */
.watch-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2.2rem, 5vw, 3.4rem); margin-top: 2.5rem; }
.watch-entry { scroll-margin-top: 96px; }
.watch-entry .meta { margin-top: 1.1rem; }
.watch-entry .ep-num { font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.watch-entry h3 { margin: 0.25rem 0 0.35rem; }
.watch-entry .ep-desc { color: var(--ink-soft); font-size: 0.98rem; margin: 0 0 0.7rem; }
.watch-entry .ep-links { display: flex; flex-wrap: wrap; gap: 0.4rem 1.3rem; align-items: center; }
.watch-entry .ep-links a { font-family: var(--sans); font-weight: 600; font-size: 0.9rem; color: var(--accent); text-decoration: none; }
.watch-entry .ep-links a:hover { color: var(--charcoal); }
.watch-entry .ep-links a.permalink { color: var(--ink-soft); font-weight: 500; }
.watch-entry .ep-links a.permalink::before { content: "\2192 "; }
.welcome-video { max-width: 46rem; margin-inline: auto; }

/* ---- Newsletter slide-in (email capture) ---- */
.newsletter {
  position: fixed; z-index: 900; left: 1.25rem; bottom: 1.25rem;
  width: min(360px, calc(100vw - 2.5rem));
  background: var(--linen); color: var(--charcoal);
  border: 1px solid var(--line); border-radius: 10px;
  box-shadow: 0 24px 60px -24px rgba(13,13,13,.5);
  padding: 1.5rem 1.4rem 1.5rem;
  transform: translateY(150%); opacity: 0;
  transition: transform .5s cubic-bezier(.2,.8,.2,1), opacity .5s ease;
}
.newsletter.in { transform: none; opacity: 1; }
.newsletter[hidden] { display: none; }
.newsletter-close {
  position: absolute; top: .5rem; right: .6rem; background: none; border: 0;
  font-size: 1.5rem; line-height: 1; color: var(--ink-soft); cursor: pointer; padding: .2rem .45rem;
}
.newsletter-close:hover { color: var(--charcoal); }
.newsletter-eyebrow {
  font-family: var(--sans); font-size: .72rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--accent); margin: 0 0 .5rem;
}
.newsletter h2 { font-size: 1.42rem; margin: 0 0 .5rem; }
.newsletter-lede { font-size: .95rem; color: var(--ink-soft); margin: 0 0 1rem; }
.newsletter-form { display: flex; flex-direction: column; gap: .6rem; }
.newsletter-form input[type="text"], .newsletter-form input[type="email"] {
  font-family: var(--sans); font-size: .95rem; padding: .7rem .8rem;
  border: 1px solid var(--line); border-radius: 4px; background: #fff; color: var(--charcoal);
}
.newsletter-form .btn { text-align: center; cursor: pointer; }
.nl-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.newsletter-consent { font-size: .72rem; color: var(--ink-soft); margin: .5rem 0 0; }
.newsletter-success { font-family: var(--serif); font-size: 1.15rem; color: var(--accent); margin: .3rem 0 0; }
@media (max-width: 520px) {
  .newsletter { left: .75rem; right: .75rem; bottom: .75rem; width: auto; }
}
@media (prefers-reduced-motion: reduce) {
  .newsletter { transition: opacity .3s ease; transform: none; }
}

