/* ============================================================
   Lunar Retail Ltd — Design System
   A sleek, lunar-inspired identity: deep navy, silver, soft grey.
   ============================================================ */

:root {
  /* Brand palette — monochrome black & white */
  --navy-900: #000000;   /* pure black */
  --navy-800: #0a0a0a;
  --navy-700: #141414;
  --navy-600: #1f1f1f;
  --navy-500: #2b2b2b;

  --silver-100: #f5f5f5;
  --silver-200: #ebebeb;
  --silver-300: #d6d6d6;
  --silver-400: #a8a8a8;
  --silver-500: #777777;

  --accent: #888888;      /* neutral grey accent */
  --accent-soft: #cfcfcf;
  --accent-glow: rgba(0, 0, 0, 0.14);

  --white: #ffffff;
  --ink: #0a0a0a;
  --muted: #5c5c5c;

  /* Surfaces */
  --bg: #ffffff;
  --bg-alt: #f5f5f5;
  --border: #e6e6e6;

  /* Typography */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --maxw: 1180px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(10, 15, 31, 0.06), 0 4px 16px rgba(10, 15, 31, 0.05);
  --shadow-md: 0 12px 40px rgba(10, 15, 31, 0.10);
  --shadow-lg: 0 30px 80px rgba(10, 15, 31, 0.18);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----------------------------------------------------------- */
/* Reset & base                                                */
/* ----------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

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

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); }

p { color: var(--muted); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.section {
  padding: clamp(64px, 9vw, 120px) 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.lede {
  font-size: 1.15rem;
  color: var(--muted);
  margin-top: 18px;
}

/* ----------------------------------------------------------- */
/* Buttons                                                     */
/* ----------------------------------------------------------- */
.btn {
  --pad-y: 14px;
  --pad-x: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--pad-y) var(--pad-x);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}

.btn svg { width: 16px; height: 16px; }

.btn-primary {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  color: var(--white);
  box-shadow: 0 8px 26px rgba(10, 15, 31, 0.22);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(10, 15, 31, 0.30);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--silver-300);
}
.btn-ghost:hover {
  border-color: var(--navy-700);
  transform: translateY(-2px);
}

/* Light buttons on dark surfaces */
.on-dark .btn-primary {
  background: var(--white);
  color: var(--navy-900);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.on-dark .btn-primary:hover {
  background: var(--silver-100);
}
.on-dark .btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}
.on-dark .btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.04);
}

/* ----------------------------------------------------------- */
/* Header / Navigation                                         */
/* ----------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 20px rgba(10, 15, 31, 0.04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.08rem;
  color: var(--ink);
}
.brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--ink);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* logo is black on white → invert to silver-white on the dark chip */
  filter: invert(1);
}
.brand__name { line-height: 1; }
.brand__name small {
  display: block;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver-500);
  margin-top: 3px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav__links a {
  display: inline-block;
  padding: 9px 16px;
  font-size: 0.94rem;
  font-weight: 500;
  color: #2b3447;
  border-radius: 999px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav__links a:hover { background: var(--silver-100); color: var(--ink); }
.nav__links a.active { color: var(--ink); font-weight: 600; }

.nav__cta { display: flex; align-items: center; gap: 14px; }

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 12px;
  cursor: pointer;
  position: relative;
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav__toggle span { top: 50%; margin-top: -1px; }
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }
.nav__toggle.open span { background: transparent; }
.nav__toggle.open span::before { transform: translateX(-50%) translateY(6px) rotate(45deg); }
.nav__toggle.open span::after { transform: translateX(-50%) translateY(-6px) rotate(-45deg); }

/* Mobile menu is hidden on desktop; revealed only in the mobile breakpoint */
.mobile-menu { display: none; }

/* ----------------------------------------------------------- */
/* Hero                                                        */
/* ----------------------------------------------------------- */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 600px at 75% -10%, rgba(255, 255, 255, 0.14), transparent 60%),
    radial-gradient(900px 500px at 10% 110%, rgba(60, 60, 60, 0.55), transparent 55%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-700) 55%, var(--navy-800) 100%);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.hero::after {
  /* subtle starfield */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1px 1px at 70% 20%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 85% 60%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 40% 75%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1.5px 1.5px at 55% 45%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 30% 55%, rgba(255,255,255,0.35), transparent);
  opacity: 0.7;
  z-index: -1;
}

.hero__moon {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255,255,255,0.18), rgba(255,255,255,0.05) 45%, transparent 70%);
  filter: blur(2px);
  z-index: -1;
  animation: floaty 14s ease-in-out infinite;
}
.hero__moon::before {
  content: "";
  position: absolute;
  inset: 30%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(22px); }
}

