/* ==========================================================================
   Fortress Life Group — Design System
   Navy + Gold, premium but approachable. Montserrat (headings) / Inter (body)
   ========================================================================== */

:root {
  --navy-950: #060b16;
  --navy-900: #0a1428;
  --navy-800: #0d1b3e;
  --navy-700: #14213d;
  --navy-600: #1c2c4d;

  --gold-600: #a9863a;
  --gold-500: #c9a84c;
  --gold-400: #d9bc6c;
  --gold-300: #e8c96d;
  --gold-100: #f5ead0;

  --cream-50: #fdfcf9;
  --cream-100: #f7f4ec;
  --cream-200: #f0ebdd;
  --white: #ffffff;

  --ink-900: #14213d;
  --ink-700: #3d4759;
  --ink-500: #6b7385;
  --ink-300: #a4abb8;

  --line: #e6e1d3;
  --line-dark: #24304f;

  --green-600: #16a34a;
  --red-600: #dc2626;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 3px rgba(10, 18, 38, 0.08);
  --shadow-md: 0 10px 30px rgba(10, 18, 38, 0.10);
  --shadow-lg: 0 24px 60px rgba(10, 18, 38, 0.18);

  --container: 1180px;
  --container-narrow: 800px;

  --font-head: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy-900);
  line-height: 1.2;
  margin: 0 0 0.6em;
  font-weight: 800;
  letter-spacing: -0.01em;
}
p { margin: 0 0 1em; color: var(--ink-700); }
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

/* Skip link (accessibility) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold-500);
  color: var(--navy-900);
  padding: 12px 20px;
  z-index: 1000;
  font-weight: 700;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 2px;
}

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold-500);
  display: inline-block;
}
.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section--dark {
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--navy-700) 100%);
  color: var(--cream-100);
}
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark p { color: #c7cede; }
.section--alt { background: var(--cream-100); }
.text-center { text-align: center; }
.max-w { max-width: 700px; margin-left: auto; margin-right: auto; }
.mt-0 { margin-top: 0; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 15px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-900);
  box-shadow: var(--shadow-md);
}
.btn-gold:hover { box-shadow: var(--shadow-lg); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--gold-400); background: rgba(255,255,255,0.06); }
.btn-outline-dark {
  background: transparent;
  border-color: var(--navy-700);
  color: var(--navy-900);
}
.btn-outline-dark:hover { background: var(--navy-900); color: var(--white); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(10, 20, 40, 0.94);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: 0.01em;
}
.brand-mark {
  width: 30px; height: 36px;
  object-fit: contain;
  flex: none;
}
.brand small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--gold-400);
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-primary {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-primary a {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: #cfd6e6;
  position: relative;
  padding: 6px 0;
}
.nav-primary a:hover, .nav-primary a[aria-current="page"] { color: var(--white); }
.nav-primary a[aria-current="page"]::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--gold-500);
}
.header-actions { display: flex; align-items: center; gap: 18px; }
.lang-switch {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-size: 0.78rem; font-weight: 700;
}
.lang-switch a {
  color: #9aa4bb; padding: 4px 6px; border-radius: 6px;
}
.lang-switch a[aria-current="true"] { color: var(--gold-400); }
.lang-switch a:hover { color: var(--white); }
.lang-switch span { color: #45507a; }

.nav-toggle {
  display: none;
  background: none; border: none; color: var(--white);
  width: 40px; height: 40px; align-items: center; justify-content: center;
  border-radius: 8px;
}
.nav-toggle:hover { background: rgba(255,255,255,0.08); }
.nav-cta-mobile { display: none; }
.lang-switch-mobile { display: none; }

@media (max-width: 960px) {
  .nav-primary {
    position: fixed; top: 78px; right: 0; left: 0;
    height: calc(100vh - 78px);
    height: calc(100dvh - 78px);
    background: var(--navy-900);
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
  }
  .nav-primary.is-open { transform: translateX(0); }
  .nav-primary a { width: 100%; padding: 14px 4px; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 1rem; }
  .nav-toggle { display: flex; }
  .header-actions .btn { display: none; }
  .nav-cta-mobile {
    display: block; margin-top: 10px; background: var(--gold-500); color: var(--navy-900) !important;
    text-align: center; border-radius: 999px; font-weight: 700;
  }
  .header-actions .lang-switch { display: none; }
  .lang-switch-mobile {
    display: flex; align-items: center; gap: 8px;
    margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.12);
    font-family: var(--font-head); font-size: 0.95rem; font-weight: 700;
  }
  .lang-switch-mobile a { color: #9aa4bb; padding: 4px 6px; }
  .lang-switch-mobile a[aria-current="true"] { color: var(--gold-400); }
  .lang-switch-mobile span { color: #45507a; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 100px;
  background: radial-gradient(1100px 500px at 85% -10%, rgba(201,168,76,0.16), transparent 60%),
              linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  color: var(--white);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { color: var(--white); font-size: clamp(2.1rem, 4.2vw, 3.2rem); margin-bottom: 0.45em; }
.hero .lede { font-size: 1.15rem; color: #d3d9ea; max-width: 560px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 34px; }
.hero-trust {
  display: flex; gap: 26px; flex-wrap: wrap; margin-top: 46px;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-trust div { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: #bcc4dc; font-weight: 600; }
.hero-trust svg { flex: none; color: var(--gold-400); }
.hero-art { position: relative; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 340px; margin: 0 auto; }
}

/* ---------- Photo + text split sections ---------- */
.split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.split-grid.reverse { grid-template-columns: 1.05fr 0.95fr; }
.split-grid.reverse .split-photo { order: 2; }
.photo-card {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.photo-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(10,20,40,0.06), rgba(10,20,40,0.02) 40%, transparent 60%);
  pointer-events: none;
}
.photo-card--accent {
  position: absolute; bottom: -18px; left: -18px;
  width: 84px; height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  z-index: -1;
}
@media (max-width: 860px) {
  .split-grid, .split-grid.reverse { grid-template-columns: 1fr; }
  .split-grid.reverse .split-photo { order: -1; }
}

