/* ============================================================
   ILCA Find-a-Lactation-Consultant (FALC) Directory
   Brand palette: teal/navy matching ilca.org
   ============================================================ */

:root {
  /* Real ILCA brand palette pulled from ilca.org stylesheet */
  --ilca-teal:        #028ea7;   /* primary teal accents */
  --ilca-teal-dark:   #026e80;
  --ilca-footer:      #2f6d7e;   /* exact footer teal from ilca.org */
  --ilca-navy:        #004a59;
  --ilca-teal-soft:   #4ecac2;
  --ilca-mint:        #e6f7f6;

  --ilca-gold:        #f5b000;   /* brand gold — donate button + accents */
  --ilca-gold-dark:   #d39800;   /* hover */
  --ilca-cream:       #faecc8;   /* soft gold tint */

  --ilca-purple:      #6c297d;   /* brand purple — from ilca.org logo + Join Today CTA */
  --ilca-purple-dark: #4f1c5d;
  --ilca-lavender:    #f4ecf6;   /* soft purple tint */

  --ilca-peach:       #fff7e6;   /* subtle warm section tint */
  --ilca-aqua:        #f0f9f8;   /* subtle cool section tint */

  --ilca-text:        #1f2a2e;
  --ilca-headline:    #2c2c2c;   /* dark nav text */
  --ilca-muted:       #5f6a6d;
  --ilca-border:      #edf0f1;   /* lighter — softer dividers everywhere */
  --ilca-divider:     #f1f4f5;   /* even softer for hairline-only dividers */
  --ilca-surface:     #fdfcfa;   /* warmer white than pure FFF */
  --ilca-bg:          #fafbfb;

  --ilca-radius:      12px;
  --ilca-radius-sm:   8px;
  --ilca-shadow:      0 4px 18px rgba(2, 60, 70, 0.08);
  --ilca-shadow-lg:   0 12px 40px rgba(2, 60, 70, 0.14);

  --font-head: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-body: 'Open Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--ilca-text);
  background: var(--ilca-bg);      /* clean near-white so the purple hero pops */
  font-size: 16px;
  line-height: 1.55;
}

a { color: var(--ilca-teal-dark); text-decoration: none; }
a:hover { color: var(--ilca-teal); text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ilca-navy);
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}

img { max-width: 100%; height: auto; display: block; }

/* ============================================================
   HEADER — matches ilca.org (white bg, uppercase nav, gold pill)
   ============================================================ */
.ilca-header {
  background: var(--ilca-surface);
  border-bottom: 1px solid var(--ilca-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.ilca-header__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.ilca-header__logo img {
  height: 100px;            /* matches ilca.org native logo size (300x100) */
  width: auto;
}

.ilca-header__nav {
  margin-left: auto;
}

.ilca-header__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2px;
  align-items: center;
}

.ilca-header__nav a {
  display: inline-block;
  padding: 18px 14px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--ilca-headline);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 3px solid transparent;
  transition: border-color 0.15s, color 0.15s;
}

.ilca-header__nav a:hover {
  color: var(--ilca-teal-dark);
  border-bottom-color: var(--ilca-gold);
  text-decoration: none;
}

/* Gold pill DONATE button */
.ilca-header__cta {
  background: var(--ilca-gold);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background-color 0.15s;
}
.ilca-header__cta:hover {
  background: var(--ilca-gold-dark);
  color: #fff !important;
  text-decoration: none;
}

/* Search icon */
.ilca-header__search {
  background: transparent;
  border: 0;
  padding: 8px;
  color: var(--ilca-headline);
  cursor: pointer;
  display: flex;
  align-items: center;
  border-radius: 50%;
  transition: background-color 0.15s, color 0.15s;
}
.ilca-header__search:hover {
  background: var(--ilca-mint);
  color: var(--ilca-teal-dark);
}

.ilca-header__burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: 0;
  margin-left: auto;
  padding: 8px;
  cursor: pointer;
}
.ilca-header__burger span {
  width: 26px;
  height: 3px;
  background: var(--ilca-headline);
  border-radius: 2px;
}

/* ============================================================
   HERO — solid purple with crisp semi-transparent circles
   ============================================================ */
.ilca-hero {
  position: relative;
  background: var(--ilca-purple);
  color: #fff;
  padding: 44px 24px 64px;
  text-align: center;
  overflow: hidden;
}

.ilca-hero__circles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  z-index: 0;
}

.ilca-hero__overlay {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
}

.ilca-hero h1 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.2;
  white-space: nowrap;                    /* single line on desktop */
}

.ilca-hero__lead {
  font-size: 1.02rem;
  margin: 0 auto;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.92);
}
.ilca-hero__creds {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.85);
  margin: -2px auto 10px;
}

.ilca-hero__curve {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 40px;
  display: block;
  z-index: 1;
}

