/* ===========================================
   Dmytro Lavryniuk — static reproduction
   =========================================== */

/* ---- Fonts ---- */
@font-face {
  font-family: "Mattone";
  src: url("../fonts/mattone-150.woff") format("woff");
  font-weight: 400 700;
  font-display: swap;
}
@font-face {
  font-family: "EditorsNote";
  src: url("../fonts/editorsnote-regular.woff") format("woff");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "EditorsNote";
  src: url("../fonts/editorsnote-italic.woff") format("woff");
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}

/* ---- Tokens ---- */
:root {
  --bg: #f1eee9;          /* cream main */
  --bg-2: #ebe7df;         /* cream darker */
  --ink: #111111;
  --ink-soft: rgba(17,17,17,0.62);
  --paper: #ffffff;
  --dark: #0c0c0c;
  --dark-2: #161616;
  --white: #ffffff;
  --white-soft: rgba(255,255,255,0.72);
  --copper: #ba916b;
  --accent: #fde272;

  --serif: "EditorsNote", "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Mattone", "Inter", system-ui, -apple-system, Segoe UI, sans-serif;

  --container: 1440px;
  --gutter: clamp(20px, 5vw, 80px);
  --section-y: clamp(60px, 8vw, 100px);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-fast: 180ms var(--ease);
  --t-mid:  320ms var(--ease);
  --t-slow: 680ms var(--ease);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, svg, video { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; padding: 0; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast), opacity var(--t-fast); }
ul, ol { padding: 0; margin: 0; list-style: none; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

/* ---- Typography ---- */
.display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}
.display-italic {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}
h1.display, .h1 { font-size: clamp(3.2rem, 1.5rem + 6vw, 7.5rem); }
h2.display, .h2 { font-size: clamp(2.4rem, 1.4rem + 4.5vw, 5.5rem); }
h3.display, .h3 { font-size: clamp(1.8rem, 1.2rem + 2.5vw, 3.6rem); }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.lead {
  font-family: var(--sans);
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.15rem);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 56ch;
}

/* ---- Containers ---- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container.narrow { max-width: 1100px; }
.section { padding-block: var(--section-y); }
.section.tight { padding-block: clamp(48px, 6vw, 96px); }
.section.dark  { background: var(--dark); color: var(--white); }
.section.cream { background: var(--bg); }
.section.paper { background: var(--paper); }

.section.dark .lead { color: var(--white-soft); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  background: transparent;
  white-space: nowrap;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.btn:hover { transform: translateY(-1px); }
.btn-ghost-white { color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-ghost-white:hover { background: var(--white); color: var(--dark); border-color: var(--white); }
.btn-ghost-dark  { color: var(--ink); border-color: var(--ink); }
.btn-ghost-dark:hover { background: var(--ink); color: var(--white); }
.btn-solid-dark  { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn-solid-dark:hover  { background: #000; }
.btn-solid-white { background: var(--white); color: var(--ink); border-color: var(--white); }

/* ---- Header / Nav ---- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 28px 0;
  transition: background var(--t-mid), padding var(--t-mid);
}
.site-header.is-scrolled {
  background: rgba(12,12,12,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: inherit;
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(16px, 1.2vw, 20px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.brand .sur {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.2em;
}
.nav-main { display: flex; align-items: center; gap: clamp(20px, 2.5vw, 40px); }
.nav-link {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: inherit;
  position: relative;
  padding: 6px 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 0;
  background: currentColor;
  transition: width var(--t-mid);
}
.nav-link:hover::after, .nav-link[aria-current="page"]::after { width: 100%; }

.burger {
  width: 44px; height: 44px;
  display: none; align-items: center; justify-content: center;
  color: inherit;
}
@media (max-width: 1024px) {
  .burger { display: inline-flex; }
}
.burger span { position: relative; display: block; width: 22px; height: 1px; background: currentColor; }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 1px; background: currentColor;
  transition: transform var(--t-fast);
}
.burger span::before { top: -7px; }
.burger span::after  { top: 7px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span::after  { transform: translateY(-7px) rotate(-45deg); }

/* ---- Off-canvas menu ---- */
.menu-panel {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(560px, 90vw);
  background: var(--bg);
  color: var(--ink);
  z-index: 110;
  transform: translateX(100%);
  transition: transform var(--t-mid);
  display: flex; flex-direction: column;
  padding: 80px 48px 48px;
  overflow-y: auto;
}
.menu-panel.is-open { transform: translateX(0); }
.menu-panel .close {
  position: absolute; top: 24px; right: 28px;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  font-size: 22px;
  color: var(--ink);
}
.menu-list { display: flex; flex-direction: column; gap: 18px; }
.menu-list a {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.menu-list a:hover { color: var(--copper); }
.menu-meta {
  margin-top: auto;
  padding-top: 32px;
  font-size: 13px;
  color: var(--ink-soft);
  border-top: 1px solid rgba(17,17,17,0.12);
}
.menu-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0; visibility: hidden;
  transition: opacity var(--t-mid), visibility var(--t-mid);
  z-index: 105;
}
.menu-overlay.is-open { opacity: 1; visibility: visible; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(100%) brightness(0.55);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.45) 40%, rgba(0,0,0,0.65));
  z-index: -1;
}
.hero-inner { text-align: center; padding: 120px 24px 80px; max-width: 1080px; }
.hero-title { margin: 0 0 12px; color: var(--white); }
.hero-italic { display: block; margin-top: 4px; font-size: clamp(2.2rem, 1rem + 4vw, 5rem); color: var(--white); line-height: 1; }
.hero-cta { margin-top: 36px; display: inline-flex; }

/* ---- "HI I'M DMYTRO" section — asymmetric photo collage ---- */
.intro {
  background: var(--dark);
  color: var(--white);
  padding-block: 60px;
  position: relative;
  overflow: hidden;
}
.intro-stage {
  position: relative;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: var(--gutter);
  height: clamp(740px, 65vw, 980px);
  padding-bottom: 90px;
}
.intro-title {
  position: absolute;
  top: 30px;
  left: var(--gutter);
  z-index: 1;
  color: var(--white);
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 1rem + 5vw, 5.4rem);
  line-height: 1;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  max-width: 60%;
}
.intro-tagline {
  position: absolute;
  bottom: 60px;
  right: var(--gutter);
  z-index: 1;
  color: var(--white);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3rem, 0.6rem + 1.8vw, 2.4rem);
  line-height: 1.2;
  max-width: 14em;
  text-align: right;
  margin: 0;
}
.intro-photo {
  position: absolute;
  overflow: hidden;
  z-index: 2;
}
.intro-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.intro-photo--center {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(280px, 33vw, 480px);
  aspect-ratio: 480 / 720;
}
.intro-photo--center .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.intro-photo--center .slide.is-active { opacity: 1; }
.intro-photo--center .slide img { width: 100%; height: 100%; object-fit: cover; }

/* ---- Press logos row ---- */
.intro-press {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  width: min(1000px, calc(100% - 2 * var(--gutter)));
  z-index: 1;
}
.intro-press img {
  width: 100%;
  height: 38px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.65);
  transition: filter var(--t-fast);
}
.intro-press img:hover { filter: brightness(0) invert(1) opacity(1); }
.intro-stage { padding-bottom: 80px; }
.intro-photo--left {
  top: 280px;
  left: var(--gutter);
  width: clamp(150px, 17vw, 250px);
  aspect-ratio: 250 / 335;
}
.intro-photo--right {
  top: 140px;
  right: var(--gutter);
  width: clamp(150px, 17vw, 250px);
  aspect-ratio: 250 / 335;
}

/* ---- Cream pitch section (you don't want to be where you are) ---- */
.pitch {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.pitch-media {
  aspect-ratio: 4 / 5;
  background: var(--dark);
  overflow: hidden;
}
.pitch-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); }
.pitch-list { display: grid; gap: 18px; margin-top: 28px; }
.pitch-list li {
  display: grid; grid-template-columns: 28px 1fr; gap: 14px;
  font-size: 15px; color: var(--ink-soft); line-height: 1.55;
}
.pitch-list li::before {
  content: "";
  width: 22px; height: 22px;
  background: var(--copper);
  border-radius: 50%;
  position: relative;
  margin-top: 2px;
}
.pitch-list li {
  position: relative;
}
.pitch-list li svg { width: 22px; height: 22px; color: var(--copper); margin-top: 2px; }
.pitch-list.with-svg li::before { content: none; }

/* ---- HOW I CAN HELP — 3 big cards ---- */
.help-head { text-align: center; margin-bottom: clamp(40px, 5vw, 72px); }
.help-head .eyebrow { color: var(--ink-soft); display: block; margin-bottom: 0; }
/* Drop the browser-default heading margin-top so the eyebrow label sits close
   to the heading (otherwise the UA 0.83em margin — ~73px at display size —
   collapses over the eyebrow's margin and leaves a big gap). */
.help-head h2, .pitch h2 { margin-top: 0; }
.help-head .lead { margin: 16px auto 0; text-align: center; }
.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.help-card {
  display: flex;
  flex-direction: column;
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
  position: relative;
  transition: transform var(--t-mid);
}
.help-card:hover { transform: translateY(-4px); color: var(--white); }
.help-card .img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #222;
}
.help-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); filter: grayscale(20%); }
.help-card:hover .img img { transform: scale(1.04); }
.help-card .body { padding: 28px 28px 32px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.help-card .num {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--copper);
}
.help-card .help-price {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-soft);
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  align-self: flex-start;
  margin-bottom: -4px;
}
.help-card h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 1.4vw, 28px);
  line-height: 1.1;
  margin: 0;
  text-transform: uppercase;
}
.help-card p { color: var(--white-soft); font-size: 15px; margin: 0; flex: 1; }
.help-card .more {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-top: 8px;
}

