/* ==========================================================================
   Faircoast Air Duct Cleaning — stylesheet
   Class prefix: fac-   |   Variable prefix: --fac-
   Fonts: Sora (display) + Karla (body) — Google Fonts
   ========================================================================== */

:root {
  /* Palette — fresh coastal breeze theme */
  --fac-mist: #eef6f3;
  --fac-foam: #ffffff;
  --fac-tide: #2f6f62;
  --fac-tide-deep: #1f4a40;
  --fac-tide-pale: #d9ece6;
  --fac-coral: #e8623d;
  --fac-coral-dark: #c24e2e;
  --fac-sand: #f4ede1;
  --fac-ink: #1b2621;
  --fac-slate: #5e6d67;
  --fac-line: #d9e5de;
  --fac-gold: #d9a441;

  /* Type */
  --fac-font-display: "Sora", "Trebuchet MS", sans-serif;
  --fac-font-body: "Karla", "Segoe UI", sans-serif;

  /* Layout */
  --fac-radius-sm: 8px;
  --fac-radius-md: 16px;
  --fac-radius-lg: 28px;
  --fac-shadow-soft: 0 22px 50px -24px rgba(31, 74, 64, 0.4);
  --fac-shadow-card: 0 12px 28px -16px rgba(31, 74, 64, 0.28);
  --fac-container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--fac-font-body);
  color: var(--fac-ink);
  background: var(--fac-foam);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--fac-font-display);
  color: var(--fac-tide-deep);
  margin: 0 0 0.5em;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.01em;
}
p { margin: 0 0 1.1em; }
.fac-shell { max-width: var(--fac-container); margin: 0 auto; padding: 0 26px; }

/* ---------- Top ribbon ---------- */
.fac-ribbon {
  background: var(--fac-tide-deep);
  color: rgba(255,255,255,0.88);
  font-size: 0.84rem;
  padding: 9px 0;
  text-align: center;
}
.fac-ribbon a { color: #fff; font-weight: 700; }
.fac-ribbon strong { color: var(--fac-gold); }

/* ---------- Header ---------- */
.fac-topbar {
  background: var(--fac-foam);
  border-bottom: 1px solid var(--fac-line);
  position: sticky;
  top: 0;
  z-index: 60;
}
.fac-topbar .fac-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}
.fac-brand { display: flex; align-items: center; gap: 12px; }
.fac-brand-badge { width: 44px; height: 44px; flex-shrink: 0; }
.fac-brand-copy { display: flex; flex-direction: column; line-height: 1.15; }
.fac-brand-name {
  font-family: var(--fac-font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--fac-tide-deep);
}
.fac-brand-sub {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fac-slate);
}

.fac-menu { display: flex; align-items: center; gap: 8px; }
.fac-menu-links { display: flex; gap: 4px; }
.fac-menu-links a {
  font-weight: 600;
  font-size: 0.94rem;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--fac-ink);
}
.fac-menu-links a:hover { background: var(--fac-mist); }
.fac-menu-links a[aria-current="page"] { background: var(--fac-tide-pale); color: var(--fac-tide-deep); }

