/* =========================================================
   Lumora Magic — styles.css
   Mobile-first. All design tokens live on :root.
   Breakpoints: 640px (sm) and 1024px (lg).
   ========================================================= */

/* ---------- 1. Tokens ---------- */

:root {
  /* Colour */
  --cream: #FDFBF0;
  --cream-light: #FFFDF4;
  --card: #FFFFFF;
  --mint-50: #EEF8EF;
  --mint-200: #D9F1DF;
  --butter: #FBF4CF;
  --peach: #FCE7C2;
  --gold-tint: #FDF3D8;
  --gold-line: #EEDDA6;
  --green: #3F7A2A;
  --green-dark: #2C5A1D;
  --ink: #1F3A24;
  --body: #4B5E4D;
  --muted: #667566;
  --gold: #D4A72C;
  --gold-text: #7A5C0C;
  --line: #DCEBD8;
  --soft-line: #B9D3AC;
  --field-line: #C3D9B8;
  --result-bg: #FFFDF6;
  --result-line: #E9E2B8;
  --wordmark-sub: #4B6B3A;
  --footer: #2C4A2F;
  --footer-text: #EAF3E4;
  --footer-muted: #C4D6BD;
  --footer-script: #DDEFC9;
  --footer-gold: #F2D98A;
  --error: #B03A2E;

  /* Type families */
  --font-script: 'Great Vibes', 'Brush Script MT', cursive;
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Karla', 'Helvetica Neue', Arial, sans-serif;

  /* Type scale — interpolated between 360px and 1440px viewports */
  --fs-h1: clamp(2.75rem, 1.917rem + 3.704vw, 5.25rem);        /* 44 → 84 */
  --fs-h1-script: clamp(3.5rem, 2.5rem + 4.444vw, 6.5rem);     /* 56 → 104 */
  --fs-h2: clamp(2.375rem, 1.917rem + 2.037vw, 3.75rem);       /* 38 → 60 */
  --fs-h2-script: clamp(3rem, 2.5rem + 2.222vw, 4.5rem);       /* 48 → 72 */
  --fs-h3: clamp(1.5625rem, 1.479rem + 0.37vw, 1.8125rem);     /* 25 → 29 */
  --fs-lede: clamp(1.0625rem, 1.021rem + 0.185vw, 1.1875rem);  /* 17 → 19 */
  --fs-body: clamp(1rem, 0.979rem + 0.093vw, 1.0625rem);       /* 16 → 17 */
  --fs-digit: clamp(2.75rem, 2.375rem + 1.667vw, 3.875rem);    /* 44 → 62 */
  --fs-result: clamp(5.5rem, 4.417rem + 4.815vw, 8.75rem);     /* 88 → 140 */
  --fs-result-title: clamp(2rem, 1.75rem + 1.111vw, 2.75rem);  /* 32 → 44 */
  --fs-empty-title: clamp(1.625rem, 1.5rem + 0.556vw, 2rem);   /* 26 → 32 */

  /* Rhythm and shape */
  --container: 1248px;
  --gutter: clamp(20px, 6.7vw, 96px);
  --space-section: clamp(4.5rem, 3.5rem + 4.444vw, 7.5rem);    /* 72 → 120 */
  --header-h: 72px;
  --radius-card: 24px;
  --radius-panel: 32px;
  --radius-field: 14px;
  --shadow-card: 0 10px 30px rgba(63, 122, 42, 0.06);
  --shadow-panel: 0 20px 50px rgba(63, 122, 42, 0.12);
  --shadow-hero: 0 30px 80px rgba(63, 122, 42, 0.18);
}

@media (min-width: 1024px) {
  :root { --header-h: 96px; }
}

/* ---------- 2. Base ---------- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--body);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, p, figure, blockquote, dl, dd { margin: 0; }

ul, ol { margin: 0; padding: 0; list-style: none; }

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

a { color: var(--green); }

button { font: inherit; }

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

[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

.skip-link {
  position: absolute;
  left: 16px;
  top: -200px;
  z-index: 100;
  background: var(--cream-light);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.15s ease;
}

.skip-link:focus-visible { top: 12px; }

/* ---------- 3. Layout ---------- */

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

.section { padding-block: var(--space-section); }

/* Booking button closing a page section. */
.section__cta { margin-top: 48px; text-align: center; }
.section__cta--start { margin-top: 32px; text-align: left; }

.section__head { display: grid; gap: 20px; }

.section__head--center { text-align: center; justify-items: center; }

.section__head-text {
  max-width: 420px;
  color: var(--body);
}