/* ============================================================
   MAIN LAYOUT
   ============================================================ */
.falc {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 64px;
  position: relative;
  z-index: 2;
}

/* ============================================================
   MAP
   ============================================================ */
.falc-map-wrap {
  background: var(--ilca-surface);
  border-radius: var(--ilca-radius);
  box-shadow: var(--ilca-shadow-lg);
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
}

.falc-map {
  width: 100%;
  height: 460px;
  background: #e8eef0 url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40'><rect width='40' height='40' fill='%23e8eef0'/><path d='M0 20 H40 M20 0 V40' stroke='%23d0d8db' stroke-width='1'/></svg>");
}

.falc-map__controls {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.96);
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: var(--ilca-shadow);
  z-index: 5;
}

/* Custom toggle */
.falc-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  font-size: 0.88rem;
  color: var(--ilca-navy);
  font-weight: 600;
}
.falc-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.falc-toggle__track {
  width: 36px;
  height: 20px;
  background: #cbd5d8;
  border-radius: 999px;
  position: relative;
  transition: background 0.2s;
}
.falc-toggle__thumb {
  position: absolute;
  top: 2px; left: 2px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.falc-toggle input:checked + .falc-toggle__track {
  background: var(--ilca-teal);
}
.falc-toggle input:checked + .falc-toggle__track .falc-toggle__thumb {
  transform: translateX(16px);
}

/* Google Maps info window styling */
.falc-info {
  font-family: var(--font-body);
  max-width: 260px;
}
.falc-info h4 {
  font-family: var(--font-head);
  font-size: 1.02rem;
  margin: 0 0 4px;
  color: var(--ilca-navy);
}
.falc-info .falc-info__location {
  font-size: 0.85rem;
  color: var(--ilca-muted);
  margin: 0 0 8px;
}
.falc-info .falc-info__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0 0 8px;
}
.falc-info .falc-tag {
  background: var(--ilca-mint);
  color: var(--ilca-teal-dark);
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 600;
}
.falc-info a {
  font-size: 0.86rem;
  font-weight: 600;
}

/* ============================================================
   FILTER PANEL — compact horizontal rows, all visible
   ============================================================ */
.falc-filters {
  background: var(--ilca-surface);
  border-radius: var(--ilca-radius);
  box-shadow: var(--ilca-shadow);
  padding: 16px 22px;
  /* Match the map's visible width: .falc-mapwrap is 1100px max including
     16px side padding, so its box is 1068px. Centering both aligns edges. */
  max-width: 1068px;
  margin: 0 auto 20px;
}

.falc-filter-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  border: 0;
  margin: 0;
  min-width: 0;
}
.falc-filter-row + .falc-filter-row {
  border-top: 1px solid var(--ilca-border);
}

.falc-filter-row__label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ilca-teal-dark);
  flex-shrink: 0;
  /* Natural width: each row's controls sit right next to their label
     (a shared fixed column left short labels like NAME with a big gap).
     nowrap keeps "Near ZIP / Postal Code" on one line. */
  width: auto;
  white-space: nowrap;
  padding: 0;
}

.falc-filter-row__controls {
  flex: 1;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  min-width: 0;
}

/* Compact dropdowns + inputs in filter rows
   The !important is to defeat i4a's globally-loaded Bootstrap
   .form-control rules which otherwise stretch selects to 100%. */
.falc-filter-row__controls select,
.falc-filter-row__controls input[type="text"] {
  height: 38px !important;
  padding: 0 12px !important;
  font: inherit;
  font-size: 0.92rem !important;
  border: 1px solid var(--ilca-border) !important;
  border-radius: var(--ilca-radius-sm) !important;
  background-color: #fff !important;
  color: var(--ilca-text) !important;
  display: inline-block !important;
  flex: 0 0 auto !important;
  margin: 0 !important;
  box-shadow: none !important;
  max-width: 100%;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.falc-filter-row__controls select {
  padding-right: 28px !important;
}
.falc-filter-row__controls #srch_FALC_STATE_stateList_138 { width: 220px !important; }
.falc-filter-row__controls #srch_COUNTRY_countryList_142  { width: 240px !important; }
.falc-filter-row__controls #cityZip { width: 200px !important; }
.falc-filter-row__controls #userZip { width: 130px !important; }
.falc-filter-row__controls #zipRadius { width: 160px !important; }

/* Status note next to the ZIP/radius row */
.falc-zip-status {
  font-size: 0.85rem;
  color: var(--ilca-muted);
  margin-left: 4px;
}
.falc-zip-status.is-good { color: var(--ilca-teal-dark); font-weight: 600; }
.falc-zip-status.is-bad  { color: #b54400; font-weight: 600; }

/* Custom autocomplete (replaces native <datalist> so we can control colors + matching) */
.falc-autocomplete {
  position: relative;
  flex: 0 0 auto;
}
.falc-autocomplete__menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 100%;
  min-width: 220px;
  max-height: 300px;
  overflow-y: auto;
  background: #ffffff;             /* explicit white */
  color: #1f2a2e;                  /* explicit dark text */
  border: 1px solid var(--ilca-border);
  border-radius: var(--ilca-radius-sm);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  z-index: 50;
}
.falc-autocomplete__menu[hidden] { display: none; }
.falc-autocomplete__item {
  padding: 12px 14px;
  cursor: pointer;
  color: #1f2a2e;
  font-size: 0.95rem;
  min-height: 44px;                 /* mobile tap-target */
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--ilca-border);
}
.falc-autocomplete__item:last-child { border-bottom: 0; }
.falc-autocomplete__item:hover,
.falc-autocomplete__item.is-active {
  background: var(--ilca-mint);
  color: var(--ilca-teal-dark);
}
.falc-filter-row__controls input[type="text"] { width: 160px !important; }
.falc-filter-row__controls #resetBtn { margin-left: auto !important; }
.falc-filter-row__controls select:focus,
.falc-filter-row__controls input[type="text"]:focus {
  outline: none;
  border-color: var(--ilca-teal);
  box-shadow: 0 0 0 3px rgba(2, 142, 167, 0.15);
}

