/* GTFU — Adan Castillo | Brand palette */
:root {
  --maroon: #800000;
  --black: #000000;
  --white: #ffffff;
  --maroon-dim: #5c0000;
  --maroon-glow: rgba(128, 0, 0, 0.45);
  --surface: #0a0a0a;
  --cream: #faf7f4;
  --cream-deep: #f3ebe6;
  --text-muted: rgba(255, 255, 255, 0.72);
  --font-display: "Bebas Neue", "Impact", sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 5.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10001;
  padding: 0.75rem 1.25rem;
  background: var(--maroon);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--white);
  background: var(--black);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--maroon);
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
}

a:hover {
  color: #a02020;
}

/* ----- Layout ----- */
.wrap {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.section {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.section--tight {
  padding-top: clamp(2rem, 5vw, 3rem);
}

/* ----- Header ----- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.75) 70%, transparent);
  border-bottom: 1px solid rgba(128, 0, 0, 0.25);
  transition: background 0.35s var(--ease-out), border-color 0.35s;
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(128, 0, 0, 0.4);
}

.header-inner {
  width: min(1120px, 92vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
  flex-shrink: 0;
}

.logo img {
  height: clamp(2.1rem, 5.2vw, 3rem);
  width: auto;
  max-width: min(12.5rem, 52vw);
  object-fit: contain;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav a {
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0.65rem 1rem;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.3rem;
  height: 2px;
  background: var(--maroon);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav a.nav__social,
a.footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.75rem;
  font-size: 1.28rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.nav a.nav__social::after,
a.footer__social::after {
  display: none;
}

.nav a.nav__social:hover,
a.footer__social:hover {
  color: var(--white);
}

.nav a.nav__social:hover i,
.nav a.nav__social:focus-visible i,
a.footer__social:hover i,
a.footer__social:focus-visible i {
  transform: scale(1.06);
  transition: transform 0.2s var(--ease-out);
}

.nav a.nav__social:focus-visible,
a.footer__social:focus-visible {
  outline: 2px solid var(--maroon);
  outline-offset: 2px;
  border-radius: 4px;
}

.nav__social-row {
  display: contents;
}

@media (min-width: 769px) {
  .nav a.nav__social[href*="instagram.com"] {
    margin-left: 0.75rem;
    padding-left: 1.05rem;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(128, 0, 0, 0.5);
  color: var(--white);
  padding: 0.55rem 0.85rem;
  cursor: pointer;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.97);
    border-bottom: 1px solid rgba(128, 0, 0, 0.35);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease-out), opacity 0.35s;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav a::after {
    display: none;
  }

  .nav__social-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.35rem;
    width: 100%;
    padding: 0.65rem 1rem 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: none;
  }

  .nav__social-row .nav__social {
    border-bottom: none;
    flex: 0 0 auto;
  }
}

/* ----- Hero ----- */
.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: calc(var(--header-h) + 0.5rem);
  padding-bottom: clamp(2rem, 6vw, 3.5rem);
  position: relative;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, var(--maroon-glow), transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(128, 0, 0, 0.2), transparent 50%),
    linear-gradient(180deg, #0d0d0d 0%, var(--black) 45%, #050505 100%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 85%);
  animation: grid-drift 28s linear infinite;
}

@keyframes grid-drift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-48px, -48px);
  }
}

/* Home hero: desktop = two columns + blended figure; mobile = figure behind centered copy */
.home-page .hero__layout {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "stack";
  align-items: center;
  position: relative;
  min-height: calc(100vh - var(--header-h) - 1rem);
  padding-top: 0.5rem;
  padding-bottom: clamp(1.5rem, 5vw, 2.5rem);
}

.home-page .hero__content {
  grid-area: stack;
  position: relative;
  z-index: 2;
}

.home-page .hero__glow {
  grid-area: stack;
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
  min-height: min(72vh, 560px);
  margin: 0 auto;
  width: 100%;
  max-width: min(100%, 400px);
}

.home-page .hero__glow img {
  width: auto;
  max-width: 130%;
  height: min(68vh, 540px);
  object-fit: contain;
  object-position: center bottom;
}

@media (max-width: 900px) {
  .home-page .hero {
    padding-top: 0;
    padding-bottom: 0;
  }

  .home-page .hero__layout {
    text-align: center;
    align-content: center;
    padding-top: calc(var(--header-h) + 0.75rem);
    padding-bottom: clamp(2rem, 6vw, 3rem);
  }

  .home-page .hero__content {
    justify-self: center;
    max-width: 36rem;
    width: 100%;
    margin-inline: auto;
  }

  .home-page .hero__brand img {
    margin-inline: auto;
    object-position: center center;
  }

  .home-page .hero__lead {
    margin-inline: auto;
  }

  .home-page .hero__eyebrow {
    justify-content: center;
  }

  .home-page .hero__eyebrow i {
    color: #ff8a8a;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.95)) drop-shadow(0 2px 12px rgba(0, 0, 0, 0.8))
      drop-shadow(0 0 10px rgba(128, 0, 0, 0.45));
  }

  .home-page .hero__actions {
    justify-content: center;
  }

  .home-page .hero__glow {
    align-items: flex-end;
    min-height: min(75vh, 600px);
    max-width: 100%;
  }

  .home-page .hero__glow img {
    height: min(72vh, 580px);
    max-width: min(115vw, 520px);
    margin-inline: auto;
    transform: scale(1.08);
    transform-origin: center bottom;
  }
}

@media (min-width: 901px) {
  .home-page .hero__layout {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    grid-template-areas: "copy glow";
    gap: clamp(0.5rem, 2vw, 1.5rem);
    align-items: center;
    min-height: calc(100vh - var(--header-h) - 1rem);
    padding-top: 0;
  }

  .home-page .hero__content {
    grid-area: copy;
    text-align: left;
  }

  .home-page .hero__glow {
    grid-area: glow;
    align-items: center;
    justify-content: center;
    min-height: 0;
    max-width: none;
    width: 100%;
    position: relative;
    overflow: visible;
  }

  .home-page .hero__glow img {
    width: 100%;
    max-width: min(100%, 460px);
    height: auto;
    max-height: min(78vh, 720px);
    object-fit: contain;
    object-position: center center;
  }

  .home-page .hero__eyebrow i {
    color: var(--maroon);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.95)) drop-shadow(0 2px 12px rgba(0, 0, 0, 0.82));
  }
}

/* Home hero copy: readable on non-black areas (figure, gradients) */
.home-page .hero__lead {
  color: rgba(255, 255, 255, 0.94);
  text-shadow:
    0 0 1px rgba(0, 0, 0, 0.98),
    0 1px 2px rgba(0, 0, 0, 0.92),
    0 2px 16px rgba(0, 0, 0, 0.88),
    0 4px 36px rgba(0, 0, 0, 0.72);
}

.home-page .hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.97);
  text-shadow:
    0 0 1px rgba(0, 0, 0, 0.98),
    0 1px 2px rgba(0, 0, 0, 0.92),
    0 2px 14px rgba(0, 0, 0, 0.88),
    0 3px 28px rgba(0, 0, 0, 0.75);
}

.home-page .hero__eyebrow i {
  font-size: 1rem;
}

.hero__content {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  max-width: 52rem;
  min-width: 0;
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--maroon);
  animation: fade-up 0.9s var(--ease-out) 0.1s both;
}

.hero__brand {
  margin: 0;
  line-height: 0;
  animation: fade-up 0.95s var(--ease-out) 0.2s both;
}

.hero__brand img {
  width: min(100%, 32rem);
  height: auto;
  max-height: min(28vh, 200px);
  object-fit: contain;
  object-position: left center;
  display: block;
}

@media (max-width: 768px) {
  .hero__brand img {
    max-height: min(24vh, 160px);
  }
}

.hero__lead {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0;
  animation: fade-up 1s var(--ease-out) 0.35s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fade-up 1.05s var(--ease-out) 0.45s both;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.95rem 1.75rem;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, background 0.25s;
}

