/* ====================================================
   MANNA — Landing Page
   Aesthetic: Sacred Editorial / Quiet Dawn
   Typography: Cormorant Garamond + Source Sans 3
   ==================================================== */

/* ── Design Tokens ── */
:root {
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;

  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
  --sp-5: 20px; --sp-6: 24px; --sp-8: 32px; --sp-10: 40px;
  --sp-12: 48px; --sp-16: 64px; --sp-20: 80px; --sp-24: 96px;

  --r-sm: 8px; --r-md: 12px; --r-lg: 16px; --r-xl: 20px; --r-full: 9999px;

  --ease: cubic-bezier(0.25, 0.1, 0.25, 1.0);
  --ease-emph: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 200ms; --dur-std: 300ms; --dur-emph: 500ms;

  --max-w: 1120px;
  --pad: 20px;
}

/* ── Light Theme (default) ── */
:root,
[data-theme="light"] {
  color-scheme: light;
  --bg: #FAF8F5;
  --bg-alt: #F0EAE2;
  --surface: #FFFFFF;
  --primary: #996B1D;
  --primary-hover: #7D5716;
  --primary-soft: rgba(153, 107, 29, 0.07);
  --ink: #2C2420;
  --ink-2: #635A52;
  --ink-3: #9A9189;
  --border: #E0D8CE;
  --border-sub: #EDE7DF;
  --shadow-sm: 0 1px 3px rgba(44,36,32,0.06);
  --shadow-md: 0 4px 16px rgba(44,36,32,0.10);
  --shadow-lg: 0 8px 32px rgba(44,36,32,0.14);
  --shadow-hero: 0 16px 56px -8px rgba(44,36,32,0.18);
  --nav-bg: rgba(250,248,245,0.82);
  --nav-border: rgba(224,216,206,0.5);
  --quote-bg: rgba(153,107,29,0.04);
  --quote-border: rgba(153,107,29,0.25);
  /* inverted section */
  --inv-bg: #1C1A17;
  --inv-surface: #272420;
  --inv-ink: #F5F2ED;
  --inv-ink-2: #B5ADA3;
  --inv-ink-3: #7A7268;
  --inv-border: #3A3530;
  --inv-primary: #E8C46D;
  --inv-primary-soft: rgba(232,196,109,0.10);
  /* CTA */
  --cta-from: #8B6914;
  --cta-via: #7D5716;
  --cta-to: #6B5010;
}

/* ── Dark Theme ── */
[data-theme="dark"] {
  color-scheme: dark;
  --bg: #1A1816;
  --bg-alt: #222019;
  --surface: #2A2623;
  --primary: #E8C46D;
  --primary-hover: #D4AD4A;
  --primary-soft: rgba(232,196,109,0.08);
  --ink: #F5F2ED;
  --ink-2: #B5ADA3;
  --ink-3: #7A7268;
  --border: #3A3530;
  --border-sub: #2E2A26;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.15);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.22);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.30);
  --shadow-hero: 0 16px 56px -8px rgba(0,0,0,0.40);
  --nav-bg: rgba(26,24,22,0.82);
  --nav-border: rgba(58,53,48,0.5);
  --quote-bg: rgba(232,196,109,0.04);
  --quote-border: rgba(232,196,109,0.20);
  --inv-bg: #252220;
  --inv-surface: #302C28;
  --inv-ink: #F5F2ED;
  --inv-ink-2: #B5ADA3;
  --inv-ink-3: #7A7268;
  --inv-border: #3A3530;
  --inv-primary: #E8C46D;
  --inv-primary-soft: rgba(232,196,109,0.10);
  --cta-from: #5A4412;
  --cta-via: #4A3810;
  --cta-to: #3A2C0C;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background-color var(--dur-std) var(--ease),
              color var(--dur-std) var(--ease);
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

/* ── Language Toggle Visibility ── */
[data-lang="en"] .lang-es { display: none !important; }
[data-lang="es"] .lang-en { display: none !important; }

/* ── Theme Toggle Icon Visibility ── */
[data-theme="light"] .theme-icon-light { display: none; }
[data-theme="dark"]  .theme-icon-dark  { display: none; }

/* ── Scroll Animations ── */
.anim-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-emph) var(--ease-emph),
              transform var(--dur-emph) var(--ease-emph);
}
.anim-up.is-visible { opacity: 1; transform: translateY(0); }
.anim-d1 { transition-delay: 80ms; }
.anim-d2 { transition-delay: 160ms; }
.anim-d3 { transition-delay: 240ms; }
.anim-d4 { transition-delay: 320ms; }
.anim-d5 { transition-delay: 400ms; }

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

/* ── Shared: Section Wrap ── */
.section-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Shared: Overline ── */
.overline {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--sp-5);
}

/* ── Shared: Heading ── */
.heading-lg {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: var(--sp-12);
  max-width: 680px;
}

/* ── Shared: Body Large ── */
.body-lg {
  font-size: clamp(16px, 2.5vw, 19px);
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 640px;
}