/* ---- Testimonial (dark) ---- */
.tm { text-align: center; max-width: 880px; margin-inline: auto; }
.tm .stars { color: var(--copper); letter-spacing: 4px; font-size: 18px; margin-bottom: 28px; }
.tm-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(24px, 2.4vw, 38px);
  line-height: 1.2;
  margin: 0 0 32px;
  color: var(--white);
}
.tm-body { color: var(--white-soft); max-width: 60ch; margin: 0 auto 28px; font-size: 15px; line-height: 1.7; }
.tm-author {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white-soft);
}
.section.cream .tm-quote { color: var(--ink); }
.section.cream .tm-body,
.section.cream .tm-author { color: var(--ink-soft); }
.section.paper .tm-quote { color: var(--ink); }
.section.paper .tm-body,
.section.paper .tm-author { color: var(--ink-soft); }

/* ---- Book section ---- */
.book {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.book-media {
  aspect-ratio: 4 / 5;
  background: var(--bg-2);
  overflow: hidden;
  display: grid; place-items: center;
}
.book-media img { max-width: 70%; max-height: 75%; height: auto; object-fit: contain; box-shadow: 0 20px 60px rgba(0,0,0,0.25); }
.book-text .eyebrow-italic {
  font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--ink); margin-bottom: 16px; display: block;
}
.book-text h2 { margin: 0 0 24px; }
.book-text .lead { margin-bottom: 28px; }
.book-link {
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  border-bottom: 1px solid var(--ink); padding-bottom: 6px;
}

/* ---- Marquee ---- */
.marquee {
  background: var(--dark);
  color: var(--white);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  border-block: 1px solid rgba(255,255,255,0.06);
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 32px);
  font-style: italic;
  letter-spacing: 0.04em;
}
.marquee-item.dot::before {
  content: "·";
  margin-right: 60px;
  color: var(--copper);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- Big dark CTA ---- */
.cta-big { text-align: center; max-width: 1000px; margin-inline: auto; }
.cta-big .eyebrow-italic {
  font-family: var(--serif); font-style: italic; font-size: clamp(20px, 1.6vw, 28px); color: var(--white-soft); display: block; margin-bottom: 16px;
}
.cta-big h2 { color: var(--white); margin: 0 0 36px; }
.cta-big .btn { margin: 0 auto; }

/* ---- Blog teasers ---- */
.blog-head {
  text-align: center; margin-bottom: clamp(40px, 5vw, 72px);
  font-family: var(--serif);
  text-transform: uppercase;
  font-size: clamp(40px, 4.5vw, 80px);
  letter-spacing: -0.01em;
}
.blog-head em {
  font-style: italic; text-transform: none; letter-spacing: 0; font-weight: 400;
}

/* Blog layout: 1 big featured (left) + 3 small horizontal (right) */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
.blog-featured {
  display: flex;
  flex-direction: column;
  color: var(--ink);
}
.blog-featured .img {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  margin-bottom: 28px;
}
.blog-featured .img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.blog-featured:hover .img img { transform: scale(1.02); color: inherit; }
.blog-featured .tag {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.blog-featured h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 2.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin: 0 0 22px;
  text-transform: none;
  font-weight: 400;
  color: var(--ink);
}
.blog-featured .read,
.blog-side .read {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink);
  display: inline-flex; align-items: center; gap: 8px;
  position: relative;
  padding-bottom: 6px;
}
.blog-featured .read::after,
.blog-side .read::after {
  content: ""; position: absolute; left: 0; right: -8px; bottom: 0;
  height: 1px; background: var(--ink);
}

.blog-side {
  display: flex; flex-direction: column;
}
.blog-side .item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid rgba(17,17,17,0.2);
}
.blog-side .item:last-child { border-bottom: 1px solid rgba(17,17,17,0.2); }
.blog-side .item:first-child { border-top: 0; padding-top: 0; }
.blog-side .item .img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.blog-side .item .img img { width: 100%; height: 100%; object-fit: cover; }
.blog-side .item .tag {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 10px;
  display: block;
}
.blog-side .item h4 {
  font-family: var(--serif);
  font-size: clamp(18px, 1.4vw, 24px);
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: -0.005em;
  font-weight: 400;
  text-transform: none;
  color: var(--ink);
}

/* ---- Blog (editorial bento grid with images) ---- */
.blog-section { padding: var(--section-y) clamp(20px, 4vw, 80px); }

.blog-head-wrap {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}
.blog-head-wrap .eyebrow-italic {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--copper, #b87a4e);
  margin-bottom: 12px;
}
.blog-section .blog-head {
  margin: 0 0 14px;
  font-size: clamp(40px, 5vw, 78px);
}
.blog-sub {
  font-family: "Poppins", var(--sans);
  font-size: 15px;
  line-height: 1.65em;
  color: var(--ink-soft);
  margin: 0;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(18px, 2vw, 28px);
}
.blog-card {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid rgba(17,17,17,0.06);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -28px rgba(17,17,17,0.25);
}
.blog-card-featured {
  grid-column: span 6;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: stretch;
}
.blog-card-media {
  overflow: hidden;
  background: #eee;
  aspect-ratio: 4 / 3;
}
.blog-card-featured .blog-card-media {
  aspect-ratio: auto;
  height: 100%;
  min-height: 360px;
}
.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .5s ease;
  filter: grayscale(10%);
}
.blog-card:hover .blog-card-media img {
  transform: scale(1.05);
  filter: grayscale(0%);
}
.blog-card-body {
  padding: clamp(22px, 2.2vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.blog-card-featured .blog-card-body {
  justify-content: center;
  padding: clamp(28px, 3vw, 48px);
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.blog-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper, #b87a4e);
  padding: 5px 12px;
  border: 1px solid var(--copper, #b87a4e);
  border-radius: 999px;
  font-weight: 600;
}
.blog-date {
  font-family: "Poppins", var(--sans);
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.blog-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.2em;
  margin: 0;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-transform: none;
}
.blog-card-featured h3 {
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.05em;
}
.blog-card p {
  font-family: "Poppins", var(--sans);
  font-size: 14px;
  line-height: 1.6em;
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
}
.blog-card-featured p { font-size: 16px; max-width: 44ch; }
.blog-read {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper, #b87a4e);
  font-weight: 600;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .3s ease;
}
.blog-card:hover .blog-read { transform: translateX(4px); }
.blog-foot {
  text-align: center;
  margin-top: clamp(40px, 4vw, 56px);
}
.blog-all-link {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--ink);
  transition: color .25s ease, transform .25s ease, border-color .25s ease;
}
.blog-all-link:hover {
  color: var(--copper, #b87a4e);
  border-bottom-color: var(--copper, #b87a4e);
  transform: translateX(3px);
}

@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-card { grid-column: span 1; }
  .blog-card-featured {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }
  .blog-card-featured .blog-card-media { min-height: 240px; aspect-ratio: 16 / 9; }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card,
  .blog-card-featured { grid-column: span 1; }
}

/* ---- Lead magnet (dark) ---- */
.guide-card {
  background: var(--dark);
  color: var(--white);
  padding: clamp(40px, 5vw, 72px);
  border-radius: 0;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.guide-card h2 { color: var(--white); margin: 0 0 16px; }
.guide-card .lead { color: var(--white-soft); }
.guide-form {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 6px 14px 6px 24px;
  background: rgba(255,255,255,0.04);
  margin-top: 28px;
  max-width: 480px;
}
.guide-form input {
  flex: 1;
  background: transparent;
  border: 0; outline: 0;
  color: var(--white);
  padding: 14px 0;
  font-family: var(--sans);
  font-size: 15px;
}
.guide-form input::placeholder { color: rgba(255,255,255,0.45); }
.guide-form button {
  background: var(--copper);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background var(--t-fast);
}
.guide-form button:hover { background: #a07a55; }

/* ---- Footer ---- */
.site-footer {
  background: var(--bg);
  color: var(--ink);
  padding-top: clamp(60px, 7vw, 110px);
}
.footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  padding-bottom: clamp(40px, 5vw, 80px);
}
.footer-ig {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  color: var(--ink);
  transition: color var(--t-fast);
}
.footer-ig:hover { color: var(--copper); }
.footer-logo {
  text-align: center;
}
.footer-logo img {
  width: 100%;
  max-width: 1100px;
  height: auto;
  display: block;
  margin-inline: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.footer-nav a {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding-left: 0;
  transition: padding-left var(--t-fast), color var(--t-fast);
}
.footer-nav a:hover { padding-left: 8px; color: var(--copper); }

/* Auto-scrolling photo strip */
.footer-photos {
  overflow: hidden;
  width: 100%;
  background: var(--bg);
}
.footer-photos-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: photo-marquee 60s linear infinite;
}
.footer-photos-track:hover { animation-play-state: paused; }
.footer-photos-track img {
  width: clamp(220px, 18vw, 300px);
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
@keyframes photo-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 36px);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  padding-block: clamp(36px, 4vw, 60px);
  margin: 0;
}
.footer-meta {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding-block: clamp(24px, 2vw, 36px);
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
  border-top: 1px solid rgba(17,17,17,0.08);
}
.footer-meta > div:nth-child(2) {
  text-align: center;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.footer-meta > div:last-child { text-align: right; }

/* Small legal links row (Privacy / Terms / Refund / Disclaimer) */
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 22px;
  padding: 2px 0 20px;
  font-family: var(--sans);
  font-size: 12px;
}
.footer-legal a {
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  transition: color var(--t-fast);
}
.footer-legal a:hover { color: var(--copper); }

/* ---- Page heroes (inner pages) ---- */
.page-hero {
  background: var(--dark);
  color: var(--white);
  min-height: 60vh;
  display: grid;
  place-items: center;
  padding: clamp(140px, 18vw, 220px) 0 clamp(80px, 8vw, 120px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero.with-photo::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--bg-photo, none);
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) brightness(0.4);
  z-index: 0;
}
.page-hero--book.with-photo::before {
  filter: grayscale(0%) brightness(0.85) contrast(1.02);
  opacity: 1;
}
.page-hero--book.with-photo::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at center, rgba(8,8,10,0.45) 0%, rgba(8,8,10,0.15) 60%, rgba(8,8,10,0) 100%),
    linear-gradient(180deg, rgba(8,8,10,0.55) 0%, rgba(8,8,10,0) 28%, rgba(8,8,10,0) 72%, rgba(8,8,10,0.55) 100%);
  z-index: 0;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--white-soft); margin-bottom: 18px; display: inline-block; }