.btn--primary {
  background: var(--maroon);
  color: var(--white);
  box-shadow: 0 0 0 0 var(--maroon-glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--maroon-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn--ghost:hover {
  border-color: var(--maroon);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--darkghost {
  background: transparent;
  color: var(--maroon);
  border: 2px solid rgba(128, 0, 0, 0.45);
}

.btn--darkghost:hover {
  background: rgba(128, 0, 0, 0.07);
  border-color: var(--maroon);
  color: var(--maroon-dim);
  transform: translateY(-2px);
}

/* Home hero: keep label/icon color stable, grow on hover, black ghost CTA */
.home-page .hero__actions .btn:hover,
.home-page .hero__actions .btn:focus-visible {
  color: var(--white);
}

.home-page .hero__actions .btn:hover i,
.home-page .hero__actions .btn:focus-visible i {
  color: inherit;
}

.home-page .hero__actions .btn--primary:hover,
.home-page .hero__actions .btn--primary:focus-visible {
  transform: scale(1.045);
  box-shadow: 0 12px 40px var(--maroon-glow);
}

.home-page .hero__actions .btn--ghost {
  background: var(--black);
  border-color: rgba(255, 255, 255, 0.3);
}

.home-page .hero__actions .btn--ghost:hover,
.home-page .hero__actions .btn--ghost:focus-visible {
  background: var(--black);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  transform: scale(1.045);
}

/* ----- Stats strip ----- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(128, 0, 0, 0.35);
  border-bottom: 1px solid rgba(128, 0, 0, 0.35);
}

@media (max-width: 700px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat {
  text-align: center;
  padding: 0.5rem;
}

.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  color: var(--maroon);
  line-height: 1;
}

.stat__label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

/* ----- Section titles ----- */
.section-head {
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
  max-width: 36rem;
}

/* ----- Cards / pillars ----- */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.pillar {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.75rem;
  row-gap: 0.75rem;
  align-items: start;
  background: linear-gradient(145deg, var(--surface), #111);
  border: 1px solid rgba(128, 0, 0, 0.25);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), border-color 0.35s;
}

.pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, var(--maroon-glow), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
}

.pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(128, 0, 0, 0.55);
}

.pillar:hover::before {
  opacity: 1;
}

.pillar h3 {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
  min-width: 0;
  position: relative;
}

.pillar p {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  position: relative;
}

.pillar__link {
  grid-column: 1 / -1;
  grid-row: 3;
  display: inline-block;
  margin-top: 0.25rem;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--maroon);
  position: relative;
}

.pillar__link:hover {
  color: var(--white);
}

.pillar__icon {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(128, 0, 0, 0.22);
  border: 1px solid rgba(128, 0, 0, 0.45);
  border-radius: 12px;
  color: var(--maroon);
  font-size: 1.15rem;
  margin-bottom: 0;
  transition: transform 0.4s var(--ease-out), background 0.4s, box-shadow 0.4s;
}

.pillar:hover .pillar__icon {
  transform: scale(1.06) translateY(-3px);
  background: rgba(128, 0, 0, 0.45);
  box-shadow: 0 10px 28px var(--maroon-glow);
}

.pillar__link i {
  font-size: 0.72rem;
  margin-left: 0.2rem;
  transition: transform 0.3s var(--ease-out);
  vertical-align: middle;
}

.pillar__link:hover i {
  transform: translateX(5px);
}

/* Light band — breaks up dark pages (e.g. home “What GTFU stands for”) */
.section--pillars-light {
  background: var(--white);
  color: var(--black);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.section--pillars-light .section-head h2 {
  color: var(--black);
}

.section--pillars-light .section-head p {
  color: rgba(0, 0, 0, 0.68);
}

.section--pillars-light .pillar {
  background: #f4f4f4;
  border-color: rgba(0, 0, 0, 0.08);
}

.section--pillars-light .pillar::before {
  background: radial-gradient(circle at 100% 0%, rgba(128, 0, 0, 0.14), transparent 55%);
}

.section--pillars-light .pillar:hover {
  border-color: rgba(128, 0, 0, 0.45);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.section--pillars-light .pillar h3 {
  color: var(--black);
}

.section--pillars-light .pillar p {
  color: rgba(0, 0, 0, 0.7);
}

.section--pillars-light .pillar__link:hover {
  color: var(--maroon-dim);
}

.section--pillars-light .pillar__icon {
  background: rgba(128, 0, 0, 0.12);
  border-color: rgba(128, 0, 0, 0.35);
}

.section--pillars-light .pillar:hover .pillar__icon {
  background: rgba(128, 0, 0, 0.2);
  box-shadow: 0 8px 22px rgba(128, 0, 0, 0.2);
}

.section-head__title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.section-head__icon {
  font-size: 0.5em;
  line-height: 1;
  color: var(--maroon);
  animation: icon-soft-pulse 3.5s ease-in-out infinite;
}

@keyframes icon-soft-pulse {
  0%,
  100% {
    opacity: 0.85;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

.stat__icon {
  color: var(--maroon);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  opacity: 0.92;
  transition: transform 0.35s var(--ease-out);
}

.home-page .stat:hover .stat__icon {
  transform: scale(1.12);
}

.split__title--icon {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.split__title--icon i {
  color: var(--maroon);
  font-size: 0.55em;
  line-height: 1;
}

/* ----- Featured split ----- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
}

@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.split__img {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(128, 0, 0, 0.35);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

.split__img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.split:hover .split__img img {
  transform: scale(1.03);
}

.split__body h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.split__body.prose > h2:first-of-type {
  margin-top: 0;
}

.split__body p {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.split__body code {
  font-size: 0.95em;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.12em 0.4em;
  border-radius: 3px;
}

/* About: portrait fits the column; image left / text right; quote below */
.split--about {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
  gap: clamp(1.5rem, 4vw, 3rem);
}

@media (max-width: 860px) {
  .split--about {
    grid-template-columns: 1fr;
  }
}

.split--about .split__img {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: rgba(8, 8, 8, 0.55);
}

.split--about .split__img img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(85vh, 720px);
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center top;
  margin-inline: auto;
  transition: transform 0.5s var(--ease-out);
}

@media (max-width: 860px) {
  .split--about .split__img img {
    max-height: min(70vh, 560px);
  }
}

.split--about:hover .split__img img {
  transform: scale(1.02);
}

.split--about .split__body {
  padding-top: 0.15rem;
}

.quote-block--about {
  margin: clamp(2rem, 5vw, 3rem) 0 0;
  max-width: none;
}

/* About page — “The short version” band (Path & milestones stays default dark) */
.section--about-light {
  background: linear-gradient(180deg, #ffffff 0%, #f9f8f8 18%, #fafafa 50%, #f9f8f8 82%, #ffffff 100%);
  color: var(--black);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.section--about-light .split__body h2 {
  color: var(--black);
}

.section--about-light .split__body p {
  color: rgba(0, 0, 0, 0.72);
}

.section--about-light .split__body code {
  background: rgba(0, 0, 0, 0.06);
  color: var(--black);
}

.section--about-light .split__img {
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.12);
}

.section--about-light .split--about .split__img {
  background: rgba(0, 0, 0, 0.035);
}

.section--about-light .quote-block {
  background: #f0f0f0;
  color: rgba(0, 0, 0, 0.88);
  border-left-color: var(--maroon);
}

.section--about-light .quote-block cite {
  color: var(--maroon-dim);
}

/* About — “My Story” alternating image / text */
.about-story {
  max-width: 70rem;
  margin-inline: auto;
}

.about-story__title {
  font-family: var(--font-display);
  font-size: clamp(2.85rem, 8.5vw, 4.75rem);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 auto clamp(2.35rem, 5.5vw, 3.75rem);
  line-height: 1.05;
  position: relative;
  padding-bottom: 0.2em;
}

.about-story__title::after {
  content: "";
  display: block;
  width: min(5.75rem, 34vw);
  height: 4px;
  margin: 0.65rem auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, transparent, rgba(128, 0, 0, 0.35), var(--maroon), rgba(128, 0, 0, 0.35), transparent);
}

.section--about-light .about-story__title {
  color: var(--black);
}

.section--about-light .about-story .prose p {
  color: rgba(0, 0, 0, 0.78);
  font-size: clamp(0.98rem, 2.1vw, 1.07rem);
  line-height: 1.72;
}

.about-story__text.prose > p:first-of-type {
  margin-top: 0;
}

.about-story__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 4.5vw, 3.25rem);
  align-items: center;
  margin-bottom: clamp(2.5rem, 5.5vw, 4rem);
}

.about-story__row:last-of-type {
  margin-bottom: 0;
}

.about-story__text {
  min-width: 0;
  padding: clamp(1.35rem, 3.2vw, 2.1rem) clamp(1.3rem, 3vw, 1.95rem);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 0, 0, 0.055);
  border-radius: clamp(14px, 2.2vw, 22px);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 14px 40px -14px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.about-story__text.prose p:last-child {
  margin-bottom: 0;
}

/* Compact paired book CTAs — equal size, fits story card */
.about-story__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem 0.65rem;
  align-items: stretch;
  margin-top: 1.15rem;
  width: 100%;
}

.section--about-light .about-story__actions .btn-buy {
  width: 100%;
  min-height: 2.6rem;
  max-height: 2.85rem;
  padding: 0.38rem 0.5rem;
  font-size: clamp(0.65rem, 1.45vw, 0.76rem);
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.section--about-light .about-story__actions .btn-buy > span:last-child {
  flex: 1;
  text-align: center;
  line-height: 1.2;
}

.section--about-light .about-story__actions .btn-buy__logo {
  min-width: 3.25rem;
  min-height: 1.85rem;
  max-height: 2.35rem;
  padding: 0.08rem 0.2rem;
}

.section--about-light .about-story__actions .btn-buy__logo img {
  max-width: min(4.75rem, 22vw);
  max-height: 1.65rem;
  min-height: 1.35rem;
}

.section--about-light .about-story__actions .btn-buy__logo--icon i {
  font-size: clamp(1.1rem, 2.6vw, 1.35rem);
}

@media (max-width: 420px) {
  .about-story__actions {
    grid-template-columns: 1fr;
    max-width: 16.5rem;
    margin-inline: auto;
  }
}

.about-story__figure {
  margin: 0;
  position: relative;
  border-radius: clamp(14px, 2.2vw, 22px);
  overflow: hidden;
  border: none;
  background: linear-gradient(155deg, #ebe9e8 0%, #e3e1e0 45%, #f0eeed 100%);
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.05),
    0 20px 50px -12px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  isolation: isolate;
}

.about-story__figure:not(.about-story__figure--book) {
  aspect-ratio: 4 / 5;
  max-height: min(72vh, 540px);
}

.about-story__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
  z-index: 1;
}

.about-story__figure:not(.about-story__figure--book) img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 22%;
  transition: transform 0.65s var(--ease-out);
}

