/* Sonza concept demo, BASE 38.
   Kleuren komen uit Sonza's eigen Vetstoria-widgetconfiguratie (navy 2E3192, blauw 426AB3,
   groen 00a86b). Serif-koppen omdat dit een familiepraktijk uit 1972/1990 is: boekletter
   leest als gevestigd, niet als startup. Eén kaartradius, punt. */

:root {
  --navy: #2e3192;
  --navy-deep: #232566;
  --blue: #426ab3;
  --green: #00a86b;
  --paper: #faf9f6;
  --card: #ffffff;
  --ink: #1a1c33;
  --ink-soft: #4a4d68;
  --line: #e3e1d9;
  --r: 14px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); }

.wrap { max-width: 1120px; margin: 0 auto; padding-left: 20px; padding-right: 20px; }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; margin: 0 0 14px; }
h1 { font-size: clamp(30px, 5.4vw, 52px); letter-spacing: -0.01em; }
h2 { font-size: clamp(24px, 3.4vw, 36px); }
h3 { font-size: 19px; }

.section-kicker {
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue); margin: 0 0 10px;
}
.section-lede { color: var(--ink-soft); max-width: 62ch; margin-top: -6px; }

/* Demo-banner (laag 0): klein en rustig */
.demo-note {
  display: flex; gap: 10px; justify-content: center; align-items: center; flex-wrap: wrap;
  background: var(--ink); color: #d8d9e6; font-size: 13px; padding: 7px 14px; text-align: center;
}
.demo-note a { color: #fff; }

/* Explore Sonza: de paraplu boven alles, als merkfamilie-switcher */
.explore { background: var(--navy-deep); color: #fff; }
.explore-inner {
  display: flex; flex-direction: column; align-items: stretch; gap: 8px;
  padding-top: 10px; padding-bottom: 10px;
}
.explore-label {
  flex: none; font-family: var(--serif); font-size: 13px; line-height: 1.25;
  color: #fff; opacity: 0.92;
}
.explore-label br { display: none; }
.explore-links {
  display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none;
  padding: 2px 0;
  /* rand-tot-rand scrollen op mobiel, zodat de laatste pil bereikbaar is */
  margin-left: -20px; margin-right: -20px; padding-left: 20px; padding-right: 20px;
}
.explore-links::-webkit-scrollbar { display: none; }
.explore a {
  display: inline-flex; align-items: center; gap: 10px; min-height: 48px;
  padding: 7px 18px 7px 8px; border-radius: 14px; white-space: nowrap;
  font-size: 13.5px; text-decoration: none; color: #cdd0ef;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
}
.explore a:hover { color: #fff; border-color: rgba(255, 255, 255, 0.5); transform: translateY(-1px); }
.explore-ico {
  height: 34px; width: 44px; object-fit: contain; flex: none;
  background: #fff; border-radius: 9px; padding: 3px 4px;
}
.explore a.active {
  background: var(--paper); color: var(--ink); border-color: var(--paper);
  font-weight: 650; box-shadow: 0 3px 12px rgba(0, 0, 0, 0.28);
}
.explore a.active .explore-ico { background: transparent; }

/* Header */
.site-head { background: var(--card); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 40; }
.head-inner { display: flex; align-items: center; gap: 18px; padding-top: 10px; padding-bottom: 10px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); min-height: 44px; }
.brand img { width: 44px; height: auto; }
.brand-name { font-family: var(--serif); font-size: 18px; line-height: 1.1; }
.brand-name em { font-style: normal; display: block; font-size: 12px; color: var(--ink-soft); font-family: var(--sans); letter-spacing: 0.04em; }
.site-nav { display: none; gap: 22px; margin-left: 8px; }
.site-nav a { text-decoration: none; color: var(--ink); font-size: 15px; padding: 10px 0; }
.site-nav a:hover { color: var(--navy); }
.head-actions { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.phone { display: none; text-decoration: none; color: var(--ink); font-weight: 600; font-size: 15px; }

/* Knoppen: pillen, minimaal 44px hoog */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 10px 22px; border-radius: 999px;
  font-weight: 600; font-size: 15px; text-decoration: none; border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-deep); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: var(--card); }
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); }
.btn-small { min-height: 40px; padding: 6px 16px; font-size: 14px; }

