/* ---------- Design tokens: dark editorial / "femme fatale" ---------- */
:root {
  --bg: #170D0E;
  --bg-alt: #1F1214;
  --card: #241519;
  --ink: #F5EBDD;
  --ink-soft: #D2BFAF;
  --ink-faint: #A08A7C;
  --border: rgba(245, 235, 221, 0.14);
  --border-strong: rgba(245, 235, 221, 0.26);

  --amber: #D9A15C;
  --amber-deep: #B9803A;
  --copper: #69301F;
  --oxblood: #7D1F2A;
  --oxblood-deep: #591620;

  --font-display: 'Italiana', Georgia, serif;
  --font-nav: 'Jost', sans-serif;
  --font-body: 'Bricolage Grotesque', sans-serif;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-5: 64px;
  --space-6: 96px;
  --space-7: 144px;

  --container: 1240px;
  --radius: 2px;
  --ease-out: cubic-bezier(.16,.84,.44,1);
  --dur-fast: 200ms;
  --dur-med: 320ms;
  --dur-slow: 620ms;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.1; margin: 0; }
p { margin: 0; }
ol, ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input { font: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--ink); color: var(--bg);
  padding: 10px 16px; border-radius: var(--radius); z-index: 200;
  transition: top var(--dur-fast) var(--ease-out);
}
.skip-link:focus { top: 12px; }

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

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--font-nav);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oxblood);
  margin: 0 0 var(--space-2);
}
.center { text-align: center; }
.eyebrow.center { display: block; }
.promise-sub {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  color: var(--ink-soft);
  margin: 0 auto var(--space-3);
}
.promise-body {
  color: var(--ink-soft);
  max-width: 62ch;
  margin: 0 auto var(--space-5);
}
.draft-flag, .founder-photo-note {
  font-family: var(--font-nav);
  font-size: 12px;
  color: var(--oxblood);
  border: 1px dashed var(--border-strong);
  padding: 8px 12px;
  margin-top: var(--space-3);
  letter-spacing: 0.02em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-nav);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}
.btn:active { transform: scale(0.97); }
.btn-solid {
  background: var(--oxblood);
  color: var(--ink);
  border: 1px solid var(--oxblood);
}
.btn-solid:hover { background: var(--oxblood-deep); border-color: var(--oxblood-deep); }
.btn-line {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border-strong);
}
.btn-line:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* ---------- Reveal-on-scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* More pronounced entrance for the Extraction section's copy: a soft
   blur-to-focus resolve alongside a longer rise, rather than a flat fade. */
[data-reveal-word] {
  opacity: 0;
  transform: translateY(36px);
  filter: blur(8px);
  transition: opacity 0.9s var(--ease-out),
              transform 0.9s var(--ease-out),
              filter 0.9s var(--ease-out);
}
[data-reveal-word].is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal-word] { opacity: 1; transform: none; filter: none; transition: none; }
}

/* Texture-break gets its own distinct motion signature: a diagonal
   slide-in-while-defocusing rather than the plain vertical rise used
   elsewhere, so it reads as deliberately different, not repeated. */