.about-story__row:hover .about-story__figure:not(.about-story__figure--book) img {
  transform: scale(1.03);
}

.about-story__figure--book {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.9rem, 2.2vw, 1.4rem);
  min-height: min(52vh, 420px);
  background: linear-gradient(165deg, #efedec 0%, #e6e4e3 50%, #f3f1f0 100%);
}

.about-story__figure--book img {
  width: auto;
  max-width: 100%;
  min-height: 0;
  max-height: min(62vh, 500px);
  object-fit: contain;
  object-position: center;
  border-radius: 4px;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.14);
  position: relative;
  z-index: 0;
}

.about-story__row:hover .about-story__figure--book img {
  transform: none;
}

@media (max-width: 768px) {
  .about-story__title {
    font-size: clamp(2.2rem, 9.5vw, 3.35rem);
    margin-bottom: clamp(1.65rem, 5vw, 2.4rem);
  }

  .about-story__title::after {
    height: 3px;
    margin-top: 0.55rem;
  }

  .about-story__row {
    grid-template-columns: 1fr;
    gap: clamp(1.2rem, 4vw, 1.65rem);
    margin-bottom: clamp(2rem, 7vw, 2.85rem);
    align-items: stretch;
    justify-items: center;
  }

  .about-story__row--img-right .about-story__figure {
    order: -1;
  }

  .about-story__text {
    padding: 1.2rem 1.15rem;
    border-radius: 16px;
    text-align: center;
    width: 100%;
    max-width: min(32rem, 100%);
    margin-inline: auto;
  }

  .about-story__figure {
    margin-inline: auto;
    width: 100%;
    max-width: min(22rem, 100%);
  }

  .about-story__figure:not(.about-story__figure--book) {
    aspect-ratio: 3 / 4;
    max-height: min(62vh, 440px);
  }

  .about-story__figure--book {
    min-height: auto;
    padding: 1rem 0.85rem;
  }

  .about-story__figure--book img {
    max-height: min(52vh, 380px);
  }

  .about-story__row:hover .about-story__figure:not(.about-story__figure--book) img {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-story__figure:not(.about-story__figure--book) img {
    transition: none;
  }

  .about-story__row:hover .about-story__figure:not(.about-story__figure--book) img {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .split--about:hover .split__img img {
    transform: none;
  }
}

/* ----- CTA band ----- */
.cta-band {
  background: linear-gradient(90deg, var(--maroon-dim), var(--maroon), var(--maroon-dim));
  background-size: 200% 100%;
  animation: cta-shimmer 8s ease infinite;
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem;
  text-align: center;
}

@keyframes cta-shimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

.cta-band__title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.cta-band__title i {
  font-size: 0.75em;
  opacity: 0.95;
}

.cta-band p {
  margin: 0 auto 1.5rem;
  max-width: 32rem;
  opacity: 0.95;
}

.cta-band .btn--ghost {
  border-color: var(--white);
}

.cta-band .btn--ghost:hover {
  background: var(--black);
  border-color: var(--black);
}

/* ----- Footer ----- */
.site-footer {
  padding: clamp(1rem, 2.5vw, 1.35rem) 0;
  border-top: 1px solid rgba(128, 0, 0, 0.3);
}

.footer-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
}

.footer-brand-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.85rem 1.1rem;
  flex-wrap: wrap;
  min-width: 0;
}

.footer-logo {
  display: block;
  line-height: 0;
  text-decoration: none;
  flex-shrink: 0;
}

.footer-logo:hover {
  opacity: 0.92;
}

.footer-logo img {
  display: block;
  height: auto;
  width: auto;
  max-width: min(6.75rem, 38vw);
  max-height: clamp(1.35rem, 3.4vw, 1.75rem);
  object-fit: contain;
}

.footer-note {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin: 0;
  line-height: 1.35;
  letter-spacing: 0.02em;
  max-width: min(20rem, 55vw);
}

.footer-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  flex-shrink: 0;
}

.footer-social a.footer__social {
  font-size: 1.15rem;
  padding: 0.45rem 0.55rem;
}

.footer-copy {
  margin: 0;
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
  text-align: right;
  flex: 1 1 11rem;
  align-self: center;
}

@media (max-width: 560px) {
  .footer-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .footer-brand-block {
    gap: 0.65rem 0.85rem;
  }

  .footer-note {
    max-width: none;
    font-size: 0.74rem;
  }

  .footer-copy {
    text-align: left;
    align-self: stretch;
    width: 100%;
  }

  .footer-social {
    width: 100%;
    justify-content: flex-start;
  }
}

