/* =====================================================
   Solomeh Landing · solomeh.com
   Editorial long-form, conversion via quiz CTA
   ===================================================== */

:root {
  /* Palette · Mediterranean Ancient (shared with brand showcase) */
  --olive: #5C7A4E;
  --olive-deep: #3F5635;
  --olive-soft: #A8BC9B;
  --amber: #D4A857;
  --amber-deep: #B08838;
  --amber-soft: #F0D89B;
  --indigo: #2A3855;
  --indigo-deep: #1A2540;
  --indigo-soft: #5A6A8A;
  --terracotta: #C97B5A;
  --terracotta-soft: #E8B095;
  --ivory: #FBF7ED;
  --cream: #F0E8D5;
  --stone: #6B6B6B;

  /* Typography */
  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-8: 3rem;
  --space-10: 4rem;
  --space-12: 6rem;
  --space-16: 8rem;
  --space-20: 12rem;

  /* Radii */
  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;

  /* Shadows · warm tinted */
  --shadow-sm: 0 1px 2px rgba(42, 56, 85, 0.06);
  --shadow-md: 0 4px 12px rgba(42, 56, 85, 0.08), 0 2px 4px rgba(42, 56, 85, 0.04);
  --shadow-lg: 0 12px 32px rgba(42, 56, 85, 0.10), 0 4px 8px rgba(42, 56, 85, 0.06);
  --shadow-xl: 0 24px 64px rgba(42, 56, 85, 0.12), 0 8px 16px rgba(42, 56, 85, 0.08);

  /* Easing */
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);

  /* Layout */
  --max-width: 1200px;
  --reading-width: 720px;
  --nav-height: 64px;
}

/* =====================================================
   Reset & base
   ===================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "kern" 1, "liga" 1;
  scroll-padding-top: var(--nav-height);
}

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--indigo);
  background-color: #FBF7ED;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Subtle papyrus noise · baked SVG */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.35;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='5'/><feColorMatrix values='0 0 0 0 0.85, 0 0 0 0 0.78, 0 0 0 0 0.6, 0 0 0 0.04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
  mix-blend-mode: multiply;
}

img, svg, picture { display: block; max-width: 100%; height: auto; }

a { color: inherit; }

::selection { background: var(--amber-soft); color: var(--indigo-deep); }

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* =====================================================
   Containers
   ===================================================== */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-inline: var(--space-5);
}

.container-narrow {
  max-width: var(--reading-width);
  margin: 0 auto;
  padding-inline: var(--space-5);
}

section {
  padding-block: var(--space-12);
  position: relative;
}

@media (min-width: 1024px) {
  section { padding-block: var(--space-20); }
}

/* =====================================================
   Type primitives
   ===================================================== */

.t-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive-deep);
  margin-bottom: var(--space-4);
}

.t-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: 'SOFT' 100, 'WONK' 1;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--indigo-deep);
  margin-bottom: var(--space-6);
  max-width: 22ch;
}

/* =====================================================
   Skip link (a11y)
   ===================================================== */

.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-3);
  z-index: 1000;
  padding: var(--space-2) var(--space-4);
  background-color: #1A2540;
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: top 200ms var(--ease-soft);
}

.skip-link:focus {
  top: var(--space-3);
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}

/* =====================================================
   NAV
   ===================================================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(251, 247, 237, 0.85);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid rgba(42, 56, 85, 0.06);
  height: var(--nav-height);
  display: flex;
  align-items: center;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  color: var(--indigo-deep);
}

.nav__sigil {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.nav__wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: 'SOFT' 100, 'WONK' 1;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.nav__link {
  display: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--indigo);
  transition: color 200ms var(--ease-soft);
}

.nav__link:hover { color: var(--olive-deep); }

@media (min-width: 768px) {
  .nav__link { display: inline; }
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem var(--space-4);
  background-color: var(--olive);
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border-radius: var(--radius-full);
  transition: background-color 200ms var(--ease-soft), transform 200ms var(--ease-soft);
}

.nav__cta:hover {
  background-color: var(--olive-deep);
  transform: translateY(-1px);
}

/* =====================================================
   HERO
   ===================================================== */

.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  padding-block: var(--space-12) var(--space-10);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__bg picture,
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(251, 247, 237, 0.9) 0%, rgba(251, 247, 237, 0.7) 50%, rgba(251, 247, 237, 0.95) 100%);
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--olive-deep);
  margin-bottom: var(--space-5);
  padding: var(--space-2) var(--space-4);
  background-color: rgba(212, 168, 87, 0.12);
  border-radius: var(--radius-full);
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: 'SOFT' 100, 'WONK' 1;
  font-size: clamp(2.75rem, 7vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--indigo-deep);
  margin-bottom: var(--space-5);
  max-width: 16ch;
}