.falc-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.falc-field label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ilca-muted);
}

.falc-field input[type="text"],
.falc-field select {
  height: 44px;
  padding: 0 14px;
  font: inherit;
  font-size: 0.95rem;
  border: 1px solid var(--ilca-border);
  border-radius: var(--ilca-radius-sm);
  background: #fff;
  color: var(--ilca-text);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.falc-field input:focus,
.falc-field select:focus {
  outline: none;
  border-color: var(--ilca-teal);
  box-shadow: 0 0 0 3px rgba(2, 142, 167, 0.15);
}

.falc-field--actions {
  display: flex;
  gap: 8px;
  align-items: end;
}

.falc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 20px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--ilca-radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
}

.falc-btn--primary {
  background: var(--ilca-teal);
  color: #fff;
}
.falc-btn--primary:hover {
  background: var(--ilca-teal-dark);
}

.falc-btn--ghost {
  background: transparent;
  color: var(--ilca-teal-dark);
  border-color: var(--ilca-border);
}
.falc-btn--ghost:hover {
  background: var(--ilca-mint);
  border-color: var(--ilca-teal-soft);
}

/* Telehealth quick-toggle chip — promoted out of advanced filters */
.falc-quicktoggle {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--ilca-border);
}
.falc-chip-check {
  display: inline-block;
  cursor: pointer;
  user-select: none;
}
.falc-chip-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.falc-chip-check span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 2px solid var(--ilca-teal);
  color: var(--ilca-teal-dark);
  background: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.15s, color 0.15s;
}
.falc-chip-check input:checked + span {
  background: var(--ilca-teal);
  color: #fff;
}
.falc-chip-check input:focus-visible + span {
  outline: 3px solid rgba(2, 142, 167, 0.35);
  outline-offset: 2px;
}

/* Practice setting — toggle pills (touch-friendly) */
.falc-toggles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.falc-toggle-pill {
  position: relative;
  display: inline-block;
  cursor: pointer;
  user-select: none;
}
.falc-toggle-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0; height: 0;
}
.falc-toggle-pill span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;            /* still tap-friendly, but tighter in horizontal rows */
  padding: 6px 14px;
  border-radius: 999px;
  border: 2px solid var(--ilca-border);
  background: #fff;
  color: var(--ilca-text);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.86rem;
  transition: background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.falc-toggle-pill:hover span {
  border-color: var(--ilca-teal);
  color: var(--ilca-teal-dark);
}
.falc-toggle-pill input:checked + span {
  background: var(--ilca-teal);
  border-color: var(--ilca-teal);
  color: #fff;
  box-shadow: 0 4px 12px rgba(2, 142, 167, 0.25);
}
.falc-toggle-pill input:focus-visible + span {
  outline: 3px solid rgba(2, 142, 167, 0.4);
  outline-offset: 2px;
}
.falc-toggle-pill input:checked:focus-visible + span {
  outline-color: rgba(2, 142, 167, 0.6);
}

/* ============================================================
   RESULTS
   ============================================================ */
/* Screen-reader-only utility */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Active filter chips above results */
.falc-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.falc-active-filters[hidden] { display: none; }
.falc-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 6px 6px 12px;
  background: var(--ilca-mint);
  color: var(--ilca-teal-dark);
  border: 1px solid var(--ilca-teal-soft);
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.15s, border-color 0.15s, color 0.15s;
}
.falc-chip:hover {
  background: var(--ilca-teal);
  border-color: var(--ilca-teal);
  color: #fff;
}
.falc-chip__x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  font-size: 1.1rem;
  line-height: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}