.page-hero h1 { color: var(--white); margin: 0 auto; max-width: 16ch; }
.page-hero .lead { color: var(--white-soft); margin: 28px auto 0; text-align: center; max-width: 60ch; }

/* ---- Course page hero (split: photo left, text right) ---- */
.course-hero {
  display: grid;
  grid-template-columns: 1fr 2fr;
  min-height: 748px;
  background: var(--dark);
}
.course-hero-photo {
  background-image: url('../images/photo2.jpg');
  background-size: cover;
  background-position: center;
}
.course-hero-text {
  background-image: url('../images/bg.jpg');
  background-size: cover;
  background-position: center right;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 0 0 150px;
  color: var(--white);
}
.course-hero-text h1,
.course-hero-text h2 {
  font-family: var(--serif);
  color: var(--white);
  font-weight: 400;
  margin: 0;
  letter-spacing: 0;
  text-align: left;
}
.course-hero-text h1 {
  font-size: 65px;
  line-height: 1em;
}
.course-hero-text h2 {
  font-size: 34px;
  line-height: 1.4em;
  padding-top: 50px;
}
.course-hero-text .hero-sub-italic { font-style: italic; display: none; }

@media (max-width: 1024px) {
  .course-hero {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
  }
  .course-hero-photo {
    position: absolute;
    inset: 0;
    background-position: center 18%;
    z-index: 0;
  }
  .course-hero-text {
    position: relative;
    z-index: 1;
    background-image: linear-gradient(
      to bottom,
      rgba(15, 15, 18, 0) 0%,
      rgba(15, 15, 18, 0) 30%,
      rgba(15, 15, 18, 0.55) 48%,
      rgba(12, 12, 14, 0.88) 65%,
      rgba(10, 10, 12, 0.97) 82%,
      rgba(8, 8, 10, 1) 100%
    );
    padding: 0 16px 36px;
    align-items: center;
    justify-content: flex-end;
  }
  .course-hero-text h1,
  .course-hero-text h2 {
    text-align: center;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.7);
  }
  .course-hero-text h1 { font-size: 34px; }
  .course-hero-text h1 br,
  .course-hero-text h2 br { display: none; }
  .course-hero-text h2 { font-size: 20px; padding-top: 18px; line-height: 1.35em; }
  .course-hero-text .hero-sub-regular { display: none; }
  .course-hero-text .hero-sub-italic { display: block; }
  .course-hero-text .hero-trust,
  .course-hero-text .hero-microquote {
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.65);
  }
}

/* ---- Why need this (3-column block) ---- */
.why-need {
  background: var(--bg);
  color: var(--ink);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 80px);
  text-align: center;
}
.why-need-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 7.6vw, 110px);
  line-height: 1em;
  letter-spacing: 0;
  color: var(--ink);
  margin: 0 0 clamp(30px, 4vw, 50px);
}
.why-need-title i {
  font-style: italic;
}
.why-need-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 311px));
  justify-content: space-between;
  gap: 40px;
  max-width: 1240px;
  margin: 0 auto;
}
.why-need-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.why-need-arrow {
  width: 52px;
  height: 52px;
  display: block;
  color: var(--ink);
}
.why-need-col h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 2.4vw, 34px);
  font-weight: 400;
  line-height: 1em;
  text-transform: uppercase;
  margin: 0;
  color: var(--ink);
}
.why-need-col h3 a { color: inherit; text-decoration: none; }
.why-need-col h3 a:hover { color: var(--copper); }
.why-need-col p {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.4em;
  margin: 0;
  color: var(--ink-soft);
}
@media (max-width: 1024px) {
  .why-need-cols {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 480px;
  }
  .why-need-col {
    gap: 20px;
  }
}

/* ---- Course: video + GET IT block ---- */
.course-video {
  background: var(--dark) url('../images/bgvideo.jpg') center/cover no-repeat;
  padding: 60px clamp(20px, 4vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 479px;
}
.course-video-frame {
  width: 100%;
  max-width: 852px;
  aspect-ratio: 16 / 9;
  background: #000;
  position: relative;
  overflow: hidden;
}
.course-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.course-video .btn-pill {
  margin-top: 40px;
  display: inline-block;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  line-height: 1em;
  padding: 20px 80px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.course-video .btn-pill:hover { background: var(--ink); color: var(--white); }

/* ---- Course: E-COMMERCE / BENEFITS / LIFETIME ACCESS ---- */
.course-ecom {
  background: var(--white);
  color: var(--ink);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 80px);
}
.course-ecom-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.course-ecom-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 69px);
  line-height: 1em;
  text-transform: uppercase;
  margin: 0 0 24px;
  color: var(--ink);
}
.course-ecom-text {
  font-family: "Poppins", var(--sans);
  font-size: 15px;
  line-height: 1.6em;
  color: var(--ink-soft);
  margin: 0;
}
.course-ecom-text p { margin: 0 0 8px; }
.course-benefits-label {
  font-family: var(--sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin: 40px 0 16px;
  color: var(--ink);
}
.course-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.course-benefits-list li {
  font-family: "Poppins", var(--sans);
  font-size: 15px;
  line-height: 1.6em;
  color: var(--ink-soft);
  padding: 10px 0 10px 28px;
  position: relative;
}
.course-benefits-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 12px;
  height: 12px;
  border: 1.5px solid var(--copper);
  border-radius: 50%;
  background: transparent;
}
.course-ecom-media {
  position: relative;
}
.course-ecom-media img {
  width: 100%;
  height: auto;
  display: block;
}
.course-pricing {
  margin-top: 50px;
  text-align: left;
}
.course-pricing-label {
  font-family: var(--sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin: 0 0 12px;
  color: var(--ink-soft);
}
.course-pricing-value {
  font-family: var(--serif);
  font-size: clamp(60px, 7vw, 110px);
  font-weight: 400;
  line-height: 1em;
  margin: 0 0 24px;
  color: var(--ink);
}
.course-pricing .btn-pill {
  display: inline-block;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  line-height: 1em;
  padding: 20px 60px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.course-pricing .btn-pill:hover { background: var(--white); color: var(--ink); }

@media (max-width: 1024px) {
  .course-ecom-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ---- Course: FAQ ---- */
.course-faq {
  background: var(--bg);
  color: var(--ink);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 80px);
}
.course-faq-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.course-faq-media img { width: 100%; height: auto; display: block; }
.course-faq-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 100px);
  text-transform: uppercase;
  line-height: 1em;
  margin: 0 0 20px;
}
.course-faq-intro {
  font-family: "Poppins", var(--sans);
  font-size: 15px;
  line-height: 1.6em;
  margin: 0 0 30px;
  color: var(--ink-soft);
}
.course-faq-list { list-style: none; padding: 0; margin: 0; }
.course-faq-list details {
  border-top: 1px solid rgba(17,17,17,0.12);
  padding: 20px 0;
}
.course-faq-list details[open] { padding-bottom: 24px; }
.course-faq-list details:last-of-type { border-bottom: 1px solid rgba(17,17,17,0.12); }
.course-faq-list summary {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.course-faq-list summary::-webkit-details-marker { display: none; }
.course-faq-list summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 24px;
  line-height: 1;
  transition: transform 0.2s;
}
.course-faq-list details[open] summary::after { content: "−"; }
.course-faq-list .faq-body {
  font-family: "Poppins", var(--sans);
  font-size: 15px;
  line-height: 1.6em;
  color: var(--ink-soft);
  margin-top: 14px;
}
@media (max-width: 1024px) {
  .course-faq-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ---- Course: Vibe carousel ---- */
.course-vibe {
  background: var(--bg);
  color: var(--ink);
  padding: clamp(60px, 8vw, 100px) 0;
}
.course-vibe-head {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 0 clamp(20px, 4vw, 80px);
}
.course-vibe-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 69px);
  line-height: 1em;
  text-transform: uppercase;
  letter-spacing: 0;
  margin: 0 0 28px;
}
.course-vibe-head p {
  font-family: "Poppins", var(--sans);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.6em;
  color: var(--ink);
  margin: 0;
}
.course-vibe-head p strong { font-weight: 700; }
.course-vibe-carousel {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 80px);
}
.vibe-viewport {
  overflow: hidden;
}
.vibe-track {
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  transition: transform 0.6s var(--ease);
}
.vibe-slide {
  flex: 0 0 calc((100% - clamp(16px, 2vw, 28px) * 2) / 3);
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--dark);
}
.vibe-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vibe-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  background: var(--bg);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  z-index: 2;
}
.vibe-prev { left: clamp(-20px, -1vw, 0px); }
.vibe-next { right: clamp(-20px, -1vw, 0px); }
.vibe-btn:hover { background: var(--ink); color: var(--white); }
@media (max-width: 1024px) {
  .vibe-slide { flex-basis: calc((100% - clamp(16px, 2vw, 28px)) / 2); }
}
@media (max-width: 640px) {
  .vibe-slide { flex-basis: 100%; }
  .vibe-btn { width: 44px; height: 44px; }
}

/* ---- Course: About + stats ---- */
.course-about {
  background: var(--bg);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 80px);
}
.course-about-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.course-about-media img { width: 100%; height: auto; display: block; }
.course-about-text h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 69px);
  text-transform: uppercase;
  line-height: 1em;
  margin: 0 0 20px;
}
.course-about-text p {
  font-family: "Poppins", var(--sans);
  font-size: 15px;
  line-height: 1.6em;
  color: var(--ink-soft);
  margin: 0 0 24px;
}
.course-stats {
  background: var(--dark);
  color: var(--white);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 80px);
}
.course-stats-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  justify-items: center;
  align-items: center;
}
.course-stats-inner .stat {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 48px);
  line-height: 1.1em;
  color: var(--white);
}
.course-stats-promise {
  max-width: 1100px;
  margin: clamp(36px, 5vw, 56px) auto 0;
  padding: 0 clamp(16px, 4vw, 32px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 32px);
  text-align: center;
}
.course-stats-promise__rule {
  flex: 0 0 clamp(32px, 7vw, 96px);
  height: 1px;
  background: var(--copper);
  opacity: 0.55;
}
.course-stats-promise__text {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.course-stats-promise__eyebrow {
  font-family: var(--sans, inherit);
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper);
  opacity: 0.85;
}
.course-stats-promise em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(15px, 1.5vw, 21px);
  line-height: 1.35;
  letter-spacing: 0.005em;
  color: rgba(255, 255, 255, 0.92);
  max-width: 38ch;
}
@media (max-width: 1024px) {
  .course-about-inner { grid-template-columns: 1fr; }
  .course-stats-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .course-stats-promise {
    gap: 14px;
  }
  .course-stats-promise__rule {
    flex: 0 0 clamp(20px, 8vw, 44px);
  }
  .course-stats-promise__eyebrow {
    font-size: 9.5px;
    letter-spacing: 0.28em;
  }
  .course-stats-promise em {
    font-size: 14.5px;
    max-width: 24ch;
  }
}

