/* ==========================================================================
   PAYDAY LOANS FLORIDA — DESIGN SYSTEM  v1.0  "Gulf Coast Modern"
   --------------------------------------------------------------------------
   Warm editorial fintech. Cream paper, gulf ink, palm green, mango citrus.
   Fraunces (display) + Manrope (text). No frameworks, no icon fonts.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Color · surfaces */
  --paper:        #FBF6EC;   /* warm shell — page background          */
  --paper-2:      #F4ECDB;   /* deeper sand — alternating sections    */
  --card:         #FFFFFF;
  --ink-surface:  #16323F;   /* dark band / footer background         */
  --ink-surface-2:#0F2630;

  /* Color · text */
  --ink:          #16323F;   /* headings, primary text                */
  --ink-2:        #4E6470;   /* secondary text                        */
  --ink-3:        #7E909A;   /* captions, meta                        */
  --on-dark:      #F6EFE2;   /* text on dark band                     */
  --on-dark-2:    #B9C8CE;

  /* Color · brand */
  --palm:         #0E6B5C;   /* primary — links, accents              */
  --palm-deep:    #0A5044;
  --palm-tint:    #E2EFE9;
  --mango:        #F59427;   /* action — CTA buttons, highlights      */
  --mango-deep:   #DD7E10;
  --mango-tint:   #FCE9CF;
  --sun:          #FFD98E;   /* soft marker highlight                 */

  /* Color · lines */
  --line:         #E4DAC4;   /* hairline on paper                     */
  --line-2:       #D5C9AE;
  --line-dark:    #2C4955;   /* hairline on dark                      */

  /* Color · feedback */
  --ok:           #1A7A4A;
  --warn:         #B26A00;
  --err:          #B3372C;
  --err-tint:     #F9E4E1;

  /* Typography */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-text:    "Manrope", "Segoe UI", system-ui, sans-serif;

  --fs-hero:  clamp(2.4rem, 1.2rem + 4.6vw, 4.1rem);
  --fs-h2:    clamp(1.75rem, 1.1rem + 2.4vw, 2.6rem);
  --fs-h3:    clamp(1.25rem, 1.05rem + 0.8vw, 1.55rem);
  --fs-h4:    1.125rem;
  --fs-body:  1.0625rem;     /* 17px */
  --fs-small: 0.9375rem;     /* 15px */
  --fs-tiny:  0.8125rem;     /* 13px */

  --lh-tight: 1.12;
  --lh-text:  1.65;

  /* Space (4px base) */
  --s-1: 0.25rem;  --s-2: 0.5rem;  --s-3: 0.75rem;  --s-4: 1rem;
  --s-5: 1.5rem;   --s-6: 2rem;    --s-7: 3rem;     --s-8: 4rem;
  --s-9: 6rem;

  /* Shape */
  --r-s: 8px;
  --r-m: 14px;
  --r-l: 22px;
  --r-pill: 999px;

  /* Elevation — hard offset shadows, print-like (signature detail) */
  --shadow-press: 3px 3px 0 0 var(--ink);
  --shadow-press-sm: 2px 2px 0 0 var(--ink);
  --shadow-soft: 0 10px 30px -12px rgba(22, 50, 63, 0.18);

  /* Layout */
  --container: 72rem;
  --container-text: 46rem;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-text);
  font-size: var(--fs-body);
  line-height: var(--lh-text);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: var(--lh-tight);
  letter-spacing: -0.01em;
  margin: 0 0 var(--s-4);
  text-wrap: balance;
}
h1 { font-size: var(--fs-hero); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-family: var(--font-text); font-weight: 700; font-size: var(--fs-h4); margin: 0 0 var(--s-3); }

p { margin: 0 0 var(--s-4); }
p:last-child { margin-bottom: 0; }

a { color: var(--palm); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--palm-deep); }

strong { font-weight: 700; }

ul, ol { margin: 0 0 var(--s-4); padding-left: 1.25rem; }
li { margin-bottom: var(--s-2); }

::selection { background: var(--sun); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--palm);
  outline-offset: 2px;
  border-radius: 2px;
}

/* --------------------------------------------------------------------------
   3. LAYOUT
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.container--text { max-width: var(--container-text); }

.section { padding-block: clamp(3rem, 8vw, 5.5rem); }
.section--tight { padding-block: clamp(2rem, 5vw, 3.5rem); }
.section--sand { background: var(--paper-2); border-block: 1px solid var(--line); }
.section--dark {
  background: var(--ink-surface);
  color: var(--on-dark);
}
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: var(--on-dark-2); }

.grid { display: grid; gap: var(--s-5); }
.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: 60rem) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 38rem) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

.center { text-align: center; }
.measure { max-width: var(--container-text); margin-inline: auto; }

/* --------------------------------------------------------------------------
   4. EDITORIAL DETAILS  (the personality layer)
   -------------------------------------------------------------------------- */

