/* =========================================================================
   Maika Movement — styles.css
   Editorial, quietly luxurious, type-forward.
   ========================================================================= */

:root {
  /* Core palette */
  --sacred-sand: #D9D1C4;
  --onyx-energy: #22201B;
  --rooted-olive: #554A1F;
  --healing-taupe: #898272;

  /* Derived neutrals */
  --sacred-sand-light: #E6E0D4;
  --sacred-sand-dark: #C9C0B0;
  --onyx-soft: #2D2A24;
  --bone: #F2EDE5;

  /* Functional */
  --hairline: rgba(34, 32, 27, 0.08);
  --hairline-strong: rgba(34, 32, 27, 0.16);
  --shadow-soft: 0 24px 60px -20px rgba(34, 32, 27, 0.18);
  --shadow-float: 0 40px 80px -30px rgba(34, 32, 27, 0.25);

  /* Motion */
  --ease-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-slow: 800ms;
  --dur-med: 600ms;
  --dur-fast: 280ms;

  /* Layout */
  --container: 1280px;
  --reading: 640px;
  --reading-wide: 880px;
  --nav-h: 4.5rem;
}

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

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--onyx-energy);
  background: var(--sacred-sand);
  hanging-punctuation: first last;
  position: relative;
  min-height: 100vh;
}

/* Body grain overlay — single biggest brand-elevation detail */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  mix-blend-mode: multiply;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

input {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
}

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

/* =====================  Typography  ===================== */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Times New Roman', Times, serif;
  font-weight: 400;
  letter-spacing: -0.012em;
  font-feature-settings: "ss01", "kern";
  font-optical-sizing: auto;
  text-wrap: balance;
  color: var(--onyx-energy);
}

h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.02;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
}

h2.h2-large {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.05;
}

h3 {
  font-size: 1.625rem;
  line-height: 1.25;
}

p {
  max-width: 65ch;
}

em, i, .italic {
  font-style: italic;
}

.serif {
  font-family: 'Cormorant Garamond', 'Times New Roman', Times, serif;
  font-weight: 400;
  font-feature-settings: "ss01", "kern";
  font-optical-sizing: auto;
}

.eyebrow {
  display: inline-block;
  font-family: 'Public Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rooted-olive);
}

.eyebrow--taupe { color: var(--healing-taupe); }
.eyebrow--sand  { color: var(--sacred-sand); }

.caption {
  font-size: 0.85rem;
  color: var(--healing-taupe);
  line-height: 1.55;
}

.lede {
  font-size: 1.125rem;
  line-height: 1.7;
}

.olive { color: var(--rooted-olive); }
.taupe { color: var(--healing-taupe); }

/* Hairline */
.hairline {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--rooted-olive);
  border: 0;
  margin: 1.25rem 0;
}

.hairline--center { margin-inline: auto; }

/* =====================  Selection / scrollbar / focus  ===================== */
::selection {
  background: var(--rooted-olive);
  color: var(--bone);
}

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-thumb {
  background: rgba(137, 130, 114, 0.5);
  border-radius: 3px;
}
::-webkit-scrollbar-track { background: transparent; }

:focus { outline: 0; }
:focus-visible {
  outline: 1px solid var(--rooted-olive);
  outline-offset: 3px;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 1rem;
  padding: 0.5rem 0.75rem;
  background: var(--onyx-energy);
  color: var(--bone);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 200;
}
.skip-link:focus { top: 0.75rem; }