/* ----- Inner pages ----- */
.page-hero {
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(128, 0, 0, 0.25);
  background: radial-gradient(ellipse 70% 80% at 50% -20%, var(--maroon-glow), transparent);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.page-hero p {
  margin: 0;
  color: var(--text-muted);
  max-width: 40rem;
}

.page-hero--about {
  padding-bottom: clamp(2rem, 5vw, 3.25rem);
}

.page-hero__title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.page-hero__title i {
  color: var(--maroon);
  font-size: 0.55em;
  line-height: 1;
}

.role-badges {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
}

.role-badges li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: clamp(0.78rem, 2vw, 0.9rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(128, 0, 0, 0.14);
  border: 1px solid rgba(128, 0, 0, 0.38);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  letter-spacing: 0.02em;
  transition: transform 0.3s var(--ease-out), border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.role-badges li i {
  color: var(--maroon);
  font-size: 0.95rem;
}

.role-badges li:hover {
  transform: translateY(-3px);
  border-color: rgba(128, 0, 0, 0.55);
  background: rgba(128, 0, 0, 0.22);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.prose {
  max-width: 42rem;
}

.prose p {
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

.prose .note {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.prose .note i {
  margin-right: 0.4rem;
  color: var(--maroon);
  opacity: 0.9;
}

.prose code {
  font-size: 0.95em;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.12em 0.4em;
  border-radius: 3px;
}

.actions-gap {
  margin-top: 1.5rem;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 2rem 0 0.75rem;
  color: var(--white);
}

.timeline {
  margin: 2rem 0;
  padding: 0;
  list-style: none;
  border-left: 2px solid var(--maroon);
}

.timeline li {
  padding: 0 0 1.5rem 1.5rem;
  position: relative;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  background: var(--maroon);
  border-radius: 50%;
}

.timeline strong {
  display: block;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.timeline span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.timeline--icons {
  border-left: none;
  margin-left: 0;
  padding-left: 0;
}

.timeline--icons li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0 0 1.5rem 0;
  position: relative;
}

.timeline--icons li::before {
  display: none;
}

.timeline--icons li::after {
  content: "";
  position: absolute;
  left: 1.2rem;
  top: 2.55rem;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--maroon), rgba(128, 0, 0, 0.25));
  pointer-events: none;
}

.timeline--icons li:last-child::after {
  display: none;
}

.timeline--icons .timeline__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.45rem;
  height: 2.45rem;
  background: var(--surface);
  border: 2px solid var(--maroon);
  border-radius: 50%;
  color: var(--maroon);
  font-size: 0.75rem;
  box-shadow: 0 0 0 3px var(--black);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.timeline--icons li:hover .timeline__icon {
  transform: scale(1.08);
  box-shadow: 0 0 0 3px var(--black), 0 0 20px var(--maroon-glow);
}

.timeline--icons .timeline__content {
  padding-top: 0.1rem;
  min-width: 0;
}

.timeline--icons .timeline__content span {
  display: block;
  margin-top: 0.2rem;
}

.quote-block {
  margin: 2.5rem 0;
  padding: 1.75rem 1.5rem;
  border-left: 4px solid var(--maroon);
  background: var(--surface);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
}

.quote-block cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--maroon);
}

.quote-block__mark {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--maroon);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.quote-block cite i {
  margin-right: 0.4rem;
  font-size: 0.95em;
  opacity: 0.9;
  text-transform: none;
  letter-spacing: 0;
}

/* About page — larger pull quote (overrides .quote-block base size) */
.quote-block.quote-block--about {
  font-size: clamp(1.35rem, 3.2vw, 1.95rem);
  line-height: 1.38;
}

/* ----- Book page ----- */
.book-section {
  padding-bottom: clamp(2.5rem, 8vw, 5rem);
}

.book-section--light {
  background: var(--white);
  color: var(--black);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.book-section--light .book-meta.prose h2 {
  color: var(--black);
}

.book-section--light .book-meta.prose p,
.book-section--light .book-meta.prose .prose-lead {
  color: rgba(0, 0, 0, 0.78);
}

.book-section--light .book-meta .note {
  color: rgba(0, 0, 0, 0.68);
}

.book-section--light .book-meta .note a {
  color: var(--maroon);
}

.book-section--light .book-meta .note a:hover {
  color: var(--maroon-dim);
}

.book-section--light .book-meta .note i {
  color: var(--maroon);
}

.book-section--light .book-cover {
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.14);
}

.book-section--light .book-info.book-info--compact {
  background: #f0f0f0;
  border-color: rgba(0, 0, 0, 0.1);
}

.book-section--light .book-info--compact .book-info__row {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

.book-section--light .book-info__row dd {
  color: var(--black);
}

.book-section--light .book-info__row dt i {
  color: var(--maroon);
}

.book-section--light .btn-buy:focus-visible {
  outline-color: var(--maroon);
}

.book-layout {
  display: grid;
  grid-template-columns: minmax(220px, min(32vw, 320px)) minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}

.book-aside {
  display: flex;
  flex-direction: column;
  gap: clamp(0.85rem, 2vw, 1.1rem);
  width: 100%;
  min-width: 0;
}

/* Sticky the whole column so text never slides over the cover (desktop+) */
@media (min-width: 721px) {
  .book-aside {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
    align-self: start;
    max-height: calc(100vh - var(--header-h) - 1.5rem);
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 0.25rem;
    scrollbar-gutter: stable;
  }

  .book-aside::-webkit-scrollbar {
    width: 6px;
  }

  .book-aside::-webkit-scrollbar-thumb {
    background: rgba(128, 0, 0, 0.45);
    border-radius: 3px;
  }
}

@media (max-width: 720px) {
  body.book-page .page-hero {
    padding-bottom: 1.75rem;
  }

  .book-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .book-aside {
    position: static;
    max-height: none;
    overflow: visible;
    margin-inline: auto;
    max-width: min(340px, min(92vw, 28rem));
    padding-right: 0;
  }
}

.book-cover {
  position: relative;
  border: 1px solid rgba(128, 0, 0, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  border-radius: 4px;
  animation: book-cover-in 1s var(--ease-out) both;
}

.book-cover img {
  display: block;
  aspect-ratio: 2/3;
  object-fit: cover;
  width: 100%;
  animation: book-float 7s ease-in-out infinite;
  animation-delay: 0.5s;
}

@media (max-width: 720px) {
  .book-cover img {
    animation-duration: 9s;
  }
}

.book-meta .tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 0.75rem;
}

.book-meta .tag i {
  font-size: 0.85rem;
  opacity: 0.95;
}

.book-meta {
  min-width: 0;
}

.book-meta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

/* ----- Book page (animated) ----- */
body.book-page .page-hero {
  position: relative;
  overflow: hidden;
}

body.book-page .page-hero::before {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: radial-gradient(ellipse at 30% 0%, var(--maroon-glow), transparent 55%);
  animation: book-hero-glow 10s ease-in-out infinite;
  pointer-events: none;
}

@keyframes book-hero-glow {
  0%,
  100% {
    opacity: 0.65;
    transform: scale(1) translate(0, 0);
  }
  50% {
    opacity: 1;
    transform: scale(1.08) translate(2%, -2%);
  }
}

body.book-page .page-hero h1 {
  animation: book-title-in 0.85s var(--ease-out) both;
}

body.book-page .page-hero > .wrap > p {
  animation: book-title-in 0.85s var(--ease-out) 0.12s both;
}

@keyframes book-title-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes book-cover-in {
  from {
    opacity: 0;
    transform: perspective(900px) rotateY(-12deg) scale(0.96);
  }
  to {
    opacity: 1;
    transform: perspective(900px) rotateY(0) scale(1);
  }
}

@keyframes book-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.book-info {
  margin: 1.75rem 0 2rem;
  padding: 0;
  display: grid;
  gap: 0;
  border: 1px solid rgba(128, 0, 0, 0.35);
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.9), rgba(10, 10, 10, 0.95));
}

/* Compact block under cover — sidebar only (readable at all breakpoints) */
.book-info--compact {
  margin: 0;
  border-color: rgba(128, 0, 0, 0.28);
  background: rgba(12, 12, 12, 0.92);
  border-radius: 6px;
}

.book-info--compact .book-info__row {
  padding: clamp(0.55rem, 1.8vw, 0.7rem) clamp(0.65rem, 2vw, 0.9rem);
  gap: 0.5rem 0.85rem;
  border-bottom-color: rgba(255, 255, 255, 0.06);
  grid-template-columns: minmax(6.75rem, 40%) minmax(0, 1fr);
  align-items: center;
}

.book-info--compact .book-info__row dt {
  font-size: clamp(0.62rem, 1.65vw, 0.72rem);
  letter-spacing: 0.06em;
  gap: 0.45rem;
  line-height: 1.35;
  min-width: 0;
}

.book-info--compact .book-info__row dt i {
  font-size: clamp(0.78rem, 2vw, 0.9rem);
  width: 1.1rem;
  min-width: 1.1rem;
  flex-shrink: 0;
  text-align: center;
  line-height: 1;
  opacity: 0.9;
}

.book-info--compact .book-info__row dd {
  font-size: clamp(0.82rem, 2.15vw, 0.95rem);
  font-weight: 600;
  line-height: 1.45;
  word-break: break-word;
  text-align: left;
}

