:root {
  --rose-ivory: #fbf5f0;
  --blush-rose: #f2d9cc;
  --sand-clay: #dbb498;
  --olive-gold: #a07c4f;
  --honey-gold: #dca748;
  --soft-cocoa: #5a4838;
  --ink: var(--soft-cocoa);
  --muted: #8a7f73;
  --line: rgba(160, 124, 79, 0.22);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

body {
  max-width: 100%;
  margin: 0;
  overflow-x: clip;
  background: var(--rose-ivory);
  color: var(--ink);
  font-family: var(--sans);
}

.site-shell,
.site-header,
main,
.footer,
.section-page {
  max-width: 100%;
  overflow-x: clip;
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--olive-gold), var(--honey-gold));
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(251, 245, 240, 0.42);
  background: var(--soft-cocoa);
  color: var(--rose-ivory);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  opacity: 0;
  pointer-events: none;
  text-transform: uppercase;
  transform: translateY(14px);
  transition: opacity 220ms ease, transform 220ms ease, background 220ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--olive-gold);
}

body::selection {
  background: var(--soft-cocoa);
  color: var(--rose-ivory);
}

.hachi-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  mix-blend-mode: multiply;
  transform: translate3d(-50%, -50%, 0) scale(1);
  transition: opacity 160ms ease, transform 160ms ease;
}

.hachi-cursor-dot.is-visible {
  opacity: 0.9;
}

.hachi-cursor-dot.is-hovering {
  transform: translate3d(-50%, -50%, 0) scale(2.4);
  opacity: 0.48;
}

@media (hover: none), (pointer: coarse) {
  .hachi-cursor-dot {
    display: none;
  }
}

img {
  display: block;
  width: 100%;
}

.shape-divider {
  position: relative;
  height: 0;
  z-index: 1;
  pointer-events: none;
}

.hachi-shape {
  position: absolute;
  z-index: 1;
  width: clamp(210px, 25vw, 430px);
  max-width: none;
  opacity: 0.09;
  filter: none;
  mix-blend-mode: normal;
  pointer-events: none;
  user-select: none;
  animation: hachiShapeOrbit 18s linear infinite;
  transition: opacity 220ms ease;
}

.hachi-shape--large {
  width: clamp(280px, 34vw, 620px);
}

.hachi-shape--medium {
  width: clamp(230px, 28vw, 470px);
}

.hachi-shape--tall {
  width: clamp(260px, 30vw, 560px);
}

.shape-divider--right .hachi-shape {
  top: clamp(-170px, -10vw, -90px);
  right: clamp(-210px, -9vw, -80px);
}

.shape-divider--left .hachi-shape {
  top: clamp(-150px, -9vw, -80px);
  left: clamp(-210px, -10vw, -86px);
  animation-direction: reverse;
}

.shape-divider--soft .hachi-shape {
  opacity: 0.065;
}

.page-hero {
  overflow: hidden;
}

.page-hero > *:not(.hachi-shape) {
  position: relative;
  z-index: 1;
}

.page-hero .hachi-shape--page {
  top: auto;
  right: clamp(-180px, -8vw, -72px);
  bottom: clamp(-210px, -16vw, -110px);
  z-index: 0;
  width: clamp(230px, 28vw, 520px);
  opacity: 0.16;
}

.page-hero .hachi-shape--page-left {
  top: 50%;
  left: clamp(-180px, -8vw, -70px);
  z-index: 0;
  width: clamp(190px, 22vw, 420px);
  opacity: 0.13;
  animation-direction: reverse;
}

.hero,
.quote-band,
.entry-grid,
.section,
.quiz-band,
.waitlist,
.footer,
.content-page,
.section-page,
.archive-page,
.page-hero {
  position: relative;
}

.hero > *:not(.hachi-shape),
.quote-band > *:not(.hachi-shape),
.entry-grid > *:not(.hachi-shape),
.section > *:not(.hachi-shape),
.quiz-band > *:not(.hachi-shape),
.waitlist > *:not(.hachi-shape),
.footer > *:not(.hachi-shape),
.content-page > *:not(.hachi-shape),
.section-page > *:not(.hachi-shape),
.archive-page > *:not(.hachi-shape),
.page-hero > *:not(.hachi-shape),
.shape-divider + * > *:not(.hachi-shape) {
  position: relative;
  z-index: 2;
}