.fac-pillbtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  margin-left: 10px;
}
.fac-pillbtn-solid { background: var(--fac-coral); color: #fff; box-shadow: var(--fac-shadow-card); }
.fac-pillbtn-solid:hover { background: var(--fac-coral-dark); }
.fac-pillbtn-line { border-color: var(--fac-tide-deep); color: var(--fac-tide-deep); background: transparent; }
.fac-pillbtn-line:hover { background: var(--fac-tide-deep); color: #fff; }
.fac-pillbtn-block { width: 100%; justify-content: center; }

.fac-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.fac-toggle span { width: 24px; height: 2px; background: var(--fac-tide-deep); border-radius: 2px; }

/* ---------- Hero ---------- */
.fac-hero { background: var(--fac-mist); overflow: hidden; }
.fac-hero .fac-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  padding: 70px 26px 90px;
}
.fac-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--fac-foam);
  border: 1px solid var(--fac-line);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--fac-tide);
  margin-bottom: 22px;
}
.fac-hero h1 {
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  color: var(--fac-tide-deep);
}
.fac-hero h1 .fac-underline {
  color: var(--fac-coral);
}
.fac-hero-lede { font-size: 1.14rem; color: var(--fac-slate); max-width: 54ch; }
.fac-hero-cta { display: flex; gap: 14px; margin: 30px 0; flex-wrap: wrap; }
.fac-hero-photo {
  position: relative;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  border-radius: var(--fac-radius-lg);
  overflow: hidden;
  box-shadow: var(--fac-shadow-soft);
  aspect-ratio: 4/5;
}
.fac-hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.fac-stat-float {
  background: var(--fac-foam);
  border-radius: var(--fac-radius-md);
  box-shadow: var(--fac-shadow-soft);
  display: flex;
  gap: 0;
  margin-top: -54px;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.fac-stat-float > div {
  flex: 1;
  text-align: center;
  padding: 22px 12px;
  border-right: 1px solid var(--fac-line);
}
.fac-stat-float > div:last-child { border-right: none; }
.fac-stat-float strong {
  display: block;
  font-family: var(--fac-font-display);
  font-size: 1.8rem;
  color: var(--fac-coral);
}
.fac-stat-float span { font-size: 0.8rem; color: var(--fac-slate); }

/* ---------- Section shell ---------- */
.fac-block { padding: 96px 0; }
.fac-block-sand { background: var(--fac-sand); }
.fac-block-tide { background: var(--fac-tide-deep); color: #fff; }
.fac-block-tide h2, .fac-block-tide h3 { color: #fff; }
.fac-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fac-coral);
  margin-bottom: 12px;
}
.fac-block-tide .fac-eyebrow { color: var(--fac-gold); }
.fac-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.fac-heading-row h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 0; max-width: 640px; }
.fac-heading-row p { color: var(--fac-slate); max-width: 420px; margin-bottom: 0; }
.fac-center { text-align: center; max-width: 720px; margin: 0 auto 50px; }

/* ---------- Service rows (alternating) ---------- */
.fac-service-row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: center;
  padding: 46px 0;
  border-bottom: 1px solid var(--fac-line);
}
.fac-service-row:last-child { border-bottom: none; }
.fac-service-row.fac-flip { grid-template-columns: 1.15fr 0.85fr; }
.fac-service-row.fac-flip .fac-service-media { order: 2; }
.fac-service-media {
  border-radius: var(--fac-radius-md);
  overflow: hidden;
  box-shadow: var(--fac-shadow-card);
  aspect-ratio: 5/4;
}
.fac-service-media img { width: 100%; height: 100%; object-fit: cover; }
.fac-service-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--fac-tide-pale);
  color: var(--fac-tide-deep);
  font-family: var(--fac-font-display);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.fac-service-copy h3 { font-size: 1.4rem; }
