/*
Theme Name: Mr Whatley
Theme URI: https://mrwhatley.com
Author: Dustin Whatley
Author URI: https://mrwhatley.com
Description: Standalone custom theme for mrwhatley.com. Personal and professional home of Dustin Whatley. Faith, Finance, Focus. Everything editable lives in Appearance to Customize.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mrwhatley
Tags: personal, speaker, consulting, one-column, custom-menu, custom-logo, featured-images
*/

/* ============================================================
   1. TOKENS
   ============================================================ */

:root {
  --ox:        #7B1113;
  --ox-deep:   #4E0A0C;
  --ox-hover:  #92191B;
  --ink:       #241E1C;
  --ink-soft:  #6B5F5C;
  --paper:     #FFFFFF;
  --tint:      #F9EFEE;
  --tint-deep: #F2E2E0;
  --rule:      #E4D9D6;
  --focus:     #B8860B;

  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans:  "Karla", "Helvetica Neue", Arial, sans-serif;

  --wrap: 1180px;
  --narrow: 720px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(4rem, 9vw, 8rem);
  --radius: 2px;
}

/* ============================================================
   2. RESET AND BASE
   ============================================================ */

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

/* An explicit display value in author CSS beats the browser rule for
   [hidden], which silently breaks tab panels. This puts it back. */
[hidden] { display: none !important; }

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

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

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

img, svg, video, iframe { max-width: 100%; height: auto; display: block; }

a { color: var(--ox); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ox-deep); }

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 .5em;
  font-variation-settings: "SOFT" 12, "WONK" 1;
}

h1 { font-size: clamp(2.6rem, 6.4vw, 5rem); line-height: .98; }
h2 { font-size: clamp(2rem, 4.2vw, 3.25rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); line-height: 1.15; }
h4 { font-size: 1.15rem; line-height: 1.25; }

p { margin: 0 0 1.25em; max-width: 68ch; }

blockquote {
  margin: 2rem 0;
  padding-left: 1.5rem;
  border-left: 3px solid var(--ox);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.35;
}

hr { border: 0; border-top: 1px solid var(--rule); margin: 3rem 0; }

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ox); color: #fff; padding: .75rem 1.25rem; z-index: 999;
}
.skip-link:focus { left: 0; color: #fff; }

/* ============================================================
   3. LAYOUT
   ============================================================ */

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: var(--narrow); }

.section { padding-block: var(--section-y); }
.section--tint { background: var(--tint); }
.section--ox { background: var(--ox); color: #fff; }
.section--ox h1, .section--ox h2, .section--ox h3 { color: #fff; }
.section--ox a { color: #fff; }
.section--rule { border-top: 1px solid var(--rule); }

.section__head { max-width: 46ch; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section__head p { color: var(--ink-soft); font-size: 1.125rem; }
.section--ox .section__head p { color: rgba(255,255,255,.82); }

.lede { font-size: clamp(1.15rem, 1.8vw, 1.4rem); line-height: 1.55; }

/* ============================================================
   4. BUTTONS
   ============================================================ */

.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.0125rem;
  letter-spacing: .01em;
  padding: .95rem 1.9rem;
  border: 2px solid var(--ox);
  background-color: var(--ox);
  background-image: linear-gradient(var(--sweep, var(--ox-deep)), var(--sweep, var(--ox-deep)));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 0;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  cursor: pointer;
  overflow: hidden;
  transition: background-size .4s cubic-bezier(.2,.7,.3,1), color .25s ease,
              border-color .25s ease, transform .25s ease, box-shadow .3s ease;
}
.btn:hover {
  background-size: 100% 100%;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(78,10,12,.26);
}
.btn:active { transform: translateY(0); }
.btn--pill, .btn--square { border-radius: 999px; }

.btn--ghost { background-color: transparent; color: var(--ox); --sweep: var(--ox); }
.btn--ghost:hover { color: #fff; border-color: var(--ox); }

.btn--on-ox { background-color: #fff; border-color: #fff; color: var(--ox); --sweep: var(--tint-deep); }
.btn--on-ox:hover { color: var(--ox-deep); box-shadow: 0 14px 30px rgba(0,0,0,.28); }

.btn--ghost-on-ox { background-color: transparent; border-color: rgba(255,255,255,.7); color: #fff; --sweep: #fff; }
.btn--ghost-on-ox:hover { color: var(--ox); border-color: #fff; box-shadow: 0 14px 30px rgba(0,0,0,.28); }

.btn--arrow::after {
  content: "";
  width: 18px; height: 10px; flex: 0 0 auto;
  background: currentColor;
  clip-path: polygon(0 40%, 62% 40%, 62% 0, 100% 50%, 62% 100%, 62% 60%, 0 60%);
  transform: translateX(-3px);
  transition: transform .3s cubic-bezier(.2,.7,.3,1);
}
.btn--arrow:hover::after { transform: translateX(3px); }
.btn.is-busy::after { display: none; }
html.motion-off .btn, html.motion-off .btn--arrow::after { transition: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }

.textlink {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--sans); font-weight: 700; font-size: .95rem;
  letter-spacing: .01em;
  text-decoration: none;
  color: var(--ox);
  background-color: transparent;
  background-image: linear-gradient(var(--ox), var(--ox));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 0;
  border: 2px solid var(--ox);
  border-radius: 999px;
  padding: .6rem 1.3rem;
  transition: background-size .4s cubic-bezier(.2,.7,.3,1), color .25s ease,
              transform .25s ease, box-shadow .3s ease, border-color .25s ease;
}
.textlink:hover {
  background-size: 100% 100%;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(78,10,12,.22);
}
.textlink:active { transform: translateY(0); }
html.motion-off .textlink { transition: none; }

/* On oxblood, the pill reverses */
.section--ox .textlink, .capture-card--ox .textlink, .site-footer .textlink {
  color: #fff; border-color: rgba(255,255,255,.7);
  background-image: linear-gradient(#fff, #fff);
}
.section--ox .textlink:hover, .capture-card--ox .textlink:hover, .site-footer .textlink:hover {
  color: var(--ox); border-color: #fff;
}

/* ============================================================
   5. HEADER
   ============================================================ */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: saturate(140%) blur(6px);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  min-height: max(74px, calc(var(--logo-height, 74px) + 30px));
  padding-block: .5rem;
}
.site-brand {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -.02em;
  text-decoration: none;
  color: var(--ink);
  font-variation-settings: "SOFT" 12, "WONK" 1;
}
.custom-logo-link {
  display: inline-flex; align-items: center; line-height: 0; flex: 0 0 auto;
}
.custom-logo {
  height: auto; width: auto;
  max-height: var(--logo-height, 74px);
  max-width: min(400px, 58vw);
}
.site-header.is-scrolled .custom-logo { max-height: calc(var(--logo-height, 74px) * .8); }
.custom-logo, .site-header.is-scrolled .custom-logo { transition: max-height .3s ease; }
.free-mark .custom-logo { max-height: calc(var(--logo-height, 74px) * .9); }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav ul { list-style: none; display: flex; gap: 1.9rem; margin: 0; padding: 0; }
.nav a {
  white-space: nowrap;
  font-size: 1.075rem; font-weight: 600; color: var(--ink);
  text-decoration: none; padding: .35rem 0; border-bottom: 2px solid transparent;
}
.nav a:hover, .nav .current-menu-item > a { color: var(--ox); border-bottom-color: var(--ox); }
.nav .btn { color: #fff; border-bottom-color: var(--ox); }
.nav .btn:hover { color: #fff; }

.nav-toggle {
  display: none; background: none; border: 0; padding: .5rem;
  cursor: pointer; color: var(--ink);
}
.nav-toggle span { display: block; width: 26px; height: 2px; background: currentColor; margin: 5px 0; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 74px 0 auto 0;
    background: var(--paper); border-bottom: 1px solid var(--rule);
    flex-direction: column; align-items: flex-start; gap: 0;
    padding: 1rem var(--gutter) 2rem; display: none;
  }
  .nav.is-open { display: flex; }
  .nav ul { flex-direction: column; gap: 0; width: 100%; }
  .nav li { width: 100%; border-bottom: 1px solid var(--rule); }
  .nav a { display: block; padding: .95rem 0; font-size: 1.1rem; border-bottom: 0; }
  .nav .btn { margin-top: 1.25rem; width: 100%; text-align: center; }
}

/* ============================================================
   6. HERO
   ============================================================ */

.hero {
  position: relative;
  background: var(--ox);
  color: #fff;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__media video { background: var(--ox-deep); }
.hero__media img, .hero__media video {
  width: 100%; height: 100%; object-fit: cover;
  object-position: var(--hero-focus, right center);
  opacity: var(--hero-opacity, .95);
  filter: grayscale(var(--hero-grey, 8%)) contrast(106%) saturate(98%);
  transform: scaleX(var(--hero-flip, 1));
}

/* Solid where the words are, dissolving to the photograph on the right. */
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(78,10,12, var(--scrim-left, 1)) 0%,
      rgba(78,10,12, var(--scrim-left, 1)) var(--scrim-solid, 36%),
      rgba(78,10,12, calc(var(--scrim-left, 1) * .74)) calc(var(--scrim-solid, 36%) + 12%),
      rgba(123,17,19, calc(var(--scrim-left, 1) * .34)) 72%,
      rgba(123,17,19, var(--scrim-right, 0)) 94%
    ),
    linear-gradient(180deg, rgba(78,10,12,.26) 0%, rgba(78,10,12,0) 24%, rgba(78,10,12,.38) 100%);
}

@media (max-width: 900px) {
  /* On a phone the text sits over the middle of the frame, so the wash has
     to be even rather than directional. */
  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(78,10,12,.9) 0%, rgba(78,10,12,.74) 52%, rgba(78,10,12,.9) 100%);
  }
  .hero__media img, .hero__media video {
    opacity: calc(var(--hero-opacity, .95) * .85);
    /* The left to right fade does not apply at this width, so holding one
       side of the frame just crops the subject out. */
    object-position: center center;
  }
}

.hero__inner {
  position: relative;
  padding-block: clamp(5rem, 11vw, 9rem);
  max-width: 44rem;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  letter-spacing: -.026em;
  margin-bottom: .4em;
  max-width: 17ch;
  text-wrap: balance;
}
.hero__tag {
  text-wrap: balance;
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.1vw, 1.6rem);
  line-height: 1.35;
  letter-spacing: .005em;
  color: rgba(255,255,255,.94);
  max-width: 30ch;
  margin-bottom: 0;
}
.hero__tag span { display: block; }
.hero__rule { width: 84px; height: 4px; background: #fff; margin: 0 0 1.75rem; opacity: .9; }

.hero-anim { opacity: 0; transform: translateY(14px); animation: heroIn .7s cubic-bezier(.2,.7,.3,1) forwards; }
.hero-anim--2 { animation-delay: .12s; }
.hero-anim--3 { animation-delay: .22s; }
.hero-anim--4 { animation-delay: .32s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .hero-anim { opacity: 1; transform: none; animation: none; } }

/* ============================================================
   7. PILLARS
   ============================================================ */

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 2.6vw, 2.25rem); }
.pillar {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
}
.pillar__media {
  position: relative; display: block; overflow: hidden;
  aspect-ratio: 400 / 260; background: var(--tint);
}
.pillar__art, .pillar__photo {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s cubic-bezier(.2,.7,.3,1);
}
.pillar__index {
  position: absolute; left: 0; bottom: 0;
  background: var(--ox); color: #fff;
  font-family: var(--serif); font-weight: 600; font-size: 1.05rem;
  padding: .35rem .85rem; letter-spacing: .04em;
}
.pillar__body { padding: clamp(1.35rem, 2.2vw, 1.9rem); display: flex; flex-direction: column; gap: .35rem; }
.pillar h3 {
  font-size: clamp(1.7rem, 2.6vw, 2.25rem);
  margin-bottom: .1em;
  color: var(--ox);
}
.pillar p { font-size: 1.0625rem; color: var(--ink-soft); margin-bottom: .75rem; }
.pillar .textlink { align-self: flex-start; }
.pillar:hover .pillar__art, .pillar:hover .pillar__photo { transform: scale(1.06); }
.pillar { transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s ease, border-color .35s ease; }
@media (min-width: 781px) {
  .pillar:hover { transform: translateY(-8px); box-shadow: 0 22px 44px rgba(36,30,28,.13); border-color: var(--tint-deep); }
}

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

/* ============================================================
   8. GAP SECTION
   ============================================================ */

.section--marked { position: relative; overflow: hidden; }
.watermark {
  position: absolute; right: -3%; top: 50%; transform: translateY(-50%);
  height: 118%; width: auto; fill: var(--ox); opacity: .05; pointer-events: none;
}
@media (max-width: 900px) { .watermark { right: -22%; opacity: .04; } }

.gap-block { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.gap-block h2 { margin-top: -.12em; }
.gap-block p { font-size: 1.15rem; }
@media (max-width: 860px) { .gap-block { grid-template-columns: 1fr; } }

/* ============================================================
   9. EMAIL CAPTURE
   ============================================================ */

.capture { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: clamp(2rem, 6vw, 4.5rem); align-items: center; }
@media (max-width: 900px) { .capture { grid-template-columns: 1fr; } }

.capture__note { font-size: .95rem; opacity: .8; margin-top: 1rem; margin-bottom: 0; }

.mw-form { display: grid; gap: .85rem; }
.mw-form--inline { grid-template-columns: 1fr 1fr auto; align-items: end; }
@media (max-width: 620px) { .mw-form--inline { grid-template-columns: 1fr; } }

.field { display: grid; gap: .35rem; }
.field label { font-size: .9rem; font-weight: 700; letter-spacing: .01em; }
.field .req { color: var(--ox); }
.section--ox .field .req { color: #fff; }

input[type=text], input[type=email], input[type=tel], input[type=number],
input[type=date], input[type=url], select, textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: .8rem .9rem;
  min-height: 48px;
}
textarea { min-height: 140px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--ox); outline: 2px solid var(--focus); outline-offset: 1px; }

.section--ox input, .section--ox select, .section--ox textarea { border-color: rgba(255,255,255,.5); }

.mw-hp { position: absolute; left: -9999px; }

.form-note { font-size: .9rem; color: var(--ink-soft); }
.section--ox .form-note { color: rgba(255,255,255,.8); }

.mw-notice { padding: 1rem 1.25rem; border-left: 4px solid var(--ox); background: var(--tint); margin-bottom: 2rem; }
.mw-notice--error { border-color: #8a1f1f; }

/* ============================================================
   10. CARDS AND LISTS
   ============================================================ */

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }
@media (max-width: 1000px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px)  { .cards { grid-template-columns: 1fr; } }

.card { display: flex; flex-direction: column; }
.card__thumb {
  margin-bottom: 1rem; aspect-ratio: 16/10; width: 100%;
  object-fit: cover;
  /* Hold the top of the frame. A featured image is almost always framed with
     the subject high, and centring the crop cuts his head off. */
  object-position: var(--thumb-focus, center 22%);
}
.card h3 { font-size: 1.35rem; margin-bottom: .4rem; }
.card h3 a { color: var(--ink); text-decoration: none; }
.card h3 a:hover { color: var(--ox); }
.card p { font-size: 1rem; color: var(--ink-soft); }
.card__meta { font-size: .85rem; font-weight: 700; color: var(--ox); margin-bottom: .5rem; }

.pillar-tag {
  display: inline-block; font-size: .8rem; font-weight: 700;
  color: var(--ox); border: 1px solid var(--tint-deep); background: var(--tint);
  padding: .2rem .6rem; border-radius: var(--radius); text-decoration: none;
}
.pillar-tag:hover { background: var(--ox); color: #fff; border-color: var(--ox); }

.filterbar { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.5rem; }
.filterbar a { font-size: .95rem; font-weight: 700; text-decoration: none; padding: .4rem .9rem; border: 1px solid var(--rule); border-radius: var(--radius); color: var(--ink); }
.filterbar a:hover, .filterbar a.is-active { background: var(--ox); border-color: var(--ox); color: #fff; }

/* ============================================================
   11. NUMBERED CURRICULUM (a real sequence)
   ============================================================ */

.modules { display: grid; gap: 0; margin-top: 1rem; }
.module {
  display: grid; grid-template-columns: 5.5rem 1fr; gap: clamp(1rem, 3vw, 2.5rem);
  padding: 1.85rem 0; border-top: 1px solid var(--rule);
}
.module:last-child { border-bottom: 1px solid var(--rule); }
.module__num {
  font-family: var(--serif); font-size: 2.4rem; line-height: 1;
  color: var(--ox); opacity: .85; font-variation-settings: "SOFT" 12, "WONK" 1;
}
.section--tint .module { border-color: var(--tint-deep); }
.module h3 { margin-bottom: .3rem; }
.module p { margin-bottom: 0; color: var(--ink-soft); }

/* ============================================================
   12. COMPARISON BLOCK
   ============================================================ */

.compare { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); }
@media (max-width: 780px) { .compare { grid-template-columns: 1fr; } }
.compare__col { padding: clamp(1.5rem, 3vw, 2.25rem); background: #fff; border: 1px solid var(--rule); }
.compare__col--ours { background: var(--ox); color: #fff; border-color: var(--ox); }
.compare__col--ours h3 { color: #fff; }
.compare__col ul { list-style: none; margin: 1.25rem 0 0; padding: 0; display: grid; gap: .85rem; }
.compare__col li { display: grid; grid-template-columns: 1.5rem 1fr; gap: .6rem; align-items: start; font-size: 1.02rem; }
.compare__mark { font-weight: 700; color: var(--ox); }
.compare__col--ours .compare__mark { color: #fff; }

/* ============================================================
   13. PERSONAS, FORMATS, ENGAGEMENTS
   ============================================================ */

.duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); }
@media (max-width: 780px) { .duo { grid-template-columns: 1fr; } }

.stack { display: grid; gap: 0; }
.stack__item { padding: 2rem 0; border-top: 1px solid var(--rule); }
.stack__item:last-child { border-bottom: 1px solid var(--rule); }
.stack__item h3 { color: var(--ox); }
.stack__item .subtitle { font-weight: 700; margin-bottom: .75rem; }

.talk { display: grid; grid-template-columns: minmax(0, 20rem) minmax(0, 1fr); gap: clamp(1.5rem, 4vw, 3.5rem); padding: 2.5rem 0; border-top: 1px solid var(--rule); }
.talk:last-of-type { border-bottom: 1px solid var(--rule); }
@media (max-width: 860px) { .talk { grid-template-columns: 1fr; gap: 1rem; } }
.talk h3 { margin-bottom: .25rem; }
.talk .subtitle { color: var(--ox); font-weight: 700; }

.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: .9rem; }
.checklist li { display: grid; grid-template-columns: 1.35rem 1fr; gap: .75rem; font-size: 1.08rem; }
.checklist li::before { content: "\2713"; color: var(--ox); font-weight: 700; }
.section--ox .checklist li::before { color: #fff; }

/* ============================================================
   14. BOOKS
   ============================================================ */

.featured-book {
  display: grid;
  grid-template-columns: minmax(0, clamp(260px, 30vw, 420px)) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem); align-items: start;
}
@media (max-width: 780px) { .featured-book { grid-template-columns: 1fr; } }
.featured-book img { box-shadow: 0 18px 42px rgba(36,30,28,.22); width: 100%; }
.backlist { list-style: none; margin: 2.5rem 0 0; padding: 0; }
.backlist li { border-top: 1px solid var(--rule); padding: 1.1rem 0; }
.backlist li:last-child { border-bottom: 1px solid var(--rule); }
.backlist a { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; text-decoration: none; color: var(--ink); }
.backlist a:hover { color: var(--ox); }

.books-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: clamp(1.5rem, 3vw, 2.5rem); }

/* ============================================================
   15. TESTIMONIALS AND LOGO WALL (Phase 2)
   ============================================================ */

.testimonials { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }
@media (max-width: 780px) { .testimonials { grid-template-columns: 1fr; } }
.testimonial { padding: clamp(1.5rem, 3vw, 2rem); background: var(--tint); border-left: 3px solid var(--ox); }
.testimonial p { font-family: var(--serif); font-size: 1.2rem; line-height: 1.4; }
.testimonial cite { font-family: var(--sans); font-style: normal; font-weight: 700; font-size: .95rem; }

.logo-wall { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 2.5rem; align-items: center; }
.logo-wall img { filter: grayscale(100%); opacity: .72; margin-inline: auto; }

/* ============================================================
   16. ARTICLE
   ============================================================ */

.entry-header { padding-block: clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 3vw, 2.5rem); }
.entry-header h1 { max-width: 20ch; }
.entry-meta { font-size: .95rem; color: var(--ink-soft); display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.entry-content { font-size: 1.15rem; line-height: 1.75; }
.entry-content h2 { margin-top: 2.25em; }
.entry-content h3 { margin-top: 1.9em; }
.entry-content ul, .entry-content ol { max-width: 68ch; padding-left: 1.25rem; }
.entry-content li { margin-bottom: .5rem; }
.entry-content img { margin-block: 2rem; }
.featured-media { margin-bottom: 2.5rem; }

.pagination {
  display: flex; align-items: center; justify-content: center;
  gap: .5rem; flex-wrap: wrap;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
  border-top: 1px solid var(--rule);
}
.pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; height: 44px; padding: 0 1rem;
  font-family: var(--sans); font-weight: 700; font-size: .95rem;
  color: var(--ink); text-decoration: none;
  border: 1px solid var(--rule); border-radius: 999px;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.pagination .page-numbers:hover {
  background: var(--ox); border-color: var(--ox); color: #fff; transform: translateY(-2px);
}
.pagination .page-numbers.current {
  background: var(--ox); border-color: var(--ox); color: #fff;
}
.pagination .page-numbers.dots {
  border-color: transparent; min-width: 24px; padding: 0; color: var(--ink-soft);
}
.pagination .page-numbers.dots:hover { background: none; color: var(--ink-soft); transform: none; }
.pagination .prev, .pagination .next { padding: 0 1.25rem; }
html.motion-off .pagination .page-numbers { transition: none; }

@media (max-width: 520px) {
  .pagination .page-numbers { min-width: 40px; height: 40px; padding: 0 .8rem; font-size: .9rem; }
  .pagination .prev, .pagination .next { flex: 1 1 100%; }
}

/* ============================================================
   17. GATED / FREE PAGE (no nav)
   ============================================================ */

body.mw-no-chrome .site-header, body.mw-no-chrome .site-footer__nav { display: none; }
.free-mark { padding-block: 2rem 0; }
.free-mark .site-brand { font-size: 1.15rem; }

.footer-minimal { border-top: 1px solid var(--rule); padding-block: 2.5rem; font-size: .9rem; color: var(--ink-soft); }
.footer-minimal p { max-width: 80ch; }

/* ============================================================
   18. FOOTER
   ============================================================ */

.site-footer { background: var(--ox-deep); color: rgba(255,255,255,.85); padding-block: clamp(3rem, 6vw, 5rem) 2rem; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer__top { display: grid; grid-template-columns: minmax(0,1.4fr) minmax(0,1fr) minmax(0,1fr); gap: clamp(2rem, 4vw, 3rem); }
@media (max-width: 860px) { .site-footer__top { grid-template-columns: 1fr; } }
.site-footer h2 { font-size: 1.7rem; color: #fff; }
.site-footer h4 { color: #fff; margin-bottom: .9rem; font-family: var(--sans); font-size: .95rem; letter-spacing: .02em; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; font-size: .98rem; }
.social-row {
  display: grid; grid-template-columns: repeat(4, 44px);
  gap: 1rem; margin-top: 1.35rem; justify-content: start;
}
@media (max-width: 620px) { .social-row { grid-template-columns: repeat(4, 40px); } }
.footer-cta { line-height: 1.08; }
.footer-cta span { display: block; }
.social-row a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; }
.social-row a:hover { background: #fff; color: var(--ox-deep); }
.social-row svg { width: 18px; height: 18px; fill: currentColor; }
.site-footer__bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.2); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .88rem; }
.site-footer__bottom ul { display: flex; flex-wrap: wrap; gap: 1.25rem; }

/* ============================================================
   19. ADMIN PLACEHOLDERS
   ============================================================ */

.mw-admin-note {
  border: 2px dashed var(--ox);
  background: var(--tint);
  color: var(--ink);
  padding: 1.1rem 1.35rem;
  margin: 1.5rem 0;
  font-size: .95rem;
  font-family: var(--sans);
  border-radius: var(--radius);
}
.mw-admin-note strong { color: var(--ox); }

/* ============================================================
   20. WORDPRESS CORE CLASSES
   ============================================================ */

.alignleft { float: left; margin: .5rem 2rem 1.5rem 0; }
.alignright { float: right; margin: .5rem 0 1.5rem 2rem; }
.aligncenter { margin-inline: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text, figcaption { font-size: .9rem; color: var(--ink-soft); margin-top: .5rem; }
.sticky, .gallery-caption, .bypostauthor { display: block; }

/* ============================================================
   21. MOTION AND INTERACTION
   ============================================================ */

/* Reveal. Only applied once JS confirms it can undo it. */
html.js [data-reveal],
html.js [data-reveal-child] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s cubic-bezier(.2,.7,.3,1), transform .75s cubic-bezier(.2,.7,.3,1);
  will-change: opacity, transform;
}
html.js [data-reveal="left"] { transform: translateX(-26px); }
html.js [data-reveal="right"] { transform: translateX(26px); }
html.js [data-reveal="rise"] { transform: translateY(42px); }
html.js [data-reveal="scale"] { transform: scale(.965); }

html.js [data-reveal].is-in,
html.js [data-reveal-child].is-in {
  opacity: 1;
  transform: none;
}

html.motion-off [data-reveal],
html.motion-off [data-reveal-child] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* Reading progress */
.progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  background: rgba(36,30,28,.10); z-index: 300; pointer-events: none;
}
.progress__fill {
  height: 100%; background: var(--ox);
  transform: scaleX(0); transform-origin: 0 50%;
}

/* Header shrink */
.site-header { transition: box-shadow .3s ease; }
.site-header__inner { transition: min-height .3s ease; }
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(36,30,28,.09); }
.site-header.is-scrolled .site-header__inner { min-height: max(62px, calc(var(--logo-height, 74px) * .8 + 22px)); }

/* Nav toggle becomes an X */
.nav-toggle span { transition: transform .3s ease, opacity .2s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
body.nav-locked { overflow: hidden; }

@media (max-width: 900px) {
  .nav { transform: translateY(-8px); opacity: 0; transition: transform .28s ease, opacity .28s ease; }
  .nav.is-open { transform: none; opacity: 1; }
  html.motion-off .nav { transition: none; }
}

/* Hero: drift on the photograph, scroll cue underneath */
.hero__media { transition: transform .1s linear; will-change: transform; }
.hero__media img, .hero__media video { animation: heroDrift 26s ease-in-out infinite alternate; }
@keyframes heroDrift {
  from { transform: scale(1.0); }
  to   { transform: scale(1.07); }
}
html.motion-off .hero__media img, html.motion-off .hero__media video { animation: none; }

.hero__cue {
  position: absolute; left: 0; right: 0; bottom: 1.75rem;
  display: flex; justify-content: center; pointer-events: none;
}
.hero__cue span {
  display: block; width: 1px; height: 44px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.85));
  animation: cueDrop 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes cueDrop {
  0%   { transform: scaleY(0); opacity: 0; }
  40%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1) translateY(18px); opacity: 0; }
}
html.motion-off .hero__cue { display: none; }