@keyframes hachiShapeOrbit {
  0% {
    transform: rotate(0deg) translate3d(var(--shape-drift-x, 0px), var(--shape-drift-y, 0px), 0) scale(1);
  }

  25% {
    transform: rotate(5deg) translate3d(calc(var(--shape-drift-x, 0px) + 12px), calc(var(--shape-drift-y, 0px) - 10px), 0) scale(1.03);
  }

  50% {
    transform: rotate(12deg) translate3d(var(--shape-drift-x, 0px), calc(var(--shape-drift-y, 0px) - 18px), 0) scale(1);
  }

  75% {
    transform: rotate(6deg) translate3d(calc(var(--shape-drift-x, 0px) - 12px), calc(var(--shape-drift-y, 0px) - 8px), 0) scale(1.02);
  }

  100% {
    transform: rotate(0deg) translate3d(var(--shape-drift-x, 0px), var(--shape-drift-y, 0px), 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hachi-shape {
    animation: none;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--honey-gold);
  outline-offset: 3px;
}

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 245, 240, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 0 0 rgba(90, 72, 56, 0);
  transition: min-height 260ms ease, padding 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(251, 245, 240, 0.96);
  box-shadow: 0 12px 34px rgba(90, 72, 56, 0.1);
}

.brand {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--soft-cocoa);
}

.brand-image {
  display: inline-flex;
  width: clamp(150px, 16vw, 230px);
  height: 58px;
  align-items: center;
  transition: height 260ms ease, transform 260ms ease;
}

.site-header.is-scrolled .brand-image {
  height: 48px;
  transform: translateY(-1px);
}

.brand-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-logo {
  width: clamp(190px, 22vw, 320px);
  height: 86px;
}

.brand span,
em,
.quote-band span {
  color: var(--honey-gold);
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.desktop-nav a:hover {
  color: var(--olive-gold);
}

.desktop-nav a {
  position: relative;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--olive-gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.desktop-nav a.active {
  color: var(--olive-gold);
  border-bottom: 1px solid var(--olive-gold);
  padding-bottom: 4px;
}

.header-cta,
.button {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--soft-cocoa);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  overflow: hidden;
  text-transform: uppercase;
  transition: border-color 220ms ease, color 220ms ease, transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.header-cta::before,
.button::before,
.hachi-form-wrap .ff-btn-submit::before,
.page-content .ff-btn-submit::before,
.hachi-form-wrap button[type="submit"]::before,
.page-content button[type="submit"]::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -42%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(220, 167, 72, 0.24), transparent);
  content: "";
  transform: skewX(-18deg);
  transition: left 420ms ease;
}

.header-cta:hover,
.button:hover,
.hachi-form-wrap .ff-btn-submit:hover,
.page-content .ff-btn-submit:hover,
.hachi-form-wrap button[type="submit"]:hover,
.page-content button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(90, 72, 56, 0.14);
}

.header-cta:hover::before,
.button:hover::before,
.hachi-form-wrap .ff-btn-submit:hover::before,
.page-content .ff-btn-submit:hover::before,
.hachi-form-wrap button[type="submit"]:hover::before,
.page-content button[type="submit"]:hover::before {
  left: 112%;
}

.header-cta,
.button.primary {
  background: var(--soft-cocoa);
  color: var(--rose-ivory);
}

.button.secondary {
  background: transparent;
  color: var(--soft-cocoa);
}

.button.secondary:hover {
  border-color: var(--olive-gold);
  color: var(--olive-gold);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--soft-cocoa);
}

.mobile-panel {
  position: fixed;
  inset: 73px 0 auto 0;
  z-index: 19;
  display: none;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: var(--rose-ivory);
}

.mobile-panel.open {
  display: grid;
  gap: 12px;
}

.mobile-panel a {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mobile-panel a.active {
  color: var(--olive-gold);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  min-height: calc(100vh - 78px);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  align-self: center;
  padding: clamp(48px, 9vw, 110px) clamp(22px, 6vw, 84px);
}

.eyebrow,
.meta {
  margin: 0 0 12px;
  color: var(--honey-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--soft-cocoa);
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.02;
}

h1 {
  max-width: 760px;
  font-size: clamp(58px, 9vw, 112px);
}

h2 {
  font-size: clamp(40px, 6vw, 76px);
}

h3 {
  font-size: 30px;
}

em {
  font-style: italic;
}

.hero-text {
  max-width: 590px;
  margin: 24px 0 32px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-visual {
  position: relative;
  min-height: 420px;
  background: var(--sand-clay);
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition: opacity 700ms ease, visibility 700ms ease, transform 900ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 900ms ease;
}

.hero-visual:hover .hero-slide.is-active img {
  transform: scale(1.035);
}

.hero-slide::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(90, 72, 56, 0.02) 35%, rgba(90, 72, 56, 0.62) 100%);
}