@media (min-width: 1024px) {
  .section__head {
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 48px;
  }
  .section__head--center { grid-template-columns: 1fr; }
}

/* ---------- 4. Typography ---------- */

.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--green);
  line-height: 1.15;
}

.script--block { display: block; }

.eyebrow {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 1.4;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 18px;
}

.section__head--center .eyebrow { justify-content: center; }

.eyebrow__spark { color: var(--gold); flex: none; margin-top: 0.16em; }

.h1 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: var(--fs-h1);
  line-height: 1;
  color: var(--ink);
  margin-bottom: 28px;
}

.h1__line { display: block; }

.h1__script {
  display: block;
  font-size: var(--fs-h1-script);
}

.h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: var(--fs-h2);
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 20px;
}

.h2__serif { display: inline; }

.h2__serif--block { display: block; }

.script--h2 { font-size: var(--fs-h2-script); }

/* ---------- 5. Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 32px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn--primary {
  background: var(--green);
  color: var(--cream-light);
}

.btn--primary:hover { background: var(--green-dark); }

.btn--secondary {
  background: var(--cream-light);
  border-color: var(--soft-line);
  color: var(--green-dark);
}

.btn--secondary:hover { border-color: var(--green); }

.btn--compact { min-height: 48px; padding: 0 24px; }

.btn--block { width: 100%; }

/* ---------- 6. Header and navigation ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream-light);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease;
}

.header--scrolled { box-shadow: 0 6px 24px rgba(63, 122, 42, 0.08); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
}

.wordmark {
  display: block;
  text-align: center;
  text-decoration: none;
  line-height: 1;
}

.wordmark__script {
  display: block;
  font-family: var(--font-script);
  font-size: 2.375rem;
  line-height: 1.15;
  color: var(--green);
}

.wordmark__sub {
  display: block;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 5px;
  text-indent: 5px;
  color: var(--wordmark-sub);
}

.wordmark__logo { max-height: 56px; width: auto; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle__bars {
  display: grid;
  gap: 5px;
  width: 20px;
}

.nav-toggle__bars span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--cream-light);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 24px rgba(63, 122, 42, 0.08);
  padding: 8px var(--gutter) 24px;
}

.nav.is-open { display: block; }

.nav__link {
  display: block;
  padding: 14px 0;
  min-height: 48px;
  font-size: 1.0625rem;
  color: var(--ink);
  text-decoration: none;
}

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

.nav__link[aria-current="page"] { color: var(--green); font-weight: 600; }

.nav__cta { display: flex; width: 100%; margin-top: 16px; }

@media (min-width: 1024px) {
  .nav-toggle { display: none; }

  .nav,
  .nav.is-open {
    display: flex;
    align-items: center;
    gap: 36px;
    position: static;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .nav__list {
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .nav__link {
    padding: 0;
    min-height: 0;
    font-size: 0.9375rem;
  }

  .nav__cta { width: auto; margin-top: 0; }

  .wordmark__script { font-size: 2.875rem; }
}

/* ---------- 7. Hero ---------- */

.hero {
  position: relative;
  background-color: var(--cream);
  background-image:
    radial-gradient(60vw 48vw at 8% 4%, var(--peach) 0%, transparent 62%),
    radial-gradient(56vw 46vw at 92% 96%, var(--mint-200) 0%, transparent 64%);
  padding-block: clamp(3.5rem, 2rem + 6.67vw, 8.75rem);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  gap: 48px;
  align-items: center;
}

.hero__lede {
  max-width: 520px;
  font-size: var(--fs-lede);
  line-height: 1.65;
  color: var(--body);
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__actions .btn { width: 100%; }

.hero__media {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin-inline: auto;
}

.hero__logo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 36px;
  box-shadow: var(--shadow-hero);
}

.hero__logo-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  text-align: center;
  background: var(--card);
  border: 2px dashed var(--soft-line);
}

.hero__logo-fallback-title {
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 1px;
}

.hero__logo-fallback-path {
  font-size: 0.875rem;
  color: var(--muted);
  word-break: break-word;
}

@media (min-width: 640px) {
  .hero__actions { flex-direction: row; flex-wrap: wrap; }
  .hero__actions .btn { width: auto; }
}

@media (min-width: 1024px) {
  /* The image track stays fluid so the three H1 lines and the two hero
     buttons always keep their own line at every desktop width. */
  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, clamp(300px, 30vw, 470px));
    gap: 72px;
  }
  .hero__media { max-width: 470px; margin-inline: 0; }
}

/* Sparkles — the page's one decorative animation */