.falc-chip:hover .falc-chip__x {
  background: rgba(255, 255, 255, 0.25);
}

/* Anchor target for "Back to results" links — offset the jump by the
   sticky header's height (100px logo + 22px padding x2 + border) so the
   results heading lands below the banner, not underneath it. */
.falc-results {
  scroll-margin-top: 158px;
}

.falc-results__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
  gap: 16px;
  flex-wrap: wrap;
}
.falc-results__head h2 {
  font-size: 1.4rem;
  margin: 0;
}

/* "New search" — tertiary text action, lives with the results state, not the form */
.falc-new-search {
  background: transparent;
  border: 0;
  padding: 4px 0;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ilca-teal-dark);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.15s, color 0.15s;
}
.falc-new-search:hover {
  color: var(--ilca-navy);
  text-decoration-color: currentColor;
}
.falc-new-search:focus-visible {
  outline: 2px solid var(--ilca-teal);
  outline-offset: 4px;
  border-radius: 2px;
}
.falc-results__tools {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.falc-results__sort {
  display: flex;
  align-items: center;
  gap: 8px;
}
.falc-results__sort label {
  font-size: 0.85rem;
  color: var(--ilca-muted);
  font-weight: 600;
}
.falc-results__sort select {
  height: 36px;
  padding: 0 10px;
  border: 1px solid var(--ilca-border);
  border-radius: var(--ilca-radius-sm);
  background: #fff;
  font: inherit;
  font-size: 0.9rem;
}

.falc-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.falc-card {
  background: var(--ilca-surface);
  border-radius: var(--ilca-radius);
  box-shadow: 0 1px 2px rgba(2, 60, 70, 0.04), 0 1px 6px rgba(2, 60, 70, 0.06);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.18s, box-shadow 0.18s;
  border: none;
}
.falc-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(2, 60, 70, 0.10), 0 1px 3px rgba(2, 60, 70, 0.08);
}
.falc-card.is-active {
  box-shadow: 0 0 0 2px rgba(2, 142, 167, 0.25), 0 4px 16px rgba(2, 60, 70, 0.10);
}

.falc-card__head {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

/* Avatar slot — same dimensions always, photo layered over placeholder */
.falc-card__thumb-wrap {
  position: relative;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}
.falc-card__thumb {
  width: 52px;
  height: 52px;
  border-radius: 8px;
}
.falc-card__thumb--photo {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: top center;
  /* Subtle normalization so wildly-varying photo quality reads consistent */
  filter: saturate(0.95) contrast(0.97);
}
.falc-card__thumb--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  user-select: none;
}
.falc-card__head-text {
  flex: 1;
  min-width: 0;
}
.falc-card__head-text {
  flex: 1;
  min-width: 0;
  min-height: 64px;            /* reserve space — consistent card alignment */
}
.falc-card__name {
  font-family: var(--font-head);
  font-weight: 600;            /* a touch lighter, less shouty */
  font-size: 1.1rem;
  color: var(--ilca-navy);
  margin: 0 0 2px;
  line-height: 1.25;
  letter-spacing: -0.005em;
}
.falc-card__creds {
  font-family: var(--font-head);
  font-size: 0.72rem;          /* clear hierarchical step down from the name */
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ilca-muted);
  margin: 0 0 4px;
  text-transform: uppercase;
}
.falc-card__location {
  font-size: 0.82rem;
  color: var(--ilca-muted);
  margin: 0;
}
.falc-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  align-items: center;
}
.falc-card__distance {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ilca-navy);
}

.falc-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.falc-tag {
  background: var(--ilca-mint);
  color: var(--ilca-teal-dark);
  font-size: 0.74rem;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.falc-tag--telehealth {
  background: var(--ilca-cream);
  color: var(--ilca-gold-dark);
}
.falc-tag--distance {
  background: var(--ilca-lavender);
  color: var(--ilca-purple-dark);
}
.falc-tag--more {
  background: transparent;
  color: var(--ilca-muted);
  border: 1px dashed var(--ilca-border);
}

/* Reserve a fixed row for tags — keeps card heights aligned even when 0 tags */
.falc-card__tags {
  min-height: 24px;
}

/* ----- Call CTA — softer chip, identity over action ----- */
.falc-card__call {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  padding: 7px 13px;
  background: var(--ilca-teal);     /* lighter than teal-dark — less saturated */
  color: #fff !important;
  border-radius: var(--ilca-radius-sm);
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 500;
  min-height: 36px;                  /* still meets 36px touch target */
  transition: background-color 0.15s, transform 0.1s;
}
.falc-card__call:hover {
  background: var(--ilca-teal-dark);
  text-decoration: none;
}
.falc-card__call:active {
  transform: scale(0.99);
}
.falc-card__call strong {
  font-weight: 600;
  letter-spacing: 0.01em;
}
.falc-card__call-icon {
  opacity: 0.85;
  flex-shrink: 0;
}

/* ----- Secondary actions row — compact one-baseline strip ----- */
.falc-card__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--ilca-divider);   /* hairline — barely visible */
  padding-top: 10px;
  margin-top: auto;            /* push to bottom of card */
  font-size: 0.84rem;
}
.falc-card__action {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--ilca-teal-dark) !important;
  font-weight: 600;
  padding: 4px 0;
  text-decoration: none;
}
.falc-card__action:hover { text-decoration: underline; }
.falc-card__action svg { opacity: 0.7; flex-shrink: 0; }
.falc-card__action--profile {
  margin-left: auto;           /* nudge to the right */
}