.hero__inner {
  position: relative;
  padding: clamp(80px, 13vw, 150px) 0 clamp(80px, 12vw, 140px);
  max-width: 780px;
}
.hero h1 { color: var(--white); margin-top: 22px; }
.hero h1 .grad {
  background: linear-gradient(120deg, #ffffff 0%, var(--accent-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__sub {
  font-size: 1.2rem;
  color: var(--silver-300);
  margin-top: 26px;
  max-width: 620px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}
.hero .eyebrow { color: var(--accent-soft); }

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 56px;
  padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.hero__stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.hero__stat span {
  font-size: 0.86rem;
  color: var(--silver-400);
}

/* ----------------------------------------------------------- */
/* Page hero (interior pages)                                  */
/* ----------------------------------------------------------- */
.page-hero {
  position: relative;
  background:
    radial-gradient(800px 400px at 80% -20%, rgba(255, 255, 255, 0.10), transparent 60%),
    linear-gradient(160deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  padding: clamp(72px, 11vw, 128px) 0 clamp(56px, 8vw, 96px);
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 25% 40%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 70% 25%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1.4px 1.4px at 60% 70%, rgba(255,255,255,0.45), transparent);
  opacity: 0.6;
}
.page-hero__inner { position: relative; max-width: 760px; }
.page-hero h1 { color: var(--white); margin-top: 18px; }
.page-hero p { color: var(--silver-300); font-size: 1.15rem; margin-top: 20px; max-width: 620px; }
.page-hero .eyebrow { color: var(--accent-soft); }

.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--silver-400);
  margin-bottom: 26px;
}
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { opacity: 0.5; }

/* ----------------------------------------------------------- */
/* Intro / split blocks                                        */
/* ----------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.split--text p + p { margin-top: 18px; }

.media-card {
  position: relative;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--navy-800), var(--navy-600));
  aspect-ratio: 4 / 3.4;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid;
  place-items: center;
}
.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 30% 30%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 65% 55%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1.3px 1.3px at 50% 75%, rgba(255,255,255,0.5), transparent);
  opacity: 0.7;
}
.media-card__orb {
  width: 56%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffffff, #c9c9c9 55%, #2b2b2b 100%);
  box-shadow: 0 0 60px rgba(255,255,255,0.18), inset -20px -20px 50px rgba(0,0,0,0.55);
  position: relative;
  z-index: 1;
}
.media-card__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 30px 30px 44px;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.4));
}
.media-card__label {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 2;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}

/* Placeholder note styling (for user to swap content) */
.placeholder {
  border: 1px dashed var(--silver-300);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  background: var(--bg-alt);
  font-size: 0.84rem;
  color: var(--silver-500);
}
.placeholder strong { color: var(--muted); }

/* ----------------------------------------------------------- */
/* Feature / value cards                                       */
/* ----------------------------------------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cards--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--silver-300);
}
.card:hover::before { transform: scaleX(1); }

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, var(--navy-700), var(--navy-900));
  color: var(--accent-soft);
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.96rem; }

.card__num {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 14px;
}

/* ----------------------------------------------------------- */
/* Trust / band sections                                       */
/* ----------------------------------------------------------- */
.band {
  background: var(--bg-alt);
}
.band-dark {
  background:
    radial-gradient(900px 500px at 85% 0%, rgba(255, 255, 255, 0.09), transparent 60%),
    linear-gradient(160deg, var(--navy-900), var(--navy-700));
  color: var(--white);
}
.band-dark h2 { color: var(--white); }
.band-dark p { color: var(--silver-300); }
.band-dark .eyebrow { color: var(--accent-soft); }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.trust-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.trust-item:hover { background: rgba(255,255,255,0.07); transform: translateY(-3px); }
.trust-item__check {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  display: grid;
  place-items: center;
}
.trust-item__check svg { width: 18px; height: 18px; }
.trust-item h4 { color: var(--white); font-size: 1.02rem; margin-bottom: 4px; }
.trust-item p { font-size: 0.9rem; margin: 0; }

/* ----------------------------------------------------------- */
/* Detailed list rows (What We Do / Standards)                 */
/* ----------------------------------------------------------- */
.rows { display: grid; gap: 18px; }
.row-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  align-items: start;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.row-item:hover { box-shadow: var(--shadow-sm); border-color: var(--silver-300); }
.row-item__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, var(--silver-100), var(--silver-200));
  color: var(--navy-700);
  border: 1px solid var(--border);
}
.row-item__icon svg { width: 28px; height: 28px; }
.row-item h3 { margin-bottom: 8px; }
.row-item p { font-size: 0.98rem; }

/* ----------------------------------------------------------- */
/* CTA band                                                    */
/* ----------------------------------------------------------- */
.cta-band {
  text-align: center;
}
.cta-band .inner {
  max-width: 680px;
  margin: 0 auto;
}
.cta-band h2 { margin-bottom: 18px; }
.cta-band .hero__actions { justify-content: center; }