/* ---------- Captioned photo pair (home) ---------- */
.photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.photo-pair .photo-card { aspect-ratio: 5 / 4; }
.photo-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 22px 20px;
  background: linear-gradient(to top, rgba(6,11,22,0.88), transparent);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
}
@media (max-width: 640px) {
  .photo-pair { grid-template-columns: 1fr; }
}

/* ---------- Page header (non-home) ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--white);
  padding: 64px 0 60px;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.35em; }
.page-hero .lede { color: #ccd3e6; max-width: 640px; font-size: 1.08rem; }
.breadcrumb { font-size: 0.8rem; color: var(--gold-400); font-weight: 700; margin-bottom: 16px; }
.breadcrumb a { color: #9aa4bb; }
.breadcrumb a:hover { color: var(--white); }

/* ---------- Cards / Grids ---------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease, transform .2s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-100), var(--cream-200));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-600);
  margin-bottom: 20px;
}
.card h3 { font-size: 1.15rem; margin-bottom: 0.5em; }
.card p:last-child { margin-bottom: 0; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.85rem;
  color: var(--navy-800); margin-top: 14px;
}
.card-link:hover { color: var(--gold-600); }

.value-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 960px) { .value-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .value-list { grid-template-columns: 1fr; } }
.value-item { text-align: center; padding: 20px 10px; }
.value-item svg { color: var(--gold-500); margin-bottom: 12px; }
.value-item h4 { font-size: 0.98rem; margin-bottom: 6px; }
.value-item p { font-size: 0.88rem; margin-bottom: 0; }

/* ---------- Service detail rows ---------- */
.service-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}
.service-row:last-child { border-bottom: none; }
.service-row .card-icon { margin-bottom: 0; }
.service-row h3 { margin-bottom: 0.4em; font-size: 1.3rem; }
.service-meta {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px;
}
.pill {
  font-size: 0.74rem; font-weight: 700; font-family: var(--font-head);
  padding: 6px 12px; border-radius: 999px;
  background: var(--cream-200); color: var(--navy-700);
  letter-spacing: 0.02em;
}
@media (max-width: 640px) {
  .service-row { grid-template-columns: 1fr; }
}