/* Numbered section label:  01 — How it works */
.eyebrow {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: var(--fs-tiny);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--palm);
  margin-bottom: var(--s-4);
}
.eyebrow::after {
  content: "";
  flex: 0 0 2.5rem;
  height: 1px;
  background: var(--line-2);
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::before {
  content: "";
  flex: 0 0 2.5rem;
  height: 1px;
  background: var(--line-2);
}
.eyebrow__num { color: var(--mango-deep); }

/* Marker highlight — hand-drawn underline on a key word */
.marker {
  position: relative;
  white-space: nowrap;
}
.marker::after {
  content: "";
  position: absolute;
  left: -0.06em; right: -0.06em; bottom: 0.04em;
  height: 0.34em;
  background: var(--sun);
  z-index: -1;
  border-radius: 2px;
  transform: rotate(-0.6deg);
}
.section--dark .marker::after { background: var(--mango); opacity: 0.5; }

/* Big display numeral */
.numeral {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--mango-deep);
}

/* Lead paragraph */
.lead { font-size: 1.2rem; color: var(--ink-2); line-height: 1.6; }
.section--dark .lead { color: var(--on-dark-2); }

/* --------------------------------------------------------------------------
   5. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--r-s);
  border: 1.5px solid var(--ink);
  font-family: var(--font-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.15s ease;
}
.btn:active { transform: translate(2px, 2px); box-shadow: none !important; }

/* Primary action — mango, tactile press shadow */
.btn--cta {
  background: var(--mango);
  color: var(--ink);
  box-shadow: var(--shadow-press);
}
.btn--cta:hover { background: #FBA23B; color: var(--ink); transform: translate(-1px, -1px); box-shadow: 4px 4px 0 0 var(--ink); }

/* Dark solid */
.btn--dark {
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow-press-sm);
}
.btn--dark:hover { background: var(--ink-surface-2); color: #fff; }
.section--dark .btn--dark { border-color: var(--on-dark); box-shadow: 3px 3px 0 0 rgba(0,0,0,0.45); }

/* Quiet outline */
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); background: rgba(255,255,255,0.5); }
.section--dark .btn--ghost { color: var(--on-dark); border-color: var(--line-dark); }
.section--dark .btn--ghost:hover { border-color: var(--on-dark); background: rgba(255,255,255,0.06); }

.btn--lg { padding: 1rem 2.1rem; font-size: 1.1rem; }
.btn--sm { padding: 0.5rem 1rem; font-size: var(--fs-small); border-width: 1px; }
.btn--block { display: flex; width: 100%; }

/* Arrow nudge on hover */
.btn .btn__arrow { transition: transform 0.15s ease; }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* --------------------------------------------------------------------------
   6. CARDS
   -------------------------------------------------------------------------- */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  padding: var(--s-6);
}
.card--press {
  border: 1.5px solid var(--ink);
  box-shadow: var(--shadow-press);
}
.card--lift { transition: transform 0.15s ease, box-shadow 0.15s ease; }
.card--lift:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.card--sand { background: var(--paper-2); }

/* Icon chip inside cards — square tile, not the AI circle */
.tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem; height: 3rem;
  border-radius: var(--r-s);
  border: 1.5px solid var(--ink);
  background: var(--palm-tint);
  color: var(--palm-deep);
  margin-bottom: var(--s-4);
}
.tile--mango { background: var(--mango-tint); color: var(--mango-deep); }
.tile svg { width: 1.4rem; height: 1.4rem; }

