@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Nunito+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --fl-cream: #FBF8F1;
  --fl-cream-dark: #F0EBE0;
  --fl-sage: #6B8F5E;
  --fl-sage-dark: #4A6B3E;
  --fl-sage-light: #E2EDD9;
  --fl-sage-pale: #F0F5EC;
  --fl-gold: #C49B3C;
  --fl-gold-light: #FDF5E3;
  --fl-forest: #2C3E2D;
  --fl-text: #2D3B2E;
  --fl-text-soft: #5A6B5B;
  --fl-text-muted: #8A9A8B;
  --fl-lavender: #9B8EC4;
  --fl-lavender-light: #F0EDF8;
  --fl-border: #D8CEBC;
  --fl-white: #FFFFFF;
  --fl-shadow: 0 4px 20px rgba(44, 62, 45, 0.07);
  --fl-shadow-hover: 0 12px 40px rgba(44, 62, 45, 0.13);
  --fl-radius: 16px;
  --fl-radius-sm: 10px;
  --fl-radius-pill: 50px;
  --fl-ease: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--fl-text);
  background: var(--fl-cream);
}

a { color: inherit; text-decoration: none; transition: color var(--fl-ease); }
a:hover { color: var(--fl-sage); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== WRAP ===== */
.fl-wrap {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER (centered logo, split nav) ===== */
.fl-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 241, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--fl-border);
  transition: box-shadow var(--fl-ease);
}
.fl-header.pinned { box-shadow: var(--fl-shadow); }
.fl-header-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 0;
  gap: 12px;
}
.fl-nav-left,
.fl-nav-right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}
.fl-nav-left { justify-content: flex-end; }
.fl-nav-right { justify-content: flex-start; }
.fl-nav-left a,
.fl-nav-right a {
  padding: 7px 13px;
  border-radius: var(--fl-radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--fl-text-soft);
  transition: all var(--fl-ease);
  white-space: nowrap;
}
.fl-nav-left a:hover,
.fl-nav-right a:hover {
  background: var(--fl-sage-pale);
  color: var(--fl-sage-dark);
  text-decoration: none;
}
.fl-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: var(--fl-forest);
  padding: 0 20px;
  flex-shrink: 0;
}
.fl-brand:hover { color: var(--fl-forest); text-decoration: none; }
.fl-brand-leaf {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fl-sage), var(--fl-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
}
.fl-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px !important;
  border-radius: var(--fl-radius-pill) !important;
  background: var(--fl-sage) !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  transition: all var(--fl-ease);
}
.fl-cta-btn:hover {
  background: var(--fl-sage-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(107, 143, 94, 0.3);
  text-decoration: none !important;
}
.fl-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.fl-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fl-text);
  border-radius: 2px;
  transition: all var(--fl-ease);
}

/* ===== HERO ===== */
.fl-hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(251,248,241,0.93) 0%, rgba(251,248,241,0.70) 55%, rgba(251,248,241,0.25) 100%),
    url('https://images.unsplash.com/photo-1556679343-c7306c1976bc?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}
.fl-hero-inner {
  position: relative;
  z-index: 2;
  padding: 70px 0;
  max-width: 580px;
}
.fl-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: var(--fl-radius-pill);
  background: var(--fl-gold-light);
  border: 1px solid rgba(196, 155, 60, 0.25);
  color: var(--fl-gold);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 22px;
}
.fl-hero-chip::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--fl-gold);
}
.fl-hero-heading {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.1;
  color: var(--fl-forest);
  margin-bottom: 18px;
}
.fl-hero-heading em {
  font-style: normal;
  color: var(--fl-sage);
}
.fl-hero-sub {
  font-size: 17px;
  color: var(--fl-text-soft);
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 480px;
}
.fl-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.fl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--fl-radius-pill);
  font-weight: 700;
  font-size: 15px;
  transition: all var(--fl-ease);
  border: 2px solid transparent;
}
.fl-btn:hover { text-decoration: none; transform: translateY(-2px); }
.fl-btn-sage {
  background: var(--fl-sage);
  color: #fff;
  border-color: var(--fl-sage);
}
.fl-btn-sage:hover {
  background: var(--fl-sage-dark);
  border-color: var(--fl-sage-dark);
  box-shadow: 0 8px 24px rgba(107, 143, 94, 0.3);
  color: #fff;
}
.fl-btn-ghost {
  background: transparent;
  color: var(--fl-forest);
  border-color: var(--fl-border);
}
.fl-btn-ghost:hover {
  background: var(--fl-sage-pale);
  border-color: var(--fl-sage);
  color: var(--fl-sage-dark);
}
.fl-btn-gold {
  background: var(--fl-gold);
  color: #fff;
  border-color: var(--fl-gold);
}
.fl-btn-gold:hover {
  background: #B08A30;
  border-color: #B08A30;
  box-shadow: 0 8px 24px rgba(196, 155, 60, 0.3);
  color: #fff;
}