/* ---- Course: Program (Bento grid) ---- */
.course-program {
  background: var(--bg);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 80px);
}

/* Collapse the meeting padding when adjacent sections share the same background */
.course-vibe + .course-program,
.course-program + .course-bonus,
.blog-section + #guide,
.section.cream + .section.cream { padding-top: 0; }
.course-program-inner { max-width: 1280px; margin: 0 auto; }

.course-program-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(40px, 5vw, 72px);
}
.course-program-head .eyebrow-italic {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--copper, #b87a4e);
  display: inline-block;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.course-program-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.95em;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}
.course-program-title i {
  font-style: italic;
  color: var(--copper, #b87a4e);
}
.course-program-sub {
  font-family: "Poppins", var(--sans);
  font-size: 16px;
  line-height: 1.6em;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(12px, 1.4vw, 20px);
}

.bento-card {
  position: relative;
  background: var(--white, #fff);
  border-radius: 20px;
  padding: clamp(20px, 2vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 220px;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, background .35s ease;
  border: 1px solid rgba(17,17,17,0.06);
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -22px rgba(17,17,17,0.25);
}

.bento-card .bento-phase {
  font-family: var(--sans);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--copper, #b87a4e);
  font-weight: 600;
}
.bento-card .bento-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(14px, 1.1vw, 17px);
  color: var(--ink-soft);
  margin-top: 2px;
}
.bento-card .bento-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.2vw, 36px);
  line-height: 1.05em;
  margin: 6px 0 0;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.bento-card .bento-desc {
  font-family: "Poppins", var(--sans);
  font-size: 14px;
  line-height: 1.55em;
  color: var(--ink-soft);
  margin: 0;
  max-width: 46ch;
}
.bento-card .bento-bullets {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bento-card .bento-bullets li {
  font-family: "Poppins", var(--sans);
  font-size: 13px;
  color: var(--ink);
  padding-left: 18px;
  position: relative;
  line-height: 1.5em;
}
.bento-card .bento-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 1px;
  background: var(--copper, #b87a4e);
}
.bento-card .bento-icon {
  position: absolute;
  right: clamp(16px, 1.8vw, 28px);
  bottom: clamp(16px, 1.8vw, 28px);
  width: clamp(48px, 5vw, 76px);
  height: clamp(48px, 5vw, 76px);
  color: var(--ink);
  opacity: 0.22;
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}
.bento-card:hover .bento-icon {
  opacity: 0.42;
  transform: rotate(-4deg) scale(1.05);
}

/* Sizes (columns out of 6) */
.bento-card.size-xl { grid-column: span 6; min-height: 280px; }
.bento-card.size-l  { grid-column: span 3; min-height: 260px; }
.bento-card.size-m  { grid-column: span 3; }
.bento-card.size-s  { grid-column: span 2; min-height: 180px; }

/* Featured (phase) card treatments */
.bento-card.phase-card {
  background: linear-gradient(135deg, #1c1c1c 0%, #2a2520 100%);
  color: var(--white, #fff);
  border-color: transparent;
}
.bento-card.phase-card .bento-title,
.bento-card.phase-card .bento-bullets li { color: var(--white, #fff); }
.bento-card.phase-card .bento-desc { color: rgba(255,255,255,0.72); }
.bento-card.phase-card .bento-num { color: rgba(255,255,255,0.5); }
.bento-card.phase-card .bento-icon { color: var(--copper, #b87a4e); opacity: 0.5; }
.bento-card.phase-card:hover .bento-icon { opacity: 0.85; }

.bento-card.phase-01 {
  background: linear-gradient(135deg, #b87a4e 0%, #8a5634 100%);
}
.bento-card.phase-01 .bento-phase { color: rgba(255,255,255,0.85); }
.bento-card.phase-01 .bento-icon { color: var(--white, #fff); }

/* Photo on the right side, fading into the copper gradient on the left */
.bento-card .bento-photo {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 30%;
  object-fit: cover;
  object-position: right center;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 60%);
          mask-image: linear-gradient(to right, transparent 0%, #000 60%);
  pointer-events: none;
  user-select: none;
  z-index: 1;
}
/* Hide the SVG icon on cards that show a photo */
.bento-card:has(.bento-photo) .bento-icon { display: none; }
/* Keep text above the photo */
.bento-card:has(.bento-photo) .bento-phase,
.bento-card:has(.bento-photo) .bento-num,
.bento-card:has(.bento-photo) .bento-title,
.bento-card:has(.bento-photo) .bento-desc,
.bento-card:has(.bento-photo) .bento-bullets {
  position: relative;
  z-index: 2;
}
/* Constrain text so it never bleeds into the fully-visible photo area */
.bento-card:has(.bento-photo) .bento-desc { max-width: 56%; }
.bento-card:has(.bento-photo) .bento-bullets { max-width: 56%; }

@media (max-width: 768px) {
  .bento-card .bento-photo {
    width: 100%;
    height: 60%;
    top: auto;
    bottom: 0;
    -webkit-mask-image: linear-gradient(to top, #000 30%, transparent 95%);
            mask-image: linear-gradient(to top, #000 30%, transparent 95%);
    opacity: 0.55;
  }
  .bento-card:has(.bento-photo) .bento-desc,
  .bento-card:has(.bento-photo) .bento-bullets { max-width: 100%; }
}

.bento-card.phase-04 {
  background: linear-gradient(140deg, #1c1c1c 0%, #2a2520 70%);
}
.bento-card.phase-05 {
  background: linear-gradient(140deg, #2d2520 0%, #1a1614 100%);
}

.course-program-foot {
  text-align: center;
  margin-top: clamp(36px, 4vw, 56px);
}

/* Premium shine CTA */
.cta-shine {
  --shine-bg: #1a1a1a;
  --shine-bg-hover: #0d0d0d;
  --shine-copper: #d49566;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 18px 28px 18px 36px;
  background: var(--shine-bg);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 1;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 10px 24px -12px rgba(0,0,0,0.45),
    0 2px 6px -2px rgba(0,0,0,0.25);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, background .35s ease;
}
.cta-shine::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
    transparent 0%,
    transparent 35%,
    rgba(212,149,102,0.22) 50%,
    transparent 65%,
    transparent 100%);
  transform: translateX(-110%);
  transition: transform .9s cubic-bezier(.2,.7,.2,1);
  z-index: -1;
  pointer-events: none;
}
.cta-shine:hover {
  background: var(--shine-bg-hover);
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.1) inset,
    0 18px 36px -14px rgba(0,0,0,0.55),
    0 4px 10px -2px rgba(0,0,0,0.3);
}
.cta-shine:hover::before {
  transform: translateX(110%);
}
.cta-shine-label {
  font-weight: 500;
}
.cta-shine-divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.18);
  display: inline-block;
}
.cta-shine-price {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--shine-copper);
  letter-spacing: 0;
}
.cta-shine-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--shine-copper);
  color: #1a1a1a;
  margin-left: 4px;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), background .35s ease;
}
.cta-shine:hover .cta-shine-arrow {
  transform: translateX(4px) rotate(-2deg);
  background: #e6a878;
}

/* ---- Hero CTAs & trust microcopy ---- */
.hero-cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
}
.hero-inner .hero-cta-row,
.page-hero .hero-cta-row { justify-content: center; }
.hero-inner .hero-trust { margin-left: auto; margin-right: auto; text-align: center; }
.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 8px 4px;
  border-bottom: 1px solid currentColor;
  transition: color .25s ease, transform .25s ease;
}
.hero-cta-secondary:hover { color: var(--copper, #b87a4e); transform: translateX(2px); }
.hero-cta-secondary .play-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.hero-trust {
  margin: 18px auto 0;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  opacity: 0.75;
  max-width: 540px;
  text-align: center;
}

/* ---- Pain agitation block ---- */
.course-pain {
  background: var(--bg);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 80px);
  color: var(--ink);
}
.course-hero + .course-pain,
.course-pain + .why-need { padding-top: clamp(40px, 5vw, 72px); }
.course-pain-inner { max-width: 920px; margin: 0 auto; text-align: center; }
.course-pain-head .eyebrow-italic {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--copper, #b87a4e);
  margin-bottom: 14px;
}
.course-pain-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1em;
  margin: 0 0 clamp(36px, 4vw, 56px);
  letter-spacing: -0.01em;
}
.course-pain-head h2 i { font-style: italic; color: var(--copper, #b87a4e); }
.course-pain-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 740px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.course-pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.6;
  letter-spacing: -0.005em;
  color: var(--ink);
  padding: 16px 22px;
  background: rgba(255,255,255,0.6);
  border-radius: 14px;
  border: 1px solid rgba(17,17,17,0.05);
}
.course-pain-list li strong {
  font-weight: 600;
  color: var(--ink);
}
.course-pain-list .pain-x {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--copper, #b87a4e);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  margin-top: 2px;
}
.course-pain-foot {
  margin-top: clamp(36px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.course-pain-foot p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5em;
}

/* ---- Enhanced pricing card ---- */
.course-pricing {
  margin-top: 32px;
  scroll-margin-top: 100px;
}
.pricing-card {
  background: #1a1a1a;
  color: #fff;
  border-radius: 24px;
  padding: clamp(28px, 3vw, 40px);
  box-shadow: 0 24px 60px -30px rgba(0,0,0,0.5);
  max-width: 520px;
}
.pricing-card-head { margin-bottom: 24px; }
.pricing-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper, #d49566);
  margin-bottom: 12px;
}
.pricing-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.pricing-anchor {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 26px);
  color: rgba(255,255,255,0.45);
  text-decoration: line-through;
}
.pricing-value {
  font-family: var(--serif);
  font-size: clamp(48px, 5.4vw, 72px);
  line-height: 1em;
  color: #fff;
  font-weight: 400;
}
.pricing-sub {
  font-family: "Poppins", var(--sans);
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin: 8px 0 0;
}
.pricing-sub a {
  color: var(--copper, #d49566);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pricing-includes {
  list-style: none;
  padding: 18px 0;
  margin: 0 0 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-includes li {
  font-family: "Poppins", var(--sans);
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5em;
}
.pricing-includes .check {
  flex: 0 0 18px;
  color: var(--copper, #d49566);
  font-weight: 600;
}
.pricing-includes em {
  font-style: italic;
  color: var(--copper, #d49566);
}
.pricing-cta { width: 100%; justify-content: center; }
.pricing-guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 12px 14px;
  background: rgba(212, 149, 102, 0.08);
  border: 1px solid rgba(212, 149, 102, 0.25);
  border-radius: 12px;
  font-family: "Poppins", var(--sans);
  font-size: 12.5px;
  line-height: 1.5em;
  color: rgba(255,255,255,0.85);
}
.pricing-guarantee svg { flex: 0 0 22px; color: var(--copper, #d49566); }
.pricing-guarantee strong { color: #fff; font-weight: 600; }

/* ---- Social proof / testimonials ---- */
.course-proof {
  background: var(--bg);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 80px);
}
.course-proof-inner { max-width: 1240px; margin: 0 auto; }
.course-proof-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}
.course-proof-head .eyebrow-italic {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--copper, #b87a4e);
  margin-bottom: 14px;
}
.course-proof-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.1em;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.course-proof-head h2 i { font-style: italic; color: var(--copper, #b87a4e); }
.course-proof-head p {
  font-family: "Poppins", var(--sans);
  font-size: 15px;
  line-height: 1.65em;
  color: var(--ink-soft);
  margin: 0;
}
.course-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 28px);
  margin-bottom: clamp(40px, 5vw, 64px);
}
.proof-card {
  background: #fff;
  border-radius: 18px;
  padding: clamp(24px, 2.4vw, 32px);
  border: 1px solid rgba(17,17,17,0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.proof-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -22px rgba(17,17,17,0.18);
}
.proof-card.proof-featured {
  background: linear-gradient(140deg, #1a1a1a 0%, #2a2520 100%);
  color: #fff;
  border-color: transparent;
}
.proof-card.proof-featured .proof-quote { color: rgba(255,255,255,0.92); }
.proof-card.proof-featured .proof-name { color: #fff; }
.proof-card.proof-featured .proof-role { color: rgba(255,255,255,0.6); }
.proof-card.proof-featured .proof-result { border-color: rgba(255,255,255,0.15); }
.proof-card.proof-featured .proof-frame { color: rgba(255,255,255,0.6); }
.proof-stars {
  color: var(--copper, #b87a4e);
  letter-spacing: 4px;
  font-size: 14px;
}
.proof-quote {
  font-family: var(--serif);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.55em;
  color: var(--ink);
  margin: 0;
  font-style: italic;
}
.proof-result {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid rgba(17,17,17,0.1);
  border-bottom: 1px solid rgba(17,17,17,0.1);
}
.proof-num {
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1em;
  color: var(--copper, #b87a4e);
  font-weight: 400;
}
.proof-frame {
  font-family: "Poppins", var(--sans);
  font-size: 12px;
  color: var(--ink-soft);
}
.proof-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.proof-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 44px;
}
.proof-avatar img { width: 100%; height: 100%; object-fit: cover; }
.proof-name {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}
.proof-role {
  font-family: "Poppins", var(--sans);
  font-size: 12px;
  color: var(--ink-soft);
  margin: 2px 0 0;
}
.course-proof-foot {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.proof-disclaimer {
  max-width: 540px;
  font-family: "Poppins", var(--sans);
  font-size: 12px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55em;
}

/* ---- Final CTA — enhanced ---- */
.final-cta-sub {
  max-width: 580px;
  margin: 16px auto 28px;
  font-family: "Poppins", var(--sans);
  font-size: 15px;
  line-height: 1.65em;
  color: rgba(255,255,255,0.78);
}
.final-cta-bullets {
  list-style: none;
  padding: 0;
  margin: 0 auto 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  max-width: 700px;
}
.final-cta-bullets li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", var(--sans);
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.final-cta-bullets .check { color: var(--copper, #d49566); font-weight: 600; }
.final-cta-button { margin-top: 4px; }
.final-cta-microcopy {
  margin: 18px 0 0;
  font-family: "Poppins", var(--sans);
  font-size: 12.5px;
  color: rgba(255,255,255,0.6);
}
.final-cta-microcopy a {
  color: var(--copper, #d49566);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---- Sticky floating buy button ---- */
.sticky-buy {
  position: fixed;
  right: clamp(16px, 2vw, 32px);
  bottom: 16px;
  bottom: max(16px, env(safe-area-inset-bottom, 16px));
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px 14px 22px;
  background: #1a1a1a;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.02em;
  box-shadow: 0 18px 36px -14px rgba(0,0,0,0.55);
  transform: translate3d(0, 120%, 0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), opacity .3s ease, background .25s ease;
}
.sticky-buy.is-visible {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  pointer-events: auto;
}
.sticky-buy:hover { background: #0d0d0d; }
.sticky-buy-label { font-weight: 500; }
.sticky-buy-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.2);
}
.sticky-buy-price {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--copper, #d49566);
}
.sticky-buy-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--copper, #d49566);
  color: #1a1a1a;
  transition: transform .3s ease;
}
.sticky-buy:hover .sticky-buy-arrow { transform: translateX(3px); }
@media (max-width: 640px) {
  .sticky-buy { padding: 12px 16px 12px 18px; font-size: 12px; gap: 10px; }
  .sticky-buy-arrow { width: 24px; height: 24px; }
}

/* ---- Book pricing card ---- */
.book-pricing-card {
  background: #1a1a1a;
  color: #fff;
  border-radius: 24px;
  padding: clamp(24px, 2.8vw, 36px);
  margin-top: 28px;
  box-shadow: 0 24px 60px -30px rgba(0,0,0,0.5);
  max-width: 540px;
}
.book-pricing-formats {
  display: flex;
  gap: 24px;
  align-items: stretch;
}
.book-format {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
}
.book-format-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper, #d49566);
}
.book-format-price {
  font-family: var(--serif);
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1em;
  color: #fff;
  margin: 6px 0 14px;
}
.book-format .cta-shine { width: 100%; justify-content: center; }
.book-format.book-format-secondary {
  background: transparent;
  border-color: rgba(255,255,255,0.06);
}
.book-format-link {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--copper, #d49566);
  text-decoration: none;
  padding: 12px 0 6px;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: auto;
  transition: color .25s ease, transform .25s ease;
  display: inline-block;
}
.book-format-link:hover { color: #e6a878; transform: translateX(3px); }
.book-guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 12px 14px;
  background: rgba(212, 149, 102, 0.08);
  border: 1px solid rgba(212, 149, 102, 0.25);
  border-radius: 12px;
  font-family: "Poppins", var(--sans);
  font-size: 12.5px;
  line-height: 1.5em;
  color: rgba(255,255,255,0.85);
}
.book-guarantee svg { flex: 0 0 22px; color: var(--copper, #d49566); }
.book-guarantee strong { color: #fff; font-weight: 600; }

@media (max-width: 640px) {
  .book-pricing-formats { flex-direction: column; gap: 12px; }
}

/* ---- Contact page shortcuts ---- */
.contact-shortcuts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(32px, 4vw, 56px);
}
.contact-shortcut {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(24px, 2.4vw, 32px);
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(17,17,17,0.06);
  text-decoration: none;
  color: var(--ink);
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}
.contact-shortcut:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -22px rgba(17,17,17,0.18);
  background: #1a1a1a;
  color: #fff;
}
.contact-shortcut-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--copper, #b87a4e);
}
.contact-shortcut h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.1em;
  margin: 4px 0 0;
  letter-spacing: -0.01em;
}
.contact-shortcut p {
  font-family: "Poppins", var(--sans);
  font-size: 14px;
  line-height: 1.55em;
  color: var(--ink-soft);
  margin: 4px 0 0;
  flex: 1;
}
.contact-shortcut:hover p { color: rgba(255,255,255,0.7); }
.contact-shortcut-price {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper, #b87a4e);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(17,17,17,0.08);
  font-weight: 600;
}
.contact-shortcut:hover .contact-shortcut-price { border-top-color: rgba(255,255,255,0.12); }

@media (max-width: 1024px) {
  .contact-shortcuts { grid-template-columns: 1fr; }
  .course-proof-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(6, 1fr); }
  .bento-card.size-xl { grid-column: span 6; }
  .bento-card.size-l  { grid-column: span 6; }
  .bento-card.size-m  { grid-column: span 3; }
  .bento-card.size-s  { grid-column: span 2; }
}
@media (max-width: 640px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .bento-card { padding: 22px; min-height: 180px; }
  .bento-card.size-xl,
  .bento-card.size-l,
  .bento-card.size-m { grid-column: span 2; }
  .bento-card.size-s { grid-column: span 2; }
  .bento-card .bento-title { font-size: 24px; }
}

/* ---- Course: Bonus modules ---- */
.course-bonus {
  background: var(--bg);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 80px);
}
.course-bonus-inner { max-width: 1240px; margin: 0 auto; }
.course-bonus-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-align: center;
  margin: 0 0 16px;
  color: var(--ink-soft);
}
.course-bonus-title {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(34px, 4.4vw, 56px);
  text-align: center;
  line-height: 1.1em;
  margin: 0 0 60px;
}
.course-bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}
.course-bonus-card { text-align: left; }
.course-bonus-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  margin-bottom: 24px;
}
.course-bonus-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.2em;
  margin: 0 0 14px;
  color: var(--ink);
}
.course-bonus-card p {
  font-family: "Poppins", var(--sans);
  font-size: 15px;
  line-height: 1.6em;
  color: var(--ink-soft);
  margin: 0;
}
.course-bonus-cta { text-align: center; }
.course-bonus-cta .btn-pill {
  display: inline-block;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 20px 60px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  text-decoration: none;
}
.course-bonus-cta .btn-pill:hover { background: var(--white); color: var(--ink); }
@media (max-width: 1024px) {
  .course-bonus-grid { grid-template-columns: 1fr; }
}

/* ---- Course: All-in-one CTA ---- */
.course-allinone {
  background: var(--dark);
  color: var(--white);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 80px);
}
.course-allinone-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.course-allinone-media img { width: 100%; height: auto; display: block; }
.course-allinone-text h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.05em;
  margin: 0 0 24px;
  color: var(--white);
}
.course-allinone-text p {
  font-family: "Poppins", var(--sans);
  font-size: 15px;
  line-height: 1.6em;
  color: var(--white-soft);
  margin: 0 0 32px;
}
.course-allinone-text .btn-pill {
  display: inline-block;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 20px 50px;
  border-radius: 999px;
  border: 1px solid var(--white);
  text-decoration: none;
}
.course-allinone-text .btn-pill:hover { background: transparent; color: var(--white); }
@media (max-width: 1024px) {
  .course-allinone-inner { grid-template-columns: 1fr; }
}

/* ---- Course: VS (This is my life - and this too) ---- */
.course-vs {
  background: var(--bg);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 80px);
}
.course-vs-title {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(34px, 4.4vw, 56px);
  text-align: center;
  line-height: 1.1em;
  margin: 0 0 48px;
}
.course-vs-galleries {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 20px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}
.course-vs-vs {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 4.4vw, 64px);
  text-align: center;
  align-self: center;
}
.course-vs-side {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.course-vs-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.course-vs-side img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}
.course-vs-text {
  max-width: 880px;
  margin: 60px auto 0;
  padding: 0 20px;
  font-family: "Poppins", var(--sans);
  font-size: 15px;
  line-height: 1.6em;
  color: var(--ink-soft);
  text-align: center;
}
@media (max-width: 1024px) {
  .course-vs-galleries { grid-template-columns: 1fr; gap: 24px; }
  .course-vs-vs { padding: 16px 0; }
}

/* ---- Course: Process (01 / 02 / 03) — dark, editorial ---- */
.course-process {
  background: #2d2a26;
  color: var(--white);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 80px);
}
.course-process-inner { max-width: 1240px; margin: 0 auto; }
.course-process-head {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 88px);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.course-process-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.1em;
  letter-spacing: 0.01em;
  margin: 0 0 24px;
  color: var(--white);
}
.course-process-head p {
  font-family: "Poppins", var(--sans);
  font-size: 15px;
  line-height: 1.7em;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.course-process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.course-process-step {
  position: relative;
  text-align: center;
  padding: 0 clamp(16px, 2vw, 36px);
}
.course-process-step .num {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(56px, 6.4vw, 96px);
  line-height: 1em;
  margin: 0 0 clamp(36px, 4vw, 56px);
  color: var(--copper, #b87a4e);
  position: relative;
}
/* Horizontal copper line between numbers */
.course-process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: clamp(32px, 3.2vw, 48px);
  left: calc(50% + clamp(40px, 4.5vw, 64px));
  right: calc(-50% + clamp(40px, 4.5vw, 64px));
  height: 1px;
  background: rgba(212, 149, 102, 0.55);
}
.course-process-step h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.1em;
  margin: 0 0 clamp(24px, 3vw, 40px);
  color: var(--white);
}
.course-process-step p {
  font-family: "Poppins", var(--sans);
  font-size: 14px;
  line-height: 1.65em;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  max-width: 32ch;
  margin-left: auto;
  margin-right: auto;
}
.course-process-cta { text-align: center; }
.course-process-cta .btn-pill {
  display: inline-block;
  background: transparent;
  color: var(--copper, #b87a4e);
  font-family: var(--sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 22px 50px;
  border-radius: 999px;
  border: 1px solid var(--copper, #b87a4e);
  text-decoration: none;
  transition: background .3s ease, color .3s ease;
}
.course-process-cta .btn-pill:hover {
  background: var(--copper, #b87a4e);
  color: #2d2a26;
}
@media (max-width: 1024px) {
  .course-process-steps { grid-template-columns: 1fr; gap: 48px; }
  .course-process-step:not(:last-child)::after { display: none; }
}

/* ---- Course: Final CTA (Ready to take your life to the next level) ---- */
.course-final-cta {
  background: var(--dark);
  color: var(--white);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 80px);
  text-align: center;
}
.course-final-cta .eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--white-soft);
  margin: 0 0 20px;
}
.course-final-cta h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.05em;
  margin: 0 auto 40px;
  max-width: 14ch;
  color: var(--white);
}
.course-final-cta .btn-pill {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 22px 60px;
  border-radius: 999px;
  border: 1px solid var(--white);
  text-decoration: none;
}
.course-final-cta .btn-pill:hover { background: var(--white); color: var(--ink); }

/* ---- Story page ---- */
.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.story-split.rev { direction: rtl; }
.story-split.rev > * { direction: ltr; }
.story-media { aspect-ratio: 4 / 5; background: var(--dark); overflow: hidden; }
.story-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); }
.story-text h2 { margin: 0 0 24px; }
.story-text .eyebrow { display: block; margin-bottom: 14px; color: var(--copper); }