.falc-empty {
  text-align: center;
  padding: 56px 24px;
  background: var(--ilca-surface);
  border-radius: var(--ilca-radius);
  border: 1px dashed var(--ilca-border);
}
.falc-empty > * + * {
  margin-top: 20px;
}
.falc-empty > h3 + p {
  margin-top: 24px;
}
.falc-empty .falc-btn {
  margin-top: 8px;
}
.falc-empty small {
  display: inline-block;
  margin-top: 4px;
}

.falc-load-more__wrap {
  margin: 24px 0 8px;
  text-align: center;
}
.falc-load-more__wrap[hidden] { display: none; }
.falc-load-more {
  padding: 12px 28px !important;
  font-size: 0.95rem !important;
}

.falc-results__back {
  margin: 32px 0 8px;
  text-align: center;
}
.falc-results__back .falc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.falc-empty h3 {
  color: var(--ilca-navy);
}
.falc-empty p {
  color: var(--ilca-muted);
  margin: 0;
  line-height: 1.5;
}

/* ============================================================
   DISCLAIMER
   ============================================================ */
.falc-disclaimer {
  margin-top: 48px;
  padding: 24px 28px;
  background: var(--ilca-cream);
  border-radius: var(--ilca-radius);
  border-left: 4px solid var(--ilca-teal);
}
.falc-disclaimer h3 {
  margin-top: 0;
  font-size: 1.05rem;
}
.falc-disclaimer p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--ilca-text);
}

/* ============================================================
   FOOTER — matches ilca.org (#2f6d7e teal, flat 3-col, trademarks)
   ============================================================ */
.ilca-footer {
  background: var(--ilca-footer);
  color: #fff;
  padding: 64px 28px 0;
  margin-top: 96px;
  position: relative;
}
/* Subtle gradient transition into the footer — avoids the abrupt color shift */
.ilca-footer::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0; right: 0;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(47, 109, 126, 0.06));
  pointer-events: none;
}

.ilca-footer__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.ilca-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ilca-footer li {
  margin-bottom: 12px;
  line-height: 1.5;
}
.ilca-footer a {
  color: rgba(255, 255, 255, 0.92);     /* slightly softer than pure white */
  font-family: var(--font-head);
  font-size: 0.94rem;
  font-weight: 400;
  text-decoration: none;
}
.ilca-footer a:hover {
  text-decoration: underline;
  color: #fff;
}

.ilca-footer__brand img {
  height: 64px;
  width: auto;
  margin-bottom: 18px;
}
.ilca-footer__brand p {
  margin: 8px 0;
  font-size: 0.88rem;
  line-height: 1.5;
}
.ilca-footer__brand a {
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ilca-footer__brand a:hover {
  color: #fff;
}

.ilca-footer__col {
  padding-top: 90px;   /* aligns first link with logo wordmark */
}

.ilca-footer__legal {
  max-width: 1320px;
  margin: 56px auto 0;
  padding-top: 0;
}
.ilca-footer__legal p {
  font-size: 0.74rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
  max-width: 100%;
}

.ilca-footer__bottom {
  max-width: 1320px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.ilca-footer__bottom small {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
}
.ilca-footer__social {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ilca-footer__social li {
  margin: 0;
}
.ilca-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #fff;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  transition: background-color 0.15s;
}
.ilca-footer__social a:hover {
  background: var(--ilca-gold);
  text-decoration: none;
}

/* ============================================================
   ABOUT IBCLCs — educational content above the directory
   ============================================================ */
.falc-about {
  margin: 72px 0 28px;     /* generous editorial breathing room */
  scroll-margin-top: 100px;
}
.falc-about__inner {
  background: transparent;             /* let it breathe with the page */
  border-radius: 0;
  border-top: 1px solid var(--ilca-border);
  box-shadow: none;
  padding: 40px 8px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.falc-about__col h2 {
  color: var(--ilca-navy);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.falc-about__col p { line-height: 1.65; }
.falc-checklist li::before {
  background: var(--ilca-teal);
}
.falc-about__col h2 {
  font-size: 1.4rem;
  margin: 0 0 14px;
  color: var(--ilca-navy);
}
.falc-about__col p {
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--ilca-text);
}
.falc-about__note {
  margin-top: 14px;
  padding: 14px 18px;
  background: #ffffff;
  border: 1px solid var(--ilca-border);
  border-radius: var(--ilca-radius-sm);
  font-size: 0.92rem;
  color: var(--ilca-text);
}

.falc-checklist {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}
.falc-checklist li {
  position: relative;
  padding: 6px 0 6px 30px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ilca-text);
}
.falc-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 18px;
  height: 18px;
  background: var(--ilca-teal);
  border-radius: 50%;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center / 70% no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center / 70% no-repeat;
}

/* ============================================================
   PROFILE PAGE
   ============================================================ */
.ilca-hero--compact {
  padding: 56px 24px 80px;
}
.ilca-hero--compact h1 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.falc-breadcrumb {
  margin-bottom: 18px;
}
.falc-breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: background-color 0.15s, color 0.15s, border-color 0.15s;
}
.falc-breadcrumb a:hover {
  background: #fff;
  color: var(--ilca-purple);
  border-color: #fff;
  text-decoration: none;
}