.fac-service-copy p { color: var(--fac-slate); }
.fac-taglist { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.fac-taglist span {
  background: var(--fac-mist);
  color: var(--fac-tide-deep);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
}

/* ---------- Why us panel ---------- */
.fac-panel {
  background: var(--fac-sand);
  border-radius: var(--fac-radius-lg);
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.fac-panel-media { border-radius: var(--fac-radius-md); overflow: hidden; box-shadow: var(--fac-shadow-card); }
.fac-panel-media img { width: 100%; display: block; }
.fac-check-list { display: flex; flex-direction: column; gap: 16px; margin: 26px 0; }
.fac-check-list li { display: flex; gap: 14px; align-items: flex-start; }
.fac-check-list .fac-check-ico {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--fac-tide);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fac-check-list .fac-check-ico svg { width: 16px; height: 16px; }
.fac-check-list h4 { font-size: 1rem; margin-bottom: 2px; color: var(--fac-tide-deep); }
.fac-check-list p { font-size: 0.9rem; color: var(--fac-slate); margin-bottom: 0; }

/* ---------- Before / after banner ---------- */
.fac-transform {
  position: relative;
  border-radius: var(--fac-radius-lg);
  overflow: hidden;
  box-shadow: var(--fac-shadow-soft);
}
.fac-transform img { width: 100%; display: block; }
.fac-transform-label {
  position: absolute;
  bottom: 22px; left: 22px;
  background: rgba(27,38,33,0.82);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
}

/* ---------- Stepped timeline (vertical) ---------- */
.fac-steps { max-width: 780px; margin: 0 auto; position: relative; }
.fac-steps::before {
  content: "";
  position: absolute;
  left: 23px; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--fac-line);
}
.fac-step { display: flex; gap: 26px; padding-bottom: 44px; position: relative; }
.fac-step:last-child { padding-bottom: 0; }
.fac-step-dot {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--fac-foam);
  border: 2px solid var(--fac-tide);
  color: var(--fac-tide-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fac-font-display);
  font-weight: 800;
  flex-shrink: 0;
  z-index: 2;
}
.fac-step h4 { font-size: 1.08rem; margin-bottom: 6px; }
.fac-step p { color: var(--fac-slate); margin-bottom: 0; }

/* ---------- Tag-cloud service area ---------- */
.fac-tagcloud { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.fac-tagcloud a, .fac-tagcloud span {
  background: var(--fac-foam);
  border: 1.5px solid var(--fac-line);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--fac-tide-deep);
}

/* ---------- Testimonial strip ---------- */
.fac-quote-row { display: flex; flex-direction: column; gap: 26px; max-width: 820px; margin: 0 auto; }
.fac-quote {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--fac-foam);
  border: 1px solid var(--fac-line);
  border-radius: var(--fac-radius-md);
  padding: 26px 30px;
}
.fac-quote.fac-quote-alt { flex-direction: row-reverse; text-align: right; margin-left: 40px; }
.fac-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--fac-tide);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fac-font-display);
  font-weight: 800;
  flex-shrink: 0;
}
.fac-quote-body p.fac-quote-text { font-style: italic; margin-bottom: 8px; }
.fac-quote-meta { font-size: 0.84rem; color: var(--fac-slate); font-weight: 700; }
.fac-stars { color: var(--fac-gold); margin-bottom: 6px; }

