/* =============================================
   PRIVÉ RITUEL — THE RESET
   Light Editorial Cream · Rose Gold
   ============================================= */

:root {
  --cream: #F2EDE4;
  --cream-light: #FAF7F2;
  --cream-dark: #E8DDD0;
  --gold: #B8956A;
  --gold-light: #D4AF8C;
  --gold-dark: #8B6E4E;
  --ink: #1A1410;
  --ink-mid: #3D2E24;
  --ink-light: #7A6458;
  --white: #FDFBF8;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', system-ui, sans-serif;

  --transition: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--cream-light);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* SPLASH */
#splash {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  animation: splashOut 0.8s ease-in 2.2s forwards;
}
.splash-logo {
  width: clamp(100px, 18vw, 180px);
  height: auto;
  object-fit: contain;
  animation: splashFade 0.8s ease-out 0.4s both;
  mix-blend-mode: screen;
}
.splash-bar {
  width: 0;
  height: 1px;
  background: var(--gold);
  animation: splashBar 1.2s ease-out 0.8s forwards;
}
@keyframes splashFade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes splashBar { from { width: 0; } to { width: min(200px, 40vw); } }
@keyframes splashOut { to { opacity: 0; pointer-events: none; visibility: hidden; } }

/* CURSOR */
#cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, background 0.3s;
}
#cursor-follower {
  position: fixed;
  width: 32px; height: 32px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: transform 0.4s ease, width 0.3s, height 0.3s, opacity 0.3s;
  opacity: 0.6;
}
body:hover #cursor, body:hover #cursor-follower { opacity: 1; }

/* CONTAINER */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

/* ---- NAV ---- */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}
#nav.scrolled {
  background: rgba(242, 237, 228, 0.92);
  backdrop-filter: blur(16px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(184, 149, 106, 0.2);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: none;
}
.nav-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
#nav:not(.scrolled) .nav-logo-img {
  mix-blend-mode: screen;
  filter: brightness(1.1);
}
.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color var(--transition);
}
#hero .nav-logo-text, #hero ~ #nav .nav-logo-text { color: var(--white); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light);
  transition: color var(--transition);
  cursor: none;
}
.nav-links a:hover { color: var(--gold); }
.nav-links .nav-cta {
  border: 1px solid var(--gold);
  padding: 0.5rem 1.4rem;
  color: var(--gold);
  transition: background var(--transition), color var(--transition);
}
.nav-links .nav-cta:hover { background: var(--gold); color: var(--white); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ink);
  transition: var(--transition);
}

/* MOBILE MENU */
#mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.18, 1);
}
#mobile-menu.open { transform: none; }
#mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}
#mobile-menu a {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.05em;
  transition: color var(--transition);
  cursor: none;
}
#mobile-menu a:hover { color: var(--gold); }

/* ---- HERO ---- */
#hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--ink);
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: right center;
  transform: scale(1.05);
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26, 20, 16, 0.93) 0%,
    rgba(26, 20, 16, 0.92) 30%,
    rgba(26, 20, 16, 0.70) 55%,
    rgba(26, 20, 16, 0.20) 80%,
    rgba(26, 20, 16, 0.05) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1.5rem, 8vw, 8rem);
  max-width: 900px;
}
.hero-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(10px);
}
.hero-title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-serif);
  font-size: clamp(4.5rem, 14vw, 12rem);
  font-weight: 300;
  line-height: 0.9;
  color: var(--cream-light);
  margin-bottom: 2.5rem;
}
.hero-line { display: block; overflow: hidden; }
.hero-line span { display: block; transform: translateY(110%); }
.hero-title .italic { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream-dark);
  opacity: 0;
  transform: translateY(8px);
}
.hero-scroll-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 3rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0;
  cursor: none;
  transition: gap var(--transition);
}
.hero-scroll-cta:hover { gap: 1.2rem; }
.hero-side-text {
  position: absolute;
  right: -4rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.35);
  white-space: nowrap;
  z-index: 2;
}

/* ---- SECTION LABELS & HEADINGS ---- */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 3rem;
}
.section-heading em { font-style: italic; color: var(--gold); }
.section-heading.centered { text-align: center; }