.hero__subhead {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.55;
  color: var(--indigo);
  max-width: 56ch;
  margin-bottom: var(--space-8);
}

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-10);
}

.hero__cta-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--indigo-soft);
}

.hero__stores {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.hero__stores-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--indigo-soft);
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--indigo-soft);
  opacity: 0.7;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background-color: var(--olive);
  opacity: 0.5;
  animation: scrollPulse 2.4s var(--ease-soft) infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.3; }
  50% { transform: scaleY(0.6); opacity: 0.8; }
}

/* =====================================================
   BUTTONS
   ===================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: background-color 200ms var(--ease-soft), transform 200ms var(--ease-soft), box-shadow 200ms var(--ease-soft);
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--olive);
  color: var(--ivory);
  padding: var(--space-3) var(--space-6);
  font-size: 1rem;
  box-shadow: var(--shadow-md);
}

.btn--primary:hover {
  background-color: var(--olive-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--large {
  padding: 1.05rem var(--space-6);
  font-size: 1.05rem;
  font-weight: 700;
}

.btn__icon {
  font-size: 1.1em;
  transition: transform 200ms var(--ease-soft);
}

.btn:hover .btn__icon {
  transform: translateX(3px);
}

/* =====================================================
   STORE BADGES
   ===================================================== */

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: 0.7rem var(--space-4);
  background-color: #1A2540;
  color: var(--ivory);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.7rem;
  line-height: 1.2;
  opacity: 0.6;
  cursor: not-allowed;
  transition: opacity 200ms var(--ease-soft);
}

.store-badge:hover { opacity: 0.85; }

.store-badge strong {
  font-size: 0.9rem;
  font-weight: 700;
}

.store-badge svg {
  flex-shrink: 0;
}

/* =====================================================
   PROMISES
   ===================================================== */

.promises {
  background-color: var(--ivory);
}

.promises__list {
  display: grid;
  gap: var(--space-8);
  margin-top: var(--space-10);
}

@media (min-width: 768px) {
  .promises__list {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
  }
}

.promise {
  display: flex;
  flex-direction: column;
}

.promise__num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--amber-deep);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-3);
}

.promise__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: 'SOFT' 100, 'WONK' 1;
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--indigo-deep);
  margin-bottom: var(--space-4);
}

.promise__body {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--indigo);
  max-width: 38ch;
}

/* =====================================================
   HOW IT WORKS
   ===================================================== */

.how {
  background-color: var(--cream);
}

.how__steps {
  display: grid;
  gap: var(--space-8);
  margin-top: var(--space-10);
  list-style: none;
}

@media (min-width: 768px) {
  .how__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-10);
  }
}

@media (min-width: 1024px) {
  .how__steps { grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }
}

.how__step {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-top: var(--space-6);
  border-top: 2px solid var(--olive-soft);
}

.how__step-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive-deep);
  margin-bottom: var(--space-3);
}

.how__step-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: 'SOFT' 100, 'WONK' 1;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--indigo-deep);
  margin-bottom: var(--space-3);
}

.how__step-body {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--indigo);
}

.how__cta {
  margin-top: var(--space-12);
  display: flex;
  justify-content: center;
}

/* =====================================================
   SCREENSHOTS
   ===================================================== */

.screens {
  background-color: var(--ivory);
}

.screens__pair {
  display: grid;
  gap: var(--space-10);
  margin-top: var(--space-10);
  align-items: center;
}

@media (min-width: 1024px) {
  .screens__pair {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
  }
}

.screens__item {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.screens__item picture,
.screens__item img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
}

.screens__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: 'SOFT' 100, 'WONK' 1;
  font-size: clamp(1.3rem, 2.2vw, 1.625rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--indigo-deep);
  margin-bottom: var(--space-2);
}

.screens__body {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--indigo);
  max-width: 42ch;
}

/* =====================================================
   PULL QUOTE (manifesto excerpt)
   ===================================================== */

.pull {
  background-color: var(--cream);
  text-align: center;
}

.pull__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--indigo-deep);
  margin-bottom: var(--space-6);
  position: relative;
}

.pull__quote::before {
  content: '"';
  display: block;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.5;
  color: var(--amber);
  margin-bottom: var(--space-4);
  text-align: center;
}