/* =====================  Layout primitives  ===================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  position: relative;
  z-index: 2;
}

.section {
  padding-block: clamp(5rem, 10vw, 10rem);
  position: relative;
  scroll-margin-top: var(--nav-h);
}

.section--sand        { background: var(--sacred-sand); }
.section--sand-light  { background: var(--sacred-sand-light); }
.section--sand-dark   { background: var(--sacred-sand-dark); }
.section--onyx        { background: var(--onyx-energy); color: var(--sacred-sand); }
.section--onyx h1,
.section--onyx h2,
.section--onyx h3 { color: var(--bone); }

.section + .section {
  border-top: 1px solid var(--hairline);
}
.section--onyx + .section,
.section + .section--onyx {
  border-top: 0;
}

.center { text-align: center; }
.measure       { max-width: var(--reading); }
.measure-wide  { max-width: var(--reading-wide); }
.mx-auto       { margin-inline: auto; }

.stack > * + * { margin-top: 1rem; }
.stack-lg > * + * { margin-top: 2rem; }
.stack-xl > * + * { margin-top: 3rem; }

/* =====================  Buttons / links  ===================== */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: 'Public Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--onyx-energy);
  color: var(--sacred-sand);
  border: 1px solid var(--onyx-energy);
  border-radius: 2px;
  transition:
    transform var(--dur-fast) var(--ease-quint),
    box-shadow var(--dur-fast) var(--ease-quint),
    background var(--dur-fast) var(--ease-quint);
  will-change: transform;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  background: var(--onyx-soft);
}
.btn--ghost {
  background: transparent;
  color: var(--onyx-energy);
  border-color: var(--onyx-energy);
}
.btn--ghost:hover {
  background: var(--onyx-energy);
  color: var(--sacred-sand);
}

.link-underline {
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}
.link-underline::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: currentColor;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform var(--dur-fast) var(--ease-quint);
}
.link-underline:hover::after { transform: scaleX(1); }

.email-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.012em;
  transition: color var(--dur-fast) var(--ease-quint);
  border-bottom: 1px solid var(--hairline-strong);
  padding-bottom: 0.25rem;
}
.email-link:hover { color: var(--rooted-olive); }

/* =====================  Navigation  ===================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(217, 209, 196, 0.0);
  transition: background var(--dur-fast) var(--ease-quint),
              backdrop-filter var(--dur-fast) var(--ease-quint),
              border-color var(--dur-fast) var(--ease-quint);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(217, 209, 196, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--hairline);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem clamp(1.25rem, 4vw, 2.5rem);
  max-width: var(--container);
  margin-inline: auto;
}

.nav__brand {
  font-family: 'Public Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--onyx-energy);
}

.nav__menu {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}
.nav__link {
  font-family: 'Public Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--onyx-energy);
  position: relative;
  padding-bottom: 2px;
}
.nav__link::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: var(--onyx-energy);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--dur-fast) var(--ease-quint);
}
.nav__link:hover::after { transform: scaleX(1); }

.nav__toggle {
  display: none;
  width: 28px;
  height: 22px;
  position: relative;
  z-index: 110;
}
.nav__toggle span {
  position: absolute;
  left: 5px;
  right: 5px;
  height: 1px;
  background: var(--onyx-energy);
  transition: transform var(--dur-fast) var(--ease-quint),
              opacity var(--dur-fast) var(--ease-quint),
              top var(--dur-fast) var(--ease-quint);
}
.nav__toggle span:nth-child(1) { top: 6px; }
.nav__toggle span:nth-child(2) { top: 11px; }
.nav__toggle span:nth-child(3) { top: 16px; }
.nav__toggle.is-open span:nth-child(1) { top: 11px; transform: rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { top: 11px; transform: rotate(-45deg); }

@media (max-width: 768px) {
  .nav__menu {
    position: fixed;
    inset: 0;
    background: var(--sacred-sand);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform var(--dur-med) var(--ease-quint);
    z-index: 105;
  }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__link {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.25rem;
    letter-spacing: -0.012em;
    text-transform: none;
    font-style: italic;
    color: var(--onyx-energy);
  }
  .nav__toggle { display: block; }
}

body.no-scroll { overflow: hidden; }

/* =====================  Hero  ===================== */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: stretch;
  padding: 0;
}
.hero__text {
  background: var(--sacred-sand);
  padding: clamp(3rem, 8vw, 7rem) clamp(1.5rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__text .eyebrow { margin-bottom: 0.5rem; }
.hero__title {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.02;
  margin: 1.5rem 0 1.25rem;
}
.hero__sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  color: var(--onyx-energy);
  margin-bottom: 2.25rem;
  max-width: 32ch;
}
.hero__body {
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-size: 1.0625rem;
}
.hero__cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-bottom: 1rem;
}
.hero__visual {
  background: var(--sacred-sand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero__visual { padding: 3rem 1.5rem; }
}

/* =====================  Mockup frame  ===================== */
.mockup-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
}
.mockup-frame::before {
  content: "";
  position: absolute;
  inset: -10% -15%;
  background: radial-gradient(closest-side,
    rgba(85, 74, 31, 0.10),
    rgba(85, 74, 31, 0) 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}
.mockup-frame__inner {
  position: relative;
  z-index: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-float);
  border: 1px solid rgba(34, 32, 27, 0.06);
  background: var(--bone);
  aspect-ratio: 1260 / 2736;
}
.mockup-frame__inner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: auto;
  image-rendering: high-quality;
  -ms-interpolation-mode: bicubic;
}
.mockup-frame--sm { max-width: 320px; }