/* Tag band */
.tagband {
  background: var(--ox-deep); color: #fff; overflow: hidden;
  padding-block: .9rem; border-block: 1px solid rgba(255,255,255,.12);
}
.tagband__static { text-align: center; font-family: var(--serif); font-size: 1.35rem; margin: 0; }
.marquee { overflow: hidden; }
.marquee__track { display: flex; width: max-content; gap: 0; }
.marquee.is-running .marquee__track { animation: marquee 42s linear infinite; }
.marquee:hover .marquee__track, .marquee:focus-within .marquee__track { animation-play-state: paused; }
.marquee__item {
  font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.7rem);
  padding-inline: 1.6rem; white-space: nowrap; display: inline-flex; align-items: center; gap: 1.6rem;
}
.marquee__item::after { content: ""; width: 7px; height: 7px; background: currentColor; border-radius: 50%; opacity: .55; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
html.motion-off .marquee__track { animation: none; }

/* Logo marquee */
.marquee--logos { padding-block: 1rem; }
.marquee--logos .marquee__item { padding-inline: 2.5rem; }
.marquee--logos .marquee__item::after { display: none; }
.marquee--logos img { filter: grayscale(100%); opacity: .7; max-height: 62px; width: auto; }

/* Accordion */
.acc { border-top: 1px solid var(--rule); }
.acc__item { border-bottom: 1px solid var(--rule); }
.acc__head {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  background: none; border: 0; cursor: pointer; text-align: left;
  padding: 1.6rem 0; color: var(--ink); font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem); font-weight: 600; line-height: 1.15;
  font-variation-settings: "SOFT" 12, "WONK" 1;
  transition: color .2s ease;
}
.acc__head:hover { color: var(--ox); }
.acc__item.is-open .acc__head { color: var(--ox); }
.acc__icon {
  flex: 0 0 auto; width: 34px; height: 34px; border: 1px solid var(--rule); border-radius: 50%;
  position: relative; transition: background .25s ease, border-color .25s ease, transform .35s ease;
}
.acc__icon::before, .acc__icon::after {
  content: ""; position: absolute; inset: 50% auto auto 50%;
  width: 13px; height: 2px; background: currentColor; transform: translate(-50%,-50%);
  transition: transform .3s ease, opacity .2s ease;
}
.acc__icon::after { transform: translate(-50%,-50%) rotate(90deg); }
.acc__item.is-open .acc__icon { background: var(--ox); border-color: var(--ox); color: #fff; transform: rotate(180deg); }
.acc__item.is-open .acc__icon::after { opacity: 0; }
.acc__panel {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .42s cubic-bezier(.2,.7,.3,1);
}
.acc__item.is-open .acc__panel { grid-template-rows: 1fr; }
.acc__inner { overflow: hidden; }
.acc__inner > div { padding-bottom: 1.9rem; }
html.motion-off .acc__panel { transition: none; }
html.no-js .acc__panel { grid-template-rows: 1fr; }

.acc--ox { border-color: rgba(255,255,255,.25); }
.acc--ox .acc__item { border-color: rgba(255,255,255,.25); }
.acc--ox .acc__head { color: #fff; }
.acc--ox .acc__head:hover, .acc--ox .acc__item.is-open .acc__head { color: rgba(255,255,255,.75); }
.acc--ox .acc__icon { border-color: rgba(255,255,255,.4); }

/* Tabs */
.tabs__list {
  display: flex; flex-wrap: wrap; gap: .35rem;
  border-bottom: 1px solid var(--rule); margin-bottom: 2.5rem;
}
.tabs__tab {
  background: none; border: 0; cursor: pointer;
  font-family: var(--sans); font-size: 1rem; font-weight: 700; color: var(--ink-soft);
  padding: .9rem 1.15rem; border-bottom: 3px solid transparent; margin-bottom: -1px;
  transition: color .2s ease, border-color .2s ease;
}
.tabs__tab:hover { color: var(--ox); }
.tabs__tab.is-on { color: var(--ox); border-bottom-color: var(--ox); }
.tabs__panel.is-in { animation: panelIn .45s cubic-bezier(.2,.7,.3,1) both; }
@keyframes panelIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
html.motion-off .tabs__panel.is-in { animation: none; }

/* Slider */
.slider { position: relative; overflow: hidden; }
.slider__track { display: flex; transition: transform .6s cubic-bezier(.2,.7,.3,1); }
html.motion-off .slider__track { transition: none; }
.slider__slide { flex: 0 0 100%; min-width: 100%; padding-right: 1px; }
.slider__nav { display: flex; align-items: center; gap: .6rem; margin-top: 1.75rem; }
.slider__btn {
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
  background: transparent; border: 1px solid var(--rule); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.slider__btn:hover { background: var(--ox); border-color: var(--ox); color: #fff; }
.slider__dots { display: flex; gap: .45rem; margin-left: .75rem; }
.slider__dot {
  width: 9px; height: 9px; padding: 0; border-radius: 50%; cursor: pointer;
  border: 1px solid var(--ox); background: transparent; transition: width .25s ease, background .25s ease;
}
.slider__dot.is-on { background: var(--ox); width: 26px; border-radius: 5px; }

/* Funnel bar on the free page */
.funnel-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  background: var(--ox); color: #fff;
  transform: translateY(110%); transition: transform .45s cubic-bezier(.2,.7,.3,1);
  box-shadow: 0 -12px 34px rgba(36,30,28,.22);
}
.funnel-bar.is-up { transform: none; }
.funnel-bar__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.25rem;
  padding-block: .9rem; flex-wrap: wrap;
}
.funnel-bar p { margin: 0; font-weight: 700; }
.funnel-bar small { display: block; font-weight: 400; opacity: .82; }
@media (max-width: 620px) {
  .funnel-bar__inner { justify-content: center; text-align: center; padding-block: .75rem; }
  .funnel-bar .btn { width: 100%; text-align: center; }
  .funnel-bar small { display: none; }
}
html.motion-off .funnel-bar { transition: none; }

/* Training progress */
.training-progress { margin-bottom: 2.5rem; }
.training-progress__bar { height: 8px; background: var(--tint-deep); border-radius: 4px; overflow: hidden; }
.training-progress__fill {
  height: 100%; background: var(--ox); transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .5s cubic-bezier(.2,.7,.3,1);
}
.training-progress__label { font-weight: 700; font-size: .95rem; margin-top: .6rem; display: block; }
.module.is-done h3 { color: var(--ox); }
.module.is-done .module__num { opacity: .35; }
.module__check { display: inline-flex; align-items: center; gap: .55rem; font-size: .95rem; font-weight: 700; cursor: pointer; margin-top: 1rem; }
.module__check input { width: 20px; height: 20px; min-height: 0; accent-color: var(--ox); }

/* Buttons: press and busy states */
.btn { position: relative; transform: translateZ(0); }
.btn:active { transform: translateY(1px); }
.btn.is-busy { pointer-events: none; opacity: .85; }
.btn.is-busy::before {
  content: ""; display: inline-block; width: 14px; height: 14px;
  border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Cards and pillars lift on hover */
.card h3 a { transition: color .2s ease; }
.card__thumb { transition: transform .5s cubic-bezier(.2,.7,.3,1), filter .5s ease; }
.card a:hover .card__thumb { transform: scale(1.03); }
.pillar { transition: transform .35s cubic-bezier(.2,.7,.3,1); }
@media (min-width: 781px) { .pillar:hover { transform: translateY(-6px); } }
html.motion-off .pillar, html.motion-off .card__thumb { transition: none; transform: none; }

.textlink { transition: border-color .2s ease, color .2s ease; }
.compare__col { transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s ease; }
@media (min-width: 781px) { .compare__col--ours:hover { transform: translateY(-6px); box-shadow: 0 22px 46px rgba(78,10,12,.28); } }

/* Field focus lift */
.field { transition: transform .2s ease; }
.field:focus-within { transform: translateY(-1px); }

.hero__cue {
  position: absolute; left: 0; right: 0; bottom: 1.75rem;
  display: flex; justify-content: center; pointer-events: none;
}
.hero__cue span {
  display: block; width: 1px; height: 44px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.85));
  animation: cueDrop 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes cueDrop {
  0%   { transform: scaleY(0); opacity: 0; }
  40%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1) translateY(18px); opacity: 0; }
}
html.motion-off .hero__cue { display: none; }

