@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg, video { display: block; max-width: 100%; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; border: none; background: none; }
button { cursor: pointer; }

/* ─── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  --ink:        #0d1117;
  --navy:       #0f1e30;
  --navy-mid:   #162840;
  --navy-light: #1e3550;
  --cream:      #f5f0e8;
  --cream-dark: #e8e0d0;
  --red:        #c0392b;
  --red-light:  #e04535;
  --white:      #fdfaf5;
  --muted:      #8a9ab0;
  --border:     rgba(255,255,255,0.08);
  --border-lt:  rgba(13,17,23,0.12);

  --ff-serif: 'Playfair Display', Georgia, serif;
  --ff-sans:  'Inter', system-ui, sans-serif;

  --sp-1:  clamp(0.25rem, 0.5vw, 0.5rem);
  --sp-2:  clamp(0.5rem,  1vw,   0.75rem);
  --sp-3:  clamp(0.75rem, 1.5vw, 1rem);
  --sp-4:  clamp(1rem,    2vw,   1.5rem);
  --sp-5:  clamp(1.5rem,  3vw,   2.5rem);
  --sp-6:  clamp(2rem,    4vw,   3.5rem);
  --sp-7:  clamp(3rem,    6vw,   5rem);
  --sp-8:  clamp(4rem,    8vw,   7rem);

  --radius-sm: 3px;
  --radius:    6px;
  --radius-lg: 12px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,0,0,0.06);
  --shadow:    0 4px 20px rgba(0,0,0,0.28), 0 1px 4px rgba(0,0,0,0.14);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.38), 0 4px 12px rgba(0,0,0,0.2);

  --transition: 220ms cubic-bezier(0.4,0,0.2,1);
}

/* ─── PAGE BASE ─────────────────────────────────────────── */
html, body {
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--cream);
  background-color: var(--navy);
  overflow-x: hidden;
}

/* Newsprint texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 1;
}

/* ─── CONTAINER ─────────────────────────────────────────── */
.lf-wrap {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* ─── TYPOGRAPHY ────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-serif);
  line-height: 1.18;
  font-weight: 700;
  color: var(--white);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.75rem); letter-spacing: -0.01em; }
h4 { font-size: clamp(1rem, 1.5vw, 1.25rem); }
h5 { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.1em; font-family: var(--ff-sans); font-weight: 600; }

p { color: var(--cream); opacity: 0.85; max-width: 72ch; }
p.lead { font-size: clamp(1.05rem, 1.8vw, 1.3rem); opacity: 0.9; line-height: 1.55; }

strong { font-weight: 600; color: var(--white); opacity: 1; }
em { font-style: italic; font-family: var(--ff-serif); }

/* ─── LINKS ─────────────────────────────────────────────── */
.lf-link {
  color: var(--red-light);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}
.lf-link:hover { border-color: var(--red-light); }

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.75em 1.75em;
  border-radius: var(--radius-sm);
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(192,57,43,0.4);
}
.btn-primary:hover {
  background: var(--red-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(192,57,43,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(245,240,232,0.4);
}
.btn-outline:hover {
  background: rgba(245,240,232,0.08);
  border-color: var(--cream);
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--navy);
  color: var(--cream);
  border: 1.5px solid var(--navy-light);
}
.btn-dark:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}

/* ─── HEADER / NAV ──────────────────────────────────────── */
.lf-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,30,48,0.96);
  backdrop-filter: blur(12px) saturate(1.4);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}

.lf-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: clamp(3.5rem, 5vw, 4.5rem);
  gap: var(--sp-4);
}

.lf-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.lf-logo__mark {
  width: 32px;
  height: 32px;
}
.lf-logo__text {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
.lf-logo__text span { color: var(--red-light); }

.lf-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
}
.lf-nav__link {
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(245,240,232,0.7);
  transition: color var(--transition);
  position: relative;
}
.lf-nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--red-light);
  transition: width var(--transition);
}
.lf-nav__link:hover,
.lf-nav__link.is-active { color: var(--white); }
.lf-nav__link:hover::after,
.lf-nav__link.is-active::after { width: 100%; }

.lf-nav__cta {
  margin-left: var(--sp-2);
}

.lf-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
}
.lf-hamburger__bar {
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile nav */
.lf-mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: var(--sp-4) 0;
}
.lf-mobile-nav.is-open { display: flex; }
.lf-mobile-nav__link {
  display: block;
  padding: 0.75rem clamp(1.25rem, 5vw, 3rem);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(245,240,232,0.75);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition), background var(--transition);
}
.lf-mobile-nav__link:hover { color: var(--white); background: rgba(255,255,255,0.04); }
.lf-mobile-nav__link:last-child { border-bottom: none; }

