/* ============================================
   Halal Homes MI — Design System
   ============================================ */
:root {
  /* Color */
  --green-900: #052e1f;
  --green-800: #064e3b;
  --green-700: #0a6b3b;
  --green-600: #0e8a4e;
  --green-100: #e6f4ec;
  --green-50:  #f1faf4;

  --gold-700: #8a6520;
  --gold-600: #b88a3a;
  --gold-500: #d4a653;
  --gold-100: #f7ecd0;

  --ink:     #0c1e15;
  --ink-2:   #1f2d25;
  --muted:   #5a6b62;
  --muted-2: #8a958f;

  --bg:        #fafaf5;
  --surface:   #ffffff;
  --surface-2: #f5f5ee;
  --border:    #e3e7e3;
  --border-2:  #d5dcd6;

  --danger: #b3261e;
  --success: #0a6b3b;

  /* Type */
  --font-sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;

  /* Sizing */
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(12, 30, 21, 0.05), 0 1px 3px rgba(12, 30, 21, 0.06);
  --shadow:    0 4px 14px rgba(12, 30, 21, 0.07), 0 1px 3px rgba(12, 30, 21, 0.04);
  --shadow-lg: 0 18px 40px rgba(12, 30, 21, 0.12), 0 4px 12px rgba(12, 30, 21, 0.06);

  --container: 1180px;
  --container-narrow: 760px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--green-700);
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover { color: var(--green-800); text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 0.5rem;
  line-height: 1.15;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; line-height: 1.3; }
h4 { font-size: 1rem; font-family: var(--font-sans); font-weight: 600; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

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

button { font: inherit; cursor: pointer; }

::selection { background: var(--green-700); color: #fff; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-narrow { max-width: var(--container-narrow); }

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

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  background: var(--ink);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--green-800);
  color: #fff;
  box-shadow: 0 6px 16px rgba(6, 78, 59, 0.25);
}
.btn-primary:hover { background: var(--green-900); color: #fff; box-shadow: 0 10px 22px rgba(6, 78, 59, 0.35); }

.btn-gold {
  background: var(--gold-600);
  color: var(--ink);
  box-shadow: 0 6px 16px rgba(184, 138, 58, 0.25);
}
.btn-gold:hover { background: var(--gold-500); color: var(--ink); }

.btn-ghost {
  background: transparent;
  color: inherit;
  border-color: currentColor;
  opacity: 0.85;
}
.btn-ghost:hover { opacity: 1; background: rgba(255,255,255,0.08); color: inherit; }

.btn-block { width: 100%; }
.btn-lg { padding: 1.05rem 1.75rem; font-size: 1rem; }

/* ============================================
   Header / Nav
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 245, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--green-800);
  letter-spacing: -0.01em;
}
.brand:hover { text-decoration: none; }
.brand em { font-style: normal; color: var(--gold-600); margin-left: 2px; }
.brand-light { color: var(--bg); }
.brand-light em { color: var(--gold-500); }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.primary-nav a {
  color: var(--ink-2);
  font-weight: 500;
  font-size: 0.95rem;
}
.primary-nav a:hover { color: var(--green-800); text-decoration: none; }
.primary-nav .nav-cta {
  background: var(--green-800);
  color: #fff;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
}
.primary-nav .nav-cta:hover { background: var(--green-900); color: #fff; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 0.5rem 1.5rem 1rem;
}
.mobile-nav a {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--ink-2);
  font-weight: 500;
}
.mobile-nav a:last-child { border-bottom: none; color: var(--green-800); font-weight: 600; }

@media (max-width: 760px) {
  .primary-nav { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  padding-bottom: 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg svg { width: 100%; height: 100%; }

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.85fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 1.5rem 1rem;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; padding-top: 3rem; }
}

.hero-copy h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  margin-bottom: 1.25rem;
}
.hero-copy h1 .accent {
  color: var(--gold-500);
  font-style: italic;
  font-family: var(--font-display);
}
.hero-copy .lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin-bottom: 2rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-500);
  background: rgba(212, 166, 83, 0.12);
  border: 1px solid rgba(212, 166, 83, 0.35);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.hero-ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-ctas .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.5); }

.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
}
.hero-trust li { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero-trust svg { color: var(--gold-500); }

/* Hero card */
.hero-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.hero-card header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}
.hero-card-label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.hero-card-pill {
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(212, 166, 83, 0.15);
  color: var(--gold-500);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 166, 83, 0.3);
}
.hero-card-rows { display: flex; flex-direction: column; gap: 0.7rem; }
.hero-card-rows > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.95rem;
}
.hero-card-rows strong { font-size: 1.1rem; font-weight: 700; }
.hero-card-rows small { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-left: 2px; }
.hero-card-rows .muted { color: rgba(255,255,255,0.55); }
.hero-card-rows .muted strong { color: rgba(255,255,255,0.65); font-weight: 500; }
.hero-card-divider {
  height: 1px !important;
  background: rgba(255,255,255,0.12);
  margin: 0.4rem 0;
  padding: 0;
}
.hero-card-link {
  display: inline-block;
  margin-top: 1.25rem;
  color: var(--gold-500);
  font-weight: 600;
  font-size: 0.92rem;
}
.hero-card-link:hover { color: #fff; text-decoration: none; }

/* ============================================
   Trust bar
   ============================================ */
.trust-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.trust-bar .container {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-bar-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.trust-bar-logos {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}
.trust-bar-logos li {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  opacity: 0.65;
}

/* ============================================
   Sections
   ============================================ */
.section { padding: 5rem 0; }
.section-alt { background: var(--surface-2); }
.section-cta {
  background: linear-gradient(160deg, var(--green-100) 0%, var(--bg) 70%);
  position: relative;
}

.section-head { max-width: 700px; margin: 0 0 3rem; }
.section-head .kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 0.75rem;
}
.section-head .kicker.light { color: var(--gold-700); }
.section-head h2 { margin-bottom: 0.75rem; }
.section-head p { color: var(--muted); font-size: 1.1rem; }

/* ============================================
   Calculator
   ============================================ */
.calc-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 900px) { .calc-grid { grid-template-columns: 1fr; } }