@media (max-width: 1024px) {
  .mockup-frame { max-width: 280px; }
}

/* Continuous gentle float on hero phone */
@keyframes phone-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}
.hero__phone {
  animation: phone-float 6s ease-in-out infinite;
  will-change: transform;
}

/* =====================  Why it matters / stats  ===================== */
.why {
  text-align: center;
}
.why .container > * + * { margin-top: 1.5rem; }
.why p.lede {
  margin-inline: auto;
  max-width: 60ch;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  margin-top: 5rem;
}
.stat {
  text-align: center;
}
.stat__num {
  font-family: 'Cormorant Garamond', serif;
  font-feature-settings: "ss01", "kern";
  font-variant-numeric: tabular-nums;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1;
  color: var(--onyx-energy);
  letter-spacing: -0.012em;
  display: block;
}
.stat__cap {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: var(--healing-taupe);
  max-width: 28ch;
  margin-inline: auto;
  line-height: 1.55;
}

@media (max-width: 768px) {
  .stats { grid-template-columns: 1fr; gap: 3rem; }
}

/* =====================  Manifesto  ===================== */
.manifesto {
  text-align: center;
}
.manifesto__quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.85rem, 3.6vw, 2.85rem);
  line-height: 1.25;
  max-width: 880px;
  margin-inline: auto;
  color: var(--bone);
  text-wrap: balance;
}
.manifesto__cap {
  margin-top: 2rem;
  color: rgba(217, 209, 196, 0.6);
}

/* =====================  How it works  ===================== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-top: 5rem;
}
.step__num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--rooted-olive);
  display: block;
  margin: 1.75rem 0 0.75rem;
}
.step h3 { margin-bottom: 0.75rem; }

@media (max-width: 1024px) { .steps { grid-template-columns: 1fr; gap: 4rem; } }

/* =====================  Inside the app (2x2) ===================== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem);
  margin-top: 4rem;
}
.feature h3 { margin-bottom: 0.75rem; }
.feature p { color: var(--onyx-energy); }

@media (max-width: 768px) { .features-grid { grid-template-columns: 1fr; gap: 3rem; } }

/* =====================  About  ===================== */
.about {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.about__text > * + * { margin-top: 1.25rem; }
.about__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--sacred-sand-dark) 0%, var(--sacred-sand) 60%);
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
}
.about__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(closest-side, rgba(85, 74, 31, 0.08), transparent 70%);
  filter: blur(60px);
}
.about__wordmark {
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--onyx-energy);
}
.about__wordmark .top {
  display: block;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
}
.about__wordmark .bottom {
  display: block;
  font-style: italic;
  color: var(--rooted-olive);
  font-size: clamp(3rem, 7vw, 5.5rem);
  margin-top: 0.25rem;
}