/* Tag band */
.tagband {
  background: var(--ox-deep); color: #fff; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  padding-block: .9rem; border-block: 1px solid rgba(255,255,255,.12);
}
.tagband__static { text-align: center; font-family: var(--serif); font-size: 1.35rem; margin: 0; }
.marquee { overflow: hidden; }
.marquee__track { display: flex; width: max-content; gap: 0; }
.marquee.is-running .marquee__track { animation: marquee 88s linear infinite; }
.marquee:hover .marquee__track, .marquee:focus-within .marquee__track { animation-play-state: paused; }
.marquee__item {
  font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.7rem);
  padding-inline: 1.6rem; white-space: nowrap; display: inline-flex; align-items: center; gap: 1.6rem;
}
.marquee__item::after { content: ""; width: 7px; height: 7px; background: currentColor; border-radius: 50%; opacity: .55; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
html.motion-off .marquee__track { animation: none; }

/* Logo marquee */
.marquee--logos { padding-block: 1rem; }
.marquee--logos.is-running .marquee__track { animation-duration: 70s; }
.marquee--logos .marquee__item { padding-inline: 2.5rem; }
.marquee--logos .marquee__item::after { display: none; }
.marquee--logos img { filter: grayscale(100%); opacity: .7; max-height: 62px; width: auto; }

/* Accordion */
.acc { border-top: 1px solid var(--rule); }
.acc__item { border-bottom: 1px solid var(--rule); }
.acc__head {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  background: none; border: 0; cursor: pointer; text-align: left;
  padding: 1.6rem 0; color: var(--ink); font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem); font-weight: 600; line-height: 1.15;
  font-variation-settings: "SOFT" 12, "WONK" 1;
  transition: color .2s ease;
}
.acc__head:hover { color: var(--ox); }
.acc__item.is-open .acc__head { color: var(--ox); }
.acc__icon {
  flex: 0 0 auto; width: 34px; height: 34px; border: 1px solid var(--rule); border-radius: 50%;
  position: relative; transition: background .25s ease, border-color .25s ease, transform .35s ease;
}
.acc__icon::before, .acc__icon::after {
  content: ""; position: absolute; inset: 50% auto auto 50%;
  width: 13px; height: 2px; background: currentColor; transform: translate(-50%,-50%);
  transition: transform .3s ease, opacity .2s ease;
}
.acc__icon::after { transform: translate(-50%,-50%) rotate(90deg); }
.acc__item.is-open .acc__icon { background: var(--ox); border-color: var(--ox); color: #fff; transform: rotate(180deg); }
.acc__item.is-open .acc__icon::after { opacity: 0; }
.acc__panel {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .42s cubic-bezier(.2,.7,.3,1);
}
.acc__item.is-open .acc__panel { grid-template-rows: 1fr; }
.acc__inner { overflow: hidden; }
.acc__inner > div { padding-bottom: 1.9rem; }
html.motion-off .acc__panel { transition: none; }
html.no-js .acc__panel { grid-template-rows: 1fr; }

.acc--ox { border-color: rgba(255,255,255,.25); }
.acc--ox .acc__item { border-color: rgba(255,255,255,.25); }
.acc--ox .acc__head { color: #fff; }
.acc--ox .acc__head:hover, .acc--ox .acc__item.is-open .acc__head { color: rgba(255,255,255,.75); }
.acc--ox .acc__icon { border-color: rgba(255,255,255,.4); }

/* Tabs */
.tabs__list {
  display: flex; flex-wrap: wrap; gap: .35rem;
  border-bottom: 1px solid var(--rule); margin-bottom: 2.5rem;
}
.tabs__tab {
  background: none; border: 0; cursor: pointer;
  font-family: var(--sans); font-size: 1rem; font-weight: 700; color: var(--ink-soft);
  padding: .9rem 1.15rem; border-bottom: 3px solid transparent; margin-bottom: -1px;
  transition: color .2s ease, border-color .2s ease;
}
.tabs__tab:hover { color: var(--ox); }
.tabs__tab.is-on { color: var(--ox); border-bottom-color: var(--ox); }
.tabs__panel.is-in { animation: panelIn .45s cubic-bezier(.2,.7,.3,1) both; }
@keyframes panelIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
html.motion-off .tabs__panel.is-in { animation: none; }

/* Slider */
.slider { position: relative; overflow: hidden; }
.slider__track { display: flex; transition: transform .6s cubic-bezier(.2,.7,.3,1); }
html.motion-off .slider__track { transition: none; }
.slider__slide { flex: 0 0 100%; min-width: 100%; padding-right: 1px; }
.slider__nav { display: flex; align-items: center; gap: .6rem; margin-top: 1.75rem; }
.slider__btn {
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
  background: transparent; border: 1px solid var(--rule); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.slider__btn:hover { background: var(--ox); border-color: var(--ox); color: #fff; }
.slider__dots { display: flex; gap: .45rem; margin-left: .75rem; }
.slider__dot {
  width: 9px; height: 9px; padding: 0; border-radius: 50%; cursor: pointer;
  border: 1px solid var(--ox); background: transparent; transition: width .25s ease, background .25s ease;
}
.slider__dot.is-on { background: var(--ox); width: 26px; border-radius: 5px; }

/* Funnel bar on the free page */
.funnel-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  background: var(--ox); color: #fff;
  transform: translateY(110%); transition: transform .45s cubic-bezier(.2,.7,.3,1);
  box-shadow: 0 -12px 34px rgba(36,30,28,.22);
}
.funnel-bar.is-up { transform: none; }
.funnel-bar__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.25rem;
  padding-block: .9rem; flex-wrap: wrap;
}
.funnel-bar p { margin: 0; font-weight: 700; }
.funnel-bar small { display: block; font-weight: 400; opacity: .82; }
@media (max-width: 620px) {
  .funnel-bar__inner { justify-content: center; text-align: center; padding-block: .75rem; }
  .funnel-bar .btn { width: 100%; text-align: center; }
  .funnel-bar small { display: none; }
}
html.motion-off .funnel-bar { transition: none; }

/* Training progress */
.training-progress { margin-bottom: 2.5rem; }
.training-progress__bar { height: 8px; background: var(--tint-deep); border-radius: 4px; overflow: hidden; }
.training-progress__fill {
  height: 100%; background: var(--ox); transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .5s cubic-bezier(.2,.7,.3,1);
}
.training-progress__label { font-weight: 700; font-size: .95rem; margin-top: .6rem; display: block; }
.module.is-done h3 { color: var(--ox); }
.module.is-done .module__num { opacity: .35; }
.module__check { display: inline-flex; align-items: center; gap: .55rem; font-size: .95rem; font-weight: 700; cursor: pointer; margin-top: 1rem; }
.module__check input { width: 20px; height: 20px; min-height: 0; accent-color: var(--ox); }

/* Buttons: press and busy states */
.btn { position: relative; transform: translateZ(0); }
.btn:active { transform: translateY(1px); }
.btn.is-busy { pointer-events: none; opacity: .85; }
.btn.is-busy::before {
  content: ""; display: inline-block; width: 14px; height: 14px;
  border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Cards and pillars lift on hover */
.card h3 a { transition: color .2s ease; }
.card__thumb { transition: transform .5s cubic-bezier(.2,.7,.3,1), filter .5s ease; }
.card a:hover .card__thumb { transform: scale(1.03); }
.pillar { transition: transform .35s cubic-bezier(.2,.7,.3,1); }
@media (min-width: 781px) { .pillar:hover { transform: translateY(-6px); } }
html.motion-off .pillar, html.motion-off .card__thumb { transition: none; transform: none; }

.textlink { transition: border-color .2s ease, color .2s ease; }
.compare__col { transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s ease; }
@media (min-width: 781px) { .compare__col--ours:hover { transform: translateY(-6px); box-shadow: 0 22px 46px rgba(78,10,12,.28); } }

/* Field focus lift */
.field { transition: transform .2s ease; }
.field:focus-within { transform: translateY(-1px); }

/* ============================================================
   22. THE FORGE LANDING PAGE
   ============================================================ */

.eyebrow {
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ox);
  margin-bottom: 1.1rem;
}
.eyebrow--light { color: rgba(255,255,255,.85); }
.section--ox .eyebrow { color: rgba(255,255,255,.85); }

.forge-hero { padding-block: 1.75rem clamp(3rem, 6vw, 5rem); }
.forge-hero .free-mark { padding-block: 0 clamp(2rem, 4vw, 3rem); }
.forge-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .85fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.forge-hero h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.5rem);
  text-wrap: balance;
  margin-bottom: .5em;
}
.forge-hero__sub p { margin-bottom: 0; }

/* Capture card */
.capture-card {
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2.1rem);
  background: var(--tint);
  border: 1px solid var(--tint-deep);
  border-radius: 6px;
}
.capture-card h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  margin-bottom: .25em;
}
.capture-card > p { font-size: 1rem; color: var(--ink-soft); margin-bottom: 1.25rem; }
.capture-card--ox {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.28);
  margin-top: 0;
  max-width: 720px;
}
.capture-card--ox h2 { color: #fff; }
.capture-card--ox > p { color: rgba(255,255,255,.85); }

/* Mobile: the capture block stays above the fold, the subhead moves below it */
@media (max-width: 900px) {
  .forge-hero__grid { grid-template-columns: 1fr; }
  .forge-hero__copy { display: flex; flex-direction: column; }
  .forge-hero__copy .eyebrow { order: 1; }
  .forge-hero__copy h1 { order: 2; }
  .forge-hero__copy .capture-card { order: 3; margin-top: 1.5rem; }
  .forge-hero__copy .forge-hero__sub { order: 4; margin-top: 2rem; }
  .forge-hero__art { order: 5; margin-top: 2.5rem; }
}

/* Typographic cover plate, used until the real cover exists */
.forge-plate {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  text-align: center;
  aspect-ratio: 2 / 3;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: linear-gradient(160deg, var(--ox) 0%, var(--ox-deep) 100%);
  color: #fff;
  justify-content: center;
  box-shadow: 0 26px 60px rgba(36,30,28,.3);
  max-width: 340px; margin-inline: auto;
}
.forge-plate__rule { width: 52px; height: 3px; background: rgba(255,255,255,.75); }
.forge-plate__name {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3rem); line-height: 1;
  font-variation-settings: "SOFT" 12, "WONK" 1;
}
.forge-plate__sub { font-family: var(--sans); font-size: 1rem; line-height: 1.4; max-width: 22ch; }
.forge-plate__count {
  font-family: var(--sans); font-size: .78rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; opacity: .85;
}
/* Every book cover on the site, whatever the context: same ratio, same crop,
   same edge, same shadow. Uploaded covers and packaged ones look identical. */
