/* ==========================================================================
   Knight of Cups — Author theme for Weebly
   Designed for Jeremy E. Kunzinger · Knight of Cups LLC
   Accessibility: skip link, focus states, reduced-motion, sr-only utility.
   ========================================================================== */

:root {
  --ink: #0A1328;
  --ink-soft: #1A2540;
  --ink-muted: #3A4563;
  --parchment: #EDE4D3;
  --parchment-light: #F3EDE0;
  --gold: #C89B5A;
  --gold-deep: #7E5C2B; /* WCAG AA: 5.4:1 on paper (was #9E7838 @ 3.6:1) */
  --gold-bright: #FFE9B8;
  --gold-dark: #5E4014;
  --oxblood: #6B2737;
  --paper: #F7F1E3;
  --forest: #1A3D28;
  --rule: rgba(10, 19, 40, 0.15);
  --rule-gold: rgba(200, 155, 90, 0.4);
}

/* Redefine on html/body too — ensures variables resolve even if Weebly
   injects wrappers that interfere with :root cascade. */
html, body {
  --ink: #0A1328;
  --ink-soft: #1A2540;
  --ink-muted: #3A4563;
  --parchment: #EDE4D3;
  --parchment-light: #F3EDE0;
  --gold: #C89B5A;
  --gold-deep: #7E5C2B; /* WCAG AA: 5.4:1 on paper (was #9E7838 @ 3.6:1) */
  --gold-bright: #FFE9B8;
  --gold-dark: #5E4014;
  --oxblood: #6B2737;
  --paper: #F7F1E3;
  --forest: #1A3D28;
  --rule: rgba(10, 19, 40, 0.15);
  --rule-gold: rgba(200, 155, 90, 0.4);
}

/* WEEBLY ACCENT OVERRIDE SAFETY NET
   Weebly's default stylesheet applies its own colors to <em>, <h1>-<h6>,
   footer elements, etc. These rules reassert our accent colors at higher
   specificity to win the cascade battle. */
/* Large display accents (headings/drop-cap) — pass AA at the 3:1 large-text bar */
.hero-title em,
.section-header h2 em,
.section-header h1 em,
.book-info h3 em,
.author-name .initial,
.method-step h3 em,
.kata-card h3 em,
.wisdom-card .wisdom-name em,
.newsletter h2 em {
  color: #9E7838 !important;
}
/* Small / body gold text on light backgrounds — deepened to #7E5C2B (5.4:1)
   to meet WCAG 2.1 AA for normal-size text (4.5:1). Display accents above keep
   the lighter #9E7838 since they only need 3:1. */
.hero-meta-item .value em,
.imprint-body em,
.mark-text .amp,
.section-numeral,
.section-eyebrow,
.buy-label,
.creed-label,
.era,
.corr-label,
.roman,
.praise-card figcaption {
  color: #7E5C2B !important;
}
/* .kata-label (on dark .kata-card) and .eyebrow (on dark .newsletter) are
   intentionally NOT darkened — gold text on a dark bg must stay BRIGHT for
   contrast. They keep #C89B5A (7.3:1 on #0A1328). */

/* Brighter gold elements (rules, dividers, accents over dark backgrounds) */
.newsletter h2 em,
.kata-card h3 em,
.divider-symbol,
.hero-flourish .ornament,
.footer-base-symbol,
.footer-col h2,
.portrait-caption .role,
.archetype-card .num,
.kata-step .num,
.kata-step .body small {
  color: #C89B5A !important;
}

/* Oxblood accents on light backgrounds */
.author-bio strong,
.archetype-intro strong,
.archetype-card.transformational .num,
.archetype-bucket-label.transformational,
.wisdom-card .transform-text,
.book-info .link,
.press-item .link,
.praise-footnote a {
  color: #6B2737 !important;
}

/* ==========================================================================
   RESET + BASE
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

html,
body {
  background: #ffffff !important;
  background-color: #ffffff !important;
}

body {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Defensive override for Weebly's default wrapper elements — keep them transparent
   so our body background shows through. */
#wrap,
#main-wrap,
.main-wrap,
#wsite-content,
#content,
.wsite-section-wrap,
.container-main,
main {
  background: transparent !important;
}

/* Hero, Works, Imprint sections explicitly white so they match the page,
   in case Weebly injects any background on intermediate wrappers. */
.hero,
.books,
.imprint-note {
  background: #ffffff;
}

/* (Paper-noise overlay removed — was designed to tint cream and looks muddy on white.) */

h1, h2, h3, h4 {
  font-family: "Newsreader", "Cormorant Garamond", serif;
  font-variation-settings: "opsz" 72;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }
ol, ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   ACCESSIBILITY UTILITIES
   ========================================================================== */

/* Screen-reader-only text (visually hidden but read by AT) */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip-to-content link — visible on keyboard focus */
.skip-link {
  position: absolute;
  top: -100px;
  left: 10px;
  padding: 12px 22px;
  background: var(--ink);
  color: var(--parchment);
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 1000;
  border: 2px solid var(--gold);
  transition: top 0.2s;
}
.skip-link:focus {
  top: 10px;
  outline: 3px solid var(--gold-bright);
  outline-offset: 2px;
}