.falc-profile {
  max-width: 760px;          /* conversational width, not enterprise */
  margin: -28px auto 0;
  padding: 0 24px 56px;
  position: relative;
  z-index: 2;
}

.falc-profile-card {
  background: var(--ilca-surface);
  border-radius: var(--ilca-radius);
  /* soft elevation, no hard border or heavy shadow */
  box-shadow: 0 1px 3px rgba(2, 60, 70, 0.05), 0 8px 28px rgba(2, 60, 70, 0.08);
  overflow: hidden;
}

.falc-profile-card__head {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 26px 32px;
  background: linear-gradient(135deg, var(--ilca-mint) 0%, #ffffff 70%);
  border-bottom: 1px solid var(--ilca-border);
}
.falc-profile-card__photo {
  width: 100px;
  height: 120px;
  border-radius: 10px;
  object-fit: cover;
  object-position: top center;
  box-shadow: 0 4px 14px rgba(2, 60, 70, 0.18);
  background: var(--ilca-mint);
  flex-shrink: 0;
}
.falc-profile-card__photo--initials {
  background: var(--ilca-teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.8rem;
}
.falc-profile-card__name {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--ilca-navy);
  margin: 0 0 2px;
}
.falc-profile-card__creds {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ilca-teal-dark);
  margin: 0 0 6px;
}
.falc-profile-card__loc {
  font-size: 1rem;
  color: var(--ilca-muted);
  margin: 0;
}
.falc-profile-card__social {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.falc-profile-card__social a {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  background: #fff;
  color: var(--ilca-teal-dark);
  border: 1px solid var(--ilca-border);
  border-radius: 999px;
  text-decoration: none;
}
.falc-profile-card__social a:hover {
  background: var(--ilca-teal);
  color: #fff;
  border-color: var(--ilca-teal);
}

.falc-profile-card__body {
  padding: 28px 32px;
}

.falc-profile-section {
  margin-bottom: 22px;
}
.falc-profile-section:last-child {
  margin-bottom: 0;
}
.falc-profile-section h3 {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ilca-muted);
  margin: 0 0 14px;
  padding: 0;
  border-bottom: 0;             /* remove divider — rely on whitespace */
}

.falc-profile-kv {
  display: grid;
  grid-template-columns: 28px 1fr;     /* icon column only, no label width */
  gap: 16px 16px;
  margin: 0;
  align-items: start;
}
.falc-profile-kv dt {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  padding-top: 6px;                     /* visually align with the dd content */
}
.falc-profile-kv dt svg {
  flex-shrink: 0;
  opacity: 0.6;
  color: var(--ilca-teal-dark);
}
.falc-profile-kv dd {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--ilca-text);
}
.falc-profile-kv dd a {
  color: var(--ilca-teal-dark);
  font-weight: 600;
  text-decoration: underline;
}
.falc-profile-kv dd a:hover { color: var(--ilca-navy); }

/* Phone CTA — softer chip style, identity over action */
.falc-profile-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--ilca-teal);     /* lighter than teal-dark */
  color: #fff !important;
  font-weight: 600 !important;
  font-size: 0.96rem;
  border-radius: 8px;
  text-decoration: none !important;
  min-height: 38px;
  transition: background-color 0.15s;
}
.falc-profile-tel:hover { background: var(--ilca-teal-dark); color: #fff !important; }
.falc-profile-tel__icon {
  flex-shrink: 0;
  opacity: 0.9;
}

.falc-profile-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.falc-profile-tags .falc-tag {
  font-size: 0.85rem;
  padding: 6px 14px;
}

.falc-mini-map {
  width: 100%;
  height: 280px;
  border-radius: var(--ilca-radius-sm);
  background: #e8eef0;
  border: 1px solid var(--ilca-border);
}

.falc-empty--full {
  margin: 48px 0;
}

.falc-profile__back-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 32px 0 16px;
}
.falc-profile__back-secondary {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ilca-teal-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.15s, color 0.15s;
}
.falc-profile__back-secondary:hover {
  color: var(--ilca-navy);
  text-decoration-color: currentColor;
  text-decoration: underline;
}