/* ===== SECTIONS ===== */
.fl-block {
  padding: 80px 0;
}
.fl-block-alt {
  background: var(--fl-white);
}
.fl-block-dark {
  background: var(--fl-forest);
  color: #fff;
}
.fl-block-sage {
  background: linear-gradient(145deg, var(--fl-sage-dark), var(--fl-sage));
  color: #fff;
}
.fl-block-head {
  text-align: center;
  margin-bottom: 48px;
}
.fl-block-head h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--fl-forest);
  margin-bottom: 10px;
}
.fl-block-sage .fl-block-head h2,
.fl-block-dark .fl-block-head h2 { color: #fff; }
.fl-block-head p {
  font-size: 16px;
  color: var(--fl-text-soft);
  max-width: 520px;
  margin: 0 auto;
}
.fl-block-sage .fl-block-head p,
.fl-block-dark .fl-block-head p { color: rgba(255,255,255,0.75); }

/* ===== ABOUT (image + text) ===== */
.fl-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.fl-about-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--fl-radius);
  box-shadow: var(--fl-shadow-hover);
}
.fl-about-text h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(26px, 3vw, 36px);
  color: var(--fl-forest);
  margin-bottom: 16px;
}
.fl-about-text p {
  font-size: 16px;
  color: var(--fl-text-soft);
  margin-bottom: 14px;
  line-height: 1.7;
}
.fl-about-text .fl-highlight {
  display: inline-block;
  padding: 3px 12px;
  border-radius: var(--fl-radius-pill);
  background: var(--fl-sage-light);
  color: var(--fl-sage-dark);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 14px;
}

/* ===== RECIPES ===== */
.fl-recipes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.fl-recipe-card {
  display: flex;
  background: var(--fl-white);
  border-radius: var(--fl-radius);
  overflow: hidden;
  border: 1px solid var(--fl-border);
  box-shadow: var(--fl-shadow);
  transition: all var(--fl-ease);
}
.fl-recipe-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--fl-shadow-hover);
}
.fl-recipe-photo {
  width: 190px;
  min-height: 220px;
  object-fit: cover;
  flex-shrink: 0;
}
.fl-recipe-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
}
.fl-recipe-label {
  display: inline-block;
  padding: 3px 11px;
  border-radius: var(--fl-radius-pill);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
  align-self: flex-start;
}
.fl-recipe-label-mint { background: var(--fl-sage-light); color: var(--fl-sage-dark); }
.fl-recipe-label-calm { background: var(--fl-lavender-light); color: var(--fl-lavender); }
.fl-recipe-label-warm { background: var(--fl-gold-light); color: var(--fl-gold); }
.fl-recipe-label-field { background: #FFF0F0; color: #C25050; }
.fl-recipe-name {
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--fl-forest);
}
.fl-recipe-note {
  font-size: 14px;
  color: var(--fl-text-soft);
  margin-bottom: 10px;
}
.fl-recipe-steps {
  margin: 0;
  padding-left: 18px;
  list-style: decimal;
  font-size: 13px;
  color: var(--fl-text-muted);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.fl-recipe-steps li { list-style: decimal; }

/* ===== BENEFITS ===== */
.fl-perks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.fl-perk {
  background: var(--fl-cream);
  border-radius: var(--fl-radius);
  padding: 28px 22px;
  text-align: center;
  border: 1px solid var(--fl-border);
  box-shadow: var(--fl-shadow);
  transition: all var(--fl-ease);
}
.fl-perk:hover {
  transform: translateY(-5px);
  box-shadow: var(--fl-shadow-hover);
}
.fl-perk-ico {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 16px;
}
.fl-perk-ico-1 { background: var(--fl-sage-light); }
.fl-perk-ico-2 { background: var(--fl-gold-light); }
.fl-perk-ico-3 { background: var(--fl-lavender-light); }
.fl-perk-ico-4 { background: #FFF0F0; }
.fl-perk h3 {
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--fl-forest);
}
.fl-perk p {
  font-size: 14px;
  color: var(--fl-text-soft);
  line-height: 1.6;
}

/* ===== GALLERY ===== */
.fl-gallery-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}
.fl-gallery-pic {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--fl-radius);
  transition: transform var(--fl-ease);
  box-shadow: var(--fl-shadow);
}
.fl-gallery-pic:hover { transform: scale(1.03); }