/* ---- Course modules ---- */
.module {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: clamp(20px, 3vw, 48px);
  padding: 32px 0;
  border-top: 1px solid rgba(17,17,17,0.15);
  align-items: center;
}
.module:last-child { border-bottom: 1px solid rgba(17,17,17,0.15); }
.module .n {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--copper);
}
.module h4 {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 28px);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1.15;
  margin: 0 0 6px;
}
.module p { margin: 0; color: var(--ink-soft); font-size: 15px; max-width: 56ch; }
.module .meta {
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft);
  white-space: nowrap;
}

/* ---- Stats ---- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 48px);
  text-align: center;
}
.stat .num {
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 88px);
  line-height: 1;
  color: var(--copper);
  display: block;
  margin-bottom: 8px;
}
.stat .label {
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft);
}
.section.dark .stat .label { color: var(--white-soft); }

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.contact-info .row { padding: 22px 0; border-top: 1px solid rgba(17,17,17,0.15); display: flex; justify-content: space-between; gap: 16px; align-items: baseline; }
.contact-info .row:last-child { border-bottom: 1px solid rgba(17,17,17,0.15); }
.contact-info .row .k {
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft);
}
.contact-info .row .v { font-family: var(--serif); font-size: clamp(18px, 1.4vw, 24px); }
.field { display: grid; gap: 8px; margin-bottom: 18px; }
.field label {
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft);
}
.field input, .field textarea {
  background: transparent;
  border: 0; border-bottom: 1px solid rgba(17,17,17,0.25);
  padding: 12px 0; outline: 0;
  font-family: var(--sans); font-size: 16px;
  transition: border-color var(--t-fast);
}
.field input:focus, .field textarea:focus { border-color: var(--ink); }
.field textarea { min-height: 120px; resize: vertical; }

/* ---- Generic helpers ---- */
.center { text-align: center; }
.divider { width: 80px; height: 1px; background: currentColor; opacity: 0.5; margin: 24px auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---- Reveal (CSS-only, safe) ---- */
.reveal { animation: r 0.7s var(--ease) both; }
@keyframes r { from { opacity: 0; transform: translateY(20px); } }
@media (prefers-reduced-motion: reduce) { .reveal { animation: none; } }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .nav-main .nav-link { display: none; }
  .nav-main .nav-link.always { display: inline-flex; }
  .help-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-main .nav-link { display: none; }
  .intro {
    padding-block: 80px;
  }
  /* Mobile collage: one feature portrait + a small paired row, instead of
     a wall of three full-width photos. Grid + `order` re-sequences the
     source order (title, left, center, right, tagline, press). */
  .intro-stage {
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-bottom: 52px;
  }
  .intro-title {
    position: static;
    grid-column: 1 / -1;
    order: 1;
    max-width: 100%;
    margin: 0 0 6px;
  }
  .intro-photo {
    position: static;          /* drop the desktop absolute offsets */
    transform: none;
    width: 100% !important;
  }
  .intro-photo--center {
    position: relative;        /* containing block for the .slide layers */
    inset: auto;               /* but no offset — stay in grid flow */
    grid-column: 1 / -1;
    order: 2;
    aspect-ratio: 4 / 5;
  }
  .intro-photo--left   { grid-column: 1; order: 3; aspect-ratio: 3 / 4; }
  .intro-photo--right  { grid-column: 2; order: 4; aspect-ratio: 3 / 4; }
  .intro-tagline {
    position: static;
    grid-column: 1 / -1;
    order: 5;
    text-align: left;
    max-width: 100%;
    margin: 8px 0 0;
  }
  .intro-press {
    position: static;
    transform: none;
    grid-column: 1 / -1;
    order: 6;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px 24px;
    margin-top: 14px;
  }
  .footer-top { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer-ig { justify-self: center; }
  .footer-logo { justify-self: center; width: 100%; }
  .footer-nav { align-items: center; }
  .footer-meta { grid-template-columns: 1fr; text-align: center; gap: 8px; }
  .footer-meta > div:last-child { text-align: center; }
  .pitch, .book, .story-split, .help-grid, .blog-grid, .contact-grid, .stats { grid-template-columns: 1fr; }
  .story-split.rev { direction: ltr; }
  .guide-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .module { grid-template-columns: 60px 1fr; }
  .module .meta { grid-column: 2; justify-self: start; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================================
   2026-05-18 LANDING REWRITE — new components and price-strikethrough.
   Spec: docs/specs/2026-05-18-landing-rewrite-design.md
   ========================================================================= */

/* ---- Old-price strikethrough next to current price (CTA + sticky) ---- */
.cta-shine-price-old {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: rgba(212,149,102,0.55);
  text-decoration: line-through;
  letter-spacing: 0;
  margin-right: 4px;
}
.sticky-buy-price-old {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: line-through;
  margin-right: 4px;
}

/* ---- Pricing-card anchor (large $799 → $397 display) ---- */
.pricing-row .pricing-anchor {
  text-decoration: line-through;
  text-decoration-color: rgba(168, 58, 46, 0.75);
  color: #a83a2e;
}

/* ---- Hero micro-quote line under trust ---- */
.hero-microquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--copper);
  text-align: center;
  margin-top: 14px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.45;
}

/* ---- Process step pull-quote ---- */
.process-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--copper);
  margin-top: 14px;
  line-height: 1.4;
}