.hero-slide-caption {
  position: absolute;
  left: clamp(18px, 4vw, 42px);
  right: clamp(18px, 4vw, 42px);
  bottom: clamp(72px, 8vw, 98px);
  z-index: 2;
  max-width: 420px;
  color: var(--rose-ivory);
}

.hero-slide-caption span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--honey-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-slide-caption strong {
  display: block;
  color: var(--rose-ivory);
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
}

.hero-slider-controls {
  position: absolute;
  right: clamp(18px, 4vw, 42px);
  bottom: clamp(24px, 4vw, 42px);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero-slider-controls button {
  width: 36px;
  height: 4px;
  border: 0;
  background: rgba(251, 245, 240, 0.52);
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease;
}

.hero-slider-controls button.active,
.hero-slider-controls button:hover {
  width: 52px;
  background: var(--honey-gold);
}

.quote-band {
  padding: clamp(34px, 6vw, 76px) 24px;
  background: var(--soft-cocoa);
  text-align: center;
}

.quote-band p {
  max-width: 920px;
  margin: 0 auto;
  color: var(--rose-ivory);
  font-family: var(--serif);
  font-size: clamp(30px, 5vw, 58px);
  font-style: italic;
  line-height: 1.12;
}

.entry-grid,
.article-grid,
.guide-list,
.video-grid,
.principle-grid {
  display: grid;
  gap: 18px;
}

.entry-grid {
  grid-template-columns: repeat(4, 1fr);
  padding: clamp(22px, 5vw, 64px);
}

.entry-card,
.article-card,
.guide-card,
.glossary-panel,
.myth {
  border: 1px solid var(--line);
  background: rgba(251, 245, 240, 0.62);
}

.entry-card,
.article-card,
.video-card,
.guide-card,
.glossary-panel,
.myth,
.principle-card,
.routine-steps article,
.article-note,
.detail-panel {
  will-change: transform, opacity;
}

.entry-card,
.article-card,
.guide-card,
.video-card,
.decode-card,
.myth-card,
.principle-card {
  position: relative;
  overflow: hidden;
}

.entry-card::before,
.article-card::before,
.guide-card::before,
.video-card::before,
.decode-card::before,
.myth-card::before,
.principle-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(220, 167, 72, 0.18), transparent 32%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.entry-card:hover::before,
.article-card:hover::before,
.guide-card:hover::before,
.video-card:hover::before,
.decode-card:hover::before,
.myth-card:hover::before,
.principle-card:hover::before {
  opacity: 1;
}

.entry-card > *,
.article-card > *,
.guide-card > *,
.video-card > *,
.decode-card > *,
.myth-card > *,
.principle-card > * {
  position: relative;
  z-index: 1;
}

.entry-card {
  min-height: 260px;
  padding: 28px;
  transition: border-color 240ms ease, background 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.entry-card.accent {
  background: var(--blush-rose);
}

.entry-card span,
.guide-card span {
  color: var(--olive-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.entry-card h2 {
  margin-top: 44px;
  font-size: clamp(34px, 4vw, 54px);
}

.entry-card p,
.article-card p,
.guide-card p,
.term-list p,
.waitlist p,
.footer p {
  color: var(--muted);
  line-height: 1.65;
}

.section {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 64px);
}

.journal-section,
.guides-section,
.myths-section {
  background: var(--blush-rose);
}

.section-heading {
  max-width: 810px;
  margin-bottom: 30px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}

.filter {
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid rgba(160, 124, 79, 0.34);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.filter.active {
  border-color: var(--soft-cocoa);
  background: var(--soft-cocoa);
  color: var(--rose-ivory);
}

.article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-card {
  display: grid;
  grid-template-rows: 250px 1fr;
  overflow: hidden;
  background: var(--rose-ivory);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.article-card:hover,
.video-card:hover,
.guide-card:hover,
.entry-card:hover {
  border-color: rgba(160, 124, 79, 0.42);
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(90, 72, 56, 0.14);
}

.video-grid {
  grid-template-columns: 1.25fr repeat(3, 1fr);
}

.video-card {
  display: grid;
  align-content: end;
  min-height: 340px;
  padding: 24px;
  border: 1px solid rgba(220, 167, 72, 0.3);
  background: var(--soft-cocoa);
  color: var(--rose-ivory);
  transition: border-color 240ms ease, transform 240ms ease, box-shadow 240ms ease;
}

.video-card:hover {
  border-color: rgba(220, 167, 72, 0.58);
}

.video-card.featured {
  min-height: 420px;
}

.video-card h3 {
  color: var(--rose-ivory);
}

.play-mark {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 70px;
  place-items: center;
  border: 1px solid var(--honey-gold);
  border-radius: 50%;
  color: var(--honey-gold);
}

.principle-grid {
  grid-template-columns: repeat(4, 1fr);
}

.principle-card {
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(251, 245, 240, 0.58);
}

.article-card[hidden] {
  display: none;
}

.article-card img,
.article-aside img {
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 700ms ease;
}

.article-card:hover img,
.article-aside:hover img,
.guide-card:hover .guide-cover {
  transform: scale(1.045);
}

.article-card div:not(.placeholder) {
  padding: 24px;
}

.article-card h3 {
  font-size: 31px;
}

.placeholder {
  display: grid;
  place-items: center;
  background: var(--sand-clay);
  color: rgba(90, 72, 56, 0.7);
  font-family: var(--serif);
  font-size: 30px;
}

.feature-article {
  background: var(--rose-ivory);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(22px, 5vw, 64px);
  align-items: start;
}

.lead {
  color: var(--olive-gold);
  font-family: var(--serif);
  font-size: clamp(27px, 4vw, 42px);
  font-style: italic;
  line-height: 1.2;
}

.info-card {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(242, 217, 204, 0.44);
}

.info-card h3 {
  font-size: 34px;
}

blockquote {
  margin: 28px 0 0;
  padding-left: 22px;
  border-left: 3px solid var(--honey-gold);
  color: var(--soft-cocoa);
  font-family: var(--serif);
  font-size: 35px;
  font-style: italic;
  line-height: 1.2;
}

.article-aside {
  display: grid;
  gap: 16px;
}

.article-aside img {
  aspect-ratio: 4 / 5;
}

.guide-list {
  max-width: 900px;
  margin: 0 auto;
}

.guide-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  min-height: 190px;
  overflow: hidden;
  background: var(--rose-ivory);
  transition: border-color 240ms ease, transform 240ms ease, box-shadow 240ms ease;
}

.guide-cover {
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 24px;
  background: var(--soft-cocoa);
  color: var(--honey-gold);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.18;
  text-align: center;
  overflow-wrap: break-word;
  transition: transform 700ms ease, background 240ms ease;
}

.guide-card div:last-child {
  padding: 26px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(24px, 6vw, 78px);
  align-items: start;
  background: var(--rose-ivory);
}

.glossary-panel {
  padding: 20px;
}

.glossary-panel input,
.waitlist input,
.hachi-form-wrap input,
.hachi-form-wrap select,
.hachi-form-wrap textarea,
.page-content input,
.page-content select,
.page-content textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  background: var(--rose-ivory);
  padding: 0 16px;
  color: var(--ink);
}

.hachi-form-wrap textarea,
.page-content textarea {
  min-height: 132px;
  padding-top: 14px;
  resize: vertical;
}

.term-list article {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.term-list article:last-child {
  border-bottom: 0;
}

.term-list h3 {
  font-size: 31px;
}

.term-list span {
  display: inline-flex;
  padding: 4px 9px;
  border: 1px solid rgba(160, 124, 79, 0.38);
  color: var(--olive-gold);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  vertical-align: middle;
}

.myth-list {
  display: grid;
  max-width: 920px;
  margin: 0 auto;
  gap: 10px;
}

.myth {
  display: block;
  width: 100%;
  padding: 22px;
  color: var(--soft-cocoa);
  cursor: pointer;
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 38px);
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.myth:hover {
  border-color: rgba(160, 124, 79, 0.42);
  transform: translateX(4px);
}

.myth span {
  display: inline-flex;
  margin-right: 12px;
  padding: 5px 10px;
  border: 1px solid rgba(160, 124, 79, 0.38);
  color: var(--olive-gold);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.myth small {
  display: none;
  margin-top: 14px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

.myth.open {
  background: var(--rose-ivory);
}

.myth.open small {
  display: block;
}

.quiz-band {
  display: grid;
  min-height: 620px;
  place-items: center;
  padding: clamp(40px, 8vw, 90px) 18px;
  background: var(--soft-cocoa);
  text-align: center;
}

.quiz-band > div {
  width: min(100%, 920px);
}

.quiz-shell {
  display: grid;
  gap: 24px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(242, 217, 204, 0.28);
  background: linear-gradient(145deg, rgba(251, 245, 240, 0.1), rgba(242, 217, 204, 0.05));
  box-shadow: 0 28px 70px rgba(90, 72, 56, 0.24);
  text-align: left;
}

.quiz-intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.quiz-intro h1 {
  color: var(--rose-ivory);
  font-size: clamp(42px, 7vw, 78px);
}

.quiz-intro p:not(.eyebrow) {
  max-width: 620px;
  margin: 12px auto 0;
  color: rgba(251, 245, 240, 0.76);
}

.quiz-band h2 {
  color: var(--blush-rose);
  font-size: clamp(31px, 4vw, 54px);
  line-height: 1;
}

.quiz-progress {
  display: grid;
  gap: 10px;
  color: rgba(251, 245, 240, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quiz-progress div {
  height: 8px;
  overflow: hidden;
  border: 1px solid rgba(220, 167, 72, 0.32);
  background: rgba(251, 245, 240, 0.08);
}

.quiz-progress i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--olive-gold), var(--honey-gold));
  transition: width 280ms ease;
}

.quiz-steps {
  min-height: 360px;
}

.quiz-step {
  animation: quizStepIn 260ms ease;
}

.quiz-count,
.quiz-helper {
  color: rgba(251, 245, 240, 0.7);
}

.quiz-count {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.quiz-helper {
  max-width: 660px;
  margin-top: 10px;
  font-size: 16px;
}

.answer-grid {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.answer-grid button {
  min-height: 58px;
  border: 1px solid rgba(220, 167, 72, 0.38);
  background: rgba(251, 245, 240, 0.07);
  color: var(--rose-ivory);
  cursor: pointer;
  text-align: left;
  padding: 18px 20px;
  font-size: 16px;
  line-height: 1.45;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.answer-grid button span {
  display: block;
}

.answer-grid button:hover {
  border-color: rgba(220, 167, 72, 0.7);
  background: rgba(251, 245, 240, 0.13);
  transform: translateX(4px);
}

.quiz-actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.quiz-actions .button {
  min-width: 132px;
}

.quiz-actions .button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.quiz-capture {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid rgba(220, 167, 72, 0.45);
  background: rgba(251, 245, 240, 0.08);
  color: var(--rose-ivory);
  animation: quizStepIn 300ms ease;
}

.quiz-capture[hidden] {
  display: none;
}

.quiz-capture h2 {
  color: var(--blush-rose);
  font-size: clamp(31px, 4vw, 54px);
}

.quiz-capture p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(251, 245, 240, 0.76);
}

.quiz-capture .hachi-form-wrap {
  max-width: 620px;
}

.quiz-capture .button.secondary {
  justify-self: start;
}

@keyframes quizStepIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.waitlist {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 480px);
  gap: 24px;
  align-items: center;
  padding: clamp(42px, 6vw, 76px) clamp(18px, 5vw, 64px);
  background: var(--blush-rose);
}

.waitlist h2 {
  font-size: clamp(36px, 5vw, 64px);
}

.waitlist form,
.waitlist .ff-el-group.ff_submit_btn_wrapper {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.hachi-form-wrap .fluentform {
  margin: 0;
}

.hachi-form-wrap .ff-el-group {
  margin-bottom: 12px;
}

.hachi-form-wrap .ff-el-input--label label,
.page-content .ff-el-input--label label {
  color: var(--soft-cocoa);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hachi-form-wrap .ff-el-form-check-label,
.page-content .ff-el-form-check-label {
  color: var(--muted);
}

.hachi-form-wrap .ff-btn-submit,
.page-content .ff-btn-submit,
.hachi-form-wrap button[type="submit"],
.page-content button[type="submit"] {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--soft-cocoa);
  background: var(--soft-cocoa);
  color: var(--rose-ivory);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  overflow: hidden;
  padding: 0 22px;
  text-transform: uppercase;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.hachi-form-wrap .ff-message-success,
.page-content .ff-message-success {
  border: 1px solid var(--sand-clay);
  background: var(--rose-ivory);
  color: var(--soft-cocoa);
}

.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 32px clamp(18px, 5vw, 64px);
  background: var(--rose-ivory);
}

.footer p {
  margin: 0;
  max-width: 620px;
}

.footer-note {
  display: grid;
  gap: 16px;
}

.footer-newsletter {
  max-width: 520px;
}

.footer-newsletter form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.footer div.footer-links {
  display: flex;
  gap: 16px;
  color: var(--olive-gold);
  font-weight: 700;
}

.waitlist-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
  pointer-events: none;
  visibility: hidden;
}

.waitlist-modal.is-open {
  pointer-events: auto;
  visibility: visible;
}

.waitlist-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(90, 72, 56, 0.42);
  cursor: pointer;
  opacity: 0;
  transition: opacity 260ms ease;
}

.waitlist-modal.is-open .waitlist-modal__backdrop {
  opacity: 1;
}

.waitlist-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  max-height: calc(100vh - 36px);
  overflow: auto;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(160, 124, 79, 0.34);
  background: var(--rose-ivory);
  box-shadow: 0 30px 80px rgba(90, 72, 56, 0.24);
  transform: translateY(24px) scale(0.96);
  opacity: 0;
  transition: opacity 300ms ease, transform 300ms ease;
}

.waitlist-modal.is-open .waitlist-modal__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.waitlist-modal__panel h2 {
  max-width: 520px;
  font-size: clamp(38px, 6vw, 64px);
}

.waitlist-modal__panel p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.waitlist-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--blush-rose);
  cursor: pointer;
}

.waitlist-modal__close span {
  position: absolute;
  width: 18px;
  height: 1px;
  background: var(--soft-cocoa);
}

.waitlist-modal__close span:first-child {
  transform: rotate(45deg);
}

.waitlist-modal__close span:last-child {
  transform: rotate(-45deg);
}

body.waitlist-modal-open {
  overflow: hidden;
}

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

.page-hero {
  display: grid;
  min-height: 320px;
  place-items: center;
  padding: clamp(48px, 7vw, 82px) clamp(18px, 5vw, 64px);
  border-bottom: 1px solid rgba(160, 124, 79, 0.24);
  background: var(--blush-rose);
  isolation: isolate;
  text-align: center;
}

.page-hero.sage {
  background: var(--rose-ivory);
}

.page-hero.dark {
  background: var(--soft-cocoa);
}

.page-hero.dark h1,
.page-hero.dark .hero-text {
  color: var(--rose-ivory);
}

.page-hero h1 {
  margin: 0 auto;
  font-size: clamp(34px, 4.8vw, 58px);
}

.page-hero .hero-text {
  margin-right: auto;
  margin-left: auto;
}

.single-featured-hero {
  display: block;
  width: 100%;
  height: auto;
  min-height: auto;
  padding: 0;
  overflow: visible;
}

.single-featured-hero img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  object-fit: contain;
}

.single-content-title {
  max-width: 920px;
  margin: 18px 0 34px;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.02;
}

.single-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0 0 46px;
  color: var(--olive-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.content-page {
  padding: clamp(44px, 7vw, 92px) clamp(18px, 5vw, 64px);
}

.page-content {
  max-width: 920px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.page-content > *:first-child {
  margin-top: 0;
}

.content-page.narrow {
  max-width: 980px;
  margin: 0 auto;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.archive-hero {
  min-height: 340px;
}

.archive-hero--journal,
.archive-hero--decoded {
  background: var(--rose-ivory);
}

.archive-hero--guides,
.archive-hero--myths {
  background: var(--blush-rose);
}

.archive-hero--watch {
  background: var(--soft-cocoa);
}

.archive-hero--watch h1,
.archive-hero--watch .hero-text {
  color: var(--rose-ivory);
}

.archive-page {
  padding: clamp(34px, 5vw, 70px) clamp(18px, 5vw, 64px);
  background: var(--rose-ivory);
}

.archive-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.archive-toolbar__label {
  color: var(--olive-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.hachi-elementor-grid {
  padding: clamp(18px, 3vw, 34px);
  background: transparent;
}

.hachi-elementor-grid .archive-grid {
  grid-template-columns: repeat(var(--hachi-grid-columns, 3), minmax(0, 1fr));
}

.hachi-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.hachi-filter-bar button {
  min-height: 38px;
  border: 1px solid rgba(160, 124, 79, 0.28);
  background: rgba(251, 245, 240, 0.54);
  color: var(--soft-cocoa);
  cursor: pointer;
  padding: 0 15px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.hachi-filter-bar button:hover,
.hachi-filter-bar button.active {
  border-color: var(--olive-gold);
  background: var(--soft-cocoa);
  color: var(--rose-ivory);
  transform: translateY(-1px);
}

.journal-section .hachi-filter-bar--journal-home {
  justify-content: center;
  gap: 12px;
  margin: 18px 0 0;
}

.journal-section .hachi-filter-bar--journal-home button {
  min-height: 30px;
  padding: 0 18px;
  border-color: rgba(160, 124, 79, 0.3);
  background: transparent;
  color: var(--soft-cocoa);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.journal-section .hachi-filter-bar--journal-home button:hover,
.journal-section .hachi-filter-bar--journal-home button.active {
  border-color: var(--soft-cocoa);
  background: var(--soft-cocoa);
  color: var(--rose-ivory);
}

.hachi-elementor-grid .is-hidden-by-load {
  display: none;
}

.hachi-elementor-grid [hidden] {
  display: none !important;
}

.hachi-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.card-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--olive-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-read-more::after {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  transition: width 220ms ease;
}

a:hover .card-read-more::after {
  width: 36px;
}

.elementor-editable-content {
  position: relative;
  max-width: min(1180px, calc(100vw - 36px));
  margin-top: clamp(28px, 5vw, 58px);
  isolation: isolate;
}

.elementor-editable-content .hachi-elementor-grid {
  margin-top: 28px;
}

.elementor-editable-content > *:not(.hachi-shape) {
  position: relative;
  z-index: 2;
}

.elementor-editable-content .hachi-shape--content {
  z-index: 0;
  width: clamp(220px, 28vw, 560px);
  opacity: 0.075;
}

.elementor-editable-content .hachi-shape--content-left {
  top: clamp(120px, 16vw, 260px);
  left: clamp(-220px, -12vw, -90px);
  animation-direction: reverse;
}

.elementor-editable-content .hachi-shape--content-right {
  right: clamp(-230px, -12vw, -96px);
  bottom: clamp(40px, 8vw, 160px);
}

.archive-grid--guides {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.archive-grid--watch {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.archive-grid--decoded,
.archive-grid--myths {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.archive-video-card {
  min-height: 430px;
}

.archive-guide-card {
  min-height: 240px;
}

.decode-card,
.myth-card {
  display: grid;
  min-height: 300px;
  align-content: space-between;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(251, 245, 240, 0.64);
  transition: border-color 240ms ease, background 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.decode-card:hover,
.myth-card:hover {
  border-color: rgba(160, 124, 79, 0.42);
  background: var(--rose-ivory);
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(90, 72, 56, 0.14);
}

.decode-card h2,
.myth-card h2 {
  font-size: clamp(34px, 4vw, 54px);
}

.decode-card p:not(.meta),
.myth-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.myth-card {
  background: var(--rose-ivory);
}

.myth-card span {
  width: fit-content;
  padding: 5px 10px;
  border: 1px solid rgba(160, 124, 79, 0.38);
  color: var(--olive-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.archive-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}

.archive-pagination .page-numbers {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--soft-cocoa);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0 12px;
  text-transform: uppercase;
}

.archive-pagination .current,
.archive-pagination a:hover {
  border-color: var(--soft-cocoa);
  background: var(--soft-cocoa);
  color: var(--rose-ivory);
}

.archive-empty {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 70px);
  border: 1px solid var(--line);
  background: rgba(251, 245, 240, 0.68);
  text-align: center;
}

.archive-empty h2 {
  font-size: clamp(36px, 5vw, 62px);
}

.archive-empty p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.article-detail {
  display: grid;
  grid-template-columns: minmax(0, 900px) minmax(300px, 390px);
  gap: clamp(28px, 3.4vw, 54px);
  align-items: start;
  max-width: 1460px;
  margin-right: auto;
  margin-left: auto;
}

.article-detail--full {
  display: block;
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
}

.article-detail main p,
.article-detail li,
.guide-detail p,
.guide-detail li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.article-detail main h2,
.guide-detail h2 {
  margin-top: 34px;
  font-size: clamp(34px, 4vw, 52px);
}

.article-note,
.detail-panel {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--blush-rose);
}

.detail-panel {
  position: sticky;
  top: 98px;
}

.article-sidebar {
  display: grid;
  gap: 22px;
  background: rgba(242, 217, 204, 0.72);
}

.article-sidebar-meta {
  display: grid;
  gap: 16px;
  margin: 0;
}

.article-sidebar-meta div {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(160, 124, 79, 0.22);
}

.article-sidebar-meta dt {
  margin-bottom: 4px;
  color: var(--olive-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-sidebar-meta dd {
  margin: 0;
  color: var(--soft-cocoa);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.1;
}

.article-sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-sidebar-tags a {
  padding: 7px 11px;
  border: 1px solid rgba(160, 124, 79, 0.32);
  color: var(--olive-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.article-toc {
  padding: 0;
  overflow: hidden;
  background: rgba(242, 217, 204, 0.42);
}

.article-toc-title {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(160, 124, 79, 0.22);
  color: var(--soft-cocoa);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.article-toc ol {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 24px 28px 28px;
  color: var(--soft-cocoa);
  counter-reset: articleToc;
  list-style: none;
}

.article-toc li {
  color: var(--soft-cocoa);
  font-size: 15px;
  line-height: 1.35;
  counter-increment: articleToc;
}

.article-toc li::before {
  content: counter(articleToc, decimal-leading-zero) ". ";
  color: var(--olive-gold);
  font-weight: 700;
}

.detail-panel img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  margin-bottom: 16px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--olive-gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-detail {
  max-width: 920px;
  margin: 0 auto;
}

.routine-steps {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.routine-steps article {
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(251, 245, 240, 0.62);
}

.quiz-options button.selected {
  border-color: var(--honey-gold);
  background: rgba(220, 167, 72, 0.2);
  box-shadow: inset 4px 0 0 var(--honey-gold);
}

.result-box {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(220, 167, 72, 0.45);
  background: rgba(251, 245, 240, 0.08);
  color: var(--rose-ivory);
  text-align: left;
}

.result-box[hidden] {
  display: none;
}

.result-box.show {
  display: grid;
  gap: 18px;
  animation: quizStepIn 300ms ease;
}

.quiz-result h3 {
  color: var(--blush-rose);
  font-size: clamp(30px, 4vw, 52px);
}

.quiz-routine {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(242, 217, 204, 0.24);
  color: rgba(251, 245, 240, 0.78);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .hero,
  .article-layout,
  .article-detail,
  .split-section,
  .waitlist,
  .footer {
    grid-template-columns: 1fr;
  }

  .article-toc {
    position: static;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 360px;
    order: -1;
  }

  .entry-grid,
  .article-grid,
  .content-grid,
  .archive-grid,
  .video-grid,
  .principle-grid {
    grid-template-columns: 1fr 1fr;
  }

  .detail-panel {
    position: static;
  }

  .footer {
    align-items: start;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    font-size: 26px;
  }

  .brand-image {
    width: 145px;
    height: 48px;
  }

  .mobile-panel {
    inset-top: 64px;
  }

  .hero-copy {
    padding: 38px 18px;
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 42px;
  }

  .entry-grid,
  .article-grid,
  .content-grid,
  .archive-grid,
  .archive-grid--guides,
  .archive-grid--watch,
  .archive-grid--decoded,
  .archive-grid--myths,
  .hachi-elementor-grid .archive-grid,
  .video-grid,
  .principle-grid,
  .guide-card,
  .waitlist form,
  .footer-newsletter form {
    grid-template-columns: 1fr;
  }

  .entry-card {
    min-height: 220px;
    padding: 24px;
  }

  .article-card {
    grid-template-rows: minmax(190px, 56vw) auto;
  }

  .guide-cover {
    min-height: 150px;
    padding: 24px 18px;
    font-size: clamp(28px, 9vw, 42px);
  }

  .archive-page,
  .content-page,
  .page-content,
  .entry-grid {
    padding-right: 18px;
    padding-left: 18px;
  }

  .archive-card,
  .archive-guide-card,
  .archive-video-card,
  .decode-card,
  .myth-card,
  .article-card,
  .guide-card,
  .video-card {
    width: 100%;
    min-width: 0;
    min-height: auto;
  }

  .archive-card,
  .decode-card,
  .myth-card,
  .video-card {
    padding: 24px;
  }

  .archive-video-card,
  .video-card,
  .video-card.featured {
    min-height: 360px;
  }

  .archive-card h2,
  .decode-card h2,
  .myth-card h2,
  .entry-card h2,
  .article-card h3,
  .guide-card h3,
  .video-card h3 {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .archive-card h2,
  .decode-card h2,
  .myth-card h2 {
    font-size: clamp(34px, 11vw, 48px);
    line-height: 0.98;
  }

  .single-featured-hero img {
    aspect-ratio: 4 / 3;
  }

  .single-content-title {
    font-size: clamp(36px, 12vw, 52px);
  }

  .article-card h3,
  .guide-card h3,
  .video-card h3 {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1;
  }

  .article-card div:not(.placeholder),
  .guide-card div:last-child {
    padding: 22px;
  }

  .article-card {
    overflow: visible;
  }

  .article-card h3 {
    display: block;
    overflow: visible;
    white-space: normal;
  }

  .archive-card p,
  .decode-card p:not(.meta),
  .myth-card p,
  .article-card p,
  .guide-card p,
  .video-card p {
    font-size: 18px;
    line-height: 1.55;
  }

  .button,
  .waitlist form button,
  .footer-newsletter form button,
  .waitlist-modal form button {
    width: 100%;
  }

  .quiz-shell {
    padding: 22px 16px;
  }

  .quiz-actions {
    flex-direction: column-reverse;
  }
}