.book-info__row {
  display: grid;
  /* Same label column width every row so all <dd> values line up */
  grid-template-columns: minmax(7.5rem, 38%) minmax(0, 1fr);
  gap: 0.75rem 1rem;
  align-items: center;
  padding: 0.95rem 1.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.book-info__row:last-child {
  border-bottom: none;
}

.book-info__row dt {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  min-width: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--maroon);
}

.book-info__row dt i {
  font-size: 1rem;
  width: 1.25rem;
  min-width: 1.25rem;
  flex-shrink: 0;
  text-align: center;
  line-height: 1;
  color: var(--white);
  opacity: 0.9;
}

.book-info__row dd {
  margin: 0;
  min-width: 0;
  font-weight: 600;
  text-align: left;
  color: rgba(255, 255, 255, 0.92);
}

.book-info__row[data-animate] {
  transition-delay: calc(var(--stagger, 0) * 0.1s);
}

.book-buy-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

@media (min-width: 721px) {
  .book-buy-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
  }
}

.book-buy-buttons[data-animate] .btn-buy {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.25s;
}

.book-buy-buttons[data-animate].is-visible .btn-buy {
  opacity: 1;
  transform: translateY(0);
}

.book-buy-buttons[data-animate].is-visible .btn-buy:nth-child(1) {
  transition-delay: 0.08s;
}

.book-buy-buttons[data-animate].is-visible .btn-buy:nth-child(2) {
  transition-delay: 0.2s;
}

.btn-buy {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  min-width: 0;
  padding: 0.62rem 0.75rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(0.72rem, 1.75vw, 0.84rem);
  letter-spacing: 0.02em;
  text-transform: none;
  color: #111827;
  text-decoration: none;
  border: 2px solid transparent;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.28);
  transform: scale(1);
  transform-origin: center;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

@media (min-width: 721px) {
  .btn-buy {
    padding: 0.68rem 0.82rem;
    justify-content: center;
    text-align: center;
  }

  .btn-buy > span:last-child {
    flex: 1;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .btn-buy {
    width: 100%;
  }
}

.btn-buy:hover {
  transform: scale(1.045) translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.btn-buy--amazon:hover {
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(0, 0, 0, 0.08);
  color: #000000;
}

.btn-buy--ku:hover {
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.12);
  color: #000000;
}

.btn-buy:active {
  transform: scale(1.01) translateY(-1px);
  transition-duration: 0.12s;
}

.btn-buy:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

/* Left “logo” cell — Amazon image or icon; keeps pair of btn-buys the same height */
.btn-buy__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 5.75rem;
  min-height: 2.65rem;
  max-height: 3.25rem;
  padding: 0.12rem 0.28rem;
  box-sizing: border-box;
}

.btn-buy__logo img {
  width: auto;
  height: auto;
  max-width: min(9.5rem, 38vw);
  max-height: 2.85rem;
  min-height: 2.1rem;
  object-fit: contain;
  object-position: center;
}

.btn-buy__logo--icon i {
  font-size: clamp(1.5rem, 4.2vw, 1.9rem);
  line-height: 1;
  color: inherit;
}

.btn-buy--amazon {
  background: #ff9900;
  color: #111827;
  border-color: rgba(0, 0, 0, 0.1);
}

/* Author row: pairs with Amazon btn-buy (same size/layout) */
.btn-buy--book-learn {
  background: var(--maroon);
  color: var(--white);
  border-color: rgba(0, 0, 0, 0.2);
}

.btn-buy--book-learn:hover {
  color: var(--white);
  background: #991010;
  box-shadow: 0 14px 36px rgba(128, 0, 0, 0.5), 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.btn-buy--book-learn:active {
  background: var(--maroon-dim);
}


.btn-buy--ku {
  background: #ffffff;
  color: #111827;
  border-color: rgba(0, 0, 0, 0.14);
}

.book-meta .prose-lead {
  font-size: clamp(0.95rem, 2.4vw, 1.08rem);
  line-height: 1.65;
}

@media (prefers-reduced-motion: reduce) {
  body.book-page .page-hero::before,
  .book-cover,
  .book-cover img,
  body.book-page .page-hero h1,
  body.book-page .page-hero > .wrap > p {
    animation: none;
  }

  .book-cover {
    transform: none;
  }

  .book-buy-buttons[data-animate] .btn-buy {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .book-buy-buttons[data-animate].is-visible .btn-buy:nth-child(1),
  .book-buy-buttons[data-animate].is-visible .btn-buy:nth-child(2) {
    transition-delay: 0s;
  }

  body.book-page .book-buy-buttons[data-animate] .btn-buy {
    transition: box-shadow 0.25s ease;
  }

  body.book-page .btn-buy:hover,
  body.book-page .btn-buy:active {
    transform: none;
  }
}

/* ----- Merch / product grid ----- */
.section--merch-products {
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--surface);
  border: 1px solid rgba(128, 0, 0, 0.25);
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), border-color 0.35s;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(128, 0, 0, 0.55);
}

.product-card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.product-card:hover .product-card__img img {
  transform: scale(1.06);
}

.product-card__img--carousel {
  padding: 0;
}

.product-card:hover .product-card__img--carousel img {
  transform: none;
}

.product-carousel {
  height: 100%;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(128, 0, 0, 0.5) rgba(0, 0, 0, 0.2);
  outline: none;
}

.product-carousel:focus-visible {
  box-shadow: inset 0 0 0 2px var(--maroon);
}

.product-carousel__track {
  display: flex;
  height: 100%;
  min-height: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-carousel__slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.product-carousel__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-carousel__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  transition: background 0.2s var(--ease-out), opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}

.product-carousel__arrow:hover:not(:disabled) {
  background: rgba(128, 0, 0, 0.88);
}

.product-carousel__arrow:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.product-carousel__arrow:active:not(:disabled) {
  transform: translateY(-50%) scale(0.96);
}

.product-carousel__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.product-carousel__arrow--prev {
  left: 0.45rem;
}

.product-carousel__arrow--next {
  right: 0.45rem;
}

.product-carousel__arrow-icon {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}

.product-carousel__hint {
  position: absolute;
  left: 50%;
  bottom: 0.5rem;
  transform: translateX(-50%);
  padding: 0.35rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.72);
  border-radius: 2px;
  pointer-events: none;
  white-space: nowrap;
  z-index: 2;
}

.product-card__body {
  padding: 1.25rem;
}

.product-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 0.35rem;
}

.product-card__body .price {
  color: var(--maroon);
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 0.75rem;
}