/* ---- Final CTA pull-quote ---- */
.final-cta-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  margin: 24px auto 18px;
  line-height: 1.5;
}

/* ---- VS-gallery side captions (now above the images, centered, full-width) ---- */
.course-vs-caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  padding: 0;
  text-align: center;
  width: 100%;
}
@media (max-width: 1024px) {
  .course-vs-caption { font-size: 14px; }
}

/* =========================================================================
   COMPARISON BLOCK — editorial asymmetric (specialized ↔ full system)
   Layout: 1 : 1.8 grid · narrow muted card vs dominant dark card with 5 pillars
   ========================================================================= */
.course-compare {
  padding: clamp(60px, 7vw, 100px) clamp(20px, 4vw, 60px);
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.course-compare::before {
  /* Decorative copper hairline at the top of the section */
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(186,145,107,0.28), transparent);
}
.course-compare-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.course-compare-head {
  text-align: center;
  max-width: 880px;
  margin: 0 auto clamp(48px, 6vw, 80px);
}
.course-compare-head .eyebrow-italic {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--copper);
  display: block;
  margin-bottom: 18px;
  letter-spacing: 0.005em;
}
.course-compare-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 24px;
}
.course-compare-title i {
  font-style: italic;
  color: var(--copper);
}
.course-compare-lede {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 700px;
  margin: 0 auto;
}
.course-compare-lede strong {
  color: var(--ink);
  font-weight: 600;
}