/* --------------------------------------------------------------------------
   7. BADGES & CHIPS
   -------------------------------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-2);
  background: var(--card);
  font-size: var(--fs-tiny);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink-2);
}
.badge__dot {
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  background: var(--palm);
}
.badge--mango .badge__dot { background: var(--mango); }
.section--dark .badge { background: transparent; border-color: var(--line-dark); color: var(--on-dark-2); }

/* City link chip */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-2);
  background: var(--card);
  color: var(--ink);
  font-size: var(--fs-small);
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.chip:hover { border-color: var(--ink); color: var(--ink); background: var(--sun); }
.chip--active { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.chip--active:hover { color: var(--paper); background: var(--ink); }

/* --------------------------------------------------------------------------
   8. HEADER & NAV
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 236, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding-block: 0.8rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
}
.logo:hover { color: var(--ink); }
.logo__sun { width: 1.9rem; height: 1.9rem; color: var(--mango); flex: none; }
.logo__tld { color: var(--palm); }

.nav { display: flex; align-items: center; gap: clamp(0.9rem, 1.8vw, 1.6rem); }
.nav a {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--ink-2);
  text-decoration: none;
  padding-block: 0.3rem;
  border-bottom: 2px solid transparent;
}
.nav a:hover { color: var(--ink); border-bottom-color: var(--mango); }
.nav a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--mango); }

.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--ink);
  border-radius: var(--r-s);
  padding: 0.45rem 0.55rem;
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle svg { width: 1.3rem; height: 1.3rem; }

.mobile-nav { display: none; border-top: 1px solid var(--line); padding-block: var(--s-3) var(--s-5); }
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.65rem 0.25rem;
  font-weight: 600;
  color: var(--ink-2);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a:hover { color: var(--ink); }
.mobile-nav .btn { margin-top: var(--s-4); }

@media (max-width: 64rem) {
  .nav, .site-header__cta { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* --------------------------------------------------------------------------
   9. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 8vw, 5.5rem);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 56rem) {
  .hero__inner { grid-template-columns: 1fr; }
}
.hero__badges { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-bottom: var(--s-5); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--s-4); margin-top: var(--s-6); }

/* Sun rays — background motif */
.hero__rays {
  position: absolute;
  top: -14rem;
  right: -10rem;
  width: 38rem;
  height: 38rem;
  color: var(--mango);
  opacity: 0.13;
  pointer-events: none;
}
@media (max-width: 56rem) { .hero__rays { right: -20rem; opacity: 0.09; } }

/* --------------------------------------------------------------------------
   10. RECEIPT CARD  (signature hero element — loan terms as a paper slip)
   -------------------------------------------------------------------------- */
.receipt {
  position: relative;
  background: var(--card);
  border: 1.5px solid var(--ink);
  border-radius: var(--r-m);
  box-shadow: 5px 5px 0 0 var(--ink);
  padding: var(--s-6);
  max-width: 24rem;
  margin-inline: auto;
  transform: rotate(1.2deg);
}
.receipt__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: var(--fs-tiny);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: var(--s-4);
}
.receipt__stamp {
  color: var(--palm);
  border: 1.5px solid var(--palm);
  border-radius: 4px;
  padding: 0.1rem 0.45rem;
  transform: rotate(3deg);
}
.receipt__amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.7rem;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: var(--s-2);
}
.receipt__sub { color: var(--ink-2); font-size: var(--fs-small); margin-bottom: var(--s-4); }
.receipt__rows { border-top: 1.5px dashed var(--line-2); padding-top: var(--s-4); margin-bottom: var(--s-5); }
.receipt__row {
  display: flex;
  justify-content: space-between;
  gap: var(--s-4);
  font-size: var(--fs-small);
  padding-block: 0.4rem;
}
.receipt__row dt { color: var(--ink-2); margin: 0; }
.receipt__row dd { margin: 0; font-weight: 700; text-align: right; }
.receipt__edge {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 10px;
  color: var(--paper);
}

/* --------------------------------------------------------------------------
   11. STEPS  (how it works)
   -------------------------------------------------------------------------- */
.steps { counter-reset: step; }
.step { position: relative; padding-top: var(--s-2); }
.step__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--mango-deep);
  margin-bottom: var(--s-3);
}
.step h3 { margin-bottom: var(--s-2); }
.step p { color: var(--ink-2); font-size: var(--fs-small); }

/* Connector line between steps on wide screens */
@media (min-width: 60rem) {
  .step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 1.6rem;
    left: calc(100% - 0.5rem);
    width: calc(var(--s-5) + 1rem);
    border-top: 2px dashed var(--line-2);
  }
}

/* --------------------------------------------------------------------------
   12. TESTIMONIALS
   -------------------------------------------------------------------------- */
.quote { display: flex; flex-direction: column; height: 100%; }
.quote__mark {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0.6;
  color: var(--mango);
  margin-bottom: var(--s-3);
}
.quote__text { flex: 1; color: var(--ink-2); font-size: var(--fs-small); }
.quote__by {
  margin-top: var(--s-4);
  padding-top: var(--s-3);
  border-top: 1px solid var(--line);
  font-size: var(--fs-tiny);
  color: var(--ink-3);
}
.quote__by strong { display: block; color: var(--ink); font-size: var(--fs-small); }

/* --------------------------------------------------------------------------
   13. FAQ  (native details/summary)
   -------------------------------------------------------------------------- */
.faq { border: 1.5px solid var(--ink); border-radius: var(--r-m); background: var(--card); overflow: hidden; }
.faq + .faq { margin-top: var(--s-3); }
.faq summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-4) var(--s-5);
  font-weight: 700;
  cursor: pointer;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { background: var(--paper); }
.faq__chev { flex: none; width: 1.1rem; height: 1.1rem; color: var(--palm); transition: transform 0.2s ease; }
.faq[open] .faq__chev { transform: rotate(180deg); }
.faq__body { padding: 0 var(--s-5) var(--s-5); color: var(--ink-2); }