/* ===== TESTIMONIALS ===== */
.fl-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.fl-review {
  background: var(--fl-white);
  border-radius: var(--fl-radius);
  padding: 28px;
  border: 1px solid var(--fl-border);
  box-shadow: var(--fl-shadow);
  transition: all var(--fl-ease);
}
.fl-review:hover {
  transform: translateY(-3px);
  box-shadow: var(--fl-shadow-hover);
}
.fl-review-stars {
  color: var(--fl-gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.fl-review-quote {
  font-size: 15px;
  color: var(--fl-text-soft);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}
.fl-review-who {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fl-review-ava {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}
.fl-review-ava-a { background: var(--fl-sage); }
.fl-review-ava-b { background: var(--fl-gold); }
.fl-review-ava-c { background: var(--fl-lavender); }
.fl-review-name { font-weight: 700; font-size: 15px; color: var(--fl-forest); }
.fl-review-tag { font-size: 12px; color: var(--fl-text-muted); }

/* ===== FAQ ===== */
.fl-faq-wrap {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fl-faq-row {
  background: var(--fl-cream);
  border-radius: var(--fl-radius-sm);
  border: 1px solid var(--fl-border);
  overflow: hidden;
  transition: box-shadow var(--fl-ease);
}
.fl-faq-row:hover { box-shadow: var(--fl-shadow); }
.fl-faq-trigger {
  width: 100%;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-weight: 700;
  font-size: 15px;
  color: var(--fl-forest);
  text-align: left;
  transition: color var(--fl-ease);
}
.fl-faq-trigger:hover { color: var(--fl-sage); }
.fl-faq-marker {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--fl-sage-light);
  color: var(--fl-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: all var(--fl-ease);
}
.fl-faq-row[data-visible="yes"] .fl-faq-marker {
  background: var(--fl-sage);
  color: #fff;
  transform: rotate(45deg);
}
.fl-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.fl-faq-body-inner {
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--fl-text-soft);
  line-height: 1.7;
}
.fl-faq-row[data-visible="yes"] .fl-faq-body {
  max-height: 300px;
}

/* ===== FORM SECTION ===== */
.fl-form-box {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}
.fl-form-box h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  color: #fff;
  margin-bottom: 10px;
}
.fl-form-box > p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  margin-bottom: 28px;
}
.fl-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}
.fl-form-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.fl-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.fl-field-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
}
.fl-field-input,
.fl-field-select,
.fl-field-textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: var(--fl-radius-sm);
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 15px;
  font-family: 'Nunito Sans', sans-serif;
  outline: none;
  transition: all var(--fl-ease);
}
.fl-field-input::placeholder,
.fl-field-textarea::placeholder { color: rgba(255,255,255,0.4); }
.fl-field-input:focus,
.fl-field-select:focus,
.fl-field-textarea:focus {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.15);
}
.fl-field-select option { background: var(--fl-sage-dark); color: #fff; }
.fl-field-textarea { min-height: 90px; resize: vertical; }
.fl-form-send {
  padding: 14px 30px;
  border-radius: var(--fl-radius-pill);
  background: var(--fl-gold);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  border: none;
  transition: all var(--fl-ease);
  margin-top: 6px;
}
.fl-form-send:hover {
  background: #B08A30;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 155, 60, 0.35);
}
.fl-imprint-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 12px;
  color: rgba(255,255,255,0.5) !important;
  text-decoration: underline !important;
}
.fl-imprint-link:hover { color: rgba(255,255,255,0.8) !important; }
.fl-form-hint {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin-top: 6px;
}