.sparkles {
  position: absolute;
  inset: -6%;
  pointer-events: none;
  color: var(--gold);
}

.sparkle {
  position: absolute;
  opacity: 0.35;
  animation: twinkle 4s ease-in-out infinite;
}

.sparkle--1 { top: 2%;  left: -2%;  animation-duration: 4.2s; animation-delay: 0s; }
.sparkle--2 { top: 16%; right: 2%;  animation-duration: 3.2s; animation-delay: 0.6s; }
.sparkle--3 { top: 46%; right: -3%; animation-duration: 5s;   animation-delay: 1.2s; }
.sparkle--4 { bottom: 20%; right: 8%; animation-duration: 3.6s; animation-delay: 1.8s; }
.sparkle--5 { bottom: 1%; left: 12%; animation-duration: 4.6s; animation-delay: 0.9s; }
.sparkle--6 { bottom: 34%; left: -3%; animation-duration: 3.4s; animation-delay: 2.4s; }
.sparkle--7 { top: 30%; left: 4%;   animation-duration: 4.8s; animation-delay: 1.5s; }

@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50%      { opacity: 0.95; transform: scale(1.15); }
}

/* ---------- 8. Numbers strip ---------- */

.numbers {
  background: var(--mint-50);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(3rem, 2.4rem + 2.6vw, 5rem);
}

.numbers__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 16px;
  text-align: center;
}

.numbers__digit {
  display: block;
  font-family: var(--font-serif);
  font-variant-numeric: lining-nums;
  font-weight: 600;
  font-size: var(--fs-digit);
  line-height: 1.1;
  color: var(--green);
}

.numbers__label {
  display: block;
  font-size: 0.875rem;
  letter-spacing: 1px;
  color: var(--body);
}

@media (min-width: 1024px) {
  .numbers__list { grid-template-columns: repeat(9, 1fr); gap: 16px 8px; }
}

/* ---------- 9. Cards (services and testimonials) ---------- */

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 64px;
}

.cards--quotes { margin-top: 56px; }

.cards__cell { display: flex; }

.card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--shadow-card);
}

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin-bottom: 24px;
  flex: none;
}

.card__icon--green { background: var(--mint-50); color: var(--green); }

.card__icon--gold { background: var(--gold-tint); color: var(--gold-text); }

.card__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: var(--fs-h3);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 12px;
}

.card__text { flex: 1 1 auto; margin-bottom: 24px; }

.card__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  margin-bottom: 18px;
}

.card__price { font-weight: 600; color: var(--green-dark); }

.card__duration { color: var(--muted); font-size: 0.9375rem; }

.card__link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 44px;
  color: var(--green);
  font-weight: 500;
  text-decoration: none;
}

.card__link:hover { text-decoration: underline; color: var(--green-dark); }

@media (min-width: 640px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .cards--quotes { grid-template-columns: 1fr; }
}

@media (min-width: 1024px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
  .cards--quotes { grid-template-columns: repeat(3, 1fr); }
}

/* Testimonials */

.quote { gap: 0; }

.quote__sparks {
  display: flex;
  gap: 6px;
  color: var(--gold);
  margin-bottom: 20px;
}

.quote__text {
  flex: 1 1 auto;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 20px;
}

.quote__cite { font-size: 0.875rem; color: var(--body); }

/* ---------- 10. Life path calculator ---------- */

.calc {
  display: grid;
  gap: 40px;
  border-radius: var(--radius-panel);
  padding: clamp(32px, 5vw, 80px);
  background: linear-gradient(120deg, var(--peach) 0%, var(--butter) 45%, var(--mint-200) 100%);
}

.calc__text { max-width: 460px; margin-bottom: 32px; }

.calc__field { max-width: 360px; }

.result {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 420px;
  height: 100%;
  background: var(--result-bg);
  border: 1px solid var(--result-line);
  border-radius: 28px;
  padding: clamp(28px, 5vw, 48px);
  box-shadow: var(--shadow-panel);
}

.result__sparks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gold);
  margin-bottom: 24px;
}

.result__empty-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: var(--fs-empty-title);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 10px;
}

.result__empty-text { color: var(--body); }

.result__number {
  font-family: var(--font-serif);
  font-variant-numeric: lining-nums;
  font-weight: 600;
  font-size: var(--fs-result);
  line-height: 1;
  color: var(--green);
}

.result__title {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: var(--fs-result-title);
  line-height: 1.15;
  color: var(--green-dark);
  margin: 8px 0 16px;
}

.result__meaning {
  max-width: 380px;
  margin-bottom: 28px;
  color: var(--body);
}