/* The split layout — narrow specialized card LEFT, dominant full-system RIGHT */
.course-compare-split {
  display: grid;
  grid-template-columns: 1fr 64px 1.85fr;
  gap: 0;
  align-items: start;
}

/* -------- LEFT card: specialized · single-platform · MUTED -------- */
.compare-narrow {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(17,17,17,0.07);
  border-radius: 22px;
  padding: 36px 32px 32px;
  position: relative;
  margin-top: clamp(20px, 3vw, 40px); /* sits a bit lower than full card */
}
.compare-narrow-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  margin: 0 0 12px;
}
.compare-narrow-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 28px;
  opacity: 0.9;
}
.compare-narrow-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.compare-narrow-list li {
  position: relative;
  padding-left: 26px;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.compare-narrow-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(178,46,46,0.5);
}
.compare-narrow-list li em {
  font-style: italic;
  color: var(--ink);
}
.compare-narrow-verdict {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(17,17,17,0.08);
  text-align: center;
}
.compare-narrow-verdict i {
  color: var(--copper);
}

/* -------- Ornamental section divider (horizontal, copper hairlines + diamond) -------- */
.section-divider {
  padding: 0;
  margin: clamp(-40px, -4vw, -20px) 0;
}
.course-program + .section-divider,
.course-vs + .section-divider { margin-top: clamp(-60px, -6vw, -30px); }
.section-divider + .course-ai,
.section-divider + .course-proof { padding-top: clamp(30px, 4vw, 56px); }
.section-divider-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 32px);
  max-width: 560px;
  margin: 0 auto;
  color: var(--copper, #b87a4e);
}
.section-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(186,145,107,0.6) 50%, transparent 100%);
}
.section-divider-mark {
  width: clamp(22px, 2.4vw, 30px);
  height: clamp(22px, 2.4vw, 30px);
  flex-shrink: 0;
  opacity: 0.92;
  transform: rotate(0deg);
}

/* -------- MIDDLE divider with copper hairlines and italic "vs" -------- */
.compare-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  gap: 14px;
  padding: clamp(40px, 5vw, 80px) 0;
}
.compare-divider-line {
  flex: 1;
  width: 1px;
  min-height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(186,145,107,0.4), transparent);
}
.compare-divider-vs {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--copper);
  letter-spacing: 0.04em;
}

/* -------- RIGHT card: full operating system · DARK · DOMINANT -------- */
.compare-full {
  background:
    radial-gradient(ellipse at top left, rgba(186,145,107,0.13), transparent 55%),
    linear-gradient(155deg, #1c1c1c 0%, #2a2520 100%);
  color: var(--white);
  border-radius: 26px;
  padding: 48px 44px 38px;
  position: relative;
  box-shadow: 0 30px 60px -28px rgba(0,0,0,0.5);
  /* No overflow:hidden — лейбл .compare-full-badge сидит на top:-16px
     и должен выступать над верхней границей карточки. Фон с border-radius
     обрезается естественно, без overflow:hidden. */
}
.compare-full::before {
  /* Inner copper hairline border */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  border: 1px solid rgba(186,145,107,0.18);
  pointer-events: none;
}
.compare-full-badge {
  position: absolute;
  top: -16px;
  left: 44px;
  background: var(--copper);
  color: #1c1c1c;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  box-shadow: 0 6px 16px -4px rgba(186,145,107,0.4);
  z-index: 2;
  white-space: nowrap;
}
.compare-full-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--copper);
  margin: 0 0 14px;
}
.compare-full-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--white);
  margin: 0 0 32px;
}
.compare-full-title i {
  font-style: italic;
  color: var(--copper);
}

/* The 5 numbered pillars */
.compare-pillars {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
}
.compare-pillars .pillar {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  align-items: start;
}
.compare-pillars .pillar:first-child {
  border-top: none;
  padding-top: 4px;
}
.compare-pillars .pillar:last-child {
  padding-bottom: 4px;
}
.compare-pillars .pillar-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  color: var(--copper);
  line-height: 1;
  padding-top: 4px;
}
.compare-pillars .pillar-body h4 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--white);
  margin: 0 0 8px;
}
.compare-pillars .pillar-body p {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  margin: 0;
}
.compare-pillars .pillar-body p strong {
  color: var(--white);
  font-weight: 600;
}

/* Closing pull-quote inside the dark card */
.compare-full-quote {
  margin: 0;
  padding: 22px 26px 18px;
  background: rgba(186,145,107,0.07);
  border-left: 2px solid var(--copper);
  border-radius: 4px 10px 10px 4px;
}
.compare-full-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  margin: 0 0 10px;
}
.compare-full-quote footer {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0;
}

/* -------- Responsive: stack on mobile / narrow tablets -------- */
@media (max-width: 960px) {
  .course-compare-split {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .compare-narrow {
    margin-top: 0;
    order: 2;
  }
  .compare-divider {
    flex-direction: row;
    align-self: auto;
    padding: 0;
    margin: 28px 0;
    height: 40px;
    order: 1;
  }
  .compare-divider-line {
    width: auto;
    flex: 1;
    height: 1px;
    min-height: auto;
    background: linear-gradient(to right, transparent, rgba(186,145,107,0.4), transparent);
  }
  .compare-full {
    padding: 44px 28px 32px;
    order: 0;
  }
  .compare-full-badge {
    left: 50%;
    transform: translateX(-50%);
  }
  .compare-pillars .pillar {
    grid-template-columns: 56px 1fr;
    gap: 16px;
    padding: 16px 0;
  }
  .compare-pillars .pillar-num {
    font-size: 24px;
  }
  .compare-narrow + .compare-divider + .compare-full {
    /* When mobile-stacked, full card sits above; minor visual fix */
  }
}
@media (max-width: 560px) {
  .compare-narrow {
    padding: 28px 22px 24px;
  }
  .compare-full {
    padding: 38px 22px 26px;
    border-radius: 20px;
  }
  .compare-full-title {
    margin-bottom: 24px;
  }
  .compare-pillars .pillar {
    grid-template-columns: 44px 1fr;
    gap: 12px;
  }
  .compare-pillars .pillar-num {
    font-size: 22px;
  }
}

/* =========================================================================
   AI-AS-INFRASTRUCTURE BLOCK — 6 capability tiles
   ========================================================================= */
.course-ai {
  padding: clamp(60px, 7vw, 100px) clamp(20px, 4vw, 60px);
  background: var(--bg);
}
.course-ai-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.course-ai-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(36px, 4vw, 56px);
}
.course-ai-head .eyebrow-italic {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--copper);
  display: block;
  margin-bottom: 14px;
}
.course-ai-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}
.course-ai-title i {
  font-style: italic;
  color: var(--copper);
}
.course-ai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ai-tile {
  background: #111;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 26px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
  position: relative;
  overflow: hidden;
  min-height: 200px;
  isolation: isolate;
}
.ai-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -16px rgba(0,0,0,0.45);
}
.ai-tile-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.ai-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.65) 100%);
  z-index: 1;
  pointer-events: none;
}
.ai-tile-num,
.ai-tile h3,
.ai-tile-tools {
  position: relative;
  z-index: 2;
}
.ai-tile-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--copper);
}
.ai-tile h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0;
  text-shadow: 0 1px 16px rgba(0,0,0,0.35);
}
.ai-tile-tools {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  margin: 0;
}
.course-ai-quote {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: var(--ink);
  margin: clamp(36px, 4vw, 56px) auto 0;
  max-width: 820px;
}
.course-ai-quote em {
  font-style: italic;
  color: var(--copper);
}

/* =========================================================================
   PHASE-06 bento card (Real-world mastery — same dark treatment as p01)
   ========================================================================= */