@media (max-width: 1024px) {
  .about { grid-template-columns: 1fr; }
}

/* =====================  FAQ  ===================== */
.faq__list { margin-top: 3rem; }
.faq__item {
  border-top: 1px solid var(--hairline);
  padding: 1.5rem 0;
}
.faq__item:last-child { border-bottom: 1px solid var(--hairline); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.375rem;
  line-height: 1.3;
  color: var(--onyx-energy);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 0.25rem 0;
  transition: color var(--dur-fast) var(--ease-quint);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-family: 'Public Sans', sans-serif;
  font-size: 1.25rem;
  color: var(--rooted-olive);
  transition: transform var(--dur-fast) var(--ease-quint);
  flex-shrink: 0;
}
.faq__item[open] summary::after { content: "−"; }
.faq__item summary:hover { color: var(--rooted-olive); }
.faq__answer {
  margin-top: 1rem;
  max-width: 65ch;
  color: var(--onyx-energy);
}

/* =====================  Newsletter  ===================== */
.newsletter {
  text-align: center;
}
.newsletter__form {
  display: flex;
  gap: 0;
  align-items: stretch;
  max-width: 540px;
  margin: 2.5rem auto 1rem;
  border-bottom: 1px solid var(--onyx-energy);
}
.newsletter__input {
  flex: 1;
  padding: 0.85rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--onyx-energy);
  background: transparent;
}
.newsletter__input::placeholder {
  color: var(--healing-taupe);
  font-style: italic;
}
.newsletter__btn {
  padding: 0.85rem 1.5rem;
  font-family: 'Public Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--onyx-energy);
  color: var(--sacred-sand);
  margin: 0.25rem 0;
  transition: background var(--dur-fast) var(--ease-quint);
}
.newsletter__btn:hover { background: var(--onyx-soft); }
.newsletter__note {
  font-size: 0.78rem;
  color: var(--healing-taupe);
  margin-top: 1rem;
  max-width: 540px;
  margin-inline: auto;
}
.newsletter__success {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--rooted-olive);
  margin-top: 2.5rem;
}

@media (max-width: 540px) {
  .newsletter__form { flex-direction: column; gap: 1rem; border-bottom: 0; }
  .newsletter__input {
    border-bottom: 1px solid var(--onyx-energy);
    padding-bottom: 0.65rem;
  }
  .newsletter__btn { padding: 1rem; }
}

/* =====================  Contact  ===================== */
.contact { text-align: center; }
.contact .email-link { display: inline-block; margin: 1.5rem auto 1.25rem; }

/* =====================  Footer  ===================== */
.footer {
  background: var(--onyx-energy);
  color: var(--sacred-sand);
  padding: 5rem 0 2.5rem;
  position: relative;
  z-index: 2;
}
.footer__top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(217, 209, 196, 0.12);
}
.footer__col h4 {
  font-family: 'Public Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.footer__col ul { list-style: none; }
.footer__col li + li { margin-top: 0.65rem; }
.footer__col a {
  color: rgba(217, 209, 196, 0.78);
  font-size: 0.95rem;
  transition: color var(--dur-fast) var(--ease-quint);
}
.footer__col a:hover { color: var(--bone); }

.footer__quote {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: rgba(217, 209, 196, 0.6);
  padding: 3rem 0;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  font-size: 0.78rem;
  color: rgba(217, 209, 196, 0.55);
  border-top: 1px solid rgba(217, 209, 196, 0.08);
  padding-top: 2rem;
}

@media (max-width: 768px) {
  .footer__top { grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 3rem; }
  .footer__bottom { flex-direction: column; gap: 0.75rem; }
}

/* =====================  Page-specific: privacy / terms  ===================== */
.legal-hero {
  padding: clamp(5rem, 9vw, 8rem) 0 clamp(3rem, 5vw, 4rem);
  border-bottom: 1px solid var(--hairline);
}
.legal-body {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(5rem, 9vw, 8rem);
}
.legal-body .container { max-width: 720px; }
.legal-body h2 {
  font-family: 'Public Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rooted-olive);
  margin: 3rem 0 1rem;
  font-weight: 500;
}
.legal-body h2:first-of-type { margin-top: 1rem; }
.legal-body p {
  font-size: 1.05rem;
  margin-top: 1.1rem;
  max-width: none;
}
.legal-body p em { color: var(--rooted-olive); }
.legal-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 0.5rem;
}
.legal-updated {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--healing-taupe);
  font-size: 1.05rem;
  margin-top: 0.5rem;
}