/* REVEAL ANIMATIONS */
.reveal, .reveal-label, .reveal-sub, .reveal-scale {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  transition-delay: var(--delay, 0s);
}
.reveal-scale { transform: scale(0.97) translateY(20px); }
.reveal.visible, .reveal-label.visible, .reveal-sub.visible, .reveal-scale.visible {
  opacity: 1;
  transform: none;
}
/* Safety net — if JS fails */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-label, .reveal-sub, .reveal-scale { opacity: 1; transform: none; }
}

/* ---- MANIFESTO ---- */
#manifesto {
  padding: clamp(6rem, 12vw, 10rem) 0;
  background: var(--cream-light);
}
.manifesto-inner { max-width: 900px; }
.manifesto-heading {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 3rem;
}
.manifesto-heading em { font-style: italic; color: var(--gold); }
.manifesto-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.manifesto-col p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-mid);
}
.manifesto-rule {
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 1.2s ease;
}
.manifesto-rule.visible { width: 100%; }

/* ---- BENEFITS ---- */
#ritual {
  padding: clamp(6rem, 12vw, 10rem) 0;
  background: var(--cream);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 4rem;
}
.benefit-card {
  background: var(--cream-light);
  padding: 3rem 2.5rem;
  border-top: 1px solid rgba(184, 149, 106, 0.3);
  transition: background var(--transition);
}
.benefit-card:hover { background: var(--white); }
.benefit-icon {
  width: 60px; height: 60px;
  color: var(--gold);
  margin-bottom: 2rem;
}
.benefit-card h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.benefit-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 1.5rem;
}
.benefit-card p:last-child {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--ink-mid);
}

/* ---- HOW TO USE ---- */
#how-to {
  padding: clamp(6rem, 12vw, 10rem) 0;
  background: var(--ink);
}
.how-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.how-visual {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.how-visual img { border-radius: 2px; }
.how-visual-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  border-top: 1px solid rgba(184, 149, 106, 0.4);
  padding-top: 0.75rem;
}
.how-text .section-label { color: var(--gold-light); }
.how-text .section-heading { color: var(--cream-light); }
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  counter-reset: steps;
}
.how-steps li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 1.5rem;
  align-items: start;
  border-top: 1px solid rgba(250, 247, 242, 0.1);
  padding-top: 2rem;
}
.how-steps li span {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  padding-top: 0.15rem;
}
.how-steps li p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--cream-dark);
}
.how-note {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(184, 149, 106, 0.3);
}

/* ---- LIFESTYLE FULL ---- */
#lifestyle {
  background: var(--ink);
}
.lifestyle-full {
  position: relative;
  width: 100%;
  aspect-ratio: 21/9;
  overflow: hidden;
  min-height: 320px;
}
.lifestyle-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.lifestyle-full:hover img { transform: scale(1.03); }
.lifestyle-full-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,20,16,0.65) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 2.5rem;
  gap: 0.5rem;
}
.lifestyle-full-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.lifestyle-full-sub {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream-light);
}
@media (max-width: 600px) {
  .lifestyle-full { aspect-ratio: 4/3; }
}

/* ---- DIFFERENCE ---- */
#difference {
  padding: clamp(6rem, 12vw, 10rem) 0;
  background: var(--cream);
}
.diff-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.diff-comparisons { margin-top: 3rem; }
.diff-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border: 1px solid rgba(184, 149, 106, 0.2);
}
.diff-col {
  padding: 2rem;
}
.diff-other { background: var(--cream-dark); }
.diff-us { background: var(--ink); }
.diff-col-label {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.diff-other .diff-col-label { color: var(--ink-light); }
.diff-us .diff-col-label { color: var(--gold); }
.diff-col li {
  font-size: 0.85rem;
  line-height: 2;
  padding-left: 0;
}
.diff-other li { color: var(--ink-light); }
.diff-us li { color: var(--cream-dark); }
.diff-visual {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.diff-visual img { border-radius: 2px; }
.diff-quote {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,20,16,0.9), transparent);
  padding: 3rem 2rem 2rem;
}
.diff-quote p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--cream-light);
  line-height: 1.6;
}