.calc-form {
  background: var(--surface);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  position: sticky;
  top: 88px;
}
@media (max-width: 900px) { .calc-form { position: static; } }

.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink-2);
  letter-spacing: 0.01em;
}
.field-meta { font-size: 0.78rem; color: var(--muted); }

.input-prefix, .input-suffix {
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.input-prefix:focus-within, .input-suffix:focus-within,
.calc-form select:focus, .lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(10, 107, 59, 0.12);
  outline: none;
}
.input-prefix span, .input-suffix span {
  padding: 0 0.85rem;
  color: var(--muted);
  font-weight: 600;
}
.input-prefix input, .input-suffix input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.75rem 0.5rem;
  font: inherit;
  color: var(--ink);
  width: 100%;
}
.input-suffix input { padding-left: 0.85rem; }
.input-prefix input:focus, .input-suffix input:focus { outline: none; }

.calc-form select {
  font: inherit;
  padding: 0.75rem 0.85rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6b62' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.calc-results {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.results-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  background: var(--green-100);
  border: 1px solid var(--green-700);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}
.results-summary span { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green-800); margin-bottom: 0.2rem; }
.results-summary strong { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--green-900); }

.result-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 540px) { .result-cards { grid-template-columns: 1fr; } }

.result-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: transform 0.15s, box-shadow 0.15s;
}
.result-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.result-card.conventional { background: #fffaf0; border-color: var(--gold-100); }
.result-card.best { border-color: var(--green-700); box-shadow: 0 0 0 1px var(--green-700), var(--shadow); }
.result-card header { display: flex; justify-content: space-between; align-items: flex-start; gap: 0.5rem; margin-bottom: 0.5rem; }
.result-card h3 { font-family: var(--font-sans); font-size: 1rem; font-weight: 700; margin: 0; }
.result-card .model { font-size: 0.78rem; color: var(--muted); }
.result-card .ref-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-700);
  background: var(--gold-100);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 0.4rem;
}
.result-card .amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-800);
  margin: 0.5rem 0 0.5rem;
  line-height: 1;
}
.result-card.conventional .amount { color: var(--gold-700); }
.result-card .amount small { font-size: 0.8rem; font-weight: 500; color: var(--muted); margin-left: 4px; }
.result-card .bar {
  height: 6px;
  background: var(--surface-2);
  border-radius: 999px;
  overflow: hidden;
  margin: 0.5rem 0 0.75rem;
}
.result-card .bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-700), var(--green-600));
  border-radius: 999px;
  width: 0;
  transition: width 0.5s ease;
}
.result-card.conventional .bar-fill { background: linear-gradient(90deg, var(--gold-600), var(--gold-500)); }
.result-card .result-meta { font-size: 0.85rem; color: var(--muted); }