.product-card__body p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Merch: catalog grid + light “menu” cards */
.wrap--merch-catalog {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.merch-page .section--merch-products {
  padding-block: clamp(2.25rem, 5vw, 3.25rem);
  background: linear-gradient(180deg, #faf9f7 0%, #f2f0ec 50%, #ebe8e3 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.product-grid--merch {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.35rem, 3.5vw, 2rem);
  margin: 0;
}

@media (min-width: 640px) {
  .product-grid--merch {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1000px) {
  .product-grid--merch {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.merch-page .product-card--merch-menu {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset, 0 8px 32px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(128, 0, 0, 0.05);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.merch-page .product-card--merch-menu:hover {
  transform: translateY(-3px);
  border-color: rgba(128, 0, 0, 0.12);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 14px 44px rgba(0, 0, 0, 0.08), 0 4px 14px rgba(128, 0, 0, 0.08);
}

.merch-page .product-card--merch-menu .product-card__img {
  aspect-ratio: 1;
  background: #f3f1ee;
  border-radius: 12px 12px 0 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* Floating color dot — jewelry-tag vibe */
.product-card__color-badge {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.28rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  pointer-events: none;
}

.product-card__swatch {
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  box-shadow: 0 0 0 1.5px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.12);
}

.product-card__swatch--split-pink-black {
  background: conic-gradient(from 0deg, #ff2f92 0deg 180deg, #0c0c0c 180deg 360deg);
}

.product-card__swatch--army-green {
  background: linear-gradient(145deg, #5a6b3e 0%, #3d4a28 55%, #2f3820 100%);
}

.product-card__swatch--solid-black {
  background: radial-gradient(circle at 30% 28%, #3a3a3a 0%, #0a0a0a 55%, #000000 100%);
  box-shadow: 0 0 0 1.5px rgba(255, 255, 255, 0.35), 0 2px 8px rgba(0, 0, 0, 0.2);
}

.merch-page .product-card__img--solo {
  position: relative;
  padding: 0;
  overflow: hidden;
}

/* Match shirt tile weight: fill square, crop if needed (same idea as carousel slides) */
.merch-page .product-card__img--solo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  cursor: zoom-in;
}

.merch-page .product-card__img--solo img:focus-visible {
  outline: 2px solid var(--maroon);
  outline-offset: 2px;
}

.merch-page .product-card--merch-menu .product-card__body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.merch-page .product-card--merch-menu .product-card__body h3 {
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: var(--black);
  margin: 0 0 0.2rem;
}

.merch-page .product-card--merch-menu .product-card__body .price {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--maroon);
  margin: 0 0 0.75rem;
}

.merch-page .product-card--merch-menu .product-card__desc {
  font-size: 0.88rem;
  line-height: 1.62;
  color: rgba(0, 0, 0, 0.58);
  margin: 0 0 1rem;
}

.merch-page .product-card__shop-link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--maroon);
  text-decoration: none;
  border-bottom: 1px solid rgba(128, 0, 0, 0.35);
  padding-bottom: 0.12rem;
  transition: color 0.2s, border-color 0.2s;
}

.merch-page .product-card__shop-link:hover {
  color: var(--maroon-dim);
  border-color: rgba(128, 0, 0, 0.65);
}

.merch-page .product-carousel__arrow {
  background: rgba(255, 255, 255, 0.92);
  color: var(--maroon);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.merch-page .product-carousel__arrow:hover:not(:disabled) {
  background: var(--maroon);
  color: var(--white);
}

.merch-page .product-carousel__arrow:focus-visible {
  outline: 2px solid var(--maroon);
  outline-offset: 2px;
}

.merch-page .product-carousel:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(128, 0, 0, 0.35);
}

.merch-page .product-carousel__hint {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(0, 0, 0, 0.55);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.merch-page .product-carousel__slide img {
  cursor: zoom-in;
}

.merch-page .product-carousel__slide img:focus-visible {
  outline: 2px solid var(--maroon);
  outline-offset: -2px;
}

/* Product gallery modal — horizontal scroll / snap between images */
.product-image-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.65rem, 3vw, 1.25rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s var(--ease-out), visibility 0.28s;
}

.product-image-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.product-image-modal__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  padding: 0;
  border: none;
  background: rgba(18, 16, 14, 0.88);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.product-image-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  max-height: min(92vh, 880px);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem 0.85rem;
  border-radius: 14px;
  background: linear-gradient(180deg, #fffcf8 0%, #f5f2ed 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.4) inset;
}

.product-image-modal__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0 0.15rem;
}

.product-image-modal__count {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
}

.product-image-modal__close {
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.product-image-modal__close:hover {
  background: var(--maroon);
  border-color: var(--maroon);
  color: var(--white);
}

.product-image-modal__close:focus-visible {
  outline: 2px solid var(--maroon);
  outline-offset: 2px;
}

.product-image-modal__stage {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.35rem;
  min-height: 0;
}

.product-image-modal__arrow {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  background: var(--white);
  color: var(--maroon);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
}

.product-image-modal__arrow:hover:not(:disabled) {
  background: var(--maroon);
  color: var(--white);
  border-color: var(--maroon);
}

.product-image-modal__arrow:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}

.product-image-modal__arrow:focus-visible {
  outline: 2px solid var(--maroon);
  outline-offset: 2px;
}

.product-image-modal__arrow-icon {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
}

.product-image-modal__scroller {
  min-width: 0;
  width: 100%;
  max-height: min(72vh, 640px);
  height: min(72vh, 640px);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(128, 0, 0, 0.45) rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  background: #1a1816;
  outline: none;
}

.product-image-modal__scroller:focus-visible {
  box-shadow: 0 0 0 2px var(--maroon);
}

.product-image-modal__track {
  display: flex;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-image-modal__slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.product-image-modal__slide img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.product-image-modal__hint {
  margin: 0;
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.38);
}

.product-image-modal[data-slides="1"] .product-image-modal__arrow {
  visibility: hidden;
  pointer-events: none;
}

.product-image-modal[data-slides="1"] .product-image-modal__hint {
  display: none;
}

body.modal-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .product-image-modal {
    transition: none;
  }

  .product-image-modal__scroller {
    scroll-behavior: auto;
  }
}

/* ----- Home landing (index below hero) ----- */
.home-landing {
  position: relative;
  overflow: hidden;
}

.home-landing__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.home-landing > .wrap {
  position: relative;
  z-index: 1;
}

.home-landing--author {
  padding: clamp(3.25rem, 8vw, 5.5rem) 0;
  background: linear-gradient(180deg, #fdfcfa 0%, var(--cream) 35%, var(--cream) 100%);
  border-top: 1px solid rgba(128, 0, 0, 0.12);
}

.home-landing__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.home-landing__grid--book {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
}

.home-landing__book {
  position: relative;
  max-width: min(280px, 72vw);
  margin-inline: auto;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06);
  animation: home-book-float 6s ease-in-out infinite;
}

.home-landing--author .home-landing__book {
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.14), 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.home-landing__book img {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes home-book-float {
  0%,
  100% {
    transform: translateY(0) rotate(-0.5deg);
  }
  50% {
    transform: translateY(-10px) rotate(0.5deg);
  }
}

.home-landing__copy {
  min-width: 0;
}

.home-landing__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 160, 160, 0.9);
  margin: 0 0 0.65rem;
}

.home-landing__title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5.5vw, 3.25rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 1rem;
  line-height: 1.05;
}

.home-landing__lead {
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 0.85rem;
}

.home-landing__text {
  font-size: 0.95rem;
  line-height: 1.62;
  color: var(--text-muted);
  margin: 0 0 1.35rem;
}

.home-landing__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1rem;
}

.home-landing--author .btn-buy {
  max-width: 100%;
  align-items: center;
  box-sizing: border-box;
}

.home-landing--author .btn-buy:focus-visible {
  outline-color: var(--maroon);
}

/* Desktop: same width + shared min-height as Amazon sibling */
@media (min-width: 721px) {
  .home-landing--author .home-landing__actions {
    align-items: stretch;
  }

  .home-landing--author .home-landing__actions .btn-buy {
    flex: 1 1 calc((100% - 1rem) / 2);
    min-width: 0;
    max-width: none;
    min-height: 3.85rem;
  }

  /* Slightly larger label only; min-height unchanged */
  .home-landing--author .btn-buy--book-learn {
    font-size: clamp(0.88rem, 1.35vw, 1.02rem);
    line-height: 1.2;
  }
}

@media (max-width: 720px) {
  .home-landing--author .btn-buy {
    min-height: 3.65rem;
    font-size: clamp(0.84rem, 2.2vw, 1rem);
    line-height: 1.2;
  }
}

.home-landing--author .home-landing__eyebrow {
  color: var(--maroon);
}

.home-landing--author .home-landing__title {
  color: var(--black);
}

.home-landing--author .home-landing__lead {
  color: rgba(0, 0, 0, 0.82);
}

.home-landing--author .home-landing__text {
  color: rgba(0, 0, 0, 0.62);
}

.home-landing--author .btn-buy--book-learn:focus-visible {
  outline-color: var(--white);
}

.home-landing--motivator {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 9vw, 5.75rem) 0;
  background: radial-gradient(ellipse 120% 90% at 10% 0%, rgba(255, 255, 255, 0.14), transparent 52%),
    radial-gradient(ellipse 80% 70% at 100% 100%, rgba(0, 0, 0, 0.35), transparent 55%),
    linear-gradient(155deg, #4a0000 0%, var(--maroon) 38%, #6e0a0a 72%, #4d0505 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.home-landing--motivator::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      105deg,
      transparent 0%,
      rgba(255, 255, 255, 0.03) 25%,
      transparent 50%,
      rgba(0, 0, 0, 0.08) 78%,
      transparent 100%
    ),
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 56px,
      rgba(255, 255, 255, 0.02) 56px,
      rgba(255, 255, 255, 0.02) 57px
    );
  pointer-events: none;
  z-index: 0;
}