/* Hero */
.hero { padding: 26px 0 22px; background: linear-gradient(180deg, #f2f1fa 0%, var(--paper) 78%); }
.hero-grid { display: grid; gap: 26px; }
.kicker { font-size: 13px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--blue); margin: 0 0 12px; }
.lede { font-size: 16px; color: var(--ink-soft); max-width: 56ch; margin: 0 0 14px; }
.score {
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  color: var(--ink); background: var(--card); border: 1px solid var(--line);
  border-radius: 999px; padding: 8px 16px; min-height: 44px; margin-bottom: 18px;
}
.score .stars { color: #e8a415; letter-spacing: 1px; }
.score strong { font-size: 17px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.fact-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 16px; margin: 0; padding: 0; }
.fact-chips li { font-size: 13.5px; color: var(--ink-soft); padding-left: 16px; position: relative; }
.fact-chips li::before { content: ""; position: absolute; left: 0; top: 7px; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }

.hero-photos { display: grid; grid-template-columns: 1.35fr 1fr; grid-template-rows: 1fr 1fr; gap: 10px; }
.hero .ph-a, .hero .ph-b { display: none; }
.hero .ph-main img { max-height: 38vh; object-position: top; }
.hero-photos figure { margin: 0; border-radius: var(--r); overflow: hidden; }
.hero-photos img { width: 100%; height: 100%; object-fit: cover; }
.ph-main { grid-row: 1 / 3; }

/* Eén erf, drie Sonza's */
.sonzas { padding: 42px 0; background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.story-row { margin-top: 18px; }
.story-card img { border-radius: var(--r); aspect-ratio: 1 / 1; object-fit: cover; object-position: top; margin-bottom: 12px; }
.story-card h3 span { font-family: var(--sans); font-size: 12.5px; color: var(--ink-soft); font-weight: 600; letter-spacing: 0.04em; }
.story-card p { color: var(--ink-soft); font-size: 15px; margin: 0; }
.story-note { margin: 26px 0 0; font-family: var(--serif); font-style: italic; color: var(--ink-soft); font-size: 16px; }

/* Snap-rijen (handbediend, geen autoplay) */
.svc-row { margin-top: 22px; }
.snap-track {
  display: grid; grid-auto-flow: column; grid-auto-columns: min(78vw, 340px);
  gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 6px; scrollbar-width: none;
}
.snap-track::-webkit-scrollbar { display: none; }
.snap-track > * { scroll-snap-align: start; }
.snap-track:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; }
.snap-controls { display: flex; align-items: center; gap: 12px; margin-top: 12px; }
.snap-btn {
  width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--line);
  background: var(--card); color: var(--ink); font-size: 17px; cursor: pointer;
  appearance: none; flex: none;
}
.snap-btn:hover { border-color: var(--navy); color: var(--navy); }
.snap-btn:disabled { opacity: 0.35; cursor: default; }
.snap-status { font-size: 13px; color: var(--ink-soft); min-width: 44px; }
.svc-row.no-scroll .snap-controls { display: none; }
.m-only-hide { display: none; }

/* Diensten */
.services { padding: 42px 0; }
.svc-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 0; overflow: hidden;
}
.svc-card > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center; }
.svc-card > img[src*="svc-consult"] { object-position: center top; }
.svc-card > img[src*="svc-repro"] { object-position: center 12%; }
.svc-body { padding: 14px 20px 18px; }
.svc-card h3 { margin-bottom: 8px; }
.svc-card p { color: var(--ink-soft); font-size: 14.5px; margin: 0; }
.emergency {
  margin-top: 26px; border-left: 4px solid var(--green); background: var(--card);
  border-radius: 0 var(--r) var(--r) 0; padding: 18px 22px;
}
.emergency h3 { margin-bottom: 6px; }
.emergency p { margin: 4px 0; font-size: 14.5px; color: var(--ink-soft); }
.m-show { display: block; }
.m-hide { display: none; }

.story-grid.snap-track { grid-auto-columns: min(76vw, 340px); margin-top: 4px; }
.board-grid.snap-track { grid-auto-columns: min(86vw, 420px); }
.board-card img { max-height: 200px; }
.enrich-row .snap-track { grid-auto-columns: min(56vw, 280px); }

/* Terrein-band */
.property { position: relative; }
.property img { width: 100%; height: clamp(190px, 38vw, 420px); object-fit: cover; }
.property img[src*="ph-mare-foal"] { object-position: center 22%; }
.property img[src*="band-dogs"] { object-position: center 35%; }
.property-label {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, transparent, rgba(20, 22, 50, 0.82));
  color: #fff; padding: 60px 20px 18px;
}
.property-label p { max-width: 1120px; margin: 0 auto; font-size: 15px; }