.forge-cover,
.bookrow__art img,
.featured-book img,
.book-cover img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 3px;
  box-shadow: 0 22px 48px rgba(36,30,28,.3);
  background: var(--tint-deep);
}
.forge-cover { max-width: 460px; margin-inline: auto; }

/* Chapters */
.segments, .chapters {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
@media (max-width: 820px) { .segments, .segments, .chapters { grid-template-columns: 1fr; } }
.segment, .chapter {
  padding: clamp(1.5rem, 2.6vw, 2rem);
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: #fff;
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s ease, border-color .35s ease;
}
@media (min-width: 821px) {
  .segment:hover, .chapter:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(36,30,28,.11); border-color: var(--tint-deep); }
}
.segment__num, .chapter__num {
  display: inline-block;
  font-family: var(--serif); font-size: 2.1rem; line-height: 1; color: var(--ox);
  font-variation-settings: "SOFT" 12, "WONK" 1;
  margin-bottom: .5rem;
}
.segment h3, .chapter h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); margin-bottom: .4rem; }
.segment p, .chapter p { font-size: 1.02rem; color: var(--ink-soft); margin-bottom: 0; }

/* Reader cards */
.persona {
  padding: clamp(1.5rem, 2.6vw, 2rem);
  background: #fff; border-left: 3px solid var(--ox); border-radius: 0 4px 4px 0;
}
.persona h3 {
  font-family: var(--sans); font-size: .95rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ox);
  line-height: 1.4; margin-bottom: .85rem;
}
.persona p { font-size: 1.02rem; margin-bottom: 0; }

/* Straight talk and disclosure */
.straight-talk p { font-size: 1.12rem; }
.disclosure {
  padding: clamp(1.35rem, 2.4vw, 1.85rem);
  border: 1px solid var(--rule); border-radius: 4px; background: var(--tint);
}
.disclosure h3 { font-size: 1.25rem; margin-bottom: .5rem; color: var(--ox); }
.disclosure p { font-size: 1rem; margin-bottom: 0; color: var(--ink-soft); }

/* ============================================================
   23. THE QUESTION MECHANIC
   ============================================================ */

.qsection .question {
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1.06;
  letter-spacing: -.02em;
  max-width: 28ch;
  text-wrap: balance;
  margin: 0 0 clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.25rem);
  border-bottom: 1px solid var(--rule);
  color: var(--ox);
}
.section--tint .qsection .question,
.qsection.section--tint .question { border-bottom-color: var(--tint-deep); }
.qsection .question--light,
.section--ox .question { color: #fff; border-bottom-color: rgba(255,255,255,.28); }
.qsection .question--small {
  font-size: clamp(1.2rem, 1.9vw, 1.45rem);
  max-width: 34ch;
  margin-bottom: 1rem;
  padding-bottom: 0;
  border-bottom: 0;
}

.qsection__body { max-width: 68ch; }
.qsection__body p { font-size: clamp(1.06rem, 1.4vw, 1.2rem); }
.qsection__body p:last-child { margin-bottom: 0; }

/* The hero question is the largest type on the page */
.forge-hero .hero-question {
  font-size: clamp(2.6rem, 6.2vw, 5rem);
  line-height: .99;
  letter-spacing: -.028em;
  max-width: 20ch;
  text-wrap: balance;
  margin-bottom: .5em;
}
.forge-hero__sub p { font-size: clamp(1.05rem, 1.4vw, 1.18rem); }
.forge-hero__sub p:last-child { margin-bottom: 0; font-weight: 700; }

/* Testimony block, once he writes it */
.testimony {
  margin: 2.25rem 0;
  padding: clamp(1.35rem, 2.6vw, 1.9rem) clamp(1.35rem, 2.6vw, 2rem);
  background: #fff;
  border-left: 3px solid var(--ox);
  border-radius: 0 4px 4px 0;
}
.testimony p:last-child { margin-bottom: 0; }

/* Reader cards read as questions now */
.persona h3 {
  font-family: var(--serif);
  text-transform: none;
  letter-spacing: -.01em;
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  line-height: 1.15;
  font-weight: 600;
  font-variation-settings: "SOFT" 12, "WONK" 1;
}

/* ============================================================
   24. LANDING PAGE: DENSITY, SPINE, GRAPHICS, INTERACTION
   ============================================================ */

/* Tighter vertical rhythm. The page is one argument, so the sections
   should read as consecutive beats instead of separate pages. */
body.mw-no-chrome .section { padding-block: clamp(2.75rem, 5vw, 4.25rem); }
body.mw-no-chrome .qsection .question {
  margin-bottom: clamp(1.5rem, 2.6vw, 2.25rem);
  padding-bottom: clamp(.9rem, 1.6vw, 1.35rem);
}
body.mw-no-chrome .forge-hero { padding-block: 1.5rem clamp(2rem, 4vw, 3.25rem); }
body.mw-no-chrome .footer-minimal { padding-block: 2rem; }

/* Consecutive white sections need a hairline so they do not merge */
body.mw-no-chrome .section + .section:not(.section--tint):not(.section--ox) {
  border-top: 1px solid var(--rule);
}

/* Scroll spine */
.spine {
  position: fixed; left: clamp(.9rem, 2.2vw, 2rem); top: 22vh; bottom: 22vh;
  width: 2px; z-index: 90; pointer-events: none;
}
.spine__track { position: absolute; inset: 0; background: rgba(123,17,19,.16); }
.spine__fill {
  position: absolute; inset: 0; transform-origin: 0 0; transform: scaleY(0);
  background: var(--ox);
}
.spine__dot {
  position: absolute; left: 50%; width: 9px; height: 9px; margin-left: -4.5px;
  border-radius: 50%; background: var(--paper);
  border: 2px solid rgba(123,17,19,.35);
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}
.spine__dot.is-on { background: var(--ox); border-color: var(--ox); transform: scale(1.5); }
@media (max-width: 1180px) { .spine { display: none; } }

/* Hero embers */
.forge-hero__art { position: relative; }
.embers { position: absolute; inset: -12% -8%; pointer-events: none; overflow: hidden; }
.ember {
  position: absolute; bottom: -8%;
  width: 6px; height: 6px; border-radius: 50%;
  background: radial-gradient(circle, rgba(146,25,27,.85), rgba(146,25,27,0) 70%);
  left: calc(var(--i) * 11%);
  animation: emberRise calc(9s + var(--i) * 1.4s) linear infinite;
  animation-delay: calc(var(--i) * -1.7s);
  opacity: 0;
}
@keyframes emberRise {
  0%   { transform: translateY(0) scale(.6); opacity: 0; }
  12%  { opacity: .85; }
  70%  { opacity: .5; }
  100% { transform: translateY(-320px) translateX(28px) scale(1.4); opacity: 0; }
}
html.motion-off .embers { display: none; }

/* Cover plate reacts to the pointer */
.forge-plate, .forge-cover {
  transition: transform .4s cubic-bezier(.2,.7,.3,1), box-shadow .4s ease;
  transform-style: preserve-3d;
  position: relative;
}
[data-tilt]:hover .forge-plate, [data-tilt]:hover .forge-cover {
  box-shadow: 0 34px 74px rgba(36,30,28,.38);
}
html.motion-off .forge-plate, html.motion-off .forge-cover { transform: none !important; }

/* Segment cards */
.segments { gap: clamp(1rem, 2vw, 1.6rem); }
.segment { position: relative; overflow: hidden; }
.segment__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: .9rem;
}
.segment__icon {
  width: 44px; height: 44px; color: var(--ox);
  transition: transform .45s cubic-bezier(.2,.7,.3,1);
}
.segment__icon path, .segment__icon circle, .segment__icon ellipse, .segment__icon rect {
  stroke-dasharray: 420; stroke-dashoffset: 420;
  transition: stroke-dashoffset 1.1s cubic-bezier(.2,.7,.3,1);
}
.segment.is-in .segment__icon path,
.segment.is-in .segment__icon circle,
.segment.is-in .segment__icon ellipse,
.segment.is-in .segment__icon rect { stroke-dashoffset: 0; }
html.motion-off .segment__icon path,
html.motion-off .segment__icon circle,
html.motion-off .segment__icon ellipse,
html.motion-off .segment__icon rect { stroke-dashoffset: 0; transition: none; }

.segment__num { font-size: 2.4rem; opacity: .28; margin-bottom: 0; }
.segment:hover .segment__icon { transform: scale(1.08) rotate(-3deg); }
.segment__bar {
  position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: var(--ox); transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .45s cubic-bezier(.2,.7,.3,1);
}
.segment:hover .segment__bar { transform: scaleX(1); }

/* Comparison: the left column strikes itself out as it arrives.
   Uses a real line-through so every wrapped line is struck, rather than one
   rule drawn across the block, which lands mid paragraph once text wraps. */
.compare__item { align-items: start; }
.compare__text {
  display: inline;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  -webkit-text-decoration-color: transparent;
  text-decoration-color: transparent;
  transition: text-decoration-color .55s ease;
}
.compare__col--ours .compare__text { text-decoration: none; }
.compare__col.is-in:not(.compare__col--ours) .compare__text {
  -webkit-text-decoration-color: currentColor;
  text-decoration-color: currentColor;
  opacity: .85;
}
.compare__col:not(.compare__col--ours) .compare__item:nth-child(2) .compare__text { transition-delay: .1s; }
.compare__col:not(.compare__col--ours) .compare__item:nth-child(3) .compare__text { transition-delay: .2s; }
.compare__col:not(.compare__col--ours) .compare__item:nth-child(4) .compare__text { transition-delay: .3s; }
.compare__col:not(.compare__col--ours) .compare__item:nth-child(5) .compare__text { transition-delay: .4s; }
html.motion-off .compare__text { transition: none; }

.compare__col--ours .compare__mark { color: #fff; }

/* ============================================================
   13. PERSONAS, FORMATS, ENGAGEMENTS
   ============================================================ */

.duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); }
@media (max-width: 780px) { .duo { grid-template-columns: 1fr; } }

.stack { display: grid; gap: 0; }
.stack__item { padding: 2rem 0; border-top: 1px solid var(--rule); }
.stack__item:last-child { border-bottom: 1px solid var(--rule); }
.stack__item h3 { color: var(--ox); }
.stack__item .subtitle { font-weight: 700; margin-bottom: .75rem; }

.talk { display: grid; grid-template-columns: minmax(0, 20rem) minmax(0, 1fr); gap: clamp(1.5rem, 4vw, 3.5rem); padding: 2.5rem 0; border-top: 1px solid var(--rule); }
.talk:last-of-type { border-bottom: 1px solid var(--rule); }
@media (max-width: 860px) { .talk { grid-template-columns: 1fr; gap: 1rem; } }
.talk h3 { margin-bottom: .25rem; }
.talk .subtitle { color: var(--ox); font-weight: 700; }

.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: .9rem; }
.checklist li { display: grid; grid-template-columns: 1.35rem 1fr; gap: .75rem; font-size: 1.08rem; }
.checklist li::before { content: "\2713"; color: var(--ox); font-weight: 700; }
.section--ox .checklist li::before { color: #fff; }

/* ============================================================
   14. BOOKS
   ============================================================ */

.featured-book {
  display: grid;
  grid-template-columns: minmax(0, clamp(260px, 30vw, 420px)) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem); align-items: start;
}
@media (max-width: 780px) { .featured-book { grid-template-columns: 1fr; } }
.featured-book img { box-shadow: 0 18px 42px rgba(36,30,28,.22); width: 100%; }
.backlist { list-style: none; margin: 2.5rem 0 0; padding: 0; }
.backlist li { border-top: 1px solid var(--rule); padding: 1.1rem 0; }
.backlist li:last-child { border-bottom: 1px solid var(--rule); }
.backlist a { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; text-decoration: none; color: var(--ink); }
.backlist a:hover { color: var(--ox); }

.books-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: clamp(1.5rem, 3vw, 2.5rem); }

/* ============================================================
   15. TESTIMONIALS AND LOGO WALL (Phase 2)
   ============================================================ */

.testimonials { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }
@media (max-width: 780px) { .testimonials { grid-template-columns: 1fr; } }
.testimonial { padding: clamp(1.5rem, 3vw, 2rem); background: var(--tint); border-left: 3px solid var(--ox); }
.testimonial p { font-family: var(--serif); font-size: 1.2rem; line-height: 1.4; }
.testimonial cite { font-family: var(--sans); font-style: normal; font-weight: 700; font-size: .95rem; }

.logo-wall { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 2.5rem; align-items: center; }
.logo-wall img { filter: grayscale(100%); opacity: .72; margin-inline: auto; }

/* ============================================================
   16. ARTICLE
   ============================================================ */