/* ── Shared: Text Center ── */
.tc { text-align: center; margin-left: auto; margin-right: auto; }

/* ── Shared: Store Badge ── */
.store-badge {
  display: inline-block;
  transition: transform var(--dur-fast) var(--ease),
              opacity var(--dur-fast) var(--ease);
}
.store-badge:hover { transform: translateY(-2px); opacity: 0.88; }
.store-badge img   { height: 52px; width: auto; }

/* ── Noise Texture (reusable) ── */
.benefits-texture,
.cta-texture {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  pointer-events: none;
  z-index: 0;
}


/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: var(--sp-4) var(--pad);
  transition: background-color var(--dur-std) var(--ease),
              border-color var(--dur-std) var(--ease);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}
.navbar.is-scrolled {
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.nav-logo img { border-radius: var(--r-sm); }
.nav-wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-3);
}
.lang-opt {
  cursor: pointer;
  padding: var(--sp-2) var(--sp-2);
  border-radius: var(--r-sm);
  min-height: 40px; min-width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease);
}
.lang-opt.active { color: var(--ink); background: var(--primary-soft); }
.lang-opt:hover  { color: var(--ink); }
.lang-sep { color: var(--border); user-select: none; }

/* Theme toggle */
.theme-toggle {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  color: var(--ink-2);
  background: var(--primary-soft);
  transition: background var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease);
}
.theme-toggle:hover { background: var(--border-sub); color: var(--ink); }

/* Nav CTA */
.nav-cta {
  display: none;
  font-weight: 600;
  font-size: 14px;
  padding: var(--sp-2) var(--sp-5);
  background: var(--primary);
  color: #FFFFFF;
  border-radius: var(--r-full);
  transition: background var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease);
}
[data-theme="dark"] .nav-cta { color: #1A1816; }
.nav-cta:hover { background: var(--primary-hover); transform: translateY(-1px); }

@media (min-width: 640px) {
  .nav-cta { display: block; }
}


/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(80px + var(--sp-10)) var(--pad) var(--sp-12);
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

/* Golden glow */
.hero-glow {
  position: absolute;
  top: 30%;
  right: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center,
    rgba(153,107,29,0.07) 0%,
    rgba(153,107,29,0.02) 40%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
}
[data-theme="dark"] .hero-glow {
  background: radial-gradient(ellipse at center,
    rgba(232,196,109,0.06) 0%,
    rgba(232,196,109,0.02) 40%,
    transparent 70%);
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .hero-inner { grid-template-columns: 1fr 1fr; gap: var(--sp-16); }
}

.hero-content { text-align: center; }
@media (min-width: 768px) { .hero-content { text-align: left; } }

.hero-icon {
  margin: 0 auto var(--sp-8);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}
@media (min-width: 768px) { .hero-icon { margin: 0 0 var(--sp-8); } }

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(42px, 9vw, 68px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: var(--sp-6);
}
.hero-title .dot { color: var(--primary); }
.hero-title-light {
  font-weight: 400;
  display: block;
  margin-top: 0.05em;
}

.hero-sub {
  font-size: clamp(16px, 3vw, 20px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 460px;
  margin-bottom: var(--sp-10);
}
@media (max-width: 767px) { .hero-sub { margin-left: auto; margin-right: auto; } }

.hero-badges {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 768px) { .hero-badges { justify-content: flex-start; } }

/* Hero phone screenshot */
.hero-phone {
  display: flex;
  justify-content: center;
}
.hero-phone-img {
  width: 100%;
  max-width: 300px;
  border-radius: var(--r-xl);
  filter: drop-shadow(0 24px 48px rgba(44,36,32,0.18));
}
[data-theme="dark"] .hero-phone-img {
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.40));
}
@media (min-width: 768px) {
  .hero-phone-img {
    max-width: 340px;
    transform: perspective(900px) rotateY(-3deg) rotateX(1deg);
    transition: transform var(--dur-emph) var(--ease-emph);
  }
  .hero-phone:hover .hero-phone-img {
    transform: perspective(900px) rotateY(-1deg) rotateX(0.5deg);
  }
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  color: var(--ink-3);
  font-size: 24px;
  animation: float 2.4s ease-in-out infinite;
  z-index: 1;
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
  50%      { transform: translateX(-50%) translateY(8px); opacity: 0.9; }
}


/* ═══════════════════════════════════════
   WHAT ARE CHRISTIAN AFFIRMATIONS
   ═══════════════════════════════════════ */
.what-are {
  background: var(--bg-alt);
  padding: var(--sp-24) var(--pad);
  position: relative;
}
/* Subtle paper texture */
.what-are::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  pointer-events: none;
  z-index: 0;
}

.what-are-intro { margin-bottom: var(--sp-12); }
.what-are-explain { margin-top: var(--sp-12); }
.what-are-explain em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--primary);
}

/* Affirmation Example Cards */
.affirm-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}
@media (min-width: 768px) {
  .affirm-grid { grid-template-columns: repeat(3, 1fr); }
}