/* ---------- Case studies ---------- */
.case-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.case-card .tag {
  display: inline-block;
  font-family: var(--font-head); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold-600); background: var(--gold-100);
  padding: 5px 12px; border-radius: 999px; margin-bottom: 16px;
}
.case-card h3 { font-size: 1.25rem; }
.case-meta { display: flex; gap: 22px; flex-wrap: wrap; margin: 18px 0; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.case-meta div { font-size: 0.85rem; }
.case-meta-label {
  display: block; font-family: var(--font-head); font-weight: 700; font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--gold-600); margin-bottom: 4px;
}
.case-meta strong { display: block; font-family: var(--font-head); color: var(--navy-900); font-size: 0.95rem; font-weight: 700; }
.disclaimer-note {
  font-size: 0.78rem; color: var(--ink-500); font-style: italic; margin-top: 10px;
}
.fictional-banner {
  background: var(--cream-200);
  border: 1px dashed var(--gold-500);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: 0.9rem;
  color: var(--ink-700);
  margin-bottom: 44px;
  display: flex; gap: 14px; align-items: flex-start;
}
.fictional-banner svg { flex: none; color: var(--gold-600); margin-top: 2px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  border-radius: var(--radius-lg);
  padding: 56px;
  color: var(--white);
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(600px 300px at 90% 0%, rgba(201,168,76,0.22), transparent 70%);
}
.cta-banner > * { position: relative; }
.cta-banner h2 { color: var(--white); margin-bottom: 0.3em; }
.cta-banner p { color: #ccd3e6; margin-bottom: 0; max-width: 480px; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 20px; }
.field label {
  display: block; font-family: var(--font-head); font-weight: 700;
  font-size: 0.85rem; color: var(--navy-800); margin-bottom: 8px;
}
.field .hint { font-weight: 400; color: var(--ink-500); font-size: 0.78rem; margin-left: 6px; }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream-50);
  color: var(--ink-900);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.16);
  outline: none;
}
.field textarea { resize: vertical; min-height: 110px; }
fieldset.field { border: none; padding: 0; margin: 0 0 20px; min-width: 0; }
.field legend {
  font-family: var(--font-head); font-weight: 700; font-size: 0.85rem;
  color: var(--navy-800); margin-bottom: 8px; padding: 0; width: 100%;
}
.checkbox-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 16px; }
@media (max-width: 560px) { .checkbox-grid { grid-template-columns: 1fr; } }
.checkbox-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--cream-50); font-size: 0.88rem; font-weight: 600; color: var(--navy-800);
}
.checkbox-item input { width: 17px; height: 17px; accent-color: var(--gold-500); flex: none; }
.consent-row {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--cream-100); border-radius: var(--radius-sm);
  padding: 16px; margin: 24px 0; font-size: 0.85rem; color: var(--ink-700);
}
.consent-row input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--gold-500); flex: none; }
.form-note {
  font-size: 0.8rem; color: var(--ink-500); margin-top: 16px; text-align: center;
}
.form-status {
  display: none;
  margin-top: 18px; padding: 14px 16px; border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 600;
}
.form-status.is-visible { display: block; }
.form-status.is-success { background: #e9f8ef; color: #146c33; border: 1px solid #bfe8cd; }
.form-status.is-error { background: #fdecec; color: #a11f1f; border: 1px solid #f4c6c6; }

.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }
.step {
  padding: 26px; background: var(--cream-100); border-radius: var(--radius);
}
.step-num {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--navy-900); color: var(--gold-400);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 0.9rem;
  margin-bottom: 14px;
}
.step h4 { font-size: 1rem; margin-bottom: 6px; }
.step p { font-size: 0.88rem; margin-bottom: 0; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card {
  background: var(--navy-900); color: var(--white);
  border-radius: var(--radius-lg); padding: 40px;
}
.contact-info-card h3 { color: var(--white); }
.contact-info-card p { color: #c7cede; }
.contact-item { display: flex; gap: 14px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.1); }
.contact-item:first-of-type { border-top: none; }
.contact-item svg { flex: none; color: var(--gold-400); margin-top: 2px; }
.contact-item strong { display: block; font-family: var(--font-head); font-size: 0.85rem; margin-bottom: 3px; }
.contact-item span, .contact-item a { font-size: 0.9rem; color: #c7cede; }
.contact-item a:hover { color: var(--white); }

/* ---------- Disclaimer / Compliance blocks ---------- */
.disclaimer-box {
  background: var(--cream-200);
  border-left: 4px solid var(--gold-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  font-size: 0.85rem;
  color: var(--ink-700);
  margin-top: 40px;
}
.disclaimer-box strong { color: var(--navy-900); }

.label-tag {
  display: inline-block;
  font-family: var(--font-head); font-weight: 700; font-size: 0.7rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--navy-700); background: var(--gold-100);
  border: 1px solid var(--gold-300);
  padding: 4px 10px; border-radius: 6px; margin-bottom: 14px;
}

/* ---------- Comparison table ---------- */
.compare-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); }
table.compare {
  width: 100%; border-collapse: collapse; background: var(--white); min-width: 560px;
}
table.compare th, table.compare td {
  padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.9rem;
}
table.compare th { font-family: var(--font-head); background: var(--navy-900); color: var(--white); font-size: 0.82rem; letter-spacing: 0.02em; }
table.compare tr:last-child td { border-bottom: none; }
table.compare td:first-child { font-weight: 700; color: var(--navy-900); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  color: #9aa4bb;
  padding: 64px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand { color: var(--white); margin-bottom: 14px; }
.footer-grid h5 {
  font-family: var(--font-head); color: var(--white); font-size: 0.82rem;
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px;
}
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid a { font-size: 0.88rem; color: #9aa4bb; }
.footer-grid a:hover { color: var(--gold-400); }
.footer-legal {
  padding-top: 28px; font-size: 0.78rem; line-height: 1.7; color: #6f7a99;
}
.footer-legal p { color: #6f7a99; font-size: 0.78rem; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  margin-top: 20px; font-size: 0.78rem;
}

/* ---------- Misc ---------- */
.divider { height: 1px; background: var(--line); border: none; margin: 0; }
.reveal { opacity: 1; }
noscript.form-fallback-note { display: block; font-size: 0.8rem; color: var(--ink-500); margin-top: 10px; }

/* ---------- WhatsApp bubble (9am-5pm America/New_York only, via JS) ---------- */
.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 600;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.32);
}
.whatsapp-fab[hidden] { display: none; }
@media (max-width: 640px) {
  .whatsapp-fab { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}