/* ============================================================
   EDIT SETTINGS PAGE — manage own directory listing
   ============================================================ */
.falc-settings {
  max-width: 720px;
  margin: -28px auto 56px;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.falc-settings__banner {
  margin-bottom: 18px;
  padding: 12px 16px;
  border-radius: var(--ilca-radius-sm);
  font-size: 0.94rem;
  font-weight: 500;
}
.falc-settings__banner--good {
  background: var(--ilca-mint);
  color: var(--ilca-teal-dark);
  border-left: 3px solid var(--ilca-teal);
}
.falc-settings__banner--bad {
  background: #fef0ed;
  color: #b54400;
  border-left: 3px solid #d96e3a;
}

.falc-settings__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.falc-settings__card {
  background: var(--ilca-surface);
  border-radius: var(--ilca-radius);
  box-shadow: 0 1px 3px rgba(2, 60, 70, 0.05), 0 8px 28px rgba(2, 60, 70, 0.06);
  padding: 24px 28px;
  transition: opacity 0.2s;
}
.falc-settings__card.is-disabled {
  opacity: 0.55;
  pointer-events: none;        /* greys out the visibility detail card when master is off */
}

.falc-settings__card-head {
  margin-bottom: 16px;
}
.falc-settings__card-head h2 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ilca-navy);
  margin: 0 0 4px;
}
.falc-settings__card-head p {
  font-size: 0.9rem;
  color: var(--ilca-muted);
  line-height: 1.55;
  margin: 0;
}

/* Toggle row — one setting per row */
.falc-toggle-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.falc-toggle-list li + li {
  border-top: 1px solid var(--ilca-divider);
}

.falc-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  cursor: pointer;
}
.falc-toggle-row--primary {
  padding: 4px 0;     /* master toggle has no list rhythm to match */
}
.falc-toggle-row__label {
  flex: 1;
  min-width: 0;
}
.falc-toggle-row__label strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ilca-text);
  margin-bottom: 2px;
}
.falc-toggle-row__label small {
  font-size: 0.84rem;
  color: var(--ilca-muted);
  line-height: 1.45;
}

/* iOS-style switch */
.falc-switch {
  position: relative;
  flex-shrink: 0;
  width: 48px;
  height: 28px;
  display: inline-block;
}
.falc-switch input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  margin: 0;
  z-index: 2;
}
.falc-switch__track {
  position: absolute;
  inset: 0;
  background: #d4d9da;
  border-radius: 999px;
  transition: background-color 0.2s;
}
.falc-switch__thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18), 0 1px 1px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s;
}
.falc-switch input:checked ~ .falc-switch__track {
  background: var(--ilca-teal);
}
.falc-switch input:checked ~ .falc-switch__thumb {
  transform: translateX(20px);
}
.falc-switch input:focus-visible ~ .falc-switch__track {
  box-shadow: 0 0 0 3px rgba(2, 142, 167, 0.25);
}
.falc-switch input:disabled {
  cursor: not-allowed;
}

/* Read-only "what's currently on your profile" list */
.falc-settings__readonly {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 10px 16px;
  margin: 0;
}
.falc-settings__readonly dt {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ilca-muted);
}
.falc-settings__readonly dd {
  font-size: 0.94rem;
  color: var(--ilca-text);
  margin: 0;
}

/* Action row */
.falc-settings__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 8px;
}
.falc-settings__save {
  padding: 12px 28px !important;
  font-size: 1rem !important;
}