.affirm-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  transition: transform var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
}
.affirm-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.affirm-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: var(--sp-5);
}

.affirm-ref {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

/* Scripture Pull-Quote */
.scripture {
  margin-top: var(--sp-16);
  padding: var(--sp-8) var(--sp-8) var(--sp-8) var(--sp-8);
  background: var(--quote-bg);
  border-left: 3px solid var(--quote-border);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  max-width: 620px;
}

.scripture p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(19px, 3.5vw, 26px);
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: var(--sp-4);
}

.scripture cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.02em;
}


/* ═══════════════════════════════════════
   STATS
   ═══════════════════════════════════════ */
.stats {
  background: var(--surface);
  padding: var(--sp-10) var(--pad);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
}
@media (min-width: 640px) { .stats-inner { gap: var(--sp-10); } }

.stat { text-align: center; padding: var(--sp-2) var(--sp-4); }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 5vw, 38px);
  color: var(--primary);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.stat-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-3);
}
.stat-sep {
  width: 1px; height: 40px;
  background: var(--border);
  display: none;
}
@media (min-width: 640px) { .stat-sep { display: block; } }


/* ═══════════════════════════════════════
   SHOWCASE (Screenshots)
   ═══════════════════════════════════════ */
.showcase {
  background: var(--bg);
  padding: var(--sp-24) var(--pad);
  overflow: hidden;
}
.showcase-sub {
  max-width: 560px;
  margin-bottom: var(--sp-16);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-8) var(--sp-6);
  justify-items: center;
}
@media (min-width: 768px) {
  .showcase-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-8);
  }
}

.showcase-item { text-align: center; }
.showcase-img {
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  transition: transform var(--dur-emph) var(--ease-emph);
}
.showcase-item:hover .showcase-img {
  transform: translateY(-6px);
}

/* Staggered offset on desktop */
@media (min-width: 768px) {
  .showcase-item:nth-child(even) { padding-top: var(--sp-10); }
  .showcase-img { max-width: 240px; }
}

.showcase-caption {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-3);
  margin-top: var(--sp-5);
  letter-spacing: 0.005em;
}


/* ═══════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════ */
.features {
  background: var(--bg-alt);
  padding: var(--sp-24) var(--pad);
  position: relative;
}
.features::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}
@media (min-width: 640px)  { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: 1fr 1fr 1fr; } }

.feat-card {
  position: relative;
  z-index: 1;
  padding: var(--sp-8);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  transition: transform var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
}
.feat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feat-icon {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: var(--sp-5);
  display: block;
}

.feat-card h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: var(--sp-3);
}
.feat-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
}


/* ═══════════════════════════════════════
   BENEFITS (Inverted Section)
   ═══════════════════════════════════════ */
.benefits {
  background: var(--inv-bg);
  padding: var(--sp-24) var(--pad);
  position: relative;
  overflow: hidden;
}

.benefits-wrap { position: relative; z-index: 1; }

.benefits .overline     { color: var(--inv-primary); }
.benefits .heading-lg   { color: var(--inv-ink); }

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}
@media (min-width: 640px) { .benefits-grid { grid-template-columns: 1fr 1fr; } }

.ben-card {
  padding: var(--sp-8);
  background: var(--inv-surface);
  border: 1px solid var(--inv-border);
  border-radius: var(--r-xl);
  transition: border-color var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
}
.ben-card:hover {
  border-color: rgba(232,196,109,0.25);
  box-shadow: 0 0 0 1px rgba(232,196,109,0.08);
}

.ben-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--inv-primary-soft);
  border-radius: var(--r-md);
  font-size: 22px;
  color: var(--inv-primary);
  margin-bottom: var(--sp-5);
}

.ben-card h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  color: var(--inv-ink);
  margin-bottom: var(--sp-3);
}
.ben-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--inv-ink-2);
}


/* ═══════════════════════════════════════
   CTA
   ═══════════════════════════════════════ */
.cta {
  background: linear-gradient(140deg, var(--cta-from) 0%, var(--cta-via) 50%, var(--cta-to) 100%);
  color: #FFFFFF;
  padding: var(--sp-24) var(--pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-inner { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }

.cta-heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 6.5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-5);
}

.cta-sub {
  font-weight: 500;
  font-size: 18px;
  opacity: 0.85;
  margin-bottom: var(--sp-12);
}

.cta-badges {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
}
.cta-badges .store-badge img { height: 56px; }


/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: var(--sp-10) var(--pad);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  margin-bottom: var(--sp-5);
}
.footer-brand img { border-radius: var(--r-sm); }

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
  margin-bottom: var(--sp-5);
}
.footer-link {
  font-size: 13px;
  color: var(--ink-3);
  padding: var(--sp-2) var(--sp-1);
  transition: color var(--dur-fast) var(--ease);
}
.footer-link:hover { color: var(--primary); }
.footer-sep { color: var(--border); font-size: 13px; user-select: none; }

.footer-copy {
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: var(--sp-2);
}
.footer-tagline {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0.03em;
  opacity: 0.6;
  text-transform: uppercase;
}