.texture-break-copy [data-reveal-word] {
  transform: translateX(-44px) translateY(20px);
}
.texture-break-copy [data-reveal-word].is-visible {
  transform: translateX(0) translateY(0);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.site-header.is-scrolled { border-bottom-color: var(--border); }

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.brand { display: inline-flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-mark { color: var(--ink); width: 30px; height: 30px; flex: none; }
.brand-word {
  font-family: 'Italiana', var(--font-display);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--oxblood);
}
.brand-rest { font-style: normal; }

.site-nav {
  display: flex;
  gap: var(--space-4);
  font-family: var(--font-nav);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.site-nav a { position: relative; padding-bottom: 4px; }
.site-nav a::after {
  content: '';
  position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--oxblood);
  transition: right var(--dur-med) var(--ease-out);
}
.site-nav a:hover::after { right: 0; }

.header-inner > .btn-line { flex: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  flex: none;
}
.nav-toggle span {
  height: 1.5px; width: 26px; background: var(--ink);
  transition: transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 0 var(--space-3) var(--space-4);
  font-family: var(--font-nav);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 14px;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a { padding: 12px 0; }
.mobile-nav .btn { align-self: flex-start; margin-top: var(--space-2); }

/* ---------- Layout helpers ---------- */
.section { padding: var(--space-7) var(--space-3); max-width: var(--container); margin: 0 auto; }
.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
}
.section-media img,
.section-media video {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
}
.section-copy h2 { font-size: clamp(28px, 3.4vw, 42px); margin-bottom: var(--space-3); }
.section-copy p { color: var(--ink-soft); margin-bottom: var(--space-3); max-width: 46ch; }
.section-copy p:last-of-type { margin-bottom: 0; }
.section-copy strong { color: var(--ink); font-weight: 600; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.hero-media {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero-media video,
.hero-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-media video {
  opacity: 1;
  transition: opacity 0.4s ease;
}
.hero-media video.is-transitioning {
  opacity: 0;
}
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,5,5,0.25) 0%, rgba(10,5,5,0.65) 78%, rgba(10,5,5,0.88) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-6) var(--space-3) var(--space-6);
  color: #F5EBDD;
  width: 100%;
}
.hero .eyebrow { color: var(--oxblood); }
.hero-title {
  font-size: clamp(40px, 7vw, 84px);
  max-width: 16ch;
  margin-bottom: var(--space-3);
}
.hero-title em { font-style: normal; color: var(--oxblood); }
.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  max-width: 46ch;
  color: rgba(245,235,221,0.88);
  margin-bottom: var(--space-4);
}
.hero-form {
  display: flex;
  gap: var(--space-2);
  max-width: 460px;
  margin-bottom: var(--space-2);
}
.hero-form input {
  flex: 1;
  min-width: 0;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(245,235,221,0.4);
  background: rgba(245,235,221,0.07);
  color: #F5EBDD;
}
.hero-form input::placeholder { color: rgba(245,235,221,0.6); }
.hero-note { font-size: 13px; color: rgba(245,235,221,0.65); }

.hero-scroll-cue {
  position: absolute; bottom: var(--space-3); left: 50%; transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-cue span {
  display: block; width: 1px; height: 40px;
  background: linear-gradient(180deg, rgba(245,235,221,0.9), transparent);
  animation: scrollcue 2s var(--ease-out) infinite;
}
@keyframes scrollcue {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-cue span { animation: none; }
}

/* ---------- Strip ---------- */
.strip {
  border-bottom: 1px solid var(--border);
  padding: var(--space-2) var(--space-3);
  text-align: center;
}
.strip p {
  font-family: var(--font-nav);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ---------- Card grid (Promise + Ingredients) ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.card-grid-2 { grid-template-columns: 1fr 1fr; }
.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-4);
}
.card-index {
  font-family: var(--font-nav);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--oxblood);
  display: block;
  margin-bottom: var(--space-2);
}
.info-card h3 { font-size: 21px; margin-bottom: var(--space-2); }
.info-card p { color: var(--ink-soft); }

.promise h2, .ingredients h2, .whofor h2, .founder h2, .ritual h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  margin-bottom: var(--space-3);
}
/* ---------- Section background image (Promise, Extraction, Ingredients) ---------- */
.section.has-bg {
  position: relative;
  overflow: hidden;
  max-width: none;
}
.section-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.section-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.section-bg img.bg-layer {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.section-bg img.bg-layer.is-active { opacity: 1; }
.section-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,5,5,0.72) 0%, rgba(10,5,5,0.86) 55%, rgba(10,5,5,0.94) 100%);
}
.section-bg-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
}