/* ─── HERO ──────────────────────────────────────────────── */
.lf-hero {
  background: linear-gradient(135deg, var(--ink) 0%, var(--navy) 55%, #0a2240 100%);
  padding-block: var(--sp-8) var(--sp-7);
  position: relative;
  overflow: hidden;
}

.lf-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 60vw;
  height: 120%;
  background: radial-gradient(ellipse, rgba(192,57,43,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.lf-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red) 40%, transparent);
  opacity: 0.5;
}

.lf-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.lf-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--red-light);
  margin-bottom: var(--sp-3);
}
.lf-hero__eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--red-light);
}

.lf-hero__title {
  margin-bottom: var(--sp-4);
}
.lf-hero__title em {
  color: var(--cream-dark);
  display: block;
}

.lf-hero__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  opacity: 0.8;
  margin-bottom: var(--sp-5);
  max-width: 52ch;
}

.lf-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: center;
}

.lf-hero__image-slot {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--navy-light);
}
.lf-hero__image-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lf-hero__image-badge {
  position: absolute;
  bottom: var(--sp-4);
  left: var(--sp-4);
  background: rgba(13,17,23,0.88);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.6rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
}
.lf-hero__image-badge span { color: var(--red-light); }

/* ─── SECTION COMMON ────────────────────────────────────── */
.lf-section {
  padding-block: var(--sp-7);
}
.lf-section--cream {
  background: var(--cream);
  color: var(--ink);
}
.lf-section--cream h2,
.lf-section--cream h3,
.lf-section--cream h4,
.lf-section--cream h5 { color: var(--ink); }
.lf-section--cream p { color: var(--ink); opacity: 0.8; }
.lf-section--cream .lf-card { background: var(--white); border-color: var(--border-lt); }
.lf-section--cream .lf-card__title { color: var(--ink); }
.lf-section--cream .lf-card__text { color: var(--ink); }

.lf-section--dark {
  background: var(--ink);
}
.lf-section--mid {
  background: var(--navy-mid);
}

.lf-section__header {
  margin-bottom: var(--sp-6);
}
.lf-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--red-light);
  margin-bottom: var(--sp-3);
}
.lf-section__eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--red-light);
}
.lf-section--cream .lf-section__eyebrow { color: var(--red); }
.lf-section--cream .lf-section__eyebrow::before { background: var(--red); }

.lf-section__lead {
  margin-top: var(--sp-3);
}

/* Divider rule */
.lf-rule {
  border: none;
  border-top: 1px solid var(--border);
  margin-block: var(--sp-5);
}
.lf-section--cream .lf-rule { border-color: var(--border-lt); }

/* ─── CARDS ─────────────────────────────────────────────── */
.lf-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
}
.lf-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
}

.lf-card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.lf-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(192,57,43,0.3);
}
.lf-card__icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: rgba(192,57,43,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
  color: var(--red-light);
  font-size: 1.25rem;
}
.lf-card__label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red-light);
  margin-bottom: var(--sp-2);
}
.lf-card__title {
  font-family: var(--ff-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--sp-3);
  line-height: 1.25;
}
.lf-card__text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--cream);
  opacity: 0.78;
}

/* ─── STATS ─────────────────────────────────────────────── */
.lf-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
.lf-stat {
  text-align: center;
  padding: var(--sp-5) var(--sp-4);
  border-right: 1px solid var(--border);
}
.lf-stat:last-child { border-right: none; }
.lf-stat__number {
  display: block;
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.lf-stat__number em { color: var(--red-light); font-style: normal; }
.lf-stat__label {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.lf-section--cream .lf-stat { border-color: var(--border-lt); }
.lf-section--cream .lf-stat__number { color: var(--ink); }
.lf-section--cream .lf-stat__label { color: rgba(13,17,23,0.5); }

/* ─── CTA BAND ──────────────────────────────────────────── */
.lf-cta-band {
  background: var(--red);
  background-image: linear-gradient(135deg, #a02d22 0%, var(--red) 50%, #c94030 100%);
  padding-block: var(--sp-7);
  position: relative;
  overflow: hidden;
}
.lf-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}
.lf-cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  flex-wrap: wrap;
}
.lf-cta-band h2 { color: var(--white); }
.lf-cta-band p { color: rgba(255,255,255,0.85); max-width: 56ch; }
.lf-cta-band__actions { display: flex; gap: var(--sp-3); flex-wrap: wrap; flex-shrink: 0; }

.btn-white {
  background: var(--white);
  color: var(--red);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.55);
  font-weight: 600;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-1px);
}

/* ─── FAQ ───────────────────────────────────────────────── */
.lf-faq {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}
.lf-section--cream .lf-faq { border-color: var(--border-lt); }