.entry-header { padding-block: clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 3vw, 2.5rem); }
.entry-header h1 { max-width: 20ch; }
.entry-meta { font-size: .95rem; color: var(--ink-soft); display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.entry-content { font-size: 1.15rem; line-height: 1.75; }
.entry-content h2 { margin-top: 2.25em; }
.entry-content h3 { margin-top: 1.9em; }
.entry-content ul, .entry-content ol { max-width: 68ch; padding-left: 1.25rem; }
.entry-content li { margin-bottom: .5rem; }
.entry-content img { margin-block: 2rem; }
.featured-media { margin-bottom: 2.5rem; }

.pagination {
  display: flex; align-items: center; justify-content: center;
  gap: .5rem; flex-wrap: wrap;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
  border-top: 1px solid var(--rule);
}
.pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; height: 44px; padding: 0 1rem;
  font-family: var(--sans); font-weight: 700; font-size: .95rem;
  color: var(--ink); text-decoration: none;
  border: 1px solid var(--rule); border-radius: 999px;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.pagination .page-numbers:hover {
  background: var(--ox); border-color: var(--ox); color: #fff; transform: translateY(-2px);
}
.pagination .page-numbers.current {
  background: var(--ox); border-color: var(--ox); color: #fff;
}
.pagination .page-numbers.dots {
  border-color: transparent; min-width: 24px; padding: 0; color: var(--ink-soft);
}
.pagination .page-numbers.dots:hover { background: none; color: var(--ink-soft); transform: none; }
.pagination .prev, .pagination .next { padding: 0 1.25rem; }
html.motion-off .pagination .page-numbers { transition: none; }

@media (max-width: 520px) {
  .pagination .page-numbers { min-width: 40px; height: 40px; padding: 0 .8rem; font-size: .9rem; }
  .pagination .prev, .pagination .next { flex: 1 1 100%; }
}

/* ============================================================
   17. GATED / FREE PAGE (no nav)
   ============================================================ */

body.mw-no-chrome .site-header, body.mw-no-chrome .site-footer__nav { display: none; }
.free-mark { padding-block: 2rem 0; }
.free-mark .site-brand { font-size: 1.15rem; }

.footer-minimal { border-top: 1px solid var(--rule); padding-block: 2.5rem; font-size: .9rem; color: var(--ink-soft); }
.footer-minimal p { max-width: 80ch; }

/* ============================================================
   18. FOOTER
   ============================================================ */

.site-footer { background: var(--ox-deep); color: rgba(255,255,255,.85); padding-block: clamp(3rem, 6vw, 5rem) 2rem; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer__top { display: grid; grid-template-columns: minmax(0,1.4fr) minmax(0,1fr) minmax(0,1fr); gap: clamp(2rem, 4vw, 3rem); }
@media (max-width: 860px) { .site-footer__top { grid-template-columns: 1fr; } }
.site-footer h2 { font-size: 1.7rem; color: #fff; }
.site-footer h4 { color: #fff; margin-bottom: .9rem; font-family: var(--sans); font-size: .95rem; letter-spacing: .02em; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; font-size: .98rem; }
.social-row {
  display: grid; grid-template-columns: repeat(4, 44px);
  gap: 1rem; margin-top: 1.35rem; justify-content: start;
}
@media (max-width: 620px) { .social-row { grid-template-columns: repeat(4, 40px); } }
.footer-cta { line-height: 1.08; }
.footer-cta span { display: block; }
.social-row a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; }
.social-row a:hover { background: #fff; color: var(--ox-deep); }
.social-row svg { width: 18px; height: 18px; fill: currentColor; }
.site-footer__bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.2); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .88rem; }
.site-footer__bottom ul { display: flex; flex-wrap: wrap; gap: 1.25rem; }

/* ============================================================
   19. ADMIN PLACEHOLDERS
   ============================================================ */

.mw-admin-note {
  border: 2px dashed var(--ox);
  background: var(--tint);
  color: var(--ink);
  padding: 1.1rem 1.35rem;
  margin: 1.5rem 0;
  font-size: .95rem;
  font-family: var(--sans);
  border-radius: var(--radius);
}
.mw-admin-note strong { color: var(--ox); }

/* ============================================================
   20. WORDPRESS CORE CLASSES
   ============================================================ */

.alignleft { float: left; margin: .5rem 2rem 1.5rem 0; }
.alignright { float: right; margin: .5rem 0 1.5rem 2rem; }
.aligncenter { margin-inline: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text, figcaption { font-size: .9rem; color: var(--ink-soft); margin-top: .5rem; }
.sticky, .gallery-caption, .bypostauthor { display: block; }

/* ============================================================
   21. MOTION AND INTERACTION
   ============================================================ */

/* Reveal. Only applied once JS confirms it can undo it. */
html.js [data-reveal],
html.js [data-reveal-child] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s cubic-bezier(.2,.7,.3,1), transform .75s cubic-bezier(.2,.7,.3,1);
  will-change: opacity, transform;
}
html.js [data-reveal="left"] { transform: translateX(-26px); }
html.js [data-reveal="right"] { transform: translateX(26px); }
html.js [data-reveal="rise"] { transform: translateY(42px); }
html.js [data-reveal="scale"] { transform: scale(.965); }

html.js [data-reveal].is-in,
html.js [data-reveal-child].is-in {
  opacity: 1;
  transform: none;
}

html.motion-off [data-reveal],
html.motion-off [data-reveal-child] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* Reading progress */
.progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  background: rgba(36,30,28,.10); z-index: 300; pointer-events: none;
}
.progress__fill {
  height: 100%; background: var(--ox);
  transform: scaleX(0); transform-origin: 0 50%;
}

/* Header shrink */
.site-header { transition: box-shadow .3s ease; }
.site-header__inner { transition: min-height .3s ease; }
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(36,30,28,.09); }
.site-header.is-scrolled .site-header__inner { min-height: max(62px, calc(var(--logo-height, 74px) * .8 + 22px)); }

/* Nav toggle becomes an X */
.nav-toggle span { transition: transform .3s ease, opacity .2s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
body.nav-locked { overflow: hidden; }

@media (max-width: 900px) {
  .nav { transform: translateY(-8px); opacity: 0; transition: transform .28s ease, opacity .28s ease; }
  .nav.is-open { transform: none; opacity: 1; }
  html.motion-off .nav { transition: none; }
}

/* Hero: drift on the photograph, scroll cue underneath */
.hero__media { transition: transform .1s linear; will-change: transform; }
.hero__media img, .hero__media video { animation: heroDrift 26s ease-in-out infinite alternate; }
@keyframes heroDrift {
  from { transform: scale(1.0); }
  to   { transform: scale(1.07); }
}
html.motion-off .hero__media img, html.motion-off .hero__media video { animation: none; }

.hero__cue {
  position: absolute; left: 0; right: 0; bottom: 1.75rem;
  display: flex; justify-content: center; pointer-events: none;
}
.hero__cue span {
  display: block; width: 1px; height: 44px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.85));
  animation: cueDrop 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes cueDrop {
  0%   { transform: scaleY(0); opacity: 0; }
  40%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1) translateY(18px); opacity: 0; }
}
html.motion-off .hero__cue { display: none; }

/* Tag band */
.tagband {
  background: var(--ox-deep); color: #fff; overflow: hidden;
  padding-block: .9rem; border-block: 1px solid rgba(255,255,255,.12);
}
.tagband__static { text-align: center; font-family: var(--serif); font-size: 1.35rem; margin: 0; }
.marquee { overflow: hidden; }
.marquee__track { display: flex; width: max-content; gap: 0; }
.marquee.is-running .marquee__track { animation: marquee 42s linear infinite; }
.marquee:hover .marquee__track, .marquee:focus-within .marquee__track { animation-play-state: paused; }
.marquee__item {
  font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.7rem);
  padding-inline: 1.6rem; white-space: nowrap; display: inline-flex; align-items: center; gap: 1.6rem;
}
.marquee__item::after { content: ""; width: 7px; height: 7px; background: currentColor; border-radius: 50%; opacity: .55; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
html.motion-off .marquee__track { animation: none; }

/* Logo marquee */
.marquee--logos { padding-block: 1rem; }
.marquee--logos .marquee__item { padding-inline: 2.5rem; }
.marquee--logos .marquee__item::after { display: none; }
.marquee--logos img { filter: grayscale(100%); opacity: .7; max-height: 62px; width: auto; }

/* Accordion */
.acc { border-top: 1px solid var(--rule); }
.acc__item { border-bottom: 1px solid var(--rule); }
.acc__head {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  background: none; border: 0; cursor: pointer; text-align: left;
  padding: 1.6rem 0; color: var(--ink); font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem); font-weight: 600; line-height: 1.15;
  font-variation-settings: "SOFT" 12, "WONK" 1;
  transition: color .2s ease;
}
.acc__head:hover { color: var(--ox); }
.acc__item.is-open .acc__head { color: var(--ox); }
.acc__icon {
  flex: 0 0 auto; width: 34px; height: 34px; border: 1px solid var(--rule); border-radius: 50%;
  position: relative; transition: background .25s ease, border-color .25s ease, transform .35s ease;
}
.acc__icon::before, .acc__icon::after {
  content: ""; position: absolute; inset: 50% auto auto 50%;
  width: 13px; height: 2px; background: currentColor; transform: translate(-50%,-50%);
  transition: transform .3s ease, opacity .2s ease;
}
.acc__icon::after { transform: translate(-50%,-50%) rotate(90deg); }
.acc__item.is-open .acc__icon { background: var(--ox); border-color: var(--ox); color: #fff; transform: rotate(180deg); }
.acc__item.is-open .acc__icon::after { opacity: 0; }
.acc__panel {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .42s cubic-bezier(.2,.7,.3,1);
}
.acc__item.is-open .acc__panel { grid-template-rows: 1fr; }
.acc__inner { overflow: hidden; }
.acc__inner > div { padding-bottom: 1.9rem; }
html.motion-off .acc__panel { transition: none; }
html.no-js .acc__panel { grid-template-rows: 1fr; }

.acc--ox { border-color: rgba(255,255,255,.25); }
.acc--ox .acc__item { border-color: rgba(255,255,255,.25); }
.acc--ox .acc__head { color: #fff; }
.acc--ox .acc__head:hover, .acc--ox .acc__item.is-open .acc__head { color: rgba(255,255,255,.75); }
.acc--ox .acc__icon { border-color: rgba(255,255,255,.4); }

/* Tabs */
.tabs__list {
  display: flex; flex-wrap: wrap; gap: .35rem;
  border-bottom: 1px solid var(--rule); margin-bottom: 2.5rem;
}
.tabs__tab {
  background: none; border: 0; cursor: pointer;
  font-family: var(--sans); font-size: 1rem; font-weight: 700; color: var(--ink-soft);
  padding: .9rem 1.15rem; border-bottom: 3px solid transparent; margin-bottom: -1px;
  transition: color .2s ease, border-color .2s ease;
}
.tabs__tab:hover { color: var(--ox); }
.tabs__tab.is-on { color: var(--ox); border-bottom-color: var(--ox); }
.tabs__panel.is-in { animation: panelIn .45s cubic-bezier(.2,.7,.3,1) both; }
@keyframes panelIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
html.motion-off .tabs__panel.is-in { animation: none; }

/* Slider */
.slider { position: relative; overflow: hidden; }
.slider__track { display: flex; transition: transform .6s cubic-bezier(.2,.7,.3,1); }
html.motion-off .slider__track { transition: none; }
.slider__slide { flex: 0 0 100%; min-width: 100%; padding-right: 1px; }
.slider__nav { display: flex; align-items: center; gap: .6rem; margin-top: 1.75rem; }
.slider__btn {
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
  background: transparent; border: 1px solid var(--rule); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.slider__btn:hover { background: var(--ox); border-color: var(--ox); color: #fff; }
.slider__dots { display: flex; gap: .45rem; margin-left: .75rem; }
.slider__dot {
  width: 9px; height: 9px; padding: 0; border-radius: 50%; cursor: pointer;
  border: 1px solid var(--ox); background: transparent; transition: width .25s ease, background .25s ease;
}
.slider__dot.is-on { background: var(--ox); width: 26px; border-radius: 5px; }

/* Funnel bar on the free page */
.funnel-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  background: var(--ox); color: #fff;
  transform: translateY(110%); transition: transform .45s cubic-bezier(.2,.7,.3,1);
  box-shadow: 0 -12px 34px rgba(36,30,28,.22);
}
.funnel-bar.is-up { transform: none; }
.funnel-bar__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.25rem;
  padding-block: .9rem; flex-wrap: wrap;
}
.funnel-bar p { margin: 0; font-weight: 700; }
.funnel-bar small { display: block; font-weight: 400; opacity: .82; }
@media (max-width: 620px) {
  .funnel-bar__inner { justify-content: center; text-align: center; padding-block: .75rem; }
  .funnel-bar .btn { width: 100%; text-align: center; }
  .funnel-bar small { display: none; }
}
html.motion-off .funnel-bar { transition: none; }

/* Training progress */
.training-progress { margin-bottom: 2.5rem; }
.training-progress__bar { height: 8px; background: var(--tint-deep); border-radius: 4px; overflow: hidden; }
.training-progress__fill {
  height: 100%; background: var(--ox); transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .5s cubic-bezier(.2,.7,.3,1);
}
.training-progress__label { font-weight: 700; font-size: .95rem; margin-top: .6rem; display: block; }
.module.is-done h3 { color: var(--ox); }
.module.is-done .module__num { opacity: .35; }
.module__check { display: inline-flex; align-items: center; gap: .55rem; font-size: .95rem; font-weight: 700; cursor: pointer; margin-top: 1rem; }
.module__check input { width: 20px; height: 20px; min-height: 0; accent-color: var(--ox); }

/* Buttons: press and busy states */
.btn { position: relative; transform: translateZ(0); }
.btn:active { transform: translateY(1px); }
.btn.is-busy { pointer-events: none; opacity: .85; }
.btn.is-busy::before {
  content: ""; display: inline-block; width: 14px; height: 14px;
  border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Cards and pillars lift on hover */
.card h3 a { transition: color .2s ease; }
.card__thumb { transition: transform .5s cubic-bezier(.2,.7,.3,1), filter .5s ease; }
.card a:hover .card__thumb { transform: scale(1.03); }
.pillar { transition: transform .35s cubic-bezier(.2,.7,.3,1); }
@media (min-width: 781px) { .pillar:hover { transform: translateY(-6px); } }
html.motion-off .pillar, html.motion-off .card__thumb { transition: none; transform: none; }

.textlink { transition: border-color .2s ease, color .2s ease; }
.compare__col { transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s ease; }
@media (min-width: 781px) { .compare__col--ours:hover { transform: translateY(-6px); box-shadow: 0 22px 46px rgba(78,10,12,.28); } }

/* Field focus lift */
.field { transition: transform .2s ease; }
.field:focus-within { transform: translateY(-1px); }

.hero__cue {
  position: absolute; left: 0; right: 0; bottom: 1.75rem;
  display: flex; justify-content: center; pointer-events: none;
}
.hero__cue span {
  display: block; width: 1px; height: 44px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.85));
  animation: cueDrop 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes cueDrop {
  0%   { transform: scaleY(0); opacity: 0; }
  40%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1) translateY(18px); opacity: 0; }
}
html.motion-off .hero__cue { display: none; }