.bento-card.phase-06 {
  background: linear-gradient(140deg, #2a3530 0%, #1a221e 100%);
}

/* =========================================================================
   MOBILE BREAKPOINTS for the new sections
   ========================================================================= */
@media (max-width: 1024px) {
  .course-ai-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .course-ai-grid { grid-template-columns: 1fr; }
  .hero-microquote { font-size: 13.5px; margin-top: 10px; }

  /* Center the allinone block content when grid collapses to single column */
  .course-allinone-text { text-align: center; }
  .course-allinone-text .btn-pill { display: inline-block; margin-left: auto; margin-right: auto; }

  /* Tighten the .cta-shine pill so labels like "Start the program" don't wrap */
  .cta-shine {
    gap: 10px;
    padding: 14px 18px 14px 22px;
    font-size: 13.5px;
  }
  .cta-shine-label { white-space: nowrap; }
  .cta-shine-price { font-size: 16px; }
  .cta-shine-divider { height: 14px; }
  .cta-shine-arrow { width: 30px; height: 30px; margin-left: 0; }
  .cta-shine-arrow svg { width: 14px; height: 14px; }
}

/* CTA under WHY-DO-YOU-need-this section */
.why-need-foot {
  text-align: center;
  margin-top: clamp(36px, 4vw, 56px);
}

/* =========================================================================
   2026-05-18 — Course page spacing rhythm
   ========================================================================= */
:root {
  --course-gutter: clamp(20px, 4.5vw, 72px);
  --course-section-y: clamp(64px, 7.5vw, 112px);
  --course-head-gap: clamp(36px, 4.5vw, 64px);
  --course-cta-gap: clamp(32px, 4vw, 52px);
}

.why-need,
.course-video,
.course-ecom,
.course-about,
.course-stats,
.course-compare,
.course-vibe,
.course-program,
.course-ai,
.course-allinone,
.course-vs,
.course-proof,
.course-process,
.course-final-cta,
.course-faq {
  padding-top: var(--course-section-y);
  padding-bottom: var(--course-section-y);
}

.why-need,
.course-video,
.course-ecom,
.course-about,
.course-stats,
.course-compare,
.course-program,
.course-ai,
.course-allinone,
.course-vs,
.course-proof,
.course-process,
.course-final-cta,
.course-faq {
  padding-left: var(--course-gutter);
  padding-right: var(--course-gutter);
}

.course-vibe {
  padding-left: 0;
  padding-right: 0;
}

.course-vibe-head,
.course-vibe-carousel {
  padding-left: var(--course-gutter);
  padding-right: var(--course-gutter);
}

.why-need-title,
.course-vibe-head,
.course-program-head,
.course-compare-head,
.course-ai-head,
.course-proof-head,
.course-process-head,
.course-vs-title {
  margin-bottom: var(--course-head-gap);
}

.course-about-text h2,
.course-ecom-title,
.course-faq-title,
.course-allinone-text h2,
.course-final-cta h2 {
  margin-bottom: clamp(20px, 2.6vw, 32px);
}

.why-need-foot,
.course-video .btn-pill,
.course-program-foot,
.course-ai-quote,
.course-proof-foot,
.course-process-cta,
.course-vs-text {
  margin-top: var(--course-cta-gap);
}

.course-benefits-label {
  margin-top: clamp(32px, 4vw, 48px);
}

.course-pricing {
  margin-top: clamp(34px, 4vw, 52px);
}

.course-hero-text {
  padding-left: clamp(64px, 10vw, 150px);
  padding-right: var(--course-gutter);
}

.course-hero-text h2 {
  padding-top: clamp(28px, 4vw, 50px);
}

.course-hero .hero-cta-row {
  margin-top: clamp(24px, 3vw, 34px);
}

.course-hero .hero-trust {
  margin-top: clamp(16px, 2vw, 22px);
}

.course-proof-grid,
.course-process-steps,
.course-bonus-grid {
  margin-bottom: var(--course-cta-gap);
}

@media (max-width: 768px) {
  :root {
    --course-section-y: clamp(48px, 12vw, 72px);
    --course-head-gap: clamp(28px, 8vw, 42px);
    --course-cta-gap: clamp(24px, 7vw, 36px);
  }

  .course-hero-text {
    padding: 0 16px clamp(32px, 8vw, 44px);
  }

  .course-hero .hero-cta-row {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: clamp(24px, 7vw, 34px);
  }

  .course-hero .hero-trust,
  .course-hero .hero-microquote {
    max-width: 320px;
  }

  .why-need-cols,
  .why-need-col,
  .course-process-steps {
    gap: clamp(24px, 7vw, 40px);
  }

  .course-video {
    padding-top: 24px;
    padding-bottom: 24px;
    min-height: 0;
  }
  .course-video .btn-pill {
    margin-top: 20px;
    padding: 16px 48px;
  }
}

/* ===== Platform tour: trigger button + modal ===== */
.tour-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 11px 20px 11px 16px;
  background: transparent;
  border: 1px solid rgba(184, 122, 78, 0.45);
  border-radius: 999px;
  color: var(--copper, #b87a4e);
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.tour-trigger:hover {
  background: rgba(184, 122, 78, 0.08);
  border-color: var(--copper, #b87a4e);
  transform: translateY(-1px);
}
.tour-trigger:focus-visible {
  outline: 2px solid var(--copper, #b87a4e);
  outline-offset: 3px;
}
.tour-trigger-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(184, 122, 78, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tour-trigger-icon svg { margin-left: 1px; }
.tour-trigger-label { white-space: nowrap; }

/* Solid variant — high-emphasis (e.g. About the course) */
.tour-trigger--solid {
  margin-top: 28px;
  padding: 14px 26px 14px 18px;
  background: var(--copper, #b87a4e);
  border-color: var(--copper, #b87a4e);
  color: #fff;
  font-size: 14.5px;
  font-weight: 600;
  box-shadow: 0 10px 28px -10px rgba(184, 122, 78, 0.55);
}
.tour-trigger--solid:hover {
  background: #a86a3f;
  border-color: #a86a3f;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -10px rgba(184, 122, 78, 0.65);
}
.tour-trigger--solid .tour-trigger-icon {
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  position: relative;
}
.tour-trigger--solid .tour-trigger-icon::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.45);
  animation: tourPulse 1.8s ease-out infinite;
}
@keyframes tourPulse {
  0%   { transform: scale(0.85); opacity: 0.9; }
  100% { transform: scale(1.45); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .tour-trigger--solid .tour-trigger-icon::before { animation: none; }
}

/* Ghost variant lives on dark Final CTA section */
.course-final-cta .tour-trigger,
.tour-trigger--ghost {
  margin-top: 14px;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.78);
}
.course-final-cta .tour-trigger:hover,
.tour-trigger--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.course-final-cta .tour-trigger-icon,
.tour-trigger--ghost .tour-trigger-icon {
  background: rgba(255, 255, 255, 0.1);
}

/* Modal */
.tour-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 40px);
}
.tour-modal.is-open {
  display: flex;
  animation: tourFadeIn 0.25s ease;
}
.tour-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 10, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.tour-modal-frame {
  position: relative;
  width: min(960px, 100%);
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.tour-modal-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.tour-modal-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.tour-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}
.tour-modal-close:hover { background: rgba(255, 255, 255, 0.22); }
.tour-modal-close:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
body.tour-modal-open { overflow: hidden; }
@keyframes tourFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@media (max-width: 640px) {
  .tour-trigger { font-size: 13px; padding: 10px 16px 10px 14px; }
  .tour-trigger-label { white-space: normal; text-align: left; }
  .tour-modal-close { top: -40px; }
}

/* =========================================================================
   2026-05-20 — Visual audit fixes (desktop + mobile)
   ========================================================================= */

/* [14] Never allow horizontal scroll — clip the off-screen off-canvas menu.
   `clip` (not `hidden`) keeps position:sticky working. */
html { overflow-x: clip; }

/* [9] Headings can't push past their container. */
.display { overflow-wrap: break-word; }

/* [5] Lift the "Hi, I'm Dmytro Lavryniuk" title above the photo collage
   (photos are z-index:2) so its last line is no longer hidden; the shadow
   keeps it readable where it overlaps a photo. */
.intro-title {
  z-index: 3;
  text-shadow: 0 2px 28px rgba(0,0,0,0.55), 0 1px 3px rgba(0,0,0,0.5);
}

/* [7] The "Get the free guide" heading rendered at ~87px / 4 lines —
   it dwarfed the form on desktop. Bring it to a sane lead-magnet size. */
#guide .guide-card h2 {
  font-size: clamp(1.4rem, 1rem + 1.6vw, 2.75rem);
  overflow-wrap: anywhere;
}
/* [2] Horizontal scroll on mobile: the email <input> has a wide intrinsic
   size and, as a flex/grid item with min-width:auto, refused to shrink —
   pushing the guide card (and the page) past the viewport. min-width:0
   lets the grid items and the input shrink to fit narrow screens. */
#guide .guide-card > * { min-width: 0; }
#guide .guide-form { min-width: 0; }
#guide .guide-form input { min-width: 0; }

/* [9] Stop all-caps display headings wrapping to 6–8 lines on phones. */
@media (max-width: 640px) {
  h1.display, .h1 { font-size: clamp(2.5rem, 8.5vw, 3.4rem); }
  h2.display, .h2 { font-size: clamp(1.85rem, 7vw, 2.6rem); }
}

/* [9] Blog photos were centre-cropped, cutting off heads. */
.blog-card-media img { object-position: 50% 22%; }

/* [10] Keep the 5-star rating on one line. */
.stars { white-space: nowrap; }

/* [8] Trim the empty gap above the book page's "What's in the book" block. */
#buy-book { padding-bottom: clamp(36px, 4vw, 60px); }

/* [4] The floating "Enroll" button (position:fixed) covered the footer's
   last line — reserve space at the foot of pages that show it. */
body:has(.sticky-buy) .site-footer { padding-bottom: clamp(64px, 6vw, 72px); }

/* =========================================================================
   2026-05-21 — Mobile fixes: hero focal point + intro photo collage
   ========================================================================= */

/* head.jpg frames Dmytro in the left third of a wide landscape shot. With
   object-fit:cover on a narrow (portrait) viewport, object-position:center
   cropped him out — only an empty blurred strip showed. Shift the focal
   point left so he stays in frame on phones and portrait tablets. */
@media (max-width: 900px) {
  .hero-media img { object-position: 27% center; }
}