/* ----------------------------------------------------------- */
/* Contact page                                                */
/* ----------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}

.info-list { display: grid; gap: 22px; margin-top: 36px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-item__icon {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(160deg, var(--navy-700), var(--navy-900));
  color: var(--accent-soft);
  display: grid;
  place-items: center;
}
.info-item__icon svg { width: 20px; height: 20px; }
.info-item h4 { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--silver-500); margin-bottom: 4px; }
.info-item p, .info-item a { font-size: 1.02rem; color: var(--ink); font-weight: 500; }
.info-item a:hover { color: var(--accent); }

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}
.field label .req { color: var(--accent); }
.field input,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  padding: 14px 16px;
  border: 1px solid var(--silver-300);
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--accent-glow);
}
.field textarea { resize: vertical; min-height: 140px; }
.field.invalid input,
.field.invalid textarea { border-color: #d4566b; }
.field .error {
  display: none;
  font-size: 0.8rem;
  color: #d4566b;
  margin-top: 6px;
}
.field.invalid .error { display: block; }

.form-note { font-size: 0.82rem; color: var(--silver-500); margin-top: 4px; }

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  border: 1px solid var(--silver-300);
  color: var(--ink);
  font-size: 0.94rem;
  margin-bottom: 24px;
}
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; flex: none; color: var(--accent); }

/* ----------------------------------------------------------- */
/* Legal / prose pages                                         */
/* ----------------------------------------------------------- */
.prose {
  max-width: 760px;
}
.prose .updated {
  font-size: 0.86rem;
  color: var(--silver-500);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.prose h2 {
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  margin: 48px 0 14px;
}
.prose h2:first-of-type { margin-top: 0; }
.prose h3 {
  font-size: 1.1rem;
  margin: 28px 0 10px;
}
.prose p { margin-bottom: 16px; }
.prose ul, .prose ol {
  margin: 0 0 18px 22px;
  color: var(--muted);
}
.prose li { margin-bottom: 8px; }
.prose a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--accent); }
.prose strong { color: var(--ink); }
.prose .placeholder { margin: 6px 0 18px; }
.prose .toc {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 44px;
}
.prose .toc h4 {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver-500);
  margin-bottom: 14px;
}
.prose .toc ol { margin: 0 0 0 18px; }
.prose .toc a { text-decoration: none; font-size: 0.95rem; }
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 22px;
  font-size: 0.92rem;
}
.prose th, .prose td {
  text-align: left;
  padding: 12px 14px;
  border: 1px solid var(--border);
  vertical-align: top;
}
.prose th { background: var(--bg-alt); color: var(--ink); font-weight: 600; }
.prose td { color: var(--muted); }

/* ----------------------------------------------------------- */
/* Footer                                                      */
/* ----------------------------------------------------------- */
.site-footer {
  background: var(--navy-900);
  color: var(--silver-400);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand { color: var(--white); margin-bottom: 18px; }
.footer-brand .brand__name small { color: var(--silver-500); }
.footer-brand p { font-size: 0.92rem; color: var(--silver-400); max-width: 320px; }
.footer-col h5 {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver-500);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col ul { list-style: none; display: grid; gap: 12px; }
.footer-col a { font-size: 0.94rem; color: var(--silver-300); transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--white); }
.footer-col p { font-size: 0.94rem; color: var(--silver-300); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  font-size: 0.84rem;
  color: var(--silver-500);
}
.footer-bottom a { color: var(--silver-400); }
.footer-bottom a:hover { color: var(--white); }
.footer-legal { display: flex; gap: 22px; flex-wrap: wrap; }

/* ----------------------------------------------------------- */
/* Scroll reveal                                               */
/* ----------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ----------------------------------------------------------- */
/* Responsive                                                  */
/* ----------------------------------------------------------- */
@media (max-width: 940px) {
  .cards, .cards--2 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .nav__links,
  .nav__cta .btn { display: none; }
  .nav__toggle { display: grid; place-items: center; }

  .mobile-menu {
    position: fixed;
    inset: 74px 0 auto 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 16px 24px 28px;
    display: grid;
    gap: 6px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
    z-index: 99;
  }
  .mobile-menu.open { opacity: 1; transform: none; pointer-events: auto; }
  .mobile-menu a {
    padding: 13px 14px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    color: #2b3447;
  }
  .mobile-menu a:hover, .mobile-menu a.active { background: var(--silver-100); color: var(--ink); }
  .mobile-menu .btn { margin-top: 12px; width: 100%; }

  .split { grid-template-columns: 1fr; }
  .split .media-card { order: -1; max-width: 460px; }
  .contact-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .cards, .cards--2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero__actions .btn,
  .cta-band .btn { width: 100%; }
  .hero__stats { gap: 24px; }
  .row-item { grid-template-columns: 1fr; gap: 18px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