/* Tag band */
.tagband {
  background: var(--ox-deep); color: #fff; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  padding-block: .9rem; border-block: 1px solid rgba(255,255,255,.12);
}
.tagband__static { text-align: center; font-family: var(--serif); font-size: 1.35rem; margin: 0; }
.marquee { overflow: hidden; }
.marquee__track { display: flex; width: max-content; gap: 0; }
.marquee.is-running .marquee__track { animation: marquee 88s linear infinite; }
.marquee:hover .marquee__track, .marquee:focus-within .marquee__track { animation-play-state: paused; }
.marquee__item {
  font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.7rem);
  padding-inline: 1.6rem; white-space: nowrap; display: inline-flex; align-items: center; gap: 1.6rem;
}
.marquee__item::after { content: ""; width: 7px; height: 7px; background: currentColor; border-radius: 50%; opacity: .55; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
html.motion-off .marquee__track { animation: none; }

/* Logo marquee */
.marquee--logos { padding-block: 1rem; }
.marquee--logos.is-running .marquee__track { animation-duration: 70s; }
.marquee--logos .marquee__item { padding-inline: 2.5rem; }
.marquee--logos .marquee__item::after { display: none; }
.marquee--logos img { filter: grayscale(100%); opacity: .7; max-height: 62px; width: auto; }

/* Accordion */
.acc { border-top: 1px solid var(--rule); }
.acc__item { border-bottom: 1px solid var(--rule); }
.acc__head {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  background: none; border: 0; cursor: pointer; text-align: left;
  padding: 1.6rem 0; color: var(--ink); font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem); font-weight: 600; line-height: 1.15;
  font-variation-settings: "SOFT" 12, "WONK" 1;
  transition: color .2s ease;
}
.acc__head:hover { color: var(--ox); }
.acc__item.is-open .acc__head { color: var(--ox); }
.acc__icon {
  flex: 0 0 auto; width: 34px; height: 34px; border: 1px solid var(--rule); border-radius: 50%;
  position: relative; transition: background .25s ease, border-color .25s ease, transform .35s ease;
}
.acc__icon::before, .acc__icon::after {
  content: ""; position: absolute; inset: 50% auto auto 50%;
  width: 13px; height: 2px; background: currentColor; transform: translate(-50%,-50%);
  transition: transform .3s ease, opacity .2s ease;
}
.acc__icon::after { transform: translate(-50%,-50%) rotate(90deg); }
.acc__item.is-open .acc__icon { background: var(--ox); border-color: var(--ox); color: #fff; transform: rotate(180deg); }
.acc__item.is-open .acc__icon::after { opacity: 0; }
.acc__panel {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .42s cubic-bezier(.2,.7,.3,1);
}
.acc__item.is-open .acc__panel { grid-template-rows: 1fr; }
.acc__inner { overflow: hidden; }
.acc__inner > div { padding-bottom: 1.9rem; }
html.motion-off .acc__panel { transition: none; }
html.no-js .acc__panel { grid-template-rows: 1fr; }

.acc--ox { border-color: rgba(255,255,255,.25); }
.acc--ox .acc__item { border-color: rgba(255,255,255,.25); }
.acc--ox .acc__head { color: #fff; }
.acc--ox .acc__head:hover, .acc--ox .acc__item.is-open .acc__head { color: rgba(255,255,255,.75); }
.acc--ox .acc__icon { border-color: rgba(255,255,255,.4); }

/* Tabs */
.tabs__list {
  display: flex; flex-wrap: wrap; gap: .35rem;
  border-bottom: 1px solid var(--rule); margin-bottom: 2.5rem;
}
.tabs__tab {
  background: none; border: 0; cursor: pointer;
  font-family: var(--sans); font-size: 1rem; font-weight: 700; color: var(--ink-soft);
  padding: .9rem 1.15rem; border-bottom: 3px solid transparent; margin-bottom: -1px;
  transition: color .2s ease, border-color .2s ease;
}
.tabs__tab:hover { color: var(--ox); }
.tabs__tab.is-on { color: var(--ox); border-bottom-color: var(--ox); }
.tabs__panel.is-in { animation: panelIn .45s cubic-bezier(.2,.7,.3,1) both; }
@keyframes panelIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
html.motion-off .tabs__panel.is-in { animation: none; }

/* Slider */
.slider { position: relative; overflow: hidden; }
.slider__track { display: flex; transition: transform .6s cubic-bezier(.2,.7,.3,1); }
html.motion-off .slider__track { transition: none; }
.slider__slide { flex: 0 0 100%; min-width: 100%; padding-right: 1px; }
.slider__nav { display: flex; align-items: center; gap: .6rem; margin-top: 1.75rem; }
.slider__btn {
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
  background: transparent; border: 1px solid var(--rule); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.slider__btn:hover { background: var(--ox); border-color: var(--ox); color: #fff; }
.slider__dots { display: flex; gap: .45rem; margin-left: .75rem; }
.slider__dot {
  width: 9px; height: 9px; padding: 0; border-radius: 50%; cursor: pointer;
  border: 1px solid var(--ox); background: transparent; transition: width .25s ease, background .25s ease;
}
.slider__dot.is-on { background: var(--ox); width: 26px; border-radius: 5px; }

/* Funnel bar on the free page */
.funnel-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  background: var(--ox); color: #fff;
  transform: translateY(110%); transition: transform .45s cubic-bezier(.2,.7,.3,1);
  box-shadow: 0 -12px 34px rgba(36,30,28,.22);
}
.funnel-bar.is-up { transform: none; }
.funnel-bar__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.25rem;
  padding-block: .9rem; flex-wrap: wrap;
}
.funnel-bar p { margin: 0; font-weight: 700; }
.funnel-bar small { display: block; font-weight: 400; opacity: .82; }
@media (max-width: 620px) {
  .funnel-bar__inner { justify-content: center; text-align: center; padding-block: .75rem; }
  .funnel-bar .btn { width: 100%; text-align: center; }
  .funnel-bar small { display: none; }
}
html.motion-off .funnel-bar { transition: none; }

/* Training progress */
.training-progress { margin-bottom: 2.5rem; }
.training-progress__bar { height: 8px; background: var(--tint-deep); border-radius: 4px; overflow: hidden; }
.training-progress__fill {
  height: 100%; background: var(--ox); transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .5s cubic-bezier(.2,.7,.3,1);
}
.training-progress__label { font-weight: 700; font-size: .95rem; margin-top: .6rem; display: block; }
.module.is-done h3 { color: var(--ox); }
.module.is-done .module__num { opacity: .35; }
.module__check { display: inline-flex; align-items: center; gap: .55rem; font-size: .95rem; font-weight: 700; cursor: pointer; margin-top: 1rem; }
.module__check input { width: 20px; height: 20px; min-height: 0; accent-color: var(--ox); }

/* Buttons: press and busy states */
.btn { position: relative; transform: translateZ(0); }
.btn:active { transform: translateY(1px); }
.btn.is-busy { pointer-events: none; opacity: .85; }
.btn.is-busy::before {
  content: ""; display: inline-block; width: 14px; height: 14px;
  border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Cards and pillars lift on hover */
.card h3 a { transition: color .2s ease; }
.card__thumb { transition: transform .5s cubic-bezier(.2,.7,.3,1), filter .5s ease; }
.card a:hover .card__thumb { transform: scale(1.03); }
.pillar { transition: transform .35s cubic-bezier(.2,.7,.3,1); }
@media (min-width: 781px) { .pillar:hover { transform: translateY(-6px); } }
html.motion-off .pillar, html.motion-off .card__thumb { transition: none; transform: none; }

.textlink { transition: border-color .2s ease, color .2s ease; }
.compare__col { transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s ease; }
@media (min-width: 781px) { .compare__col--ours:hover { transform: translateY(-6px); box-shadow: 0 22px 46px rgba(78,10,12,.28); } }

/* Field focus lift */
.field { transition: transform .2s ease; }
.field:focus-within { transform: translateY(-1px); }

/* ============================================================
   22. THE FORGE LANDING PAGE
   ============================================================ */

.eyebrow {
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ox);
  margin-bottom: 1.1rem;
}
.eyebrow--light { color: rgba(255,255,255,.85); }
.section--ox .eyebrow { color: rgba(255,255,255,.85); }

.forge-hero { padding-block: 1.75rem clamp(3rem, 6vw, 5rem); }
.forge-hero .free-mark { padding-block: 0 clamp(2rem, 4vw, 3rem); }
.forge-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .85fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.forge-hero h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.5rem);
  text-wrap: balance;
  margin-bottom: .5em;
}
.forge-hero__sub p { margin-bottom: 0; }

/* Capture card */
.capture-card {
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2.1rem);
  background: var(--tint);
  border: 1px solid var(--tint-deep);
  border-radius: 6px;
}
.capture-card h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  margin-bottom: .25em;
}
.capture-card > p { font-size: 1rem; color: var(--ink-soft); margin-bottom: 1.25rem; }
.capture-card--ox {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.28);
  margin-top: 0;
  max-width: 720px;
}
.capture-card--ox h2 { color: #fff; }
.capture-card--ox > p { color: rgba(255,255,255,.85); }

/* Mobile: the capture block stays above the fold, the subhead moves below it */
@media (max-width: 900px) {
  .forge-hero__grid { grid-template-columns: 1fr; }
  .forge-hero__copy { display: flex; flex-direction: column; }
  .forge-hero__copy .eyebrow { order: 1; }
  .forge-hero__copy h1 { order: 2; }
  .forge-hero__copy .capture-card { order: 3; margin-top: 1.5rem; }
  .forge-hero__copy .forge-hero__sub { order: 4; margin-top: 2rem; }
  .forge-hero__art { order: 5; margin-top: 2.5rem; }
}

/* Typographic cover plate, used until the real cover exists */
.forge-plate {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  text-align: center;
  aspect-ratio: 2 / 3;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: linear-gradient(160deg, var(--ox) 0%, var(--ox-deep) 100%);
  color: #fff;
  justify-content: center;
  box-shadow: 0 26px 60px rgba(36,30,28,.3);
  max-width: 340px; margin-inline: auto;
}
.forge-plate__rule { width: 52px; height: 3px; background: rgba(255,255,255,.75); }
.forge-plate__name {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3rem); line-height: 1;
  font-variation-settings: "SOFT" 12, "WONK" 1;
}
.forge-plate__sub { font-family: var(--sans); font-size: 1rem; line-height: 1.4; max-width: 22ch; }
.forge-plate__count {
  font-family: var(--sans); font-size: .78rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; opacity: .85;
}
/* Every book cover on the site, whatever the context: same ratio, same crop,
   same edge, same shadow. Uploaded covers and packaged ones look identical. */
.forge-cover,
.bookrow__art img,
.featured-book img,
.book-cover img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 3px;
  box-shadow: 0 22px 48px rgba(36,30,28,.3);
  background: var(--tint-deep);
}
.forge-cover { max-width: 460px; margin-inline: auto; }

/* Chapters */
.segments, .chapters {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
@media (max-width: 820px) { .segments, .segments, .chapters { grid-template-columns: 1fr; } }
.segment, .chapter {
  padding: clamp(1.5rem, 2.6vw, 2rem);
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: #fff;
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s ease, border-color .35s ease;
}
@media (min-width: 821px) {
  .segment:hover, .chapter:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(36,30,28,.11); border-color: var(--tint-deep); }
}
.segment__num, .chapter__num {
  display: inline-block;
  font-family: var(--serif); font-size: 2.1rem; line-height: 1; color: var(--ox);
  font-variation-settings: "SOFT" 12, "WONK" 1;
  margin-bottom: .5rem;
}
.segment h3, .chapter h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); margin-bottom: .4rem; }
.segment p, .chapter p { font-size: 1.02rem; color: var(--ink-soft); margin-bottom: 0; }

/* Reader cards */
.persona {
  padding: clamp(1.5rem, 2.6vw, 2rem);
  background: #fff; border-left: 3px solid var(--ox); border-radius: 0 4px 4px 0;
}
.persona h3 {
  font-family: var(--sans); font-size: .95rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ox);
  line-height: 1.4; margin-bottom: .85rem;
}
.persona p { font-size: 1.02rem; margin-bottom: 0; }

/* Straight talk and disclosure */
.straight-talk p { font-size: 1.12rem; }
.disclosure {
  padding: clamp(1.35rem, 2.4vw, 1.85rem);
  border: 1px solid var(--rule); border-radius: 4px; background: var(--tint);
}
.disclosure h3 { font-size: 1.25rem; margin-bottom: .5rem; color: var(--ox); }
.disclosure p { font-size: 1rem; margin-bottom: 0; color: var(--ink-soft); }

/* ============================================================
   23. THE QUESTION MECHANIC
   ============================================================ */

.qsection .question {
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1.06;
  letter-spacing: -.02em;
  max-width: 28ch;
  text-wrap: balance;
  margin: 0 0 clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.25rem);
  border-bottom: 1px solid var(--rule);
  color: var(--ox);
}
.section--tint .qsection .question,
.qsection.section--tint .question { border-bottom-color: var(--tint-deep); }
.qsection .question--light,
.section--ox .question { color: #fff; border-bottom-color: rgba(255,255,255,.28); }
.qsection .question--small {
  font-size: clamp(1.2rem, 1.9vw, 1.45rem);
  max-width: 34ch;
  margin-bottom: 1rem;
  padding-bottom: 0;
  border-bottom: 0;
}

.qsection__body { max-width: 68ch; }
.qsection__body p { font-size: clamp(1.06rem, 1.4vw, 1.2rem); }
.qsection__body p:last-child { margin-bottom: 0; }

/* The hero question is the largest type on the page */
.forge-hero .hero-question {
  font-size: clamp(2.6rem, 6.2vw, 5rem);
  line-height: .99;
  letter-spacing: -.028em;
  max-width: 20ch;
  text-wrap: balance;
  margin-bottom: .5em;
}
.forge-hero__sub p { font-size: clamp(1.05rem, 1.4vw, 1.18rem); }
.forge-hero__sub p:last-child { margin-bottom: 0; font-weight: 700; }

/* Testimony block, once he writes it */
.testimony {
  margin: 2.25rem 0;
  padding: clamp(1.35rem, 2.6vw, 1.9rem) clamp(1.35rem, 2.6vw, 2rem);
  background: #fff;
  border-left: 3px solid var(--ox);
  border-radius: 0 4px 4px 0;
}
.testimony p:last-child { margin-bottom: 0; }

/* Reader cards read as questions now */
.persona h3 {
  font-family: var(--serif);
  text-transform: none;
  letter-spacing: -.01em;
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  line-height: 1.15;
  font-weight: 600;
  font-variation-settings: "SOFT" 12, "WONK" 1;
}

/* ============================================================
   24. LANDING PAGE: DENSITY, SPINE, GRAPHICS, INTERACTION
   ============================================================ */

/* Tighter vertical rhythm. The page is one argument, so the sections
   should read as consecutive beats instead of separate pages. */
body.mw-no-chrome .section { padding-block: clamp(2.75rem, 5vw, 4.25rem); }
body.mw-no-chrome .qsection .question {
  margin-bottom: clamp(1.5rem, 2.6vw, 2.25rem);
  padding-bottom: clamp(.9rem, 1.6vw, 1.35rem);
}
body.mw-no-chrome .forge-hero { padding-block: 1.5rem clamp(2rem, 4vw, 3.25rem); }
body.mw-no-chrome .footer-minimal { padding-block: 2rem; }

/* Consecutive white sections need a hairline so they do not merge */
body.mw-no-chrome .section + .section:not(.section--tint):not(.section--ox) {
  border-top: 1px solid var(--rule);
}

/* Scroll spine */
.spine {
  position: fixed; left: clamp(.9rem, 2.2vw, 2rem); top: 22vh; bottom: 22vh;
  width: 2px; z-index: 90; pointer-events: none;
}
.spine__track { position: absolute; inset: 0; background: rgba(123,17,19,.16); }
.spine__fill {
  position: absolute; inset: 0; transform-origin: 0 0; transform: scaleY(0);
  background: var(--ox);
}
.spine__dot {
  position: absolute; left: 50%; width: 9px; height: 9px; margin-left: -4.5px;
  border-radius: 50%; background: var(--paper);
  border: 2px solid rgba(123,17,19,.35);
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}
.spine__dot.is-on { background: var(--ox); border-color: var(--ox); transform: scale(1.5); }
@media (max-width: 1180px) { .spine { display: none; } }

/* Hero embers */
.forge-hero__art { position: relative; }
.embers { position: absolute; inset: -12% -8%; pointer-events: none; overflow: hidden; }
.ember {
  position: absolute; bottom: -8%;
  width: 6px; height: 6px; border-radius: 50%;
  background: radial-gradient(circle, rgba(146,25,27,.85), rgba(146,25,27,0) 70%);
  left: calc(var(--i) * 11%);
  animation: emberRise calc(9s + var(--i) * 1.4s) linear infinite;
  animation-delay: calc(var(--i) * -1.7s);
  opacity: 0;
}
@keyframes emberRise {
  0%   { transform: translateY(0) scale(.6); opacity: 0; }
  12%  { opacity: .85; }
  70%  { opacity: .5; }
  100% { transform: translateY(-320px) translateX(28px) scale(1.4); opacity: 0; }
}
html.motion-off .embers { display: none; }

/* Cover plate reacts to the pointer */
.forge-plate, .forge-cover {
  transition: transform .4s cubic-bezier(.2,.7,.3,1), box-shadow .4s ease;
  transform-style: preserve-3d;
  position: relative;
}
[data-tilt]:hover .forge-plate, [data-tilt]:hover .forge-cover {
  box-shadow: 0 34px 74px rgba(36,30,28,.38);
}
html.motion-off .forge-plate, html.motion-off .forge-cover { transform: none !important; }

/* Segment cards */
.segments { gap: clamp(1rem, 2vw, 1.6rem); }
.segment { position: relative; overflow: hidden; }
.segment__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: .9rem;
}
.segment__icon {
  width: 44px; height: 44px; color: var(--ox);
  transition: transform .45s cubic-bezier(.2,.7,.3,1);
}
.segment__icon path, .segment__icon circle, .segment__icon ellipse, .segment__icon rect {
  stroke-dasharray: 420; stroke-dashoffset: 420;
  transition: stroke-dashoffset 1.1s cubic-bezier(.2,.7,.3,1);
}
.segment.is-in .segment__icon path,
.segment.is-in .segment__icon circle,
.segment.is-in .segment__icon ellipse,
.segment.is-in .segment__icon rect { stroke-dashoffset: 0; }
html.motion-off .segment__icon path,
html.motion-off .segment__icon circle,
html.motion-off .segment__icon ellipse,
html.motion-off .segment__icon rect { stroke-dashoffset: 0; transition: none; }