.home-landing--motivator::after {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 55%;
  background: radial-gradient(ellipse 70% 100% at 50% 0%, rgba(255, 80, 80, 0.22), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.home-landing--motivator > .wrap {
  position: relative;
  z-index: 1;
}

.home-landing__grid--motivator {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  grid-template-rows: auto;
  align-items: center;
  gap: clamp(1.75rem, 4vw, 3rem);
}

/* One text column beside the video — avoids a tall empty row between title and copy */
.home-landing__motivator-copy {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1.35rem, 2.8vw, 2rem);
  min-width: 0;
}

.home-landing__motivator-head {
  min-width: 0;
}

.home-landing__motivator-body {
  min-width: 0;
}

.home-landing__grid--motivator .home-landing__stage,
.home-landing__grid--motivator .home-landing__motivator-embed {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  width: 100%;
}

.home-landing__eyebrow--motivator {
  color: rgba(255, 230, 215, 0.95);
}

.home-landing--motivator .home-landing__title {
  color: var(--white);
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.2);
}

.home-landing--motivator .home-landing__lead {
  color: rgba(255, 255, 255, 0.92);
}

.home-landing--motivator .home-landing__text {
  color: rgba(255, 255, 255, 0.78);
}

.home-landing--motivator .btn--primary {
  background: var(--white);
  color: var(--maroon);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.22);
}

.home-landing--motivator .btn--primary:hover {
  background: #fff8f8;
  color: var(--maroon-dim);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.28);
}

.home-landing--motivator .btn--primary:focus-visible {
  outline: 2px solid var(--maroon);
  outline-offset: 3px;
}

.home-landing--motivator .home-landing__btn-meet-adan {
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
  box-shadow: 0 6px 26px rgba(0, 0, 0, 0.28);
}

.home-landing--motivator .home-landing__btn-meet-adan:hover {
  background: #242424;
  border-color: #242424;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.38);
}

.home-landing--motivator .home-landing__btn-meet-adan:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.home-landing__stage {
  position: relative;
  min-height: 280px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(128, 0, 0, 0.15), rgba(40, 20, 60, 0.35));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  overflow: hidden;
}

.home-landing__stage--motivator {
  min-height: min(300px, 52vw);
  isolation: isolate;
  background: linear-gradient(
    152deg,
    #6b4e0a 0%,
    #9a7618 12%,
    #c9a227 28%,
    #e8d48a 38%,
    #f7edc4 44%,
    #d4af37 52%,
    #b8860b 64%,
    #8b6914 82%,
    #5c4309 100%
  );
  border: 1px solid rgba(255, 236, 190, 0.65);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.38), 0 0 48px rgba(212, 175, 55, 0.22), inset 0 2px 0 rgba(255, 252, 235, 0.75),
    inset 0 -4px 12px rgba(40, 28, 6, 0.35);
}

/* Moving highlight — “shiny card” sweep (sits above ring, below logo) */
.home-landing__stage--motivator::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    118deg,
    transparent 0%,
    transparent 40%,
    rgba(255, 255, 255, 0.65) 50%,
    transparent 60%,
    transparent 100%
  );
  background-size: 240% 100%;
  background-position: 100% 50%;
  animation: home-motivator-gold-shine 5.5s ease-in-out infinite;
  mix-blend-mode: soft-light;
}

.home-landing__stage-ring {
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 180deg at 50% 50%, rgba(128, 0, 0, 0.2), transparent 40%, rgba(100, 80, 200, 0.15), transparent 70%);
  animation: home-stage-spin 14s linear infinite;
}

.home-landing__stage--motivator .home-landing__stage-ring {
  z-index: 0;
  opacity: 0.9;
  mix-blend-mode: overlay;
  background: conic-gradient(
    from 0deg at 50% 50%,
    rgba(255, 252, 230, 0.55) 0deg,
    transparent 55deg,
    rgba(255, 255, 255, 0.4) 95deg,
    transparent 130deg,
    rgba(80, 55, 10, 0.2) 180deg,
    transparent 230deg,
    rgba(255, 245, 200, 0.5) 285deg,
    transparent 330deg,
    rgba(255, 252, 230, 0.55) 360deg
  );
}

@keyframes home-motivator-gold-shine {
  0%,
  100% {
    background-position: 130% 50%;
    opacity: 0.45;
  }
  50% {
    background-position: -30% 50%;
    opacity: 0.95;
  }
}

@keyframes home-stage-spin {
  to {
    transform: rotate(360deg);
  }
}

.home-landing__stage-icon {
  position: relative;
  z-index: 1;
  font-size: clamp(3.5rem, 12vw, 5.5rem);
  color: rgba(255, 255, 255, 0.9);
  filter: drop-shadow(0 0 24px rgba(128, 0, 0, 0.45));
}

.home-landing__stage-brand {
  position: relative;
  z-index: 1;
  width: min(92%, 320px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-landing__stage--motivator .home-landing__stage-brand {
  z-index: 2;
}

.home-landing__stage-brand img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 36px rgba(0, 0, 0, 0.35));
}

.home-landing__stage--motivator .home-landing__stage-brand img {
  filter: drop-shadow(0 2px 1px rgba(255, 255, 255, 0.35)) drop-shadow(0 12px 28px rgba(40, 24, 4, 0.55));
}

.home-landing__stage-tag {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.home-landing__stage-tag--motivator {
  z-index: 2;
  color: rgba(42, 28, 6, 0.82);
  text-shadow: 0 1px 0 rgba(255, 248, 220, 0.45);
}

/* TikTok embed in “What GTFU means” — fluid width, mobile-safe */
.home-landing__motivator-embed {
  min-width: 0;
}

.home-landing__tiktok-shell {
  width: 100%;
  max-width: min(605px, 100%);
  margin-inline: auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 12, 14, 0.35);
}

.home-landing__tiktok-shell .tiktok-embed {
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
  min-width: 0 !important;
  width: 100% !important;
}

.home-landing__tiktok-shell iframe {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  border: 0;
}

.home-landing--trainer {
  position: relative;
  padding: clamp(4rem, 10vw, 7rem) 0;
  min-height: min(72vh, 640px);
  display: flex;
  align-items: center;
}

.home-landing__trainer-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/Adan-Boxing.jpg");
  background-size: cover;
  background-position: center 20%;
  transform: scale(1.02);
}

.home-landing__trainer-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.65) 45%, rgba(0, 0, 0, 0.45) 100%);
}

.home-landing--trainer .wrap {
  position: relative;
  z-index: 1;
}

.home-landing__trainer-card {
  container-type: inline-size;
  max-width: 30rem;
  padding: clamp(1.75rem, 4vw, 2.35rem);
  border-radius: 16px;
  background: rgba(12, 12, 14, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

/* One line in the trainer card: size tracks card width; fallback vw where cqi isn’t available */
#home-trainer-heading {
  letter-spacing: 0.03em;
  white-space: nowrap;
  font-size: clamp(1.68rem, 4.85vw + 0.55rem, 3.25rem);
}

@supports (font-size: 1cqi) {
  #home-trainer-heading {
    font-size: clamp(1.68rem, 1.28rem + 6.75cqi, 3.25rem);
  }
}

.home-landing__eyebrow--trainer {
  color: #7fd4a8;
}

.home-landing__pills {
  list-style: none;
  margin: 0 0 clamp(2rem, 4.5vw, 2.5rem);
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.home-landing__pills li {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(128, 0, 0, 0.25);
  border: 1px solid rgba(128, 0, 0, 0.45);
  color: rgba(255, 255, 255, 0.9);
}

.home-landing__btn-glass {
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.home-landing--merch {
  padding: clamp(3.25rem, 8vw, 5.25rem) 0;
  background: linear-gradient(180deg, #fafafa 0%, #f2f2f2 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.home-landing__merch-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.home-landing__merch-visual {
  position: relative;
}

.home-landing__merch-frame {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
}

.home-landing__merch-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.home-landing__merch-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.7rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--maroon);
  color: var(--white);
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(128, 0, 0, 0.35);
}

.home-landing__copy--merch .home-landing__eyebrow--merch {
  color: var(--maroon);
}

.home-landing__copy--merch .home-landing__title {
  color: var(--black);
}

.home-landing__copy--merch .home-landing__lead {
  color: rgba(0, 0, 0, 0.8);
}

.home-landing__copy--merch .home-landing__text {
  color: rgba(0, 0, 0, 0.62);
}

.home-landing--finale {
  padding: clamp(2.5rem, 6vw, 3.75rem) 0;
  background: linear-gradient(90deg, var(--maroon-dim), var(--maroon), var(--maroon-dim));
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.home-landing__finale-inner {
  max-width: 36rem;
  margin-inline: auto;
}

.home-landing__finale-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.65rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  color: var(--white);
}

.home-landing__finale-text {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
}

.home-landing__finale-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
}