/* Form fields inside the settings cards */
.falc-settings__field {
  margin-bottom: 14px;
}
.falc-settings__field:last-child { margin-bottom: 0; }
.falc-settings__field label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ilca-muted);
  margin-bottom: 6px;
}
.falc-settings__field label small {
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--ilca-muted);
  margin-left: 4px;
}
.falc-settings__field input[type="text"],
.falc-settings__field input[type="email"],
.falc-settings__field input[type="tel"],
.falc-settings__field input[type="url"],
.falc-settings__field select {
  width: 100%;
  height: 42px;
  padding: 0 14px;
  font: inherit;
  font-size: 0.95rem;
  border: 1px solid var(--ilca-border);
  border-radius: var(--ilca-radius-sm);
  background: #fff;
  color: var(--ilca-text);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.falc-settings__field input:focus,
.falc-settings__field select:focus {
  outline: none;
  border-color: var(--ilca-teal);
  box-shadow: 0 0 0 3px rgba(2, 142, 167, 0.15);
}
.falc-settings__hint {
  display: block;
  margin-top: 4px;
  font-size: 0.8rem;
  color: var(--ilca-muted);
  line-height: 1.45;
}

/* Two- and three-column grids inside settings */
.falc-settings__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.falc-settings__grid--3 {
  /* Middle column is guaranteed room for its "State / Province / Region"
     label on one line; below 720px the grid stacks to one column anyway. */
  grid-template-columns: 1fr minmax(200px, 1.2fr) minmax(130px, 0.9fr);
}

/* Profile photo row */
.falc-settings__photo {
  display: flex;
  align-items: center;
  gap: 16px;
}
.falc-settings__photo-img {
  width: 88px;
  height: 110px;
  border-radius: 10px;
  object-fit: cover;
  object-position: top center;
  background: var(--ilca-mint);
  flex-shrink: 0;
}
.falc-settings__photo-empty {
  width: 88px;
  height: 110px;
  border-radius: 10px;
  background: var(--ilca-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.78rem;
  color: var(--ilca-teal-dark);
  text-align: center;
  flex-shrink: 0;
}
.falc-settings__photo-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.falc-settings__photo-actions small {
  font-size: 0.8rem;
  color: var(--ilca-muted);
}
.falc-settings__cancel {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ilca-muted);
  text-decoration: none;
}
.falc-settings__cancel:hover {
  color: var(--ilca-navy);
  text-decoration: underline;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .ilca-header__nav a {
    padding: 18px 10px;
    font-size: 0.76rem;
  }
}

@media (max-width: 1024px) {
  .ilca-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .ilca-footer__col {
    padding-top: 0;
  }
  .ilca-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .falc-about__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 28px 24px;
  }
  .falc-profile-card__head {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }
  .falc-profile-card__social { justify-content: center; }
  .falc-profile-card__body { padding: 24px; }
  .falc-profile-kv {
    grid-template-columns: 1fr;
    gap: 4px 0;
  }
  .falc-profile-kv dt {
    margin-top: 12px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .falc-profile-kv dt:first-of-type { margin-top: 0; }
}

@media (max-width: 720px) {
  .ilca-header__inner { padding: 12px 16px; gap: 8px; }
  .ilca-header__logo img { height: 48px; }
  /* Smaller sticky header here (48px logo + 12px padding x2) */
  .falc-results { scroll-margin-top: 86px; }
  .ilca-header__nav { display: none; }
  .ilca-header__search { display: none; }
  .ilca-header__burger { display: flex; margin-left: auto; }
  .ilca-header__cta {
    padding: 8px 16px;
    font-size: 0.78rem;
  }
  .ilca-hero { padding: 32px 20px 56px; }
  .ilca-hero h1 { font-size: 1.4rem; white-space: normal; }
  .ilca-hero__lead { font-size: 0.95rem; }
  .falc-filters { padding: 14px 16px; }
  .falc-filter-row {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .falc-filter-row__label {
    width: auto;
    font-size: 0.74rem;
  }
  .falc-filter-row__controls select,
  .falc-filter-row__controls input[type="text"] { width: 100%; min-width: 0; }
  .falc-filter-row__controls #resetBtn {
    margin-left: 0;
    margin-top: 4px;
    align-self: flex-end;
  }
  .falc-toggle-pill span { font-size: 0.84rem; padding: 6px 12px; min-height: 40px; }

  .falc-settings { padding: 0 16px; }
  .falc-settings__card { padding: 18px 18px; }
  .falc-settings__readonly { grid-template-columns: 1fr; gap: 4px; }
  .falc-settings__readonly dt { margin-top: 8px; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; }
  .falc-settings__readonly dt:first-of-type { margin-top: 0; }
  .falc-settings__actions { flex-direction: column-reverse; align-items: stretch; gap: 12px; }
  .falc-settings__save { width: 100%; justify-content: center; }
  .falc-settings__cancel { text-align: center; padding: 8px; }

  .falc-settings__grid,
  .falc-settings__grid--3 { grid-template-columns: 1fr; gap: 10px; }
  .falc-settings__photo { flex-direction: column; align-items: flex-start; }
  .falc-map { height: 360px; }
  .falc-results__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .falc-cards {
    grid-template-columns: 1fr;
  }
  .ilca-footer {
    padding: 40px 20px 0;
  }
  .ilca-footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .ilca-footer__col { padding-top: 0; }
  .ilca-footer__bottom {
    flex-direction: column;
    text-align: center;
    padding: 24px 0;
  }
  .falc { padding: 0 16px 48px; }
  .falc-about__inner { padding: 24px 20px; }
}