.segment__num { font-size: 2.4rem; opacity: .28; margin-bottom: 0; }
.segment:hover .segment__icon { transform: scale(1.08) rotate(-3deg); }
.segment__bar {
  position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: var(--ox); transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .45s cubic-bezier(.2,.7,.3,1);
}
.segment:hover .segment__bar { transform: scaleX(1); }

/* Comparison: the left column strikes itself out as it arrives */
.compare__item { align-items: center; }
.compare__text { position: relative; display: inline-block; }
.compare__col:not(.compare__col--ours) .compare__text::after {
  content: ""; position: absolute; left: 0; right: 0; top: 52%;
  height: 1px; background: currentColor; opacity: .55;
  transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .55s cubic-bezier(.2,.7,.3,1);
}
.compare__col.is-in:not(.compare__col--ours) .compare__text::after { transform: scaleX(1); }
.compare__col:not(.compare__col--ours) .compare__item:nth-child(2) .compare__text::after { transition-delay: .1s; }
.compare__col:not(.compare__col--ours) .compare__item:nth-child(3) .compare__text::after { transition-delay: .2s; }
.compare__col:not(.compare__col--ours) .compare__item:nth-child(4) .compare__text::after { transition-delay: .3s; }
.compare__col:not(.compare__col--ours) .compare__item:nth-child(5) .compare__text::after { transition-delay: .4s; }
html.motion-off .compare__text::after { transition: none; }
.compare__col--ours .compare__mark {
  transition: transform .35s cubic-bezier(.2,.7,.3,1);
}
.compare__col--ours .compare__item:hover .compare__mark { transform: translateX(5px); }

/* Reader cards are choices now */
.persona {
  display: block; width: 100%; text-align: left; cursor: pointer;
  font-family: var(--sans); color: inherit;
  border: 1px solid var(--rule); border-left: 3px solid var(--ox);
  transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s ease, background .3s ease;
}
.persona:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(36,30,28,.12); }
.persona__icon {
  width: 40px; height: 40px; color: var(--ox); margin-bottom: .9rem;
  transition: transform .4s cubic-bezier(.2,.7,.3,1);
}
.persona:hover .persona__icon { transform: translateY(-3px) scale(1.06); }
.persona__pick {
  display: inline-block; margin-top: 1.1rem;
  font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ox); border-bottom: 2px solid transparent; padding-bottom: 2px;
  transition: border-color .25s ease, color .25s ease;
}
.persona:hover .persona__pick { border-bottom-color: var(--ox); }
.persona.is-picked {
  background: var(--tint); border-color: var(--ox); border-left-width: 6px;
}
.persona.is-picked .persona__pick { color: var(--ox-deep); border-bottom-color: var(--ox-deep); }
.persona.is-picked .persona__pick::after { content: " \2713"; }

/* Answer line that appears once he picks one */
.persona-answer {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  display: none; align-items: center; gap: 1.25rem; flex-wrap: wrap;
  padding: clamp(1rem, 2vw, 1.4rem) clamp(1.1rem, 2.2vw, 1.6rem);
  background: var(--ox); color: #fff; border-radius: 4px;
}
.persona-answer.is-on { display: flex; animation: panelIn .45s cubic-bezier(.2,.7,.3,1) both; }
.persona-answer p { margin: 0; font-weight: 700; font-size: 1.08rem; }
html.motion-off .persona-answer.is-on { animation: none; }

/* ============================================================
   25. SITE WIDE: DENSITY, GRAPHICS, INTERACTION
   ============================================================ */

/* The whole site takes the landing page rhythm */
.section { padding-block: clamp(3rem, 5.5vw, 5rem); }
.section + .section:not(.section--tint):not(.section--ox):not(.section--rule) {
  border-top: 1px solid var(--rule);
}
.section__head { margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.entry-header { padding-block: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 2.5vw, 2rem); }

/* Shared line-icon behaviour: draws itself in when its block arrives */
.stack__icon, .inline-icon, .persona__icon, .segment__icon {
  color: var(--ox);
}
.stack__icon { width: 34px; height: 34px; flex: 0 0 auto; }
.inline-icon { width: 22px; height: 22px; flex: 0 0 auto; }

.stack__icon path, .stack__icon circle, .stack__icon rect, .stack__icon ellipse,
.persona__icon path, .persona__icon circle, .persona__icon rect, .persona__icon ellipse {
  stroke-dasharray: 420; stroke-dashoffset: 420;
  transition: stroke-dashoffset 1.1s cubic-bezier(.2,.7,.3,1);
}
.is-in .stack__icon path, .is-in .stack__icon circle, .is-in .stack__icon rect, .is-in .stack__icon ellipse,
.is-in .persona__icon path, .is-in .persona__icon circle, .is-in .persona__icon rect, .is-in .persona__icon ellipse {
  stroke-dashoffset: 0;
}
html.motion-off .stack__icon *, html.motion-off .persona__icon *, html.motion-off .segment__icon * {
  stroke-dashoffset: 0 !important; transition: none;
}

/* Accordion headings carry their mark */
.acc__label { display: flex; align-items: center; gap: 1rem; }
.acc__item.is-open .stack__icon { transform: scale(1.06); }
.acc__label .stack__icon { transition: transform .35s cubic-bezier(.2,.7,.3,1); }

/* Contact lines */
.contact-line { display: flex; align-items: center; gap: .75rem; }

/* Cards lift with a rule sweeping the base, same language as the segments */
.card--lift {
  position: relative;
  padding: clamp(1.25rem, 2.2vw, 1.75rem);
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: #fff;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s ease, border-color .35s ease;
}
.section--tint .card--lift { background: #fff; }
/* The thumbnail bleeds to the card edges. Negative margins alone leave the
   image at its intrinsic width, so the width has to grow to match. */
.card--lift { --card-pad: clamp(1.25rem, 2.2vw, 1.75rem); }
.card--lift .card__thumb {
  margin: calc(-1 * var(--card-pad)) calc(-1 * var(--card-pad)) 1.15rem;
  width: calc(100% + (2 * var(--card-pad)));
  max-width: none;
  display: block;
}
.card--lift > a:first-child {
  display: block;
  margin: calc(-1 * var(--card-pad)) calc(-1 * var(--card-pad)) 1.15rem;
}
.card--lift > a:first-child .card__thumb {
  margin: 0;
  width: 100%;
}
.card__bar {
  position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: var(--ox); transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .45s cubic-bezier(.2,.7,.3,1);
}
@media (min-width: 781px) {
  .card--lift:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(36,30,28,.11); border-color: var(--tint-deep); }
}
.card--lift:hover .card__bar { transform: scaleX(1); }
html.motion-off .card--lift, html.motion-off .card__bar { transition: none; transform: none; }

/* Checklists tick themselves in */
.checklist li::before { transition: transform .4s cubic-bezier(.2,.7,.3,1), opacity .4s ease; }
html.js .checklist li:not(.is-in)::before { transform: scale(0); opacity: 0; }
html.js .checklist li.is-in::before { transform: scale(1); opacity: 1; }
html.motion-off .checklist li::before { transform: none !important; opacity: 1 !important; }

/* The spine sits clear of the sticky header on interior pages */
body:not(.mw-no-chrome) .spine { top: 26vh; }

/* Prefill flash, so a man sees the field he just filled */
.is-prefilled {
  animation: prefillFlash 1.5s ease;
}
@keyframes prefillFlash {
  0%, 100% { box-shadow: 0 0 0 0 rgba(123,17,19,0); }
  25%      { box-shadow: 0 0 0 4px rgba(123,17,19,.28); }
}
html.motion-off .is-prefilled { animation: none; }

/* ============================================================
   26. MASTER CONTENT COMPONENTS
   ============================================================ */

.pillar__q {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: .75rem;
  font-variation-settings: "SOFT" 12, "WONK" 1;
}

.capture__title { font-size: clamp(1.7rem, 2.6vw, 2.3rem); margin-bottom: .5rem; }
.capture__title span {
  display: block;
  font-family: var(--sans); font-size: .95rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  margin-top: .5rem; opacity: .85;
}

/* The fine print under a form. Named apart from the cookie bar, which is a
   fixed element and was bleeding its styling onto every form on the site. */
.form-consent {
  display: block;
  font-size: .82rem; line-height: 1.5;
  color: var(--ink-soft);
  margin: 1rem 0 0;
  max-width: 52ch;
}
.section--ox .form-consent, .capture-card--ox .form-consent { color: rgba(255,255,255,.78); }
.section--ox .form-consent a, .capture-card--ox .form-consent a { color: #fff; }
.mw-form--inline .field--full { grid-column: 1 / -1; }

/* Books */
.booklist { display: grid; gap: clamp(2rem, 4vw, 3.25rem); }
.bookrow {
  display: grid;
  grid-template-columns: minmax(0, clamp(230px, 27vw, 360px)) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem); align-items: center;
  padding-bottom: clamp(2rem, 4vw, 3.25rem);
  border-bottom: 1px solid var(--tint-deep);
}
.booklist .bookrow:last-child { border-bottom: 0; padding-bottom: 0; }
@media (max-width: 720px) { .bookrow { grid-template-columns: 1fr; } }
.bookrow__art { display: block; perspective: 1100px; }
.bookrow__art .forge-cover { max-width: none; }
.forge-plate--book {
  display: flex; width: 100%; max-width: none; gap: .9rem;
  aspect-ratio: 2 / 3;
  box-shadow: 0 22px 48px rgba(36,30,28,.3);
}
.forge-plate--book .forge-plate__name { font-size: clamp(1.6rem, 2.9vw, 2.5rem); }
.forge-plate--book .forge-plate__sub { font-size: clamp(.85rem, 1.1vw, 1rem); }
.forge-plate--book .forge-plate__count { font-size: .7rem; }
.bookrow__num {
  display: block; font-family: var(--serif); font-size: 1.5rem; color: var(--ox);
  opacity: .5; margin-bottom: .35rem;
  font-variation-settings: "SOFT" 12, "WONK" 1;
}
.bookrow h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: .2em; }
.bookrow h2 a { color: var(--ink); text-decoration: none; }
.bookrow h2 a:hover { color: var(--ox); }
.bookrow__sub { font-weight: 700; color: var(--ox); margin-bottom: .9rem; }
.bookrow p { color: var(--ink-soft); }

/* Contact routes */
.routes { display: grid; gap: 1.25rem; margin-block: 2rem; }
.route {
  padding: 1.25rem 1.4rem; background: var(--tint);
  border-left: 3px solid var(--ox); border-radius: 0 4px 4px 0;
}
.route h2 {
  font-family: var(--sans); font-size: .85rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ox); margin-bottom: .5rem;
}
.route p { margin-bottom: .5rem; font-size: 1rem; }

/* ============================================================
   27. SPEAKING PAGE
   ============================================================ */

.funnel-bar--page { z-index: 95; }

.speaking-shot { margin-top: clamp(2rem, 4vw, 3rem); }
.speaking-shot img {
  width: 100%; max-height: 460px; object-fit: cover; object-position: center 30%;
  border-radius: 4px;
}

.talk__audience {
  font-size: .95rem; color: var(--ink-soft); margin-top: 1rem; margin-bottom: 0;
}
.talk__audience span {
  display: block;
  font-size: .74rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ox); margin-bottom: .3rem;
}

.takeaways__head {
  font-family: var(--sans); font-size: .82rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ox);
  margin: 2.25rem 0 1rem;
}
.takeaways { list-style: none; counter-reset: take; margin: 0; padding: 0; display: grid; gap: 1rem; }
.takeaways li {
  counter-increment: take;
  display: grid; grid-template-columns: 2.2rem 1fr; gap: .9rem;
  margin: 0;
}
.takeaways li::before {
  content: counter(take, decimal-leading-zero);
  font-family: var(--serif); font-size: 1.05rem; color: var(--ox); opacity: .6;
  font-variation-settings: "SOFT" 12, "WONK" 1;
}
.takeaways strong,
.takeaways span { grid-column: 2; }
.takeaways strong { display: block; font-size: 1.05rem; margin-bottom: .2rem; }
.takeaways span { display: block; color: var(--ink-soft); font-size: 1rem; line-height: 1.55; }

/* ============================================================
   28. SOCIAL GRID
   ============================================================ */

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(.7rem, 1.4vw, 1rem);
}
@media (max-width: 1100px) { .social-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 800px)  { .social-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 460px)  { .social-grid { grid-template-columns: 1fr; } }