/* Boarding */
.boarding { padding: 42px 0; }
.board-grid { display: grid; gap: 18px; margin-top: 22px; }
.board-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.board-card img { aspect-ratio: 16 / 10; object-fit: cover; }
.board-card h3 { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; margin: 18px 22px 8px; }
.board-card .price { font-family: var(--sans); font-size: 14px; color: var(--green); font-weight: 700; }
.board-card ul { margin: 0 22px 20px; padding-left: 18px; color: var(--ink-soft); font-size: 14.5px; }
.board-card li { margin-bottom: 5px; }
.board-ph { margin: 0; }
.board-ph img { border-radius: var(--r); aspect-ratio: 1 / 1; object-fit: cover; }
.board-ph figcaption { font-size: 13px; color: var(--ink-soft); margin-top: 7px; }
.board-fineprint { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin: 22px 0 0; font-size: 13.5px; color: var(--ink-soft); }

/* Binnenkijken */
.facility { padding: 42px 0; background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.facility .snap-track { grid-auto-columns: min(52vw, 300px); }
.fac-ph { margin: 0; }
.fac-ph img { border-radius: var(--r); aspect-ratio: 4 / 3; object-fit: cover; }
.fac-ph figcaption { font-size: 13px; color: var(--ink-soft); margin-top: 7px; }

/* Team */
.team { padding: 42px 0; }
.team .snap-track { grid-auto-columns: min(46vw, 250px); }
.team-ph { margin: 0; }
.team-ph img { border-radius: var(--r); aspect-ratio: 3 / 4; object-fit: cover; object-position: top; }
.team-ph figcaption { font-size: 13px; color: var(--ink-soft); margin-top: 7px; }
.team-ph strong { color: var(--ink); display: block; font-size: 14px; }

/* Reviews */
.reviews { padding: 42px 0; background: var(--navy); color: #fff; }
.reviews .wrap { display: grid; gap: 30px; }
.review-score { text-align: center; }
.review-score .big { font-family: var(--serif); font-size: 64px; line-height: 1; margin: 0; }
.review-score .stars { color: #f5c04a; font-size: 20px; letter-spacing: 3px; margin: 8px 0; }
.review-score p { margin: 4px 0; color: #c9cbe8; }
.review-score a { color: #fff; }
.review-quotes { display: grid; gap: 18px; }
.review-quotes blockquote { margin: 0; border-left: 3px solid #f5c04a; padding-left: 18px; }
.review-quotes p { font-family: var(--serif); font-size: 17px; margin: 0 0 8px; }
.review-quotes cite { font-style: normal; font-size: 13px; color: #c9cbe8; }

/* Studs: de andere twee Sonza's, trots met beeld */
.studs-grid { display: grid; gap: 16px; margin-top: 26px; }
.stud-card {
  display: flex; align-items: stretch; gap: 0; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  text-decoration: none; color: var(--ink);
}
.stud-card:hover { border-color: var(--navy); }
.stud-photo { width: 34%; min-width: 110px; object-fit: cover; }
.stud-body { padding: 14px 18px 16px; display: flex; flex-direction: column; gap: 4px; }
.stud-logo { width: 64px; height: auto; margin-bottom: 2px; }
.stud-card h3 { margin-bottom: 2px; font-size: 17px; }
.stud-card p { margin: 0 0 6px; font-size: 13.5px; color: var(--ink-soft); }
.stud-link { margin-top: auto; font-size: 13.5px; font-weight: 600; color: var(--blue); }

/* Bezoek */
.visit { padding: 42px 0; background: var(--card); border-top: 1px solid var(--line); }
.visit-grid { display: grid; gap: 28px; }
.visit address { font-style: normal; margin: 0 0 14px; color: var(--ink-soft); }
.visit address strong { color: var(--ink); }
.visit-list { list-style: none; margin: 0 0 18px; padding: 0; color: var(--ink-soft); }
.visit-list li { margin-bottom: 6px; }
.visit-map { display: none; }
.visit-map iframe { width: 100%; height: 100%; min-height: 210px; border: 0; border-radius: var(--r); }

/* Waarom (laag 3) */
.why { padding: 42px 0 60px; }
.why-grid { margin-top: 8px; }
.why-grid article { break-inside: avoid; margin-bottom: 28px; }
.why-grid article:last-child { margin-bottom: 0; }
.why-grid h3 { color: var(--navy); }
.why-grid p, .why-grid li { color: var(--ink-soft); font-size: 14px; }
.why-grid ul { padding-left: 18px; margin: 0; }
.why-grid li { margin-bottom: 7px; }

/* Footer */
.site-foot { background: var(--ink); color: #b9bbd0; padding: 30px 0 110px; font-size: 13px; }
.site-foot p { max-width: 74ch; }

/* Laag 1: meeschuivend knopje */
.why-chip {
  position: fixed; right: 14px; bottom: calc(84px + env(safe-area-inset-bottom, 0px));
  z-index: 50; background: var(--ink); color: #fff; text-decoration: none;
  font-size: 13px; padding: 10px 16px; border-radius: 999px; min-height: 40px;
  display: inline-flex; align-items: center; box-shadow: 0 4px 14px rgba(20, 22, 50, 0.25);
}

/* Vaste actiebalk, alleen mobiel */
.action-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
  display: grid; grid-template-columns: 1fr 2fr; gap: 10px;
  background: rgba(250, 249, 246, 0.95); backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
}


/* ===== De drie omgevingen. Kleuren gemeten uit hun eigen logo's. ===== */
/* Kliniek: navy uit het Vetstoria-widget en het kliniek-logo (standaard hierboven) */

/* Paint Horses: goud/tan uit sonzapaintslogo.png (#fec689, #c4a36f) */
body.theme-paints {
  --navy: #6b4d20;
  --navy-deep: #4a3516;
  --blue: #8a6529;
  --green: #7d8a4a;
  --paper: #faf7f1;
  --line: #e6ddcb;
  --ink: #2b2317;
  --ink-soft: #5c5040;
}
body.theme-paints .hero { background: linear-gradient(180deg, #f5ecdc 0%, var(--paper) 78%); }
body.theme-paints .score .stars { color: #b8862f; }

/* Dobermanns & Golden Retrievers: purper uit sonza-dogs-logo.png (#570861, #7c1746) */
body.theme-dogs {
  --navy: #570861;
  --navy-deep: #3d0546;
  --blue: #7c1746;
  --green: #0d8a5f;
  --paper: #faf7fa;
  --line: #e6dae6;
  --ink: #241426;
  --ink-soft: #55465a;
}
body.theme-dogs .hero { background: linear-gradient(180deg, #f4ebf4 0%, var(--paper) 78%); }

/* ===== De drie omgevingen als keuze, niet als voetnoot ===== */
.switch { padding: 42px 0; background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.switch-grid { display: grid; gap: 16px; margin-top: 26px; }
.switch-card {
  display: block; position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--r);
  background: var(--paper); text-decoration: none; color: var(--ink);
}
.switch-card:hover { border-color: var(--navy); }
.switch-card > img { width: 100%; aspect-ratio: 5 / 3; object-fit: cover; }
.switch-body { padding: 16px 20px 18px; }
.switch-logo { width: auto; height: 34px; max-width: 110px; object-fit: contain; object-position: left center; margin-bottom: 10px; }
.switch-card h3 { margin-bottom: 4px; font-size: 18px; }
.switch-card p { margin: 0 0 10px; font-size: 14px; color: var(--ink-soft); }
.switch-go { font-size: 14px; font-weight: 600; color: var(--blue); }
.switch-card.here { border-color: var(--navy); border-width: 2px; }
.switch-here-tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--navy); color: #fff; font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px;
}
.switch-card.here .switch-go { color: var(--ink-soft); }

/* Mobiel: keuzekaarten horizontaal en compact */
@media (max-width: 699px) {
  .switch-card { display: flex; align-items: stretch; }
  .switch-card > img { width: 34%; min-width: 108px; aspect-ratio: auto; }
  .switch-body { padding: 12px 14px; }
  .switch-logo { height: 24px; margin-bottom: 6px; }
  .switch-card h3 { font-size: 15.5px; margin-bottom: 2px; }
  .switch-card p { font-size: 12.5px; margin-bottom: 6px; }
  .switch-go { font-size: 13px; }
  .switch-here-tag { top: 8px; left: 8px; font-size: 10px; padding: 4px 9px; }
}

/* Prestatie-lijstjes op de stud-pagina's */
.wins { list-style: none; margin: 0; padding: 0; }
.wins li { padding-left: 22px; position: relative; margin-bottom: 7px; font-size: 14.5px; color: var(--ink-soft); }
.wins li::before { content: "★"; position: absolute; left: 0; top: 0; color: var(--blue); font-size: 13px; }
.pedigree { font-size: 13px; color: var(--ink-soft); font-family: var(--sans); }
.animal-ph figcaption strong { display: block; color: var(--ink); font-size: 14px; }
.animal-ph { margin: 0; }
.animal-ph img { border-radius: var(--r); aspect-ratio: 4 / 5; object-fit: cover; }
.animal-ph figcaption { font-size: 13px; color: var(--ink-soft); margin-top: 7px; }
.split { display: grid; gap: 26px; }
.split img { border-radius: var(--r); width: 100%; object-fit: cover; }
.tie { padding: 42px 0; }
.tie-inner { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; }
.tie-inner h2 { font-size: clamp(21px, 2.6vw, 28px); }
.tie-inner p { color: var(--ink-soft); margin: 0 0 14px; max-width: 62ch; }

/* ===== Vanaf 700px ===== */
@media (min-width: 700px) {
  .m-hide { display: inline; }
  .m-only-hide { display: block; }
  blockquote.m-only-hide { display: block; }
  section.m-only-hide { display: block; }
  .svc-img { display: block; }
  .hero .ph-a, .hero .ph-b { display: block; }
  .hero .ph-main img { max-height: none; }
  .sonzas { padding: 54px 0; }
  .explore-inner { flex-direction: row; align-items: center; gap: 20px; }
  .explore-inner { padding-top: 12px; padding-bottom: 12px; }
  .explore-label br { display: inline; }
  .explore-links { margin-left: auto; margin-right: 0; padding-left: 0; padding-right: 0; }
  .visit-map { display: block; }
  .hero { padding-top: 56px; padding-bottom: 46px; }
  .services, .boarding, .facility, .team, .reviews, .visit { padding-top: 54px; padding-bottom: 54px; }
  .why { padding: 54px 0 70px; }
  .story-grid.snap-track { grid-auto-flow: row; grid-template-columns: repeat(3, 1fr); overflow-x: visible; grid-auto-columns: unset; }
  .story-row .snap-controls { display: none; }
  .story-card img { aspect-ratio: 4 / 5; }
  .board-grid.snap-track { grid-auto-flow: row; grid-template-columns: 1fr 1fr; overflow-x: visible; grid-auto-columns: unset; }
  .board-row .snap-controls { display: none; }
  .board-card img { max-height: none; }
  .enrich-row .snap-track { grid-auto-columns: min(40vw, 280px); }
  .why-grid p, .why-grid li { font-size: 15px; }
  .visit-map iframe { min-height: 280px; }
  p.m-hide { display: block; }
  .m-show { display: none; }
  .phone { display: inline; }
  .hero { padding: 56px 0 46px; }
  .hero-grid { grid-template-columns: 1.1fr 1fr; align-items: center; }
  .story-grid { grid-template-columns: repeat(3, 1fr); }
  .board-grid { grid-template-columns: 1fr 1fr; }
  .studs-grid { grid-template-columns: 1fr 1fr; }
  .switch-grid { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1fr 1fr; align-items: center; }
  .switch { padding: 54px 0; }
  .tie { padding: 54px 0; }
  .tie-inner { padding: 32px 36px; }
  .visit-grid { grid-template-columns: 1fr 1fr; }
  .reviews .wrap { grid-template-columns: auto 1fr; align-items: center; gap: 48px; }
  .review-score { text-align: left; }
  .why-grid { columns: 2; column-gap: 44px; }
  .action-bar { display: none; }
  .why-chip { bottom: 18px; }
  .site-foot { padding-bottom: 30px; }
}

/* ===== Vanaf 980px ===== */
@media (min-width: 980px) {
  .site-nav { display: flex; }
  .snap-track { grid-auto-columns: minmax(0, 1fr); overflow-x: visible; }
  .services .snap-track { grid-template-rows: 1fr 1fr; grid-auto-flow: row; grid-template-columns: repeat(3, 1fr); }
  .facility .snap-track, .team .snap-track, .enrich-row .snap-track { grid-auto-flow: column; overflow-x: auto; }
  .facility .snap-track { grid-auto-columns: 300px; }
  .team .snap-track { grid-auto-columns: 250px; }
  .enrich-row .snap-track { grid-auto-columns: 280px; }
  .story-grid.snap-track, .board-grid.snap-track { grid-auto-flow: row; overflow-x: visible; }
}