/* Universal focus ring for keyboard users */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Reduced-motion accommodation */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Weebly auto-generated menu — hidden on custom-nav one-page layout, but accessible to screen readers */
.weebly-menu {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* Weebly editable content slot. When empty, still takes no visual space because it has
   no default content; when Weebly owner drops elements in, they inherit prose styling. */
.weebly-content-region {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.weebly-content-region > .container:empty {
  display: none;
}
.weebly-content-region:empty {
  display: none;
}

/* ==========================================================================
   CHALICE EMBLEM (image + animated shimmer mask)
   ========================================================================== */

.emblem {
  position: relative;
  display: inline-block;
  aspect-ratio: 372 / 585;
  flex-shrink: 0;
}
.emblem::before,
.emblem::after {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
}
.emblem::before {
  background-image: url("chalice.png");
  background-size: contain;
  filter: saturate(0.5) brightness(0.92) contrast(0.94);
}
.emblem::after {
  -webkit-mask-image: url("chalice.png");
          mask-image: url("chalice.png");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-image: linear-gradient(112deg,
    transparent 30%,
    rgba(255, 240, 210, 0.08) 44%,
    rgba(255, 248, 220, 0.32) 50%,
    rgba(255, 240, 210, 0.08) 56%,
    transparent 70%);
  background-size: 230% 100%;
  background-position: 130% 0;
  animation: chaliceShimmer 4.5s linear infinite;
  mix-blend-mode: screen;
  pointer-events: none;
}
@keyframes chaliceShimmer {
  from { background-position: 130% 0; }
  to   { background-position: -130% 0; }
}

/* ==========================================================================
   TEXT SHIMMER
   ========================================================================== */

/* Default state: solid gold. If browser supports background-clip: text,
   the @supports block below upgrades to the animated shimmer. This ensures
   text is NEVER invisible, even if Weebly or another stylesheet strips the
   shimmer properties. !important forces over Weebly's heading colors. */
.shimmer-gold {
  color: #9E7838 !important;
}
.shimmer-gold.bright {
  color: #C89B5A !important;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .shimmer-gold {
    background-image: linear-gradient(110deg,
      #9E7838 30%,
      #FFE9B8 50%,
      #9E7838 70%);
    background-size: 200% 100%;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent !important;
    animation: shimmerText 3.5s linear infinite;
  }
  .shimmer-gold.bright {
    background-image: linear-gradient(110deg,
      #C89B5A 30%,
      #FFF3D9 50%,
      #C89B5A 70%);
    background-size: 200% 100%;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent !important;
  }
}
@keyframes shimmerText {
  from { background-position: 100% 0; }
  to   { background-position: -100% 0; }
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.site-nav {
  position: sticky;
  top: 0;
  background: rgba(247, 241, 227, 0.9);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  border-bottom: 1px solid var(--rule);
  z-index: 100;
  padding: 14px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.mark {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Newsreader", serif;
  font-variation-settings: "opsz" 72;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.mark .emblem { height: 72px; }
.mark-text { display: flex; flex-direction: column; line-height: 1; }
.mark-text .line1 { display: flex; align-items: baseline; gap: 6px; }
.mark-text .amp {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-variation-settings: "opsz" 72;
  font-weight: 400;
  color: #9E7838 !important;
}
.mark-text small {
  font-family: "Cormorant Garamond", serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--ink-muted);
  margin-top: 5px;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.3s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold-deep); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s;
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after { transform: scaleX(1); }

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  padding: 140px 0 160px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero-inner { max-width: 880px; margin: 0 auto; position: relative; }
.hero-title {
  font-family: "Newsreader", serif;
  font-size: clamp(68px, 10.5vw, 148px);
  font-weight: 300;
  font-variation-settings: "opsz" 72, "wght" 320;
  letter-spacing: -0.035em;
  line-height: 0.96;
  margin-bottom: 26px;
  color: var(--ink);
}
.hero-title em {
  font-style: italic;
  font-variation-settings: "opsz" 72, "wght" 320;
  color: #9E7838 !important;
}
.hero-byline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin: 0 auto 50px;
  max-width: 720px;
}
.hero-byline .byline-rule { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.hero-byline .byline-name {
  /* Target roughly 1/5 of the hero-title size; never more than 1/4. */
  font-family: "Newsreader", serif;
  font-variation-settings: "opsz" 72, "wght" 500;
  font-size: clamp(18px, 2.2vw, 30px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  line-height: 1;
  font-weight: 500;
}
.hero-flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto 42px;
  width: 320px;
}
.hero-flourish .rule { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.hero-flourish .ornament {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-size: 22px;
  color: var(--gold-deep);
}
.hero-tagline {
  font-size: 22px;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.55;
  font-weight: 400;
  font-style: italic;
}
.hero-tagline em {
  font-style: normal;
  font-family: "Newsreader", serif;
  font-variation-settings: "opsz" 72, "wght" 460;
  color: var(--ink);
}
.hero-meta {
  margin-top: 72px;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.hero-meta-item { display: flex; flex-direction: column; gap: 6px; text-align: center; }
.hero-meta-item .label {
  font-family: "Cormorant Garamond", serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.hero-meta-item .value {
  font-family: "Newsreader", serif;
  font-variation-settings: "opsz" 72;
  font-size: 19px;
  color: var(--ink);
}
.hero-meta-item .value em {
  font-style: italic;
  font-variation-settings: "opsz" 72;
}
.hero-meta-item .llc { color: var(--gold-deep); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   DIVIDERS + SECTION HEADERS
   ========================================================================== */

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 60px 0;
  color: var(--gold);
}
.divider-line {
  flex: 1;
  height: 1px;
  max-width: 300px;
  background: linear-gradient(90deg, transparent, var(--rule-gold), transparent);
}
.divider-symbol {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-size: 22px;
  color: var(--gold-deep);
  letter-spacing: 0.1em;
}

.section-header {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 60px;
}
.section-header.centered {
  justify-content: center;
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.section-numeral {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-size: 26px;
  letter-spacing: 0.08em;
  font-weight: 400;
}
.section-header h2,
.section-header h1 {
  font-size: clamp(40px, 5vw, 68px);
  font-variation-settings: "opsz" 72, "wght" 360;
  letter-spacing: -0.02em;
  line-height: 1;
}
.section-header h2 em,
.section-header h1 em {
  font-style: italic;
  font-variation-settings: "opsz" 72, "wght" 330;
  color: var(--gold-deep);
}
.section-eyebrow {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 8px;
}
.section-lede {
  font-family: "Newsreader", serif;
  font-variation-settings: "opsz" 72, "wght" 340;
  font-size: clamp(21px, 2.2vw, 26px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 780px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-lede em {
  font-style: italic;
  font-variation-settings: "opsz" 72, "wght" 340;
  color: var(--ink);
}

/* ==========================================================================
   BOOKS
   ========================================================================== */

.books { padding: 40px 0 80px; }
.books-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  align-items: start;
}
.book { display: flex; flex-direction: column; }
.book-cover {
  /* All three book covers (Ledger SVG 600x900, Essays JPG 900x1440 cropped, Engine SVG 720x1080)
     render at the same 2:3 container so they sit identically in the works row. */
  aspect-ratio: 2 / 3;
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(10,19,40,0.1),
    0 12px 28px -6px rgba(10,19,40,0.3),
    0 30px 60px -20px rgba(10,19,40,0.25);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s;
  transform-origin: center bottom;
  background: var(--ink);
}
.book-cover img { width: 100%; height: 100%; object-fit: cover; }

/* Book covers served as CSS backgrounds — Weebly resolves these reliably
   because paths are relative to main_style.css which is bundled with the images. */
.book-cover-ledger {
  background-image: url("ledger-of-liberty.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.book-cover-field-manual {
  background-image: url("field-manual.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.book-cover-engine {
  background-image: url("engine-of-trust-vol1.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Trilogy preview thumbnails shown beneath the Book 3 card */
.trilogy-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 14px 0 4px;
  align-items: end;
}
.trilogy-thumb {
  position: relative;
  aspect-ratio: 2 / 3;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(10,19,40,0.18), 0 1px 2px rgba(10,19,40,0.10);
  filter: saturate(0.95);
  transition: transform 0.35s ease, filter 0.35s ease, box-shadow 0.35s ease;
}
.trilogy-thumb:hover {
  transform: translateY(-3px);
  filter: saturate(1);
  box-shadow: 0 10px 22px rgba(10,19,40,0.28), 0 1px 2px rgba(10,19,40,0.12);
}
.trilogy-thumb-vol1 { background-image: url("engine-of-trust-vol1.svg"); }
.trilogy-thumb-vol2 { background-image: url("engine-of-trust-vol2.svg"); }
.trilogy-thumb-vol3 { background-image: url("engine-of-trust-vol3.svg"); }
.trilogy-thumb .trilogy-label {
  position: absolute;
  bottom: -22px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--font-display, "Newsreader", serif);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink, #0A1328);
  opacity: 0.7;
}
.trilogy-strip { margin-bottom: 28px; }
.book-cover:hover {
  transform: translateY(-10px) rotateZ(-0.4deg);
  box-shadow:
    0 1px 2px rgba(10,19,40,0.15),
    0 22px 38px -6px rgba(10,19,40,0.38),
    0 50px 80px -20px rgba(10,19,40,0.33);
}
.book-cover::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: linear-gradient(90deg, rgba(0,0,0,0.35), rgba(0,0,0,0) 70%);
  z-index: 3;
  pointer-events: none;
}
.book-cover::after {
  content: "";
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.1), rgba(0,0,0,0.15));
  z-index: 3;
  pointer-events: none;
}
.book-cover .sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 35%,
    rgba(255, 233, 184, 0.18) 48%,
    rgba(255, 233, 184, 0.32) 50%,
    rgba(255, 233, 184, 0.18) 52%,
    transparent 65%
  );
  background-size: 220% 100%;
  background-position: 150% 0;
  transition: background-position 1.3s ease;
  pointer-events: none;
  z-index: 4;
  mix-blend-mode: screen;
}
.book-cover:hover .sheen { background-position: -50% 0; }

.book-info { margin-top: 28px; }
.book-info .category {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
.book-info h3 {
  font-size: 28px;
  font-variation-settings: "opsz" 72, "wght" 400;
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin-bottom: 8px;
}
.book-info h3 em {
  font-style: italic;
  font-variation-settings: "opsz" 72, "wght" 360;
}
.book-info .book-subtitle {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-variation-settings: "opsz" 72, "wght" 360;
  font-size: 17px;
  color: var(--gold-deep);
  margin-bottom: 12px;
  line-height: 1.3;
}
.book-info .meta {
  display: flex;
  gap: 16px;
  font-size: 14px;
  font-style: italic;
  color: var(--ink-muted);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.book-info .meta span + span::before {
  content: "·";
  margin-right: 16px;
  color: var(--gold);
}
.book-info p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.book-info .link {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--oxblood);
  font-weight: 500;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
  display: inline-block;
}
.book-info .link:hover { color: var(--gold-deep); border-color: var(--oxblood); }

/* ==========================================================================
   PULLQUOTES
   ========================================================================== */

.pullquote-hero {
  margin: 80px auto;
  max-width: 840px;
  text-align: center;
  position: relative;
  padding: 0 40px;
}
.pullquote-spaced { margin: 80px auto 0; }
.pullquote-section-opener { margin: 40px auto 60px; }
.pullquote-section-opener blockquote { font-size: 30px; }
.pullquote-hero::before {
  content: "\201C";
  display: block;
  font-family: "Newsreader", serif;
  font-style: italic;
  font-size: 120px;
  color: var(--gold);
  opacity: 0.35;
  line-height: 0.5;
  margin-bottom: 30px;
}
.pullquote-hero blockquote {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-variation-settings: "opsz" 72, "wght" 330;
  font-size: clamp(26px, 3.5vw, 40px);
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 28px;
}
.pullquote-hero figcaption {
  display: flex;
  justify-content: center;
}
.pullquote-hero cite {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Cormorant Garamond", serif;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.pullquote-hero cite::before,
.pullquote-hero cite::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

/* ==========================================================================
   THE METHOD
   ========================================================================== */

.method-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #FAF5E8 0%, #F3EBD5 100%);
  border-top: 1px solid var(--rule-gold);
  border-bottom: 1px solid var(--rule-gold);
}
.method-chain {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 60px auto;
  position: relative;
  list-style: none;
}
.method-step {
  padding: 40px 32px;
  position: relative;
  text-align: center;
}
.method-step:not(:last-child)::after {
  content: "\2192";
  position: absolute;
  right: -12px;
  top: 60px;
  font-family: "Newsreader", serif;
  font-size: 24px;
  color: var(--gold);
  opacity: 0.5;
}
.method-step .era {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
}
.method-step h3 {
  font-size: 32px;
  font-variation-settings: "opsz" 72, "wght" 380;
  margin-bottom: 8px;
}
.method-step h3 em {
  font-style: italic;
  font-variation-settings: "opsz" 72, "wght" 340;
  color: var(--gold-deep);
}
.method-step .place {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-variation-settings: "opsz" 72, "wght" 360;
  font-size: 15px;
  color: var(--ink-muted);
  margin-bottom: 20px;
}
.method-step .desc {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.method-creed {
  margin: 80px auto 40px;
  max-width: 740px;
  padding: 48px 56px;
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--rule-gold);
  position: relative;
}
.method-creed::before,
.method-creed::after {
  content: "\2766";
  position: absolute;
  font-family: "Newsreader", serif;
  font-style: italic;
  color: var(--gold);
  font-size: 22px;
  padding: 0 14px;
  background: var(--parchment-light);
}
.method-creed::before { top: -14px; left: 40px; }
.method-creed::after { bottom: -14px; right: 40px; }
.method-creed .creed-label {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  text-align: center;
  margin-bottom: 20px;
}
.method-creed ul { text-align: center; }
.method-creed li {
  font-family: "Newsreader", serif;
  font-variation-settings: "opsz" 72, "wght" 380;
  font-size: 22px;
  line-height: 1.6;
  color: var(--ink);
}
.method-creed li em {
  font-style: italic;
  font-variation-settings: "opsz" 72, "wght" 340;
  color: var(--gold-deep);
}

.kata-card {
  background: #0A1328 !important;
  color: #EDE4D3 !important;
  padding: 56px 60px;
  border: 1px solid var(--gold);
  position: relative;
  margin: 60px auto;
  max-width: 840px;
}
.kata-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(200,155,90,0.25);
  pointer-events: none;
}
.kata-card .kata-label {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.kata-card h3 {
  font-size: 36px;
  font-variation-settings: "opsz" 72, "wght" 380;
  margin-bottom: 8px;
  color: #EDE4D3 !important;
}
.kata-card h3 em {
  font-style: italic;
  font-variation-settings: "opsz" 72, "wght" 340;
  color: var(--gold);
}
.kata-card .kata-sub {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-size: 16px;
  color: rgba(237,228,211,0.7);
  margin-bottom: 32px;
}
.kata-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 36px;
  list-style: none;
}
.kata-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}
.kata-step .num {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-variation-settings: "opsz" 72, "wght" 400;
  font-size: 34px;
  color: var(--gold);
  line-height: 1;
}
.kata-step .body strong {
  display: block;
  font-family: "Newsreader", serif;
  font-variation-settings: "opsz" 72, "wght" 500;
  font-size: 17px;
  color: #EDE4D3 !important;
  margin-bottom: 6px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.kata-step .body small {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.kata-step .body p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(237,228,211,0.85);
}
.kata-footnote {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(200,155,90,0.2);
  font-family: "Newsreader", serif;
  font-style: italic;
  font-size: 14px;
  color: rgba(237,228,211,0.6);
  text-align: center;
}

/* ==========================================================================
   ARCHETYPES
   ========================================================================== */

.archetypes-section { padding: 120px 0 100px; background: #ffffff; }
.archetype-intro {
  max-width: 780px;
  margin: 0 auto 60px;
  font-size: 20px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.archetype-intro p { margin-bottom: 1em; }
.archetype-intro em {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-variation-settings: "opsz" 72;
  color: var(--ink);
}
.archetype-intro strong {
  font-family: "Newsreader", serif;
  font-variation-settings: "opsz" 72, "wght" 500;
  color: var(--oxblood);
  font-weight: 500;
}

.archetype-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}
.archetype-card {
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--rule-gold);
  padding: 28px 26px;
  position: relative;
  transition: transform 0.4s, box-shadow 0.4s, background 0.4s;
}
.archetype-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px -8px rgba(10,19,40,0.18);
  background: rgba(255,255,255,0.75);
}
.archetype-card .num {
  position: absolute;
  top: 22px;
  right: 22px;
  font-family: "Newsreader", serif;
  font-style: italic;
  font-variation-settings: "opsz" 72, "wght" 400;
  font-size: 38px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.65;
}
.archetype-card .principle {
  font-family: "Newsreader", serif;
  font-variation-settings: "opsz" 72, "wght" 440;
  font-size: 22px;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 14px;
  padding-right: 40px;
}
.archetype-card .correspondences {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.archetype-card .corr-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 14px;
}
.archetype-card .corr-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  min-width: 56px;
}
.archetype-card .corr-value {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-variation-settings: "opsz" 72, "wght" 400;
  font-size: 15px;
  color: var(--ink-soft);
}
.archetype-card .carries {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-muted);
  border-top: 1px dotted var(--rule);
  padding-top: 14px;
  margin-top: 8px;
}
.archetype-card .carries em {
  font-style: italic;
  color: var(--ink-soft);
}
.archetype-card.transformational { border-color: rgba(107, 39, 55, 0.35); }
.archetype-card.transformational .num { color: var(--oxblood); opacity: 0.5; }

.archetype-bucket-label {
  grid-column: 1 / -1;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-deep);
  text-align: center;
  margin: 40px 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-weight: 400;
}
.archetype-bucket-label::before,
.archetype-bucket-label::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: var(--rule-gold);
}
.archetype-bucket-label.first { margin-top: 0; }
.archetype-bucket-label.transformational { color: var(--oxblood); }
.archetype-bucket-label.transformational::before,
.archetype-bucket-label.transformational::after {
  background: rgba(107, 39, 55, 0.35);
}

.archetype-coda {
  max-width: 780px;
  margin: 60px auto 0;
  text-align: center;
  font-family: "Newsreader", serif;
  font-style: italic;
  font-variation-settings: "opsz" 72, "wght" 360;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
  padding: 30px 40px;
  border-top: 1px solid var(--rule-gold);
  border-bottom: 1px solid var(--rule-gold);
}
.archetype-coda strong {
  font-weight: 500;
  color: var(--gold-deep);
}

/* ==========================================================================
   WISDOM PARALLELS
   ========================================================================== */

.wisdom-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #F3EBD5 0%, #FAF5E8 100%);
  border-top: 1px solid var(--rule-gold);
  border-bottom: 1px solid var(--rule-gold);
}
.wisdom-intro {
  max-width: 780px;
  margin: 0 auto 60px;
  font-size: 20px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.wisdom-intro p { margin-bottom: 1em; }
.wisdom-intro em {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-variation-settings: "opsz" 72;
  color: var(--ink);
}
.wisdom-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--rule-gold);
  border: 1px solid var(--rule-gold);
}
.wisdom-card {
  background: #ffffff;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 360px;
}
.wisdom-card .roman {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-variation-settings: "opsz" 72, "wght" 400;
  font-size: 22px;
  color: var(--gold-deep);
  margin-bottom: 16px;
}
.wisdom-card .wisdom-name {
  font-family: "Newsreader", serif;
  font-variation-settings: "opsz" 72, "wght" 440;
  font-size: 21px;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.wisdom-card .wisdom-name em {
  font-style: italic;
  font-variation-settings: "opsz" 72, "wght" 340;
  color: var(--gold-deep);
}
.wisdom-card .transform {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 14px;
  color: var(--ink-muted);
  margin-bottom: 4px;
}
.wisdom-card .transform-text {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-variation-settings: "opsz" 72, "wght" 420;
  font-size: 17px;
  color: var(--oxblood);
  margin-bottom: 20px;
  line-height: 1.3;
}
.wisdom-card .transform-text .arrow { color: var(--gold); margin: 0 4px; }
.wisdom-card .virtues-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 6px;
  font-weight: 500;
}
.wisdom-card .virtues {
  font-family: "Newsreader", serif;
  font-variation-settings: "opsz" 72, "wght" 420;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 18px;
  line-height: 1.35;
}
.wisdom-card .wisdom-body {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dotted var(--rule);
}