/* A row rather than a tall box, so the card is mostly content */
.social-card {
  position: relative; overflow: hidden;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: .85rem;
  padding: .85rem 1rem;
  background: #fff;
  border: 1px solid var(--rule);
  border-left: 3px solid var(--brand);
  border-radius: 4px;
  text-decoration: none;
  transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s ease,
              border-color .3s ease, background .3s ease;
}
.section--tint .social-card { background: #fff; }

.social-card__badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%; flex: 0 0 auto;
  background: color-mix(in srgb, var(--brand) 12%, #fff);
  transition: background .3s ease, transform .3s cubic-bezier(.2,.7,.3,1);
}
.social-card__badge svg { width: 20px; height: 20px; fill: var(--brand); transition: fill .3s ease; }

.social-card__text { display: grid; gap: .05rem; min-width: 0; }
.social-card__name {
  font-family: var(--sans); font-weight: 700; font-size: 1rem; color: var(--ink);
  line-height: 1.2;
}
.social-card__handle {
  font-family: var(--sans); font-size: .82rem; color: var(--ink-soft);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.social-card__action {
  font-family: var(--sans); font-size: .66rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ox);
  white-space: nowrap; margin-top: .2rem;
}

@media (min-width: 781px) {
  .social-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(36,30,28,.12);
    border-color: var(--rule);
    border-left-color: var(--brand);
  }
}
.social-card:hover .social-card__badge { background: var(--brand); transform: scale(1.05); }
.social-card:hover .social-card__badge svg { fill: #fff; }
.social-card:hover .card__bar { transform: scaleX(1); }

.social-card--solid .social-card__badge { background: var(--brand); }
.social-card--solid .social-card__badge svg { fill: #fff; }
.social-card--solid:hover .social-card__badge { background: var(--brand); transform: scale(1.05); }

html.motion-off .social-card, html.motion-off .social-card__badge { transition: none; transform: none; }

@supports not (background: color-mix(in srgb, red 10%, white)) {
  .social-card__badge { background: var(--tint); }
}

/* ============================================================
   29. MORE MOTION
   ============================================================ */

/* Three steps sit three across, never two on top of one */
.steps { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.steps .segment__icon { width: 38px; height: 38px; }

/* Hero embers also drift on the homepage */
.hero .embers { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero .ember { background: radial-gradient(circle, rgba(255,225,190,.75), rgba(255,180,120,0) 70%); }

/* Pointer spotlight. The card lights where the cursor is. */
.card--lift, .pillar, .segment, .social-card, .persona, .compare__col {
  --mx: 50%; --my: 50%;
}
.card--lift::after, .pillar::after, .segment::after,
.social-card::after, .persona::after {
  content: "";
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(220px circle at var(--mx) var(--my), rgba(123,17,19,.09), transparent 62%);
  opacity: 0; transition: opacity .35s ease;
}
.card--lift:hover::after, .pillar:hover::after, .segment:hover::after,
.social-card:hover::after, .persona:hover::after { opacity: 1; }
.card--lift > *, .pillar > *, .segment > *, .social-card > *, .persona > * { position: relative; z-index: 1; }
.pillar, .persona, .social-card { position: relative; }
html.motion-off .card--lift::after, html.motion-off .pillar::after,
html.motion-off .segment::after, html.motion-off .social-card::after,
html.motion-off .persona::after { display: none; }

/* Tab indicator slides between talks */
.tabs__list { position: relative; }
.tabs__ink {
  position: absolute; bottom: -1px; height: 3px; background: var(--ox);
  transition: transform .4s cubic-bezier(.2,.7,.3,1), width .4s cubic-bezier(.2,.7,.3,1);
  pointer-events: none;
}
.tabs__tab.is-on { border-bottom-color: transparent; }
html.motion-off .tabs__ink { transition: none; }

/* Images wipe in rather than appearing */
html.js .card__thumb, html.js .pillar__photo, html.js .speaking-shot img, html.js .featured-media img {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s cubic-bezier(.2,.7,.3,1), transform .5s cubic-bezier(.2,.7,.3,1);
}
html.js .is-in .card__thumb, html.js .is-in .pillar__photo,
html.js .is-in img, html.js .speaking-shot.is-in img { clip-path: inset(0 0 0 0); }
html.motion-off .card__thumb, html.motion-off .pillar__photo,
html.motion-off .speaking-shot img, html.motion-off .featured-media img {
  clip-path: none !important; transition: none;
}

/* The hero recedes as the page moves past it */
.hero__inner { will-change: opacity, transform; }

/* Footer carries a drifting mark */
.site-footer { position: relative; overflow: hidden; }
.site-footer .watermark {
  right: -8%; top: 46%; height: 118%; fill: #fff; opacity: .035;
  animation: footerDrift 26s ease-in-out infinite alternate;
}
@keyframes footerDrift {
  from { transform: translateY(-50%) rotate(-2deg) scale(1); }
  to   { transform: translateY(-54%) rotate(2deg) scale(1.06); }
}
html.motion-off .site-footer .watermark { animation: none; }

/* ============================================================
   30. FOOTER LAYOUT
   ============================================================ */

.site-footer__top {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.7fr) minmax(0, .95fr);
}
@media (max-width: 1024px) {
  .site-footer__top { grid-template-columns: 1fr 1fr; }
  .site-footer__top > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .site-footer__top { grid-template-columns: 1fr; }
  .site-footer__top > :first-child { grid-column: auto; }
}

.site-footer .footer-links {
  columns: 2;
  column-gap: clamp(1.25rem, 2.5vw, 2.25rem);
  display: block;
}
.site-footer .footer-links li {
  break-inside: avoid;
  margin-bottom: .55rem;
}
@media (max-width: 420px) { .site-footer .footer-links { columns: 1; } }

.site-footer h4 {
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding-bottom: .7rem;
  border-bottom: 1px solid rgba(255,255,255,.22);
  margin-bottom: 1.1rem;
}
.site-footer__touch li { margin-bottom: .1rem; }

/* ============================================================
   31. SOCIAL STRIP
   ============================================================ */

.marquee--social {
  padding-block: clamp(1.5rem, 3vw, 2.25rem);
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  /* Fade the ends so cards enter and leave rather than being cut off */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee--social .marquee__track { gap: clamp(.85rem, 1.6vw, 1.25rem); align-items: stretch; }
.marquee--social.is-running .marquee__track { animation-duration: 92s; }
.marquee--social .social-card {
  width: 250px; flex: 0 0 250px;
  transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s ease, border-color .3s ease;
}
.marquee--social:hover .marquee__track,
.marquee--social:focus-within .marquee__track { animation-play-state: paused; }
@media (max-width: 620px) {
  .marquee--social .social-card { width: 215px; flex: 0 0 215px; }
  .marquee--social.is-running .marquee__track { animation-duration: 64s; }
}

/* Marks whose brand is the black field itself */
.social-card--solid .social-card__badge { background: var(--brand); }
.social-card--solid .social-card__badge svg { fill: #fff; }
.social-card--solid:hover .social-card__badge { background: var(--brand); transform: scale(1.06); }
.social-card--solid:hover .social-card__badge svg { fill: #fff; }

/* A signpost rather than an argument: smaller heading, no question rule */
.social-band { padding-block: clamp(2.5rem, 4.5vw, 3.75rem); }
.social-band__head {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  text-align: center;
  color: var(--ox);
  margin: 0;
}

/* ============================================================
   32. PAGE UPGRADES
   ============================================================ */

/* Pillar archive */
.pillar-head__grid {
  display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, .85fr);
  gap: clamp(1.5rem, 4vw, 3rem); align-items: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
@media (max-width: 820px) { .pillar-head__grid { grid-template-columns: 1fr; } }
.pillar-head__art { border-radius: 6px; overflow: hidden; border: 1px solid var(--rule); }
.pillar-head__art svg { display: block; width: 100%; height: auto; }

/* About page */
.about-side { position: relative; }
.about-portrait { margin: 2rem 0 0; overflow: hidden; border-radius: 6px; }
.about-portrait img { width: 100%; display: block; }
.about-pull {
  margin: 2rem 0 0; padding: 1.35rem 0 0 1.5rem;
  border-left: 3px solid var(--ox); border-top: 0;
  font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.55rem); line-height: 1.25;
  color: var(--ox);
  font-variation-settings: "SOFT" 12, "WONK" 1;
}

/* Long form gets a dropped initial */
.entry-content--article > p:first-of-type::first-letter {
  float: left;
  font-family: var(--serif); font-weight: 700;
  font-size: 4.2em; line-height: .78;
  padding: .06em .12em 0 0;
  color: var(--ox);
  font-variation-settings: "SOFT" 12, "WONK" 1;
}

/* Share row */
.share {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.5rem; border-top: 1px solid var(--rule);
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.25rem;
}
.share__label {
  font-family: var(--sans); font-size: .78rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ox);
}
.share__row { display: flex; flex-wrap: wrap; gap: .6rem; }
.share__link {
  font-family: var(--sans); font-size: .85rem; font-weight: 700;
  text-decoration: none; color: var(--ink);
  border: 1px solid var(--rule); border-radius: 999px;
  padding: .45rem 1.1rem;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.share__link:hover {
  background: var(--ox); border-color: var(--ox); color: #fff; transform: translateY(-2px);
}
html.motion-off .share__link { transition: none; }

/* Contact routes carry their mark */
.route { position: relative; padding-left: 1.4rem; }
.route .stack__icon { width: 30px; height: 30px; margin-bottom: .6rem; }

/* The line beneath the testimony. Quiet, findable, never decorative. */
.helpline {
  margin: .85rem 0 0;
  font-size: .95rem;
  font-weight: 700;
  color: var(--ox);
}

/* ============================================================
   33. COOKIE CONSENT
   ============================================================ */

.cookiebar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 400;
  background: var(--paper);
  border-top: 3px solid var(--ox);
  box-shadow: 0 -14px 40px rgba(36,30,28,.16);
  animation: consentUp .5s cubic-bezier(.2,.7,.3,1) .8s both;
}
@keyframes consentUp { from { transform: translateY(110%); } to { transform: none; } }
html.motion-off .cookiebar { animation: none; }
.cookiebar.is-gone { display: none; }

.cookiebar__inner {
  max-width: var(--wrap); margin-inline: auto;
  padding: 1.1rem var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.25rem; flex-wrap: wrap;
}
.cookiebar__text { margin: 0; font-size: .98rem; max-width: 68ch; color: var(--ink); }
.cookiebar__actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.cookiebar__actions .btn { padding: .6rem 1.5rem; font-size: .95rem; }

@media (max-width: 620px) {
  .cookiebar__inner { flex-direction: column; align-items: stretch; }
  .cookiebar__actions .btn { flex: 1 1 auto; justify-content: center; }
}

.cookiebar__reopen {
  background: none; border: 0; cursor: pointer; padding: 0;
  font-family: var(--sans); font-size: .88rem; color: #fff; opacity: .85;
  text-decoration: underline; text-underline-offset: 3px;
}
.cookiebar__reopen:hover { opacity: 1; }

/* ============================================================
   34. SECTION PHOTOGRAPHS
   ============================================================ */

.media-frame {
  margin: clamp(1.5rem, 3vw, 2.25rem) 0 0;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--rule);
  background: var(--tint);
}
.media-frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .8s cubic-bezier(.2,.7,.3,1), clip-path 1s cubic-bezier(.2,.7,.3,1);
}
html.js .media-frame img { clip-path: inset(0 100% 0 0); }
html.js .media-frame.is-in img { clip-path: inset(0 0 0 0); }
html.motion-off .media-frame img { clip-path: none !important; transition: none; }

.media-frame--wide img { aspect-ratio: 4 / 3; }
.media-frame--tall img { aspect-ratio: 3 / 4; }
.media-frame--square img { aspect-ratio: 1 / 1; }

/* A photograph standing on its own in a single column section runs full
   width and taller, rather than sitting in the middle like a thumbnail. */
.media-frame--wide { width: 100%; }
.qsection__body > .media-frame,
.wrap > .media-frame {
  max-width: none;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.wrap > .media-frame--wide img { aspect-ratio: 21 / 9; }
.media-frame:hover img { transform: scale(1.03); }

.media-frame figcaption {
  padding: .75rem 1rem;
  font-size: .88rem; color: var(--ink-soft); background: #fff;
  border-top: 1px solid var(--rule);
}

.section--ox .media-frame { border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.06); }
.section--ox .media-frame figcaption { background: transparent; color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.2); }

/* Two columns only when a photograph is present */
.media-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, var(--media-weight, 1.15fr));
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: center;
}
/* Copy stays readable rather than stretching to fill the narrower column */
.media-split__body { max-width: 60ch; }
.media-split--image-left .media-split__body { order: 2; }
.media-split--image-left .media-frame { order: 1; }
.media-split .media-frame { margin-top: 0; }
.media-split .qsection__body { max-width: none; }
@media (max-width: 860px) {
  .media-split { grid-template-columns: 1fr; }
  .media-split--image-left .media-split__body { order: 1; }
  .media-split--image-left .media-frame { order: 2; }
}

/* Inside a capture block the photograph sits above the copy and stays modest */
.capture .media-frame { max-width: 380px; margin-bottom: 1.5rem; margin-top: 0; }
@media (max-width: 780px) { .capture .media-frame { max-width: 100%; } }

/* ============================================================
   35. PRICE AND BUY
   ============================================================ */

.buyrow {
  display: flex; align-items: center; gap: 1rem 1.25rem; flex-wrap: wrap;
  margin-top: 1.25rem;
}
.price {
  font-family: var(--serif); font-weight: 700;
  font-size: 1.5rem; line-height: 1; color: var(--ox);
  font-variation-settings: "SOFT" 12, "WONK" 1;
}
.price--large { font-size: clamp(1.8rem, 2.6vw, 2.3rem); margin: 0 0 1rem; }
.buyrow .textlink { margin-top: 0; }

/* The claim instructions inside the upgrade block */
.upgrade-claim {
  margin: 1.5rem 0 0;
  padding: 1.1rem 1.35rem;
  background: var(--tint);
  border-left: 3px solid var(--ox);
  border-radius: 0 4px 4px 0;
}
.upgrade-claim__label {
  font-family: var(--sans); font-size: .78rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ox);
  margin-bottom: .5rem;
}
.upgrade-claim p:last-child { margin-bottom: 0; }

/* Consent sits under the form, never against the button */
.mw-form + .form-consent { margin-top: 1rem; }
.cards + .form-consent, .duo + .form-consent { margin-top: 1.75rem; }

/* Even rows of social cards rather than whatever the width allows */
.social-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1000px) { .social-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 700px)  { .social-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 400px)  { .social-grid { grid-template-columns: 1fr; } }

/* ============================================================
   36. WRITING STRIP
   ============================================================ */

.marquee--writing {
  padding-block: clamp(1.25rem, 2.5vw, 2rem);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.marquee--writing .marquee__track {
  gap: clamp(1.25rem, 2.4vw, 2rem);
  align-items: stretch;
}
.marquee--writing.is-running .marquee__track { animation-duration: 92s; }
.marquee--writing:hover .marquee__track,
.marquee--writing:focus-within .marquee__track { animation-play-state: paused; }

.marquee--writing .card--lift {
  width: 360px; flex: 0 0 360px;
  display: flex; flex-direction: column;
}
.marquee--writing .card--lift p {
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}
.marquee--writing .card--lift h3 { font-size: 1.28rem; }

@media (max-width: 620px) {
  .marquee--writing .card--lift { width: 280px; flex: 0 0 280px; }
  .marquee--writing.is-running .marquee__track { animation-duration: 68s; }
}

/* ============================================================
   37. BOOK SALES PAGE
   ============================================================ */

.booklede { padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.booklede__grid {
  display: grid;
  grid-template-columns: minmax(0, clamp(260px, 32vw, 420px)) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 860px) { .booklede__grid { grid-template-columns: 1fr; } }
.booklede__art { perspective: 1100px; }
.booklede h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin: .2em 0 .1em; }
.booklede__sub {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--ox); margin-bottom: 1.5rem;
}
.booklede .price--large { margin-bottom: .75rem; }
.booklede .btn-row { margin-top: .5rem; }

.specs {
  list-style: none; margin: 1.75rem 0 0; padding: 1.25rem 0 0;
  border-top: 1px solid var(--rule);
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem;
}
.specs li {
  margin: 0; font-family: var(--sans); font-size: .88rem; color: var(--ink-soft);
  display: flex; align-items: center; gap: .5rem;
}
.specs li::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--ox); flex: 0 0 auto;
}

.card__thumb--cover { aspect-ratio: 2 / 3; }

/* ============================================================
   38. THE LINE, AS AN ACCORDION
   ============================================================ */

.backlist__label {
  font-family: var(--sans); font-size: .78rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ox);
  margin: 2rem 0 .5rem;
}

.acc--line .acc__item { border-bottom: 1px solid var(--rule); }
.acc--line .acc__head { padding: .9rem 0; align-items: flex-start; }
.acc--line .acc__label { align-items: flex-start; gap: .9rem; }
.acc--line .acc__num {
  font-family: var(--serif); font-size: 1rem; color: var(--ox); opacity: .55;
  line-height: 1.5; flex: 0 0 auto;
  font-variation-settings: "SOFT" 12, "WONK" 1;
}
.acc--line .acc__title {
  display: block;
  font-family: var(--serif); font-size: clamp(1.15rem, 1.9vw, 1.45rem);
  line-height: 1.2; color: var(--ink);
  font-variation-settings: "SOFT" 12, "WONK" 1;
}
.acc--line .acc__sub {
  display: block; margin-top: .15rem;
  font-family: var(--sans); font-size: .88rem; color: var(--ink-soft);
}
.acc--line .acc__head:hover .acc__title { color: var(--ox); }
.acc--line .acc__item.is-open .acc__title { color: var(--ox); }
/* Padding belongs on the child. The panel collapses by zeroing its row
   height, and padding on the clipped element itself still renders, which
   leaks a line of text out of every closed item. */
.acc--line .acc__inner > div { padding: 0 0 1.2rem 2.6rem; }
.acc--line .acc__inner p { color: var(--ink-soft); margin-bottom: .75rem; }
.acc--line .buyrow { margin-top: .5rem; }
.acc--line .acc__icon { margin-top: .35rem; }