/* ---------- Carousel (click-through, Marsea-style) ---------- */
.carousel { margin-top: var(--space-1); }
.carousel-track {
  display: flex;
  gap: var(--space-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: var(--space-1);
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track .info-card {
  flex: 0 0 auto;
  width: min(440px, 82vw);
  scroll-snap-align: start;
}
.carousel--wide .carousel-track .info-card {
  width: min(620px, 78vw);
}
.carousel-nav {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
}
.carousel-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.carousel-arrow:hover { background: var(--card); border-color: var(--oxblood); }
.carousel-arrow:disabled { opacity: 0.35; cursor: default; }
.carousel-arrow:disabled:hover { background: transparent; border-color: var(--border-strong); }
.carousel-arrow span {
  width: 9px; height: 9px;
  border-top: 1.5px solid var(--ink);
  border-right: 1.5px solid var(--ink);
}
.carousel-arrow[data-carousel-prev] span { transform: rotate(-135deg) translate(1px, -1px); }
.carousel-arrow[data-carousel-next] span { transform: rotate(45deg) translate(-1px, -1px); }

/* ---------- Texture break ---------- */
.texture-break {
  position: relative;
  height: 64vh;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.texture-break-media {
  position: absolute; inset: 0;
  overflow: hidden;
  transform: scale(1);
}
.texture-break.is-visible .texture-break-media {
  animation: texture-zoom 22s ease-out forwards;
}
@keyframes texture-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.18); }
}
.texture-break img {
  position: absolute; inset: 0;
  width: 100%; height: 112%;
  object-fit: cover;
  object-position: center 35%;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .texture-break.is-visible .texture-break-media { animation: none; }
}
.texture-break::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,5,5,0.78) 0%, rgba(10,5,5,0.3) 55%, rgba(10,5,5,0.08) 100%);
}
.texture-break-copy {
  position: relative; z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-3);
  color: #F5EBDD;
  width: 100%;
}
.texture-break-copy .eyebrow { color: var(--oxblood); }
.texture-break-copy h2 { font-size: clamp(26px, 3.6vw, 44px); max-width: 14ch; }

/* ---------- Who It's For ---------- */
.whofor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  margin-top: var(--space-5);
}
.whofor-col h3 {
  font-size: 20px;
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--border-strong);
}
.whofor-col ul { display: flex; flex-direction: column; gap: var(--space-2); }
.whofor-col li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.whofor-text {
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease-out);
}
.whofor-col li:hover .whofor-text,
.whofor-col li:focus-within .whofor-text {
  opacity: 1;
}
@media (hover: none), (pointer: coarse) {
  .whofor-text { opacity: 1; transition: none; }
}
.mark { flex: none; margin-top: 7px; }
.mark-yes {
  width: 12px; height: 7px;
  border-left: 2px solid var(--oxblood);
  border-bottom: 2px solid var(--oxblood);
  transform: rotate(-45deg);
  margin-top: 5px;
}
.mark-no {
  position: relative;
  width: 12px; height: 12px;
  margin-top: 5px;
}
.mark-no::before,
.mark-no::after {
  content: '';
  position: absolute;
  top: 50%; left: 0;
  width: 100%; height: 2px;
  background: var(--oxblood);
  border-radius: 2px;
}
.mark-no::before { transform: translateY(-50%) rotate(45deg); }
.mark-no::after { transform: translateY(-50%) rotate(-45deg); }

/* ---------- Founder ---------- */
.founder-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-6);
  align-items: center;
  margin-top: var(--space-5);
}
.compare {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  user-select: none;
  touch-action: pan-y;
}
.compare-after, .compare-before {
  position: absolute; inset: 0;
}
.compare-after img, .compare-before img {
  width: 100%; height: 100%; object-fit: cover;
}
.compare-after img {
  object-position: 35% 50%;
}
.compare-before {
  clip-path: inset(0 50% 0 0);
}
.compare-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 44px; margin-left: -22px;
  display: flex; align-items: center; justify-content: center;
  cursor: ew-resize;
}
.compare-handle::before {
  content: '';
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; background: #F5EBDD; transform: translateX(-1px);
}
.compare-handle span {
  position: relative;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #F5EBDD;
  display: flex; align-items: center; justify-content: center;
}
.compare-handle span::before {
  content: '\2194';
  color: #170D0E;
  font-size: 16px;
}
.compare-tag {
  position: absolute; bottom: var(--space-2);
  font-family: var(--font-nav);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(10,5,5,0.6);
  color: #F5EBDD;
  padding: 5px 10px;
  border-radius: 999px;
}
.compare-tag-before { left: var(--space-2); }
.compare-tag-after { right: var(--space-2); }