/* ---- SCIENCE ---- */
#science {
  position: relative;
  padding: clamp(8rem, 16vw, 14rem) 0;
  overflow: hidden;
}
.science-bg {
  position: absolute;
  inset: 0;
  background: var(--ink);
}
.science-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
}
.science-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 20, 16, 0.72);
}
.science-content { position: relative; z-index: 2; }
.science-heading {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream-light);
  margin-bottom: 5rem;
}
.science-heading em { font-style: italic; color: var(--gold-light); }
.science-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 6rem;
}
.science-col {
  border-top: 1px solid rgba(184, 149, 106, 0.4);
  padding-top: 2rem;
}
.science-col-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 1rem;
}
.science-col h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream-light);
  margin-bottom: 1rem;
}
.science-col p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(250, 247, 242, 0.65);
}
.science-dna {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 1px solid rgba(184, 149, 106, 0.3);
}
.science-dna-caption {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  white-space: nowrap;
}

/* ---- INGREDIENT ---- */
#ingredient {
  padding: clamp(6rem, 12vw, 10rem) 0;
  background: var(--cream-light);
}
.ingredient-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.ingredient-visual {
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid rgba(184, 149, 106, 0.25);
}
.ingredient-desc {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--ink-mid);
  margin-bottom: 2rem;
}
.ingredient-props {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ingredient-props li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--ink-mid);
}
.ingredient-props li span {
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
}

/* ---- TIMELINE ---- */
#results {
  padding: clamp(6rem, 12vw, 10rem) 0;
  background: var(--cream);
}
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 4rem;
}
.timeline-item {
  padding: 2.5rem 2rem;
  background: var(--cream-light);
  border-top: 2px solid var(--cream-dark);
  transition: border-color var(--transition);
}
.timeline-item:hover { border-color: var(--gold); }
.timeline-week {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 1rem;
}
.timeline-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--ink-mid);
}

/* ---- CTA ---- */
#contact {
  padding: clamp(8rem, 16vw, 14rem) 0;
  background: var(--ink);
}
.cta-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.cta-inner .section-label { justify-content: center; display: flex; }
.cta-heading {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream-light);
  margin-bottom: 2rem;
}
.cta-heading em { font-style: italic; color: var(--gold-light); }
.cta-sub {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(250, 247, 242, 0.6);
  margin-bottom: 3rem;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--gold);
  padding: 1.1rem 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  cursor: none;
  transition: background var(--transition), color var(--transition), gap var(--transition);
  margin-bottom: 3rem;
}
.cta-btn:hover { background: var(--gold); color: var(--ink); gap: 1.5rem; }
.cta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.cta-tags span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.35);
  border: 1px solid rgba(250, 247, 242, 0.12);
  padding: 0.4rem 1rem;
}

/* ---- FOOTER ---- */
#footer {
  padding: 4rem 0 3rem;
  background: var(--ink);
  border-top: 1px solid rgba(184, 149, 106, 0.15);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.footer-brand { }
.footer-logo-img {
  width: 70px;
  height: auto;
  object-fit: contain;
  margin-bottom: 0.75rem;
  mix-blend-mode: screen;
}
.footer-brand p {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--cream-dark);
  letter-spacing: 0.1em;
}
.footer-tagline {
  font-size: 0.65rem !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase;
  color: var(--ink-light) !important;
  margin-top: 0.5rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-links a {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-light);
  transition: color var(--transition);
  cursor: none;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy p {
  font-size: 0.7rem;
  line-height: 1.7;
  color: rgba(122, 100, 88, 0.5);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .benefits-grid { grid-template-columns: 1fr; gap: 2px; }
  .how-inner { grid-template-columns: 1fr; gap: 4rem; }
  .lifestyle-grid { grid-template-columns: 1fr 1fr; }
  .diff-inner { grid-template-columns: 1fr; }
  .diff-visual { aspect-ratio: 4/3; }
  .science-cols { grid-template-columns: 1fr; gap: 2rem; }
  .ingredient-inner { grid-template-columns: 1fr; gap: 3rem; }
  .ingredient-visual { max-width: 320px; margin: 0 auto; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .manifesto-cols { grid-template-columns: 1fr; gap: 1.5rem; }
  #cursor, #cursor-follower { display: none; }
  body { cursor: auto; }
  a, button { cursor: pointer; }
  .hero-side-text { display: none; }
}

@media (max-width: 600px) {
  .lifestyle-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .diff-row { grid-template-columns: 1fr; }
}