.lf-faq__item {
  border-bottom: 1px solid var(--border);
}
.lf-section--cream .lf-faq__item { border-color: var(--border-lt); }

.lf-faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--sp-4) 0;
  font-family: var(--ff-serif);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 600;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
  gap: var(--sp-4);
}
.lf-section--cream .lf-faq__question { color: var(--ink); }
.lf-faq__question:hover { color: var(--red-light); }
.lf-faq__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(245,240,232,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--muted);
  transition: transform var(--transition), border-color var(--transition);
}
.lf-faq__item.is-open .lf-faq__icon {
  transform: rotate(45deg);
  border-color: var(--red-light);
  color: var(--red-light);
}
.lf-faq__answer {
  display: none;
  padding-bottom: var(--sp-4);
  font-size: 0.93rem;
  line-height: 1.72;
  color: var(--cream);
  opacity: 0.78;
  max-width: 80ch;
}
.lf-section--cream .lf-faq__answer { color: var(--ink); }
.lf-faq__item.is-open .lf-faq__answer { display: block; }

/* ─── CONTENT PROSE ─────────────────────────────────────── */
.lf-prose {
  max-width: 76ch;
}
.lf-prose p + p { margin-top: var(--sp-4); }
.lf-prose h3 { margin-top: var(--sp-5); margin-bottom: var(--sp-3); }

/* ─── TWO-COL CONTENT ───────────────────────────────────── */
.lf-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.lf-two-col--wide-left { grid-template-columns: 3fr 2fr; }

/* ─── IMAGE FRAME ───────────────────────────────────────── */
.lf-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--navy-light);
}
.lf-img-frame img { width: 100%; height: 100%; object-fit: cover; }

/* ─── FORM ──────────────────────────────────────────────── */
.lf-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.lf-field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.lf-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.lf-input,
.lf-textarea,
.lf-select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.95rem;
  transition: border-color var(--transition), background var(--transition);
}
.lf-input:focus,
.lf-textarea:focus,
.lf-select:focus {
  outline: none;
  border-color: rgba(192,57,43,0.6);
  background: rgba(255,255,255,0.07);
}
.lf-textarea { min-height: 140px; resize: vertical; }

/* ─── FOOTER ────────────────────────────────────────────── */
.lf-footer {
  background: var(--ink);
  border-top: 1px solid var(--border);
  padding-top: var(--sp-7);
}

.lf-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: var(--sp-7);
  border-bottom: 1px solid var(--border);
}

.lf-footer__brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  opacity: 0.65;
  margin-top: var(--sp-3);
  max-width: 36ch;
}
.lf-footer__tagline {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--red-light);
  margin-top: var(--sp-2);
  opacity: 1 !important;
}

.lf-footer__col-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--white);
  margin-bottom: var(--sp-4);
}
.lf-footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.lf-footer__link {
  font-size: 0.875rem;
  color: rgba(245,240,232,0.58);
  transition: color var(--transition);
}
.lf-footer__link:hover { color: var(--white); }

.lf-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-3);
  padding-block: var(--sp-4);
}
.lf-footer__copy {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.35);
}
.lf-footer__legal {
  display: flex;
  gap: var(--sp-4);
}
.lf-footer__legal a {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.35);
  transition: color var(--transition);
}
.lf-footer__legal a:hover { color: var(--cream); }

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 900px) {
  .lf-hero__grid { grid-template-columns: 1fr; }
  .lf-hero__image-slot { max-width: 520px; }
  .lf-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .lf-stats { grid-template-columns: repeat(2, 1fr); }
  .lf-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .lf-stat:nth-child(odd) { border-right: 1px solid var(--border); }
  .lf-stat:last-child { border-bottom: none; }
  .lf-two-col,
  .lf-two-col--wide-left { grid-template-columns: 1fr; }
  .lf-footer__grid { grid-template-columns: 1fr 1fr; }
  .lf-cta-band__inner { flex-direction: column; text-align: center; }
  .lf-cta-band__actions { justify-content: center; }
}

@media (max-width: 640px) {
  .lf-nav { display: none; }
  .lf-hamburger { display: flex; }
  .lf-grid-3 { grid-template-columns: 1fr; }
  .lf-grid-2 { grid-template-columns: 1fr; }
  .lf-stats { grid-template-columns: 1fr 1fr; }
  .lf-footer__grid { grid-template-columns: 1fr; }
  .lf-footer__bottom { flex-direction: column; text-align: center; }
  .lf-footer__legal { justify-content: center; }
  .lf-hero__actions { flex-direction: column; align-items: flex-start; }
}
*{box-sizing:border-box}
img,svg,video{max-width:100%;height:auto}