/* =====================  Page-specific: maika.html  ===================== */
.maika-hero {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 5rem clamp(1.25rem, 4vw, 2.5rem);
  background: var(--sacred-sand);
}
.maika-hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(closest-side, rgba(85, 74, 31, 0.08), transparent 70%);
  filter: blur(120px);
  pointer-events: none;
}
.maika-hero__inner { position: relative; z-index: 2; max-width: 880px; }
.maika-hero h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1;
  margin: 1.5rem 0;
}
.maika-hero .sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  color: var(--onyx-energy);
  margin-bottom: 2.5rem;
}
.maika-hero .caption {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.origin {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.origin__quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.2;
  color: var(--onyx-energy);
  text-wrap: balance;
}
.origin__quote-cap {
  display: block;
  margin-top: 2rem;
  font-style: normal;
  font-family: 'Public Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--healing-taupe);
}
.origin__body > * + * { margin-top: 1.25rem; }

@media (max-width: 1024px) {
  .origin { grid-template-columns: 1fr; gap: 3rem; }
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-top: 4rem;
}
.principle__num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--rooted-olive);
  display: block;
  margin-bottom: 0.75rem;
}
.principle h3 { margin-bottom: 0.75rem; }
@media (max-width: 1024px) { .principles { grid-template-columns: 1fr; gap: 3rem; } }

.two-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: 4rem;
  position: relative;
}
.two-products::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--hairline);
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .two-products { grid-template-columns: 1fr; gap: 3rem; }
  .two-products::before {
    top: 50%; bottom: auto; left: 0; right: 0;
    width: 100%; height: 1px;
  }
}
.product-block h3 { margin-bottom: 1rem; }

/* =====================  Reveal / motion  ===================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity var(--dur-slow) var(--ease-quint),
    transform var(--dur-slow) var(--ease-quint);
  will-change: transform, opacity;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero text + phone enter on load */
.hero__text > * { opacity: 0; transform: translateY(16px); animation: hero-in var(--dur-slow) var(--ease-quint) forwards; }
.hero__text > *:nth-child(1) { animation-delay: 60ms; }
.hero__text > *:nth-child(2) { animation-delay: 140ms; }
.hero__text > *:nth-child(3) { animation-delay: 220ms; }
.hero__text > *:nth-child(4) { animation-delay: 300ms; }
.hero__text > *:nth-child(5) { animation-delay: 380ms; }
.hero__text > *:nth-child(6) { animation-delay: 460ms; }
.hero__text > *:nth-child(7) { animation-delay: 540ms; }
.hero__text > *:nth-child(8) { animation-delay: 620ms; }
.hero__phone-wrapper { opacity: 0; transform: translateY(16px); animation: hero-in var(--dur-slow) var(--ease-quint) 200ms forwards; }
@keyframes hero-in {
  to { opacity: 1; transform: translateY(0); }
}

/* =====================  Reduced motion  ===================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero__phone { animation: none; }
  .hero__text > *,
  .hero__phone-wrapper { opacity: 1; transform: none; animation: none; }
  html { scroll-behavior: auto; }
}