@media (min-width: 1024px) {
  .calc { grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
}

/* ---------- 11. How it works ---------- */

.steps {
  display: grid;
  gap: 48px;
  margin-top: 64px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step__badge {
  font-variant-numeric: lining-nums;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 2.125rem;
  line-height: 1;
  margin-bottom: 24px;
}

.step__badge--mint {
  background: var(--mint-50);
  border: 1px solid var(--soft-line);
  color: var(--green);
}

.step__badge--gold {
  background: var(--gold-tint);
  border: 1px solid var(--gold-line);
  color: var(--gold-text);
}

.step__title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 10px;
}

.step__text { max-width: 320px; }

@media (min-width: 1024px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- 12. About ---------- */

.about { background: var(--mint-50); }

.about__inner { display: grid; gap: 48px; }

.about__photo {
  width: 100%;
  height: 400px;
  border-radius: 260px 260px 28px 28px;
  object-fit: cover;
}

.about__photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  background: var(--card);
  border: 2px dashed var(--soft-line);
  color: var(--muted);
  letter-spacing: 1px;
}

.about__lede {
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 60ch;
  margin-bottom: 40px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--soft-line);
}

.stat__value {
  font-family: var(--font-serif);
  font-variant-numeric: lining-nums;
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 1.1;
  color: var(--green);
}

.stat__label { font-size: 0.875rem; color: var(--body); margin: 0; }

@media (min-width: 1024px) {
  .about__inner { grid-template-columns: 1fr 1fr; gap: 96px; align-items: center; }
  .about__photo { height: 540px; }
}

/* ---------- 13. Booking ---------- */

.booking {
  display: grid;
  gap: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  padding: 32px 20px;
  background: linear-gradient(135deg, var(--butter) 0%, var(--mint-200) 100%);
}

.booking__text { max-width: 420px; margin-bottom: 32px; }

.contact { display: grid; gap: 10px; }

.contact__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--ink);
  text-decoration: none;
}

.contact__link:hover { color: var(--green-dark); text-decoration: underline; }

.form { display: grid; gap: 20px; }

.form__row { display: grid; gap: 20px; }

.field { display: grid; gap: 8px; }

.label {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--ink);
}

.input {
  width: 100%;
  min-height: 52px;
  padding: 12px 16px;
  background: var(--card);
  border: 1px solid var(--field-line);
  border-radius: var(--radius-field);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.4;
  color: var(--ink);
}

.input::placeholder { color: var(--muted); }

.input--lg { min-height: 56px; }

.select { padding-right: 12px; }  /* keeps the native dropdown indicator */

.textarea { resize: none; min-height: 120px; }

.input[aria-invalid="true"] { border-color: var(--error); }

.error {
  color: var(--error);
  font-size: 0.875rem;
}

/* Spam trap — off-screen, never focusable, hidden from assistive technology. */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__help { font-size: 0.875rem; color: var(--muted); }

.form__status { font-size: 0.9375rem; color: var(--ink); }

.form__status:empty { display: none; }

.form__status a { color: var(--green-dark); }

@media (min-width: 640px) {
  .booking { padding: 48px 40px; }
  .form__row { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .booking { grid-template-columns: 1fr 1fr; gap: 80px; padding: 72px 80px; align-items: center; }
}

/* ---------- 14. Footer ---------- */

.footer {
  background: var(--footer);
  color: var(--footer-text);
  padding-block: 56px;
}

.footer__top {
  display: grid;
  gap: 28px;
  margin-bottom: 36px;
}

.footer__wordmark { line-height: 1; }

.footer__script {
  display: block;
  font-family: var(--font-script);
  font-size: 2.25rem;
  line-height: 1.15;
  color: var(--footer-script);
}

.footer__sub {
  display: block;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 5px;
  text-indent: 5px;
  color: var(--footer-gold);
}

.footer__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
}

.footer__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--footer-text);
  text-decoration: none;
}

.footer__link:hover { text-decoration: underline; }

.footer :focus-visible { outline-color: var(--footer-text); }

.footer__disclaimer {
  max-width: 820px;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--footer-muted);
  margin-bottom: 14px;
}

.footer__copy { font-size: 0.8125rem; color: var(--footer-muted); }

@media (min-width: 640px) {
  .footer__top {
    grid-template-columns: auto 1fr;
    align-items: center;
    justify-content: space-between;
  }
  .footer__nav { justify-self: end; }
}

/* ---------- 15. Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .sparkle {
    animation: none;
    opacity: 0.55;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