/* ---------- CTA band ---------- */
.fac-band {
  background: var(--fac-coral);
  color: #fff;
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  padding: 70px 0;
  text-align: center;
}
.fac-band h2 { color: #fff; }
.fac-band p { color: rgba(255,255,255,0.9); }
.fac-band .fac-pillbtn-line { border-color: #fff; color: #fff; }
.fac-band .fac-pillbtn-line:hover { background: #fff; color: var(--fac-coral-dark); }
.fac-band-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }

/* ---------- Map ---------- */
.fac-map-box {
  border-radius: var(--fac-radius-lg);
  overflow: hidden;
  box-shadow: var(--fac-shadow-soft);
  border: 5px solid var(--fac-foam);
}
.fac-map-box iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- FAQ accordion (different visual) ---------- */
.fac-accordion { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.fac-accordion details {
  background: var(--fac-mist);
  border-radius: var(--fac-radius-md);
  padding: 6px 24px;
}
.fac-accordion summary {
  cursor: pointer;
  font-weight: 700;
  padding: 18px 0;
  color: var(--fac-tide-deep);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fac-accordion summary::-webkit-details-marker { display: none; }
.fac-accordion summary::after { content: "\25BE"; color: var(--fac-coral); font-size: 1.1rem; }
.fac-accordion details[open] summary::after { content: "\25B4"; }
.fac-accordion p { padding-bottom: 18px; color: var(--fac-slate); margin-bottom: 0; }

/* ---------- Long-form article text ---------- */
.fac-copy { max-width: 880px; }
.fac-copy h2 { margin-top: 1.8em; font-size: 1.55rem; }
.fac-copy h3 { margin-top: 1.5em; font-size: 1.15rem; color: var(--fac-tide); }
.fac-copy ul { margin: 1em 0 1.6em; display: flex; flex-direction: column; gap: 10px; }
.fac-copy ul li { padding-left: 26px; position: relative; }
.fac-copy ul li::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--fac-coral);
}
.fac-callout {
  background: var(--fac-tide-pale);
  border-left: 4px solid var(--fac-tide);
  border-radius: var(--fac-radius-sm);
  padding: 26px 30px;
  margin: 36px 0;
}
.fac-callout h3 { margin-top: 0; }

/* ---------- Page intro band ---------- */
.fac-intro {
  background: var(--fac-tide-deep);
  color: #fff;
  padding: 64px 0 80px;
  position: relative;
}
.fac-intro h1 { color: #fff; font-size: clamp(2.1rem, 3.6vw, 2.8rem); }
.fac-intro-path { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.fac-intro-path a { color: var(--fac-gold); font-weight: 700; }
.fac-intro p.fac-intro-lede { color: rgba(255,255,255,0.86); max-width: 64ch; }

/* ---------- Form ---------- */
.fac-formcard {
  background: var(--fac-foam);
  border: 1px solid var(--fac-line);
  border-radius: var(--fac-radius-lg);
  padding: 42px;
  box-shadow: var(--fac-shadow-soft);
}
.fac-formgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fac-formfield { margin-bottom: 20px; }
.fac-formfield label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 8px;
  color: var(--fac-tide-deep);
}
.fac-formfield input, .fac-formfield select, .fac-formfield textarea {
  width: 100%;
  border: 1.5px solid var(--fac-line);
  border-radius: var(--fac-radius-sm);
  padding: 13px 14px;
  font-family: var(--fac-font-body);
  font-size: 0.95rem;
  background: var(--fac-mist);
  color: var(--fac-ink);
}
.fac-formfield input:focus, .fac-formfield select:focus, .fac-formfield textarea:focus {
  outline: none;
  border-color: var(--fac-tide);
  background: var(--fac-foam);
}
.fac-formfield textarea { resize: vertical; min-height: 110px; }
.fac-form-hint { font-size: 0.82rem; color: var(--fac-slate); margin-top: 12px; }
.fac-form-ok {
  display: none;
  background: #e5f2ea;
  border: 1px solid var(--fac-tide);
  color: var(--fac-tide-deep);
  padding: 14px 18px;
  border-radius: var(--fac-radius-sm);
  font-weight: 700;
  margin-bottom: 20px;
}
.fac-form-ok.fac-show { display: block; }

.fac-contact-cards { display: flex; flex-direction: column; gap: 16px; }
.fac-contact-card {
  display: flex;
  gap: 16px;
  background: var(--fac-mist);
  border-radius: var(--fac-radius-md);
  padding: 22px;
}
.fac-contact-card svg { width: 28px; height: 28px; color: var(--fac-tide); flex-shrink: 0; }
.fac-contact-card h4 { font-size: 1rem; margin-bottom: 4px; color: var(--fac-tide-deep); }
.fac-contact-card p { font-size: 0.9rem; color: var(--fac-slate); margin-bottom: 0; }

/* ---------- Sticky call bar ---------- */
.fac-callbar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--fac-coral);
  color: #fff;
  text-align: center;
  font-weight: 800;
  padding: 15px;
  z-index: 70;
  box-shadow: 0 -8px 20px rgba(0,0,0,0.15);
}

/* ---------- Footer ---------- */
.fac-footer { background: var(--fac-ink); color: rgba(255,255,255,0.72); padding-top: 70px; }
.fac-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
  gap: 24px;
}
.fac-footer-brand { display: flex; align-items: center; gap: 12px; }
.fac-footer-brand-name { font-family: var(--fac-font-display); font-weight: 800; font-size: 1.2rem; color: #fff; }
.fac-footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 40px;
  padding: 40px 0;
}
.fac-footer-cols h5 {
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.fac-footer-cols ul { display: flex; flex-direction: column; gap: 10px; }
.fac-footer-cols a:hover { color: var(--fac-coral); }
.fac-footer-contact li { display: flex; gap: 10px; font-size: 0.9rem; }
.fac-footer-contact svg { width: 16px; height: 16px; color: var(--fac-gold); flex-shrink: 0; margin-top: 3px; }
.fac-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 20px 0 90px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
}