.home-landing__finale-links a {
  color: var(--white);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-landing__finale-links a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.home-landing__finale-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

/* ≤900px: stack book + motivator (phone). Tablet two-column restore follows below. */
@media (max-width: 900px) {
  .home-landing__grid--book {
    grid-template-columns: 1fr;
  }

  .home-landing__grid--motivator {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    align-items: stretch;
    gap: clamp(1.35rem, 4vw, 2.5rem);
  }

  .home-landing__motivator-copy {
    display: contents;
  }

  .home-landing__motivator-head {
    grid-column: 1;
    grid-row: 1;
  }

  .home-landing__grid--motivator .home-landing__stage,
  .home-landing__grid--motivator .home-landing__motivator-embed {
    grid-column: 1;
    grid-row: 2;
    align-self: stretch;
    min-height: min(248px, 56vw);
    border-radius: 18px;
  }

  .home-landing__grid--motivator .home-landing__motivator-embed {
    min-height: 0;
  }

  .home-landing__tiktok-shell {
    border-radius: 16px;
  }

  .home-landing__motivator-body {
    grid-column: 1;
    grid-row: 3;
  }
}

/* 768–900px: mirror desktop side-by-side (tablet / small laptop) */
@media (min-width: 768px) and (max-width: 900px) {
  .home-landing__grid--book {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(1.35rem, 3.5vw, 2.25rem);
    align-items: center;
  }

  .home-landing__grid--motivator {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    grid-template-rows: auto;
    gap: clamp(1.35rem, 3.5vw, 2.25rem);
    align-items: center;
  }

  .home-landing__motivator-copy {
    display: flex;
    flex-direction: column;
    gap: clamp(1.35rem, 2.8vw, 2rem);
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  .home-landing__grid--motivator .home-landing__stage,
  .home-landing__grid--motivator .home-landing__motivator-embed {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    width: 100%;
    min-height: 0;
  }
}

/* Merch: stay two-column from 721px up (was 861px) */
@media (max-width: 720px) {
  .home-landing__merch-layout {
    grid-template-columns: 1fr;
    gap: clamp(1.35rem, 4vw, 2rem);
  }

  .home-landing__merch-visual {
    max-width: min(19rem, 88vw);
    margin-inline: auto;
  }

  .home-landing__merch-frame {
    border-radius: 14px;
  }
}

@media (min-width: 721px) and (max-width: 900px) {
  .home-landing__merch-layout {
    gap: clamp(1.35rem, 3.5vw, 2.5rem);
    align-items: center;
  }
}

/* Home below hero: phone polish (hero untouched) */
@media (max-width: 767px) {
  .home-page main > section:not(.hero) > .wrap {
    width: min(1120px, calc(100vw - (2 * clamp(1.25rem, 5vw, 2rem))));
  }

  .home-landing__grid {
    gap: clamp(1.3rem, 4vw, 2rem);
  }

  .home-landing__book {
    max-width: min(252px, 78vw);
  }

  .home-landing--author .home-landing__title {
    font-size: clamp(1.82rem, 6.4vw, 2.85rem);
  }

  .home-landing--motivator {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }

  .home-landing--motivator .home-landing__title {
    font-size: clamp(1.88rem, 6.2vw, 3.25rem);
  }

  .home-landing__actions {
    gap: 0.75rem 0.9rem;
  }

  .home-landing--motivator .home-landing__actions .btn {
    flex: 1 1 auto;
    min-width: min(100%, 12rem);
    justify-content: center;
  }

  .home-landing--trainer {
    min-height: min(56vh, 520px);
    padding: clamp(2.75rem, 9vw, 5rem) 0;
  }

  .home-landing__trainer-card {
    width: min(30rem, 100%);
    margin-inline: auto;
  }

  .home-landing--merch {
    padding: clamp(2.75rem, 7vw, 4.5rem) 0;
  }

  .home-landing__copy--merch .home-landing__title {
    font-size: clamp(1.85rem, 5.8vw, 2.85rem);
  }

  .home-landing--finale {
    padding: clamp(2.25rem, 6vw, 3.25rem) clamp(0.75rem, 3vw, 1rem);
  }

  .home-landing__finale-title {
    font-size: clamp(1.72rem, 5.2vw, 2.65rem);
  }

  .home-landing__finale-text {
    font-size: clamp(0.94rem, 2.8vw, 1rem);
    padding-inline: 0.25rem;
  }

  .home-landing__finale-links {
    row-gap: 0.6rem;
  }
}

@media (max-width: 480px) {
  .home-landing--author .home-landing__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-landing--author .home-landing__actions > * {
    width: 100%;
    max-width: none;
  }

  .home-landing--motivator .home-landing__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-landing--motivator .home-landing__actions .btn {
    width: 100%;
    min-width: 0;
  }

  .home-landing--merch .home-landing__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .home-page .footer-bar {
    align-items: center;
    text-align: center;
  }

  .home-page .footer-brand-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .home-page .footer-note {
    max-width: 18rem;
    text-align: center;
  }

  .home-page .footer-copy {
    text-align: center;
    width: 100%;
  }

  .home-page .footer-social {
    width: 100%;
    justify-content: center;
  }
}

/* ----- Scroll animations ----- */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: calc(var(--stagger, 0) * 0.09s);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Home landing: stagger children inside grid/card */
.home-page .home-landing__grid[data-animate],
.home-page .home-landing__trainer-card[data-animate],
.home-page .home-landing__merch-layout[data-animate] {
  opacity: 1;
  transform: none;
  transition: none;
}

.home-page .home-landing__grid[data-animate]:not(.is-visible) .home-landing__reveal,
.home-page .home-landing__trainer-card[data-animate]:not(.is-visible) .home-landing__reveal,
.home-page .home-landing__merch-layout[data-animate]:not(.is-visible) .home-landing__reveal {
  opacity: 0;
  transform: translateY(26px);
}

.home-page .home-landing__grid[data-animate].is-visible .home-landing__reveal,
.home-page .home-landing__trainer-card[data-animate].is-visible .home-landing__reveal,
.home-page .home-landing__merch-layout[data-animate].is-visible .home-landing__reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
  transition-delay: calc(var(--stagger, 0) * 0.1s);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ----- Reduced motion ----- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__grid,
  .cta-band {
    animation: none;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .pillar:hover,
  .product-card:hover,
  .split:hover .split__img img {
    transform: none;
  }

  .section-head__icon {
    animation: none;
  }

  .home-page .stat:hover .stat__icon,
  .timeline--icons li:hover .timeline__icon,
  .role-badges li:hover {
    transform: none;
  }

  .pillar:hover .pillar__icon {
    transform: none;
  }

  .product-carousel {
    scroll-behavior: auto;
  }

  .home-landing__stage-ring,
  .home-landing__book {
    animation: none;
  }

  .home-landing__stage--motivator::before {
    animation: none;
    background-position: 50% 50%;
    opacity: 0.5;
  }

  .home-page .home-landing__grid[data-animate]:not(.is-visible) .home-landing__reveal,
  .home-page .home-landing__trainer-card[data-animate]:not(.is-visible) .home-landing__reveal,
  .home-page .home-landing__merch-layout[data-animate]:not(.is-visible) .home-landing__reveal {
    opacity: 1;
    transform: none;
  }

  .home-page .home-landing__grid[data-animate].is-visible .home-landing__reveal,
  .home-page .home-landing__trainer-card[data-animate].is-visible .home-landing__reveal,
  .home-page .home-landing__merch-layout[data-animate].is-visible .home-landing__reveal {
    transition: none;
  }
}