.disclaimer {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}

/* ============================================
   Lender cards
   ============================================ */
.lender-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .lender-grid { grid-template-columns: 1fr; } }

.lender-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s, box-shadow 0.15s;
}
.lender-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.lender-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.lender-card h3 { font-family: var(--font-sans); font-size: 1.2rem; font-weight: 700; margin: 0; }
.lender-tag { font-size: 0.85rem; color: var(--muted); margin: 0 0 1rem; }
.lender-tag em { color: var(--gold-700); font-style: italic; }
.lender-card p { color: var(--ink-2); font-size: 0.95rem; }
.lender-points { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.9rem; color: var(--muted); }
.lender-points li { padding-left: 1.5rem; position: relative; }
.lender-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.5em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-600);
}
.badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--green-100);
  color: var(--green-800);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}
.badge.alt { background: var(--gold-100); color: var(--gold-700); }
.badge.ghost { background: transparent; color: var(--muted); border: 1px solid var(--border-2); }

/* ============================================
   Why grid
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.why-num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold-600);
  margin-bottom: 1.5rem;
}
.why-card h3 { font-family: var(--font-sans); font-size: 1.05rem; font-weight: 700; margin: 0 0 0.5rem; }
.why-card p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* ============================================
   FAQ
   ============================================ */
.faq { display: flex; flex-direction: column; gap: 0.6rem; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.faq details[open] { border-color: var(--green-700); box-shadow: 0 0 0 1px var(--green-100); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.5rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  width: 12px; height: 12px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(-135deg); border-color: var(--green-800); }
.faq summary:hover { color: var(--green-800); }
.faq-body {
  padding: 0 1.5rem 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ============================================
   Lead form
   ============================================ */
.lead-form {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.lead-form label { display: flex; flex-direction: column; gap: 0.4rem; }
.lead-form label > span { font-weight: 600; font-size: 0.85rem; color: var(--ink-2); }
.lead-form input, .lead-form select, .lead-form textarea {
  font: inherit;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  font-size: 0.95rem;
  width: 100%;
}
.lead-form textarea { resize: vertical; font-family: inherit; }
.lead-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 540px) { .lead-form .row { grid-template-columns: 1fr; } }
.form-status { margin: 0; min-height: 1.4em; font-size: 0.92rem; }
.form-status.success { color: var(--success); font-weight: 600; }
.form-status.error { color: var(--danger); font-weight: 600; }

.contact-direct {
  margin-top: 2rem;
  text-align: center;
}
.contact-line { margin: 0.25rem 0; }
.contact-line a { font-weight: 600; }

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--green-900);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer h4 { color: #fff; margin-bottom: 0.85rem; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; }
.footer ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer a { color: rgba(255,255,255,0.7); }
.footer a:hover { color: #fff; }
.footer-tag { color: rgba(255,255,255,0.6); margin-top: 0.85rem; font-size: 0.95rem; max-width: 300px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
}
.footer-bottom .fine { font-size: 0.78rem; opacity: 0.6; max-width: 600px; margin: 0; }
.footer-bottom p { margin: 0; }

/* ============================================
   Reduced motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