/* --------------------------------------------------------------------------
   14. FORMS
   -------------------------------------------------------------------------- */
.field { margin-bottom: var(--s-4); }
.field__label {
  display: block;
  font-size: var(--fs-small);
  font-weight: 700;
  margin-bottom: var(--s-2);
}
.field__hint { font-size: var(--fs-tiny); color: var(--ink-3); margin-top: var(--s-1); }

.input, .select, .textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--line-2);
  border-radius: var(--r-s);
  background: var(--card);
  font: inherit;
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--palm);
  box-shadow: 0 0 0 3px var(--palm-tint);
}
.input[aria-invalid="true"] { border-color: var(--err); background: var(--err-tint); }

input[type="range"] {
  width: 100%;
  height: 6px;
  appearance: none;
  background: var(--line-2);
  border-radius: var(--r-pill);
  cursor: pointer;
  accent-color: var(--palm);
}

/* --------------------------------------------------------------------------
   15. DATA — stats, tables, notices
   -------------------------------------------------------------------------- */
.stat { text-align: center; }
.stat__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1;
  color: var(--ink);
}
.section--dark .stat__value { color: #fff; }
.stat__value em { font-style: normal; color: var(--mango); }
.stat__label { font-size: var(--fs-small); color: var(--ink-2); margin-top: var(--s-2); }
.section--dark .stat__label { color: var(--on-dark-2); }

.table-wrap { overflow-x: auto; border: 1.5px solid var(--ink); border-radius: var(--r-m); background: var(--card); }
table { width: 100%; border-collapse: collapse; font-size: var(--fs-small); }
th, td { padding: 0.8rem 1.1rem; text-align: left; }
thead th {
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
  font-size: var(--fs-tiny);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
tbody tr + tr { border-top: 1px solid var(--line); }
tbody tr:nth-child(even) { background: var(--paper); }

/* Trust / legal notice */
.notice {
  display: flex;
  gap: var(--s-3);
  padding: var(--s-4) var(--s-5);
  border: 1px solid var(--line-2);
  border-left: 4px solid var(--mango);
  border-radius: var(--r-s);
  background: var(--card);
  font-size: var(--fs-small);
  color: var(--ink-2);
}
.notice--palm { border-left-color: var(--palm); }
.notice svg { flex: none; width: 1.2rem; height: 1.2rem; margin-top: 0.15rem; color: var(--mango-deep); }
.notice--palm svg { color: var(--palm); }

/* --------------------------------------------------------------------------
   16. CTA BAND
   -------------------------------------------------------------------------- */
.band {
  position: relative;
  overflow: hidden;
  background: var(--ink-surface);
  color: var(--on-dark);
  border-radius: var(--r-l);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
}
.band h2 { color: #fff; }
.band p { color: var(--on-dark-2); }
.band__rays {
  position: absolute;
  bottom: -16rem;
  left: 50%;
  transform: translateX(-50%);
  width: 44rem; height: 44rem;
  color: var(--mango);
  opacity: 0.14;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   17. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--ink-surface);
  color: var(--on-dark-2);
  margin-top: clamp(3rem, 8vw, 5rem);
  font-size: var(--fs-small);
}
.site-footer a { color: var(--on-dark-2); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-6);
  padding-block: var(--s-8) var(--s-6);
}
@media (max-width: 60rem) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 38rem) { .site-footer__grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  color: #fff;
  font-size: var(--fs-tiny);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--s-4);
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: var(--s-2); }
.site-footer .logo { color: #fff; margin-bottom: var(--s-3); }
.site-footer__contact { display: flex; align-items: center; gap: 0.55rem; margin-bottom: var(--s-2); }
.site-footer__contact svg { width: 1rem; height: 1rem; color: var(--mango); flex: none; }
.site-footer__legal {
  border-top: 1px solid var(--line-dark);
  padding-block: var(--s-5);
  font-size: var(--fs-tiny);
  color: #8AA0AA;
}
.site-footer__legal p { margin-bottom: var(--s-2); }

/* --------------------------------------------------------------------------
   18. UTILITIES
   -------------------------------------------------------------------------- */
.mt-0 { margin-top: 0; }    .mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: var(--s-4); } .mt-5 { margin-top: var(--s-5); }
.mt-6 { margin-top: var(--s-6); } .mt-7 { margin-top: var(--s-7); }
.mb-4 { margin-bottom: var(--s-4); } .mb-5 { margin-bottom: var(--s-5); }
.mb-6 { margin-bottom: var(--s-6); } .mb-7 { margin-bottom: var(--s-7); }
.muted { color: var(--ink-2); }
.small { font-size: var(--fs-small); }
.tiny { font-size: var(--fs-tiny); }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: var(--s-2); }
.gap-3 { gap: var(--s-3); }
.gap-4 { gap: var(--s-4); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

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