/* ==========================================================================
   AUTHOR
   ========================================================================== */

.author-section {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
  border-top: 1px solid var(--rule-gold);
  border-bottom: 1px solid var(--rule-gold);
}
.author-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 100px;
  align-items: start;
}
.author-portrait { position: sticky; top: 120px; }
.portrait-frame {
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #0C1A36 0%, #1A2540 100%) !important;
  border: 1px solid #C89B5A;
  box-shadow:
    0 1px 2px rgba(10,19,40,0.2),
    0 20px 40px -10px rgba(10,19,40,0.35),
    inset 0 0 0 8px #ffffff,
    inset 0 0 0 9px #C89B5A;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(200,155,90,0.3);
  pointer-events: none;
}
.portrait-monogram {
  font-family: "Newsreader", serif;
  font-variation-settings: "opsz" 72, "wght" 320;
  font-style: italic;
  font-size: 110px;
  line-height: 1;
  position: relative;
  letter-spacing: -0.01em;
  color: #C89B5A !important;
}
.portrait-monogram::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: #C89B5A;
  margin: 20px auto 0;
}
.portrait-caption {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 15px;
  color: #EDE4D3 !important;
  margin-top: 20px;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
.portrait-caption .role {
  display: block;
  font-size: 11px;
  color: #C89B5A !important;
  margin-top: 6px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.author-works {
  margin-top: 40px;
  padding: 28px;
  background: rgba(237,228,211,0.6);
  border: 1px solid var(--rule-gold);
}
.author-works h3 {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
  font-weight: 500;
}
.author-works ol { counter-reset: works; }
.author-works li {
  counter-increment: works;
  padding: 10px 0;
  border-bottom: 1px dotted var(--rule);
  display: flex;
  gap: 12px;
  flex-direction: column;
  font-size: 17px;
  position: relative;
  padding-left: 36px;
}
.author-works li:last-child { border-bottom: none; }
.author-works li::before {
  content: counter(works, upper-roman) ".";
  position: absolute;
  left: 0; top: 10px;
  font-family: "Newsreader", serif;
  font-style: italic;
  color: var(--gold-deep);
}
.author-works li em { font-style: italic; color: var(--ink); }
.author-works li small {
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.author-body .section-header { margin-bottom: 40px; }
.author-name-block { margin-bottom: 50px; }
.author-name {
  font-family: "Newsreader", serif;
  font-variation-settings: "opsz" 72, "wght" 380;
  font-size: clamp(52px, 6vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.author-name .initial {
  font-style: italic;
  font-variation-settings: "opsz" 72, "wght" 340;
  color: var(--gold-deep);
}
.author-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0;
  list-style: none;
}
.tag {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  font-style: italic;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  padding: 5px 14px;
  border: 1px solid var(--rule-gold);
  background: rgba(255,255,255,0.3);
}
.author-bio p {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 1.2em;
  color: var(--ink-soft);
}
.author-bio p:first-of-type::first-letter {
  font-family: "Newsreader", serif;
  font-variation-settings: "opsz" 72, "wght" 420;
  font-size: 82px;
  line-height: 0.85;
  float: left;
  padding: 6px 14px 0 0;
  color: var(--gold-deep);
  font-style: italic;
}
.author-bio strong {
  font-weight: 500;
  color: var(--oxblood);
  font-family: "Newsreader", serif;
  font-variation-settings: "opsz" 72, "wght" 520;
}
.author-bio em {
  font-style: italic;
  font-family: "Newsreader", serif;
  font-variation-settings: "opsz" 72;
  color: var(--ink);
}

.pullquote {
  margin: 50px 0;
  padding: 40px 0 40px 40px;
  border-left: 2px solid var(--gold);
  position: relative;
}
.pullquote::before {
  content: "\201C";
  position: absolute;
  left: 20px;
  top: -10px;
  font-family: "Newsreader", serif;
  font-style: italic;
  font-size: 90px;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
}
.pullquote blockquote {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-variation-settings: "opsz" 72, "wght" 360;
  font-size: 26px;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.pullquote cite {
  display: block;
  margin-top: 20px;
  font-family: "Cormorant Garamond", serif;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.pullquote cite::before { content: "— "; }

.author-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 50px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
}
.detail-item .label {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 8px;
}
.detail-item .value {
  font-family: "Newsreader", serif;
  font-variation-settings: "opsz" 72;
  font-size: 20px;
  color: var(--ink);
  line-height: 1.3;
}
.detail-item .value em {
  font-style: italic;
  font-variation-settings: "opsz" 72;
  color: var(--ink-soft);
}

/* ==========================================================================
   IMPRINT
   ========================================================================== */

.imprint-note { padding: 120px 0; text-align: center; }
.imprint-note .emblem { height: 140px; margin: 0 auto 30px; display: block; }
.imprint-body {
  max-width: 680px;
  margin: 0 auto;
  font-size: 21px;
  line-height: 1.6;
  color: var(--ink-soft);
  font-style: italic;
}
.imprint-body p { margin-bottom: 0.7em; }
.imprint-body em {
  font-family: "Newsreader", serif;
  font-variation-settings: "opsz" 72, "wght" 420;
  color: var(--gold-deep);
}

/* ==========================================================================
   BUY LINKS (retailer buttons + waitlist form on book cards)
   ========================================================================== */

.buy-links {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}
.buy-label {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
  font-weight: 500;
}
.buy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}
.buy-btn {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  text-align: center;
  padding: 10px 12px;
  border: 1px solid var(--rule-gold);
  background: rgba(255,255,255,0.5);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.buy-btn:hover {
  background: var(--ink);
  color: var(--parchment);
  border-color: var(--ink);
}
/* Primary buy button — used for the direct-sale eBook CTA.
   Spans the full row above the affiliate paperback buttons. */
.buy-btn-primary {
  grid-column: 1 / -1;
  background: var(--gold, #C89B5A);
  color: #fff;
  border-color: var(--gold, #C89B5A);
  font-weight: 600;
  letter-spacing: 0.16em;
}
.buy-btn-primary:hover {
  background: var(--ink);
  color: var(--gold, #C89B5A);
  border-color: var(--ink);
}
/* Coming-soon buttons — visually muted and not clickable */
.buy-btn-coming-soon, .buy-btn[aria-disabled="true"] {
  opacity: 0.55;
  font-style: italic;
  cursor: not-allowed;
  pointer-events: none;
  background: transparent;
  color: var(--ink);
  border-color: var(--rule-gold);
}

/* Contact CTA — replaces the in-page form. Links to the Weebly Contact page
   which has a native Weebly form widget handling delivery. */
.contact-cta {
  text-align: center;
  margin: 48px auto 32px;
  max-width: 580px;
}
.contact-cta-button {
  display: inline-block;
  padding: 20px 44px;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--ink, #0A1328);
  color: var(--parchment, #FAF7F0);
  text-decoration: none;
  border: 1px solid var(--ink, #0A1328);
  transition: background 0.2s, color 0.2s;
}
.contact-cta-button:hover,
.contact-cta-button:focus {
  background: var(--gold-deep, #8C6A3D);
  border-color: var(--gold-deep, #8C6A3D);
  color: var(--parchment, #FAF7F0);
  outline: none;
}
.contact-cta-note {
  margin-top: 22px;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-style: italic;
  color: var(--ink, #0A1328);
  opacity: 0.75;
  line-height: 1.6;
}
.contact-cta-note a {
  color: var(--gold-deep, #8C6A3D);
  text-decoration: underline;
}
.secondary-link {
  font-size: 12px !important;
  letter-spacing: 0.2em !important;
  display: inline-block;
  margin-top: 4px;
}
.waitlist-form {
  display: flex;
  border: 1px solid var(--rule-gold);
  background: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.waitlist-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--ink);
  padding: 11px 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  font-style: italic;
  outline: none;
  letter-spacing: 0.02em;
  min-width: 0;
}
.waitlist-form input::placeholder { color: var(--ink-muted); opacity: 0.6; }
.waitlist-form input:focus { background: rgba(255,255,255,0.8); }
.waitlist-form button {
  background: var(--ink);
  color: var(--parchment);
  border: none;
  padding: 0 18px;
  font-family: "Newsreader", serif;
  font-variation-settings: "opsz" 72, "wght" 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}
.waitlist-form button:hover:not(:disabled) { background: var(--gold-deep); }
.waitlist-form button:disabled { cursor: default; opacity: 0.85; }

/* ==========================================================================
   PRAISE
   ========================================================================== */

.praise-section {
  padding: 80px 0 100px;
  background: #ffffff;
  border-top: 1px solid var(--rule-gold);
  border-bottom: 1px solid var(--rule-gold);
}
.praise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.praise-card {
  text-align: center;
  padding: 32px 28px;
  position: relative;
}
.praise-card::before {
  content: "\201C";
  display: block;
  font-family: "Newsreader", serif;
  font-style: italic;
  font-size: 70px;
  color: var(--gold);
  opacity: 0.4;
  line-height: 0.5;
  margin-bottom: 20px;
}
.praise-card blockquote {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-variation-settings: "opsz" 72, "wght" 340;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.praise-card figcaption {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.praise-footnote {
  text-align: center;
  margin-top: 60px;
  font-family: "Newsreader", serif;
  font-style: italic;
  font-size: 15px;
  color: var(--ink-muted);
}
.praise-footnote a {
  color: var(--oxblood);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
}

/* ==========================================================================
   SPEAKING
   ========================================================================== */

.speaking-section {
  padding: 120px 0;
  background: #ffffff;
}
.speaking-topics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto 60px;
}
.speaking-topic {
  padding: 32px 28px;
  background: rgba(247,241,227,0.4);
  border: 1px solid var(--rule-gold);
  border-top: 3px solid var(--gold);
}
.speaking-topic h3 {
  font-family: "Newsreader", serif;
  font-variation-settings: "opsz" 72, "wght" 440;
  font-size: 22px;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 14px;
}
.speaking-topic p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
}
/* When the speaking section is collapsed to just a CTA (no heading, no topics),
   tighten the vertical padding so it reads as an inline callout, not a full section. */
.speaking-section.speaking-cta-only { padding: 60px 0; }

/* === TEASER TRAILER SECTION ===
   A 16:9 video for the Ledger of Liberty teaser, served as self-hosted MP4
   with a poster frame. Width capped so it doesn't feel cinematic-overwhelming
   on huge displays. */
.teaser-section {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10,19,40,0.02) 50%, transparent 100%);
}
.teaser-title {
  font-family: "Newsreader", serif;
  font-weight: 400;
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 8px 0 0;
  color: var(--ink, #0A1328);
}
.teaser-title em {
  font-style: italic;
  color: var(--gold-deep, #8C6A3D);
}
.teaser-figure {
  margin: 48px auto 0;
  max-width: 960px;
}
.teaser-video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0A1328;
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 2px 4px rgba(10,19,40,0.12),
    0 24px 48px -8px rgba(10,19,40,0.32),
    0 60px 96px -24px rgba(10,19,40,0.28);
}
.teaser-video,
iframe.teaser-video {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: cover;
  background: #0A1328;
}
.teaser-caption {
  text-align: center;
  margin: 22px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 16px;
  color: var(--ink, #0A1328);
  opacity: 0.75;
  letter-spacing: 0.02em;
}
@media (max-width: 820px) {
  .teaser-section { padding: 72px 0; }
  .teaser-title { font-size: 30px; }
  .teaser-figure { margin-top: 32px; }
}
@media (max-width: 540px) {
  .teaser-title { font-size: 24px; }
  .teaser-video-wrap { border-radius: 2px; }
}
@media print {
  .teaser-section { display: none; }
}
.speaking-cta {
  text-align: center;
  margin-top: 40px;
}
.speaking-cta p {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.button-primary {
  display: inline-block;
  padding: 16px 38px;
  background: var(--ink);
  color: var(--parchment);
  font-family: "Newsreader", serif;
  font-variation-settings: "opsz" 72, "wght" 500;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  cursor: pointer;
  font-weight: 500;
}
.button-primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
}

/* ==========================================================================
   PRESS KIT
   ========================================================================== */

.press-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #FAF5E8 0%, #F3EBD5 100%);
  border-top: 1px solid var(--rule-gold);
  border-bottom: 1px solid var(--rule-gold);
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 50px;
}
.press-item {
  background: #ffffff;
  padding: 32px 30px;
  border: 1px solid var(--rule-gold);
  transition: transform 0.4s, box-shadow 0.4s;
}
.press-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px -10px rgba(10,19,40,0.18);
}
.press-item h3 {
  font-family: "Newsreader", serif;
  font-variation-settings: "opsz" 72, "wght" 440;
  font-size: 22px;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.press-item h3 span {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
}
.press-item p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.press-item em {
  font-style: italic;
  color: var(--ink);
}
.press-item .link {
  font-family: "Cormorant Garamond", serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--oxblood);
  font-weight: 500;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  display: inline-block;
}
.press-contact {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 24px 32px;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--rule-gold);
}
.press-contact p {
  font-family: "Newsreader", serif;
  font-size: 17px;
  color: var(--ink);
}
.press-contact strong {
  font-weight: 500;
  color: var(--ink);
}
.press-contact a {
  color: var(--oxblood);
  font-style: italic;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */

.contact-section {
  padding: 120px 0;
  background: #ffffff;
}
.contact-form {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-row label {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
}
.form-row label .optional {
  font-style: italic;
  color: var(--ink-muted);
  letter-spacing: 0.12em;
  text-transform: none;
  font-weight: 400;
}
.form-row input,
.form-row select,
.form-row textarea {
  background: rgba(247,241,227,0.3);
  border: 1px solid var(--rule);
  padding: 14px 16px;
  font-family: "Newsreader", serif;
  font-variation-settings: "opsz" 72;
  font-size: 17px;
  color: var(--ink);
  transition: border-color 0.25s, background 0.25s;
  font-family: "Cormorant Garamond", Georgia, serif;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #ffffff;
}
.form-row textarea {
  resize: vertical;
  min-height: 120px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  line-height: 1.55;
}
.contact-form button[type="submit"] {
  align-self: flex-start;
  margin-top: 8px;
}
.contact-form button:disabled {
  opacity: 0.75;
  cursor: default;
  background: var(--gold-deep);
}

/* ==========================================================================
   BLOG
   ========================================================================== */

.blog-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #FAF5E8 0%, #F3EBD5 100%);
  border-top: 1px solid var(--rule-gold);
  border-bottom: 1px solid var(--rule-gold);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
.blog-card {
  background: #ffffff;
  padding: 32px 28px 30px;
  border: 1px solid var(--rule-gold);
  transition: transform 0.4s, box-shadow 0.4s;
  position: relative;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px -10px rgba(10,19,40,0.15);
}
.blog-card.blog-placeholder {
  opacity: 0.75;
}
.blog-date {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
  font-weight: 500;
}
.blog-heading {
  font-family: "Newsreader", serif;
  font-variation-settings: "opsz" 72, "wght" 420;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  color: var(--ink);
}
.blog-heading em {
  font-style: italic;
  font-variation-settings: "opsz" 72, "wght" 360;
  color: var(--gold-deep);
}
.blog-excerpt {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.blog-readmore {
  font-family: "Cormorant Garamond", serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--oxblood);
  font-weight: 500;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  display: inline-block;
}

/* ==========================================================================
   NEWSLETTER
   ========================================================================== */

.newsletter {
  background: #0A1328 !important;
  color: #EDE4D3 !important;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(200,155,90,0.15), transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(107,39,55,0.2), transparent 50%);
  pointer-events: none;
}
.newsletter-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.newsletter .eyebrow {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.newsletter h2 {
  font-size: clamp(40px, 5vw, 64px);
  font-variation-settings: "opsz" 72, "wght" 360;
  letter-spacing: -0.02em;
  color: #EDE4D3 !important;
  margin-bottom: 18px;
  line-height: 1;
}
.newsletter h2 em {
  font-style: italic;
  font-variation-settings: "opsz" 72, "wght" 320;
  color: #C89B5A !important;
}
.newsletter-copy {
  font-size: 19px;
  color: rgba(237,228,211,0.85) !important;
  margin-bottom: 40px;
  font-style: italic;
}
.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid var(--gold);
  background: rgba(255,255,255,0.04);
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--parchment);
  padding: 16px 22px;
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-style: italic;
  outline: none;
  letter-spacing: 0.02em;
}
.newsletter-form input::placeholder { color: rgba(237,228,211,0.4); font-style: italic; }
.newsletter-form button {
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 0 32px;
  font-family: "Newsreader", serif;
  font-variation-settings: "opsz" 72, "wght" 520;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}
.newsletter-form button:hover { background: var(--parchment); }

/* ==========================================================================
   FOOTER
   ========================================================================== */

footer {
  background: #0A1328 !important;
  color: rgba(237,228,211,0.55) !important;
  padding: 60px 0 40px;
  border-top: 1px solid rgba(200,155,90,0.2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-col h2 {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #C89B5A !important;
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { padding: 5px 0; font-size: 15px; color: rgba(237,228,211,0.75) !important; }
.footer-col a { transition: color 0.3s; color: rgba(237,228,211,0.75) !important; }
.footer-col a:hover { color: #C89B5A !important; }
.footer-brand { font-size: 14px; line-height: 1.7; max-width: 320px; color: rgba(237,228,211,0.65) !important; }
.footer-brand p { color: rgba(237,228,211,0.65) !important; }
.footer-mark {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  color: #EDE4D3 !important;
}
.footer-mark .emblem { height: 54px; }
.footer-mark-text {
  font-family: "Newsreader", serif;
  font-variation-settings: "opsz" 72;
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}
.footer-mark-text small {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(237,228,211,0.5);
  margin-top: 3px;
}
.footer-base {
  border-top: 1px solid rgba(200,155,90,0.15);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 13px;
  color: rgba(237,228,211,0.35);
}
.footer-base-symbol { color: var(--gold); letter-spacing: 0.4em; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1100px) {
  .archetype-grid { grid-template-columns: repeat(2, 1fr); }
  .wisdom-grid { grid-template-columns: repeat(2, 1fr); }
  .wisdom-card { min-height: auto; }
}

@media (max-width: 960px) {
  .container { padding: 0 24px; }
  .site-nav { padding: 10px 0; }
  .nav-links { gap: 12px; }
  .nav-links a { font-size: 11px; letter-spacing: 0.1em; }
  .mark .emblem { height: 52px; }
  .mark { font-size: 17px; }
  .mark-text small { font-size: 9px; letter-spacing: 0.22em; }
  .hero { padding: 80px 0 90px; }
  .books-grid { grid-template-columns: 1fr; gap: 60px; max-width: 420px; margin: 0 auto; }
  .author-grid { grid-template-columns: 1fr; gap: 50px; }
  .author-portrait { position: static; max-width: 320px; margin: 0 auto; }
  .author-details { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-base { flex-direction: column; gap: 12px; text-align: center; }
  .section-header:not(.centered) { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 40px; }
  .pullquote blockquote { font-size: 21px; }
  .hero-meta { gap: 32px; }
  .imprint-note .emblem { height: 110px; }
  .method-chain { grid-template-columns: 1fr; }
  .method-step:not(:last-child)::after {
    content: "\2193"; right: auto; left: 50%; transform: translateX(-50%); top: auto; bottom: -10px;
  }
  .archetype-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .praise-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .speaking-topics { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto 40px; }
  .press-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto 40px; }
  .buy-grid { grid-template-columns: 1fr 1fr; }
  .kata-card { padding: 40px 32px; }
  .kata-steps { grid-template-columns: 1fr; }
  .pullquote-hero { padding: 0 20px; }
  .pullquote-hero blockquote { font-size: 24px; }
  .method-creed { padding: 36px 28px; }
  .method-creed li { font-size: 19px; }
}

@media (max-width: 640px) {
  .wisdom-grid { grid-template-columns: 1fr; }
}

/* Tablet range: compact nav still visible */
@media (max-width: 820px) {
  .nav-links { gap: 10px; }
  .nav-links a { font-size: 10.5px; letter-spacing: 0.08em; }
  .mark .emblem { height: 48px; }
  .mark { font-size: 16px; }
}

/* Small tablet / large phone: hide horizontal nav, show hamburger hint.
   The Weebly auto-menu {menu} remains accessible to screen readers. */
@media (max-width: 720px) {
  .nav-links { display: none; }
  .mark::after {
    content: "\2630";
    margin-left: 18px;
    font-size: 20px;
    color: var(--gold-deep);
    opacity: 0.6;
  }
}

@media (max-width: 560px) {
  .mark .emblem { height: 46px; }
  .mark { font-size: 15px; }
  .hero-title { font-size: clamp(48px, 13vw, 80px); }
  .hero-tagline { font-size: 18px; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   HIGH CONTRAST MODE (Windows forced-colors)
   ========================================================================== */

@media (forced-colors: active) {
  .emblem::before { filter: none; }
  .emblem::after { display: none; }
  .shimmer-gold, .shimmer-gold.bright {
    -webkit-text-fill-color: currentColor;
    color: inherit;
    background: none;
    animation: none;
  }
  .book-cover { border: 2px solid CanvasText; }
}

/* ==========================================================================
   PRINT
   ========================================================================== */

@media print {
  .site-nav, .newsletter, footer { display: none; }
  body { background: white; color: black; font-size: 12pt; }
  .hero { padding: 20px 0; }
  .emblem::after, .shimmer-gold { animation: none; }
  a { color: black; text-decoration: underline; }
  .book-cover { box-shadow: none; border: 1px solid #333; }
}