/* ===== CONTACTS ===== */
.fl-contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.fl-contact-data h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 30px;
  margin-bottom: 18px;
  color: var(--fl-forest);
}
.fl-contact-lines {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fl-contact-line {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.fl-contact-dot {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--fl-sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.fl-contact-small { font-size: 12px; color: var(--fl-text-muted); font-weight: 600; }
.fl-contact-val { font-size: 15px; font-weight: 700; color: var(--fl-forest); }
.fl-contact-val a { color: var(--fl-sage); }
.fl-contact-val a:hover { text-decoration: underline; }
.fl-map-box {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: var(--fl-radius);
  border: 1px solid var(--fl-border);
  overflow: hidden;
  box-shadow: var(--fl-shadow);
}

/* ===== FOOTER (centered top, 3 cols, bar) ===== */
.fl-footer {
  background: var(--fl-forest);
  color: rgba(255,255,255,0.75);
  padding: 50px 0 0;
}
.fl-footer-top {
  text-align: center;
  padding-bottom: 28px;
}
.fl-footer-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: #fff !important;
}
.fl-footer-brand:hover { text-decoration: none; }
.fl-footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
}
.fl-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 0;
}
.fl-footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 36px;
  padding: 28px 0;
}
.fl-footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fl-footer-col-title {
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  margin-bottom: 4px;
}
.fl-footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color var(--fl-ease);
  padding: 2px 0;
}
.fl-footer-col a:hover { color: var(--fl-gold); text-decoration: none; }
.fl-footer-col p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.fl-footer-bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.fl-footer-copy { font-size: 12px; color: rgba(255,255,255,0.35); }
.fl-legal {
  display: flex;
  gap: 14px;
}
.fl-legal a { font-size: 12px; color: rgba(255,255,255,0.35); }
.fl-legal a:hover { color: rgba(255,255,255,0.65); text-decoration: none; }

/* ===== MOBILE OVERLAY ===== */
.fl-mob-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(251,248,241,0.98);
  backdrop-filter: blur(18px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.fl-mob-overlay.open { display: flex; }
.fl-mob-overlay a {
  font-size: 19px;
  font-weight: 700;
  color: var(--fl-forest);
  padding: 10px 20px;
}
.fl-mob-x {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 30px;
  color: var(--fl-text);
}

/* ===== LEAFLET ===== */
.leaflet-container { background: var(--fl-sage-pale); }
.leaflet-control-attribution {
  background: rgba(255,255,255,0.85) !important;
  color: var(--fl-text-muted) !important;
  border-radius: 8px !important;
  font-size: 10px !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .fl-perks-grid { grid-template-columns: repeat(2, 1fr); }
  .fl-recipes-grid { grid-template-columns: 1fr; }
  .fl-reviews-grid { grid-template-columns: 1fr; }
  .fl-footer-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .fl-nav-left, .fl-nav-right, .fl-brand { display: none; }
  .fl-burger { display: flex; }
  .fl-header-bar { justify-content: space-between; }
  .fl-brand { display: flex; }

  .fl-hero { min-height: 480px; }
  .fl-hero-inner { padding: 50px 0; }
  .fl-hero-heading { font-size: 30px; }

  .fl-block { padding: 50px 0; }

  .fl-about-grid { grid-template-columns: 1fr; }
  .fl-about-img { height: 260px; }

  .fl-perks-grid { grid-template-columns: 1fr; gap: 14px; }

  .fl-gallery-row { grid-template-columns: 1fr; gap: 10px; }
  .fl-gallery-pic { height: 220px; }

  .fl-recipe-card { flex-direction: column; }
  .fl-recipe-photo { width: 100%; height: 170px; min-height: auto; }

  .fl-contact-split { grid-template-columns: 1fr; }
  .fl-map-box { min-height: 260px; }

  .fl-form-pair { grid-template-columns: 1fr; }

  .fl-footer-cols { grid-template-columns: 1fr; gap: 22px; }
  .fl-footer-bar { flex-direction: column; align-items: flex-start; }
}