/* ---------- Area detail cards (service-area page) ---------- */
.fac-area-grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.fac-area-card2 {
  background: var(--fac-foam);
  border: 1px solid var(--fac-line);
  border-radius: var(--fac-radius-md);
  padding: 26px 28px;
  box-shadow: var(--fac-shadow-card);
}
.fac-area-card2 h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fac-area-card2 h3 svg { width: 20px; height: 20px; color: var(--fac-coral); flex-shrink: 0; }
.fac-area-card2 p { color: var(--fac-slate); font-size: 0.94rem; margin-bottom: 0; }

/* ---------- Milestone grid (about page, 8 years) ---------- */
.fac-milestone-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.fac-milestone-card {
  background: var(--fac-mist);
  border-radius: var(--fac-radius-md);
  padding: 26px 22px;
  text-align: center;
}
.fac-milestone-card strong {
  display: block;
  font-family: var(--fac-font-display);
  font-size: 2rem;
  color: var(--fac-coral);
  margin-bottom: 6px;
}
.fac-milestone-card span { font-size: 0.86rem; color: var(--fac-slate); font-weight: 600; }

.fac-year-strip {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 30px 0;
}
.fac-year-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 22px;
  align-items: baseline;
  border-top: 1px solid var(--fac-line);
  padding-top: 18px;
}
.fac-year-row strong {
  font-family: var(--fac-font-display);
  font-size: 1.2rem;
  color: var(--fac-tide);
}
.fac-year-row p { margin-bottom: 0; color: var(--fac-slate); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .fac-hero .fac-shell { grid-template-columns: 1fr; padding-bottom: 60px; }
  .fac-hero-photo { order: -1; max-width: 460px; margin: 0 auto; }
  .fac-stat-float { flex-wrap: wrap; margin-top: 20px; }
  .fac-stat-float > div { flex: 1 1 33%; border-bottom: 1px solid var(--fac-line); }
  .fac-service-row, .fac-service-row.fac-flip { grid-template-columns: 1fr; }
  .fac-service-row.fac-flip .fac-service-media { order: 0; }
  .fac-panel { grid-template-columns: 1fr; padding: 32px; }
  .fac-footer-cols { grid-template-columns: 1fr 1fr; }
  .fac-quote.fac-quote-alt { margin-left: 0; }
  .fac-milestone-grid { grid-template-columns: repeat(2, 1fr); }
  .fac-area-grid2 { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .fac-menu-links, .fac-menu .fac-pillbtn-line { display: none; }
  .fac-toggle { display: flex; }
  .fac-menu.fac-menu-open .fac-menu-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--fac-foam);
    padding: 20px 26px;
    border-bottom: 1px solid var(--fac-line);
    gap: 14px;
  }
  .fac-formgrid { grid-template-columns: 1fr; }
  .fac-quote { flex-direction: column !important; text-align: left !important; }
  .fac-callbar { display: block; }
  body { padding-bottom: 58px; }
  .fac-footer-cols { grid-template-columns: 1fr; }
  .fac-ribbon .fac-shell { flex-direction: column; gap: 4px; }
}

@media (max-width: 560px) {
  .fac-stat-float > div { flex: 1 1 50%; }
}