.pull__cite {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--indigo-soft);
}

.pull__cite a {
  color: var(--olive-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.pull__cite a:hover { color: var(--olive); }

/* =====================================================
   WHY SOLOMEH (anti-positioning)
   ===================================================== */

.why {
  background-color: var(--ivory);
}

.why__lead {
  font-size: clamp(1.05rem, 1.4vw, 1.15rem);
  line-height: 1.6;
  color: var(--indigo);
  max-width: 60ch;
  margin-bottom: var(--space-10);
}

.why__compare {
  display: grid;
  gap: var(--space-2);
  padding: var(--space-6) 0;
  border-top: 1px solid rgba(42, 56, 85, 0.1);
}

.why__compare:last-child { border-bottom: 1px solid rgba(42, 56, 85, 0.1); }

@media (min-width: 768px) {
  .why__compare {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
}

.why__row {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.why__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.why__row:nth-child(1) .why__label { color: var(--stone); }
.why__row:nth-child(2) .why__label { color: var(--olive-deep); }

.why__them {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--stone);
}

.why__us {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--indigo-deep);
  font-weight: 500;
}

/* =====================================================
   FAQ
   ===================================================== */

.faq {
  background-color: var(--cream);
}

.faq__list {
  margin-top: var(--space-8);
  border-top: 1px solid rgba(42, 56, 85, 0.12);
}

.faq__item {
  border-bottom: 1px solid rgba(42, 56, 85, 0.12);
}

.faq__q {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: 'SOFT' 100, 'WONK' 1;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--indigo-deep);
  padding: var(--space-5) var(--space-6) var(--space-5) 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color 200ms var(--ease-soft);
}

.faq__q::-webkit-details-marker { display: none; }

.faq__q::after {
  content: '+';
  position: absolute;
  right: var(--space-2);
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--olive);
  transition: transform 200ms var(--ease-soft);
}

.faq__item[open] .faq__q::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq__q:hover { color: var(--olive-deep); }

.faq__a {
  padding: 0 0 var(--space-6) 0;
  max-width: 62ch;
}

.faq__a p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--indigo);
}

.faq__a a {
  color: var(--olive-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.faq__a a:hover { color: var(--olive); }

/* =====================================================
   FINAL CTA
   ===================================================== */

.final-cta {
  background-color: #1A2540;
  color: var(--ivory);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(212, 168, 87, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(92, 122, 78, 0.18) 0%, transparent 50%);
  pointer-events: none;
}

.final-cta__headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: 'SOFT' 100, 'WONK' 1;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ivory);
  margin-bottom: var(--space-5);
  max-width: 24ch;
  margin-left: auto;
  margin-right: auto;
}

.final-cta__body {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.6;
  color: rgba(251, 247, 237, 0.85);
  max-width: 50ch;
  margin: 0 auto var(--space-8);
}

.final-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.final-cta__actions .btn--primary {
  background-color: var(--amber);
  color: #1A2540;
}

.final-cta__actions .btn--primary:hover {
  background-color: var(--amber-deep);
  color: var(--ivory);
}

.final-cta__meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: rgba(251, 247, 237, 0.6);
}

/* =====================================================
   FOOTER
   ===================================================== */

footer {
  background-color: #131C30;
  color: var(--ivory);
  padding-block: var(--space-10);
}

.footer__grid {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-8);
  }
}

.footer__brand-col {
  max-width: 36ch;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  color: var(--ivory);
  margin-bottom: var(--space-3);
}

.footer__wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: 'SOFT' 100, 'WONK' 1;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(251, 247, 237, 0.75);
}

.footer__col-title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--space-3);
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer__list a {
  color: var(--ivory);
  text-decoration: none;
  font-size: 0.9rem;
  border-bottom: 1px solid transparent;
  transition: border-color 200ms var(--ease-soft);
}

.footer__list a:hover {
  border-bottom-color: var(--amber);
}

.footer__bottom {
  margin-top: var(--space-10);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(251, 247, 237, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: rgba(251, 247, 237, 0.5);
}

.footer__legal {
  display: flex;
  gap: var(--space-4);
}

.footer__legal a {
  color: rgba(251, 247, 237, 0.6);
  text-decoration: none;
  transition: color 200ms var(--ease-soft);
}

.footer__legal a:hover { color: var(--ivory); }

/* =====================================================
   Reveal-on-scroll utility
   ===================================================== */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--ease-out-quint), transform 700ms var(--ease-out-quint);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