.founder-copy p { color: var(--ink-soft); max-width: 48ch; margin-bottom: var(--space-2); }

/* ---------- Ritual ---------- */
.ritual-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-5);
}
.ritual-steps li {
  border-top: 1px solid var(--border-strong);
  padding-top: var(--space-3);
}
.ritual-index {
  font-family: var(--font-nav);
  color: var(--oxblood);
  font-size: 12px;
  letter-spacing: 0.1em;
}
.ritual-steps h3 { font-size: 20px; margin: var(--space-1) 0 var(--space-1); }
.ritual-steps p { color: var(--ink-soft); }
.ritual-line {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  color: var(--ink-soft);
  margin: var(--space-5) 0 var(--space-2);
}
.ritual-footnote {
  text-align: center;
  font-size: 12px;
  color: var(--ink-faint);
}

/* ---------- Waitlist ---------- */
.waitlist {
  background: var(--bg-alt);
  max-width: none;
  position: relative;
  overflow: hidden;
}
/* A slow ambient glow that idles on its own, and leans toward the
   cursor when one is present (set via --mx/--my in main.js). Kept to a
   single soft, low-opacity light rather than anything literal. */
.waitlist::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    480px circle at var(--mx, 50%) var(--my, 30%),
    color-mix(in srgb, var(--amber) 16%, transparent),
    transparent 70%
  );
  opacity: 0;
  transition: opacity var(--dur-slow) var(--ease-out);
  animation: waitlist-drift 14s ease-in-out infinite;
}
.waitlist.is-glowing::before { opacity: 1; }
@keyframes waitlist-drift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(2%, -3%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .waitlist::before { animation: none; }
}
.waitlist-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.waitlist h2 { font-size: clamp(28px, 3.6vw, 44px); margin: var(--space-2) 0 var(--space-2); }
.waitlist-sub { color: var(--ink-soft); margin-bottom: var(--space-4); }
/* Magnetic pull: nudged toward the cursor via inline transform in
   main.js, always eased back with this transition so it never feels
   stuck to the pointer. */
.waitlist-form .btn-solid {
  transition: transform var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out);
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .waitlist-form .btn-solid { transition: background var(--dur-fast) var(--ease-out); }
}
.waitlist-form {
  display: flex;
  gap: var(--space-2);
  max-width: 440px;
  margin: 0 auto;
}
.waitlist-form input {
  flex: 1; min-width: 0;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--card);
  color: var(--ink);
}
.form-status {
  margin-top: var(--space-2);
  font-size: 13px;
  color: var(--oxblood);
  min-height: 1.2em;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: var(--space-5) var(--space-3);
}
.footer-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  text-align: center;
}
.footer-tagline { font-family: var(--font-display); color: var(--ink-soft); }
.footer-disclaimer { font-size: 12px; color: var(--ink-faint); line-height: 1.6; margin-top: var(--space-2); }
.footer-contact a { font-family: var(--font-nav); font-size: 13px; letter-spacing: 0.04em; color: var(--ink-soft); }
.footer-contact a:hover { color: var(--oxblood); }
.footer-copyright { font-size: 12px; color: var(--ink-faint); margin-top: var(--space-1); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .section-grid, .founder-grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .founder-grid { display: flex; flex-direction: column-reverse; }
  .card-grid, .card-grid-2 { grid-template-columns: 1fr; }
  .ritual-steps { grid-template-columns: 1fr; gap: var(--space-3); }
  .whofor-grid { grid-template-columns: 1fr; gap: var(--space-4); }
}

@media (max-width: 860px) {
  .site-nav, .header-inner > .btn-line { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: var(--space-6) var(--space-3); }
}

@media (max-width: 520px) {
  .hero-form, .waitlist-form { flex-direction: column; }
  .hero { min-height: 100dvh; }
  :root { --space-7: 80px; }
}
