/* Magic City Locals — cloned design system from tucsonans.com (see _research/DESIGN_SPEC.md)
   Font: Outfit everywhere. Palette: cyan/teal brand gradient over a near-white cool ground. */

:root {
  --bg: hsl(193 20% 99%);
  --fg: hsl(193 40% 15%);
  --border: hsl(193 20% 90%);
  --card: #fff;
  --primary: hsl(193 96% 46%);
  --primary-dim: hsl(193 96% 40%);
  --secondary: hsl(167 92% 34%);
  --muted: hsl(193 20% 95%);
  --muted-fg: hsl(193 15% 40%);
  --accent: hsl(180 30% 90%);
  --hero-ink: #2C2621;
  --brand-a: #0ab5e3;
  --brand-b: #07a785;
  --grad-brand: linear-gradient(90deg, #0ab5e3, #07a785);
  /* darker variants: AA-compliant as text color / under white text */
  --primary-text: #0e7490;
  --grad-brand-deep: linear-gradient(90deg, #0e7490, #047857);
  --radius: .75rem;
  --shadow-sm: 0 1px 2px rgb(0 0 0 / .05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / .25);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  /* rotated decor (pinwheel, mascots, collage cards) bleeds past the edge by design */
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
h1, h2, h3, p, ul { margin: 0; }
ul { padding: 0; list-style: none; }

.shell { width: 100%; max-width: 1280px; margin-inline: auto; padding-inline: 16px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}
.skip {
  position: absolute; left: 8px; top: -48px; z-index: 100;
  background: var(--fg); color: #fff; padding: 8px 14px; border-radius: 8px;
  transition: top .2s;
}
.skip:focus { top: 8px; }

/* icon helper — lucide symbols carry their own stroke attrs */
.ic { width: 16px; height: 16px; flex-shrink: 0; }

/* line clamps */
.clamp-1, .clamp-2, .clamp-3 {
  display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden;
}
.clamp-1 { -webkit-line-clamp: 1; }
.clamp-2 { -webkit-line-clamp: 2; }
.clamp-3 { -webkit-line-clamp: 3; }

/* ---------- buttons ---------- */
.btn-gradient {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--grad-brand-deep); color: #fff; border-radius: 9999px;
  font-weight: 600; box-shadow: var(--shadow-md);
  transition: opacity .3s, box-shadow .3s; white-space: nowrap;
}
.btn-gradient:hover { opacity: .9; }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 36px; padding: 8px 16px; border-radius: 9999px;
  border: 1px solid var(--border); background: var(--card);
  font-size: 14px; font-weight: 500; box-shadow: var(--shadow-sm);
  transition: background .2s, box-shadow .2s; white-space: nowrap;
}
.btn-outline:hover { background: var(--muted); }
.btn-outline .ic { transition: transform .3s; }
.btn-outline:hover .ic { transform: translateX(4px); }

/* ---------- header ---------- */
.masthead {
  position: sticky; top: 0; z-index: 50; width: 100%;
  background: hsl(193 20% 99% / .6);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.topbar { background: #083344; color: #ecfeff; font-size: 14px; font-weight: 600; }
.topbar__row {
  padding-inline: 16px; height: 44px;
  display: flex; align-items: center; justify-content: center; gap: 24px;
}
.topbar__tag { display: none; align-items: center; gap: 6px; }
.topbar__facts { display: flex; align-items: center; gap: 24px; }
.sm-only-hide { display: none; }
.topbar a { text-decoration: underline; text-underline-offset: 2px; }
.topbar a:hover { color: #fff; }
@media (min-width: 640px) { .sm-only-hide { display: inline; } }
@media (min-width: 768px) {
  .topbar { font-size: 15px; }
  .topbar__row { justify-content: space-between; padding-inline: 32px; }
  .topbar__tag { display: inline-flex; }
}

.masthead__main { padding-inline: 16px; }
.masthead__row {
  height: 64px; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
@media (min-width: 768px) {
  .masthead__main { padding-inline: 32px; }
  .masthead__row { height: 80px; }
}
.brand { display: flex; align-items: center; gap: 8px; transition: opacity .2s; }
.brand:hover { opacity: .9; }
.brand__mark { width: 48px; height: 48px; }
.brand__name { font-size: 24px; font-weight: 700; letter-spacing: -.025em; }
.brand__name b {
  font-weight: 700;
  background: var(--grad-brand-deep);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
@media (min-width: 768px) {
  .brand__mark { width: 64px; height: 64px; }
  .brand__name { font-size: 30px; }
}

.search { position: relative; width: 100%; }
.search .ic--lead {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  color: var(--muted-fg); pointer-events: none; z-index: 1;
}
.search__loc {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  display: flex; align-items: center; gap: 4px; pointer-events: none;
  color: var(--muted-fg); font-size: 14px; font-weight: 500;
}
.search input {
  width: 100%; height: 36px; padding: 4px 96px 4px 36px;
  border-radius: 9999px; border: 2px solid var(--muted);
  background: rgb(255 255 255 / .5); font: inherit; font-size: 14px;
  color: var(--fg); box-shadow: var(--shadow-sm); transition: all .2s;
}
.search input::placeholder { color: var(--muted-fg); }
.search input:focus {
  outline: none; background: #fff;
  border-color: var(--primary); box-shadow: 0 0 0 2px hsl(193 96% 46% / .35);
}
.search:focus-within .ic--lead { color: var(--primary); }
.masthead__search { flex: 1; max-width: 576px; display: none; align-items: center; gap: 12px; }
@media (min-width: 768px) { .masthead__search { display: flex; } }

.weather {
  display: none; align-items: center; gap: 6px; flex-shrink: 0;
  border: 1px solid var(--border); background: hsl(193 20% 95% / .4);
  border-radius: 9999px; padding: 6px 12px; position: relative;
  transition: border-color .2s, background .2s;
}
.weather:hover { border-color: hsl(193 96% 46% / .4); background: hsl(193 20% 95% / .7); }
.weather .ic { color: #e08b06; }
.weather__temp { font-size: 14px; font-weight: 700; line-height: 1; }
.weather__city { font-size: 12px; color: var(--muted-fg); line-height: 1; }
@media (min-width: 1024px) { .js .weather:not([hidden]) { display: inline-flex; } }
.weather-pop {
  position: absolute; top: calc(100% + 10px); right: 0; z-index: 60;
  width: 300px; background: #fff; border: 1px solid var(--border);
  border-radius: 16px; box-shadow: var(--shadow-xl); padding: 14px 16px;
  display: none; text-align: left;
}
.weather.is-open .weather-pop { display: block; }
.weather-pop h3 { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.weather-pop ul { display: grid; gap: 4px; }
.weather-pop li {
  display: flex; justify-content: space-between; gap: 8px;
  font-size: 13px; color: var(--muted-fg);
}
.weather-pop li b { color: var(--fg); font-weight: 600; }

.masthead__auth { display: none; align-items: center; gap: 12px; }
@media (min-width: 768px) { .masthead__auth { display: flex; } }
.btn-signin {
  display: inline-flex; align-items: center; min-height: 36px; padding: 8px 16px;
  font-size: 14px; font-weight: 500; color: var(--primary); border-radius: 8px;
  transition: background .2s, color .2s;
}
.btn-signin { color: var(--primary-text); }
.btn-signin:hover { background: hsl(193 96% 46% / .1); }
.btn-signup { min-height: 36px; padding: 8px 16px; font-size: 14px; box-shadow: var(--shadow-sm); }
.btn-signup:hover { box-shadow: var(--shadow-md); }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px; color: var(--fg);
}
.nav-toggle:hover { background: var(--muted); }
@media (min-width: 768px) { .masthead__mobile { display: none; } }

.m-nav { display: none; padding-inline: 16px; }
@media (min-width: 768px) { .m-nav { display: block; padding-inline: 32px; } }
.m-nav ul { display: flex; gap: 8px; align-items: center; }
.m-nav a {
  position: relative; display: inline-flex; align-items: center; height: 48px;
  padding: 8px 12px; font-size: 14px; font-weight: 700;
  color: hsl(193 40% 15% / .8); transition: color .2s;
}
.m-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: var(--grad-brand); opacity: 0; transition: opacity .2s;
}
.m-nav a:hover, .m-nav a[aria-current="page"] { color: var(--fg); }
.m-nav a:hover::after, .m-nav a[aria-current="page"]::after { opacity: 1; }

.mobile-menu { display: none; border-top: 1px solid var(--border); background: #fff; }
.mobile-menu.is-open { display: block; }
.mobile-menu ul { padding: 12px 16px 16px; display: grid; gap: 2px; }
.mobile-menu a {
  display: block; padding: 10px 12px; border-radius: 10px;
  font-weight: 600; font-size: 15px;
}
.mobile-menu a:hover { background: var(--muted); }
.mobile-menu .btn-gradient { justify-content: center; margin-top: 8px; padding: 12px; }

/* ---------- hero ---------- */
.hero {
  position: relative; z-index: 30; color: var(--hero-ink);
  background: linear-gradient(to bottom right, #c9effc 0%, #e3f8f3 50%, #c6f0e5 100%);
  overflow: hidden;
}
.hero__skyline {
  position: absolute; inset-inline: 0; bottom: 0; width: 100%; height: 70%;
  color: #0b4f46; opacity: .08; pointer-events: none; user-select: none;
}
.hero__inner {
  position: relative; max-width: 1280px; margin-inline: auto;
  padding: 48px 16px 32px;
}
@media (min-width: 640px) { .hero__inner { padding-inline: 24px; } }
@media (min-width: 768px) { .hero__inner { padding-top: 80px; } }
@media (min-width: 1024px) { .hero__inner { padding: 96px 32px 160px; } }
.hero__grid { display: grid; gap: 32px; align-items: center; }
@media (min-width: 1024px) { .hero__grid { grid-template-columns: repeat(12, 1fr); } }

.hero__copy { position: relative; z-index: 20; display: grid; gap: 32px; }
@media (min-width: 1024px) { .hero__copy { grid-column: span 5; gap: 40px; } }
.hero__brandline { display: flex; align-items: center; gap: 12px; margin-bottom: 32px; }
.hero__brandmark { width: 56px; height: 56px; filter: drop-shadow(0 1px 1px rgb(0 0 0 / .1)); }
.hero__brandtext { font-size: 26px; font-weight: 800; letter-spacing: -.02em; }
.hero__brandtext .grad {
  background: var(--grad-brand-deep);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
@media (min-width: 640px) { .nowrap-sm { white-space: nowrap; } }
.hero h1 {
  font-size: 2.4rem; font-weight: 800; line-height: 1.08; letter-spacing: -.025em;
}
@media (min-width: 420px) { .hero h1 { font-size: 2.8rem; } }
@media (min-width: 640px) { .hero h1 { font-size: 3.4rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 4rem; } }
.hero h1 .grad {
  background: var(--grad-brand-deep);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__sub {
  margin-top: 24px; font-size: 18px; line-height: 1.625;
  color: rgb(44 38 33 / .8); max-width: 512px;
}
@media (min-width: 640px) { .hero__sub { font-size: 20px; } }
.hero__search { max-width: 512px; position: relative; z-index: 30; }
.hero__search input { height: 56px; font-size: 16px; background: rgb(255 255 255 / .8); box-shadow: var(--shadow-md); }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }
.hero__cta { height: 56px; padding-inline: 32px; font-size: 16px; }
.hero__alt {
  display: flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 600; color: var(--hero-ink); transition: color .2s;
}
.hero__alt:hover { color: var(--brand-b); }
.hero__alt .ic { transition: transform .2s; }
.hero__alt:hover .ic { transform: translateX(4px); }

/* hero collage (desktop) */
.hero__stage { position: relative; z-index: 10; }
@media (min-width: 1024px) { .hero__stage { grid-column: span 7; padding-left: 32px; } }
.collage { display: none; position: relative; width: 100%; min-height: 600px; }
@media (min-width: 1024px) { .collage { display: block; } }

.collage__main {
  position: absolute; top: 48px; left: 50%; transform: translateX(-50%);
  width: 85%; z-index: 20; display: block;
  background: #fff; padding: 16px 16px 20px; border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / .1);
}
@media (min-width: 1280px) { .collage__main { width: 75%; } }
.collage__frame {
  position: relative; height: 288px; border-radius: 16px;
  overflow: hidden; margin-bottom: 20px; background: var(--muted);
}
.slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.5s ease-in-out;
  display: flex; align-items: center; justify-content: center;
}
.slide.is-on { opacity: 1; }
.collage__badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: rgb(255 255 255 / .95); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  color: var(--hero-ink); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
  padding: 6px 12px; border-radius: 9999px; box-shadow: var(--shadow-sm);
}
.dots {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 2;
}
.dots { align-items: center; }
.dots span, .dots button {
  height: 24px; width: 6px; display: flex; align-items: center;
  background: none; transition: all .3s;
}
.dots span::after, .dots button::after {
  content: ""; height: 6px; width: 100%; border-radius: 9999px;
  background: rgb(255 255 255 / .6); transition: all .3s;
}
.dots .is-on { width: 20px; }
.dots .is-on::after { background: #fff; }
.collage__meta { padding-inline: 8px; }
.collage__meta-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 8px; }
.collage__name { font-size: 24px; font-weight: 700; margin-bottom: 4px; }
.collage__cat { font-size: 14px; color: #6b5c57; display: flex; align-items: center; gap: 6px; font-weight: 500; }
.collage__cat .ic { width: 14px; height: 14px; }
.rating-chip {
  display: flex; align-items: center; gap: 6px; flex-shrink: 0;
  background: #FDFBF7; padding: 6px 10px; border-radius: 8px;
  border: 1px solid rgb(44 38 33 / .05); font-weight: 700; font-size: 14px;
}
.rating-chip .ic { color: var(--brand-a); fill: var(--brand-a); }
.collage__blurb { font-size: 14px; color: rgb(44 38 33 / .7); margin-top: 12px; line-height: 1.625; }
.collage__arrow {
  position: absolute; top: 168px; transform: translateY(-50%); z-index: 3;
  height: 36px; width: 36px; display: flex; align-items: center; justify-content: center;
  border-radius: 9999px; background: rgb(255 255 255 / .35); color: rgb(44 38 33 / .7);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  box-shadow: var(--shadow-sm); transition: all .3s;
}
.collage__arrow:hover { background: rgb(255 255 255 / .75); color: var(--hero-ink); }
.collage__arrow--prev { left: 24px; }
.collage__arrow--next { right: 24px; }
.collage__arrow .ic { width: 20px; height: 20px; }

.collage__event {
  position: absolute; bottom: -40px; right: -16px; z-index: 30;
  width: 70%; background: #fff; color: var(--hero-ink);
  padding: 20px; border-radius: 24px; box-shadow: var(--shadow-2xl);
  border: 1px solid rgb(0 0 0 / .05);
  transform: rotate(-2deg); transition: transform .5s; display: block;
}
@media (min-width: 1280px) { .collage__event { width: 60%; } }
.collage__event:hover { transform: rotate(0); }
.mini-eyebrow {
  display: flex; align-items: center; gap: 8px; color: #047857;
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; margin-bottom: 12px;
}
.collage__event-row { display: flex; gap: 16px; align-items: center; }
.collage__event-thumb {
  position: relative; width: 80px; height: 80px; border-radius: 12px;
  overflow: hidden; flex-shrink: 0; border: 1px solid rgb(0 0 0 / .05);
  background: #e3f8f3;
}
.collage__event-title { font-weight: 700; font-size: 20px; line-height: 1.25; margin-bottom: 8px; }
.collage__event-date { font-size: 14px; color: #6b5c57; display: flex; align-items: center; gap: 6px; }
.collage__event-date .ic { width: 14px; height: 14px; }

.collage__news {
  position: absolute; top: -16px; right: -16px; z-index: 40;
  width: 352px; display: flex; background: #fff; padding: 16px;
  border-radius: 16px; box-shadow: 0 25px 50px -12px rgb(0 0 0 / .15);
  border: 1px solid rgb(44 38 33 / .05);
  transform: rotate(3deg); transition: transform .5s;
}
.collage__news:hover { transform: rotate(0); }
.collage__news-thumb {
  position: relative; width: 96px; min-height: 96px; align-self: stretch;
  border-radius: 12px; overflow: hidden; flex-shrink: 0; background: #e3f8f3;
}
.collage__news-body { margin-left: 14px; display: flex; flex-direction: column; justify-content: center; min-height: 96px; }
.collage__news-tag {
  font-size: 10px; font-weight: 700; color: #047857;
  text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px;
}
.collage__news-head { font-size: 14px; font-weight: 600; line-height: 1.375; color: var(--hero-ink); }

.collage__logo {
  position: absolute; top: 42%; right: -16px; width: 144px; z-index: 35;
  transform: rotate(-6deg); transition: transform .5s ease-out;
  filter: drop-shadow(0 20px 13px rgb(0 0 0 / .03)) drop-shadow(0 8px 5px rgb(0 0 0 / .08));
  cursor: pointer; user-select: none;
}
.collage__logo:hover { transform: rotate(6deg) scale(1.1); }
.collage__blob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 120%; height: 120%; z-index: -1; border-radius: 9999px;
  background: linear-gradient(to top right, rgb(10 181 227 / .05), rgb(7 167 133 / .1));
  filter: blur(64px); mix-blend-mode: multiply; opacity: .7; pointer-events: none;
}

/* hero stacked (mobile) */
.hero__mobilecard {
  display: block; background: #fff; padding: 16px 16px 20px;
  border-radius: 24px; box-shadow: 0 25px 50px -12px rgb(0 0 0 / .1);
}
@media (min-width: 1024px) { .hero__mobilecard { display: none; } }
.hero__mobilecard .collage__frame { height: 208px; }

/* listing photos fill their frame */
.slide img, .biz-card__media img, .tile-card__media img, .f-card__media img,
.collage__event-thumb img, .collage__news-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* photo placeholder slots (house style: designed, honest, client photos drop in) */
.ph {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  color: #0c6a86;
  background:
    radial-gradient(120% 90% at 85% 10%, hsl(167 92% 34% / .12), transparent 55%),
    radial-gradient(120% 90% at 10% 90%, hsl(193 96% 46% / .16), transparent 55%),
    linear-gradient(135deg, #e9f8fd, #e7f7f1);
}
.ph .ic { width: 40px; height: 40px; }
.ph--sm .ic { width: 22px; height: 22px; }
.ph span {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .2em;
}

/* ---------- section furniture ---------- */
.section-head { display: flex; flex-direction: column; gap: 16px; margin-bottom: 48px; }
@media (min-width: 768px) {
  .section-head { flex-direction: row; justify-content: space-between; align-items: flex-end; }
}
.section-head h2 { font-size: 36px; font-weight: 700; }
.section-head .sub { margin-top: 12px; font-size: 18px; color: var(--muted-fg); max-width: 672px; }
.eyebrow {
  display: flex; align-items: center; gap: 8px; color: var(--primary-text);
  font-size: 14px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .05em; margin-bottom: 8px;
}
.eyebrow .ic { width: 20px; height: 20px; }

/* ---------- featured ---------- */
.featured { position: relative; z-index: 20; padding-top: 64px; }
.featured__mascot {
  position: absolute; top: -24px; left: 0; width: 128px;
  opacity: .12; transform: rotate(-3deg); pointer-events: none; user-select: none;
}
@media (min-width: 768px) { .featured__mascot { width: 160px; } }
.biz-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .biz-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .biz-grid { grid-template-columns: repeat(3, 1fr); } }
.biz-slot { position: relative; height: 100%; }
.fav {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  display: inline-flex; align-items: center; justify-content: center;
  height: 36px; width: 36px; border-radius: 9999px;
  color: rgb(255 255 255 / .85); transition: all .2s;
}
.fav .ic { width: 24px; height: 24px; fill: currentColor; filter: drop-shadow(0 1px 3px rgb(0 0 0 / .35)); }
.fav:hover { color: #ef6aa5; transform: scale(1.1); }
.fav:active { transform: scale(.95); }
.fav.is-on { color: #ef6aa5; }
.biz-card {
  display: block; height: 100%; border-radius: var(--radius);
  border: 1px solid hsl(193 20% 90% / .5); background: var(--card);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: all .3s;
}
.biz-card:hover { box-shadow: var(--shadow-xl); border-color: hsl(193 96% 46% / .3); }
.biz-card__media { position: relative; height: 256px; overflow: hidden; background: var(--muted); }
.biz-card__media .ph, .biz-card__media img { transition: transform .7s; }
.biz-card:hover .biz-card__media .ph, .biz-card:hover .biz-card__media img { transform: scale(1.05); }
.badge-featured {
  position: absolute; top: 16px; left: 16px;
  background: #047857; color: #fff; font-size: 12px; font-weight: 700;
  padding: 2px 10px; border-radius: 6px; box-shadow: var(--shadow-md);
  display: inline-flex; align-items: center; white-space: nowrap;
}
.biz-card__body { padding: 24px; }
.chip {
  display: inline-flex; align-items: center; white-space: nowrap;
  background: hsl(193 96% 46% / .1); color: var(--primary-text);
  font-size: 12px; font-weight: 600; padding: 2px 10px; border-radius: 6px;
  transition: background .2s;
}
.biz-card:hover .chip { background: hsl(193 96% 46% / .2); }
.biz-card__name { font-size: 24px; font-weight: 700; margin: 12px 0 8px; transition: color .2s; }
.biz-card:hover .biz-card__name { color: var(--primary-text); }
.biz-card__desc { color: var(--muted-fg); font-size: 14px; line-height: 1.625; }
.biz-card__foot {
  padding: 16px 24px; border-top: 1px solid var(--muted);
  background: hsl(193 20% 95% / .1); font-size: 14px; color: hsl(193 40% 15% / .8);
  display: flex; align-items: center; gap: 8px;
}
.biz-card__foot .ic { color: var(--primary); }

/* ---------- bunting divider ---------- */
.bunting { width: 100%; margin-top: 64px; pointer-events: none; user-select: none; }
.bunting svg { width: 100%; height: auto; aspect-ratio: 1200 / 90; opacity: .8; display: block; }

/* ---------- events ---------- */
.events { position: relative; z-index: 20; padding-top: 24px; }
.events__pinwheel {
  position: absolute; top: -8px; right: 0; width: 160px;
  opacity: .13; transform: rotate(12deg); pointer-events: none; user-select: none;
}
@media (min-width: 768px) { .events__pinwheel { width: 208px; } }
.events .section-head, .news .section-head { margin-bottom: 32px; align-items: flex-end; flex-direction: row; }
.ev-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .ev-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ev-grid { grid-template-columns: repeat(4, 1fr); } }
.tile-card {
  display: block; height: 100%; border-radius: var(--radius);
  border: 1px solid hsl(193 20% 90% / .5); background: var(--card);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: all .3s;
}
.tile-card:hover { border-color: hsl(193 96% 46% / .4); box-shadow: var(--shadow-lg); }
.tile-card__media { height: 144px; overflow: hidden; background: var(--muted); }
.tile-card__media .ph, .tile-card__media img { transition: transform .5s; }
.tile-card:hover .tile-card__media .ph, .tile-card:hover .tile-card__media img { transform: scale(1.05); }
.tile-card__body { padding: 20px; display: flex; flex-direction: column; }
.chip--date { margin-bottom: 12px; font-weight: 700; align-self: flex-start; }
.tile-card__title { font-weight: 700; font-size: 16px; line-height: 1.375; margin-bottom: 8px; transition: color .2s; }
.tile-card:hover .tile-card__title { color: var(--primary-text); }
.tile-card__desc { font-size: 14px; color: var(--muted-fg); margin-bottom: 12px; }
.tile-card__meta {
  margin-top: auto; padding-top: 8px; font-size: 12px; color: var(--muted-fg);
  display: flex; align-items: center; gap: 6px;
}
.tile-card__meta .ic { width: 12px; height: 12px; }

/* ---------- news ---------- */
.news { position: relative; z-index: 20; padding: 64px 0 96px; }
.news .section-head a.textlink {
  display: none; align-items: center; gap: 6px; font-size: 14px; font-weight: 700;
  color: var(--primary-text); margin-bottom: 4px; flex-shrink: 0;
}
@media (min-width: 640px) { .news .section-head a.textlink { display: inline-flex; } }
.news .section-head a.textlink:hover { text-decoration: underline; }
.news-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .news-grid { grid-template-columns: repeat(3, 1fr); } }
.news-card__media { height: 176px; }
.news-card__src { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted-fg); margin-bottom: 8px; }
.news-card__src b { color: hsl(193 40% 15% / .7); font-weight: 600; }
.news-card__title { font-size: 18px; }

/* ---------- categories ---------- */
.cats {
  padding: 96px 0; position: relative; overflow: hidden;
  background: linear-gradient(#fff 0%, #f4fbf9 50%, #fff 100%);
  border-block: 1px solid hsl(193 20% 90% / .4);
}
.cats__head { text-align: center; margin-bottom: 56px; }
.cats__head .eyebrow { justify-content: center; letter-spacing: .2em; margin-bottom: 12px; }
.cats__head h2 { font-size: 36px; font-weight: 700; margin-bottom: 16px; }
.cats__head p { font-size: 18px; color: var(--muted-fg); }
.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 768px) { .cat-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (min-width: 1024px) { .cat-grid { grid-template-columns: repeat(4, 1fr); } }
.cat-card {
  position: relative; overflow: hidden; border-radius: 24px;
  padding: 20px; min-height: 144px;
  display: flex; flex-direction: column; justify-content: space-between;
  border: 1px solid; transition: all .3s;
}
@media (min-width: 768px) { .cat-card { padding: 24px; } }
.cat-card:hover { transform: translateY(-4px); box-shadow: 0 20px 25px -5px rgb(0 0 0 / .05), 0 8px 10px -6px rgb(0 0 0 / .05); }
.cat-card__wm {
  position: absolute; bottom: -24px; right: -24px; width: 112px; height: 112px;
  opacity: .13; transform: rotate(-8deg); transition: transform .5s; pointer-events: none;
}
.cat-card:hover .cat-card__wm { transform: rotate(0) scale(1.1); }
.cat-card__tile {
  height: 40px; width: 40px; border-radius: 12px; color: #fff;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm);
}
.cat-card__tile .ic { width: 20px; height: 20px; }
.cat-card__label { position: relative; }
.cat-card__name { font-weight: 700; font-size: 16px; line-height: 1.25; color: var(--fg); }
@media (min-width: 768px) { .cat-card__name { font-size: 18px; } }
.cat-card:hover .cat-card__name { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }
.cat-card__row { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
.cat-card__count { font-size: 12px; font-weight: 600; }
@media (min-width: 768px) { .cat-card__count { font-size: 14px; } }
.cat-card__go {
  width: 16px; height: 16px; color: hsl(193 40% 15% / .4);
  transform: translateX(-4px); opacity: 0; transition: all .3s;
}
.cat-card:hover .cat-card__go { transform: translateX(0); opacity: 1; }
.cat--cyan   { background: #e9f8fd; border-color: rgb(10 181 227 / .15); }
.cat--cyan   .cat-card__tile { background: linear-gradient(to bottom right, #0ab5e3, #0891b2); }
.cat--cyan   .cat-card__count { color: #0e7490; }
.cat--cyan   .cat-card__wm { color: #0891b2; }
.cat--teal   { background: #e7f7f1; border-color: rgb(7 167 133 / .15); }
.cat--teal   .cat-card__tile { background: linear-gradient(to bottom right, #0dbd97, #07a785); }
.cat--teal   .cat-card__count { color: #047857; }
.cat--teal   .cat-card__wm { color: #07a785; }
.cat--amber  { background: #fdf4e5; border-color: rgb(245 158 11 / .15); }
.cat--amber  .cat-card__tile { background: linear-gradient(to bottom right, #f5b23b, #e08b06); }
.cat--amber  .cat-card__count { color: #b45309; }
.cat--amber  .cat-card__wm { color: #d97706; }
.cat--orange { background: #fcefe9; border-color: rgb(234 127 75 / .15); }
.cat--orange .cat-card__tile { background: linear-gradient(to bottom right, #ec8c5c, #d4642a); }
.cat--orange .cat-card__count { color: #b04e18; }
.cat--orange .cat-card__wm { color: #c2571b; }

/* ---------- resources ---------- */
.resources { position: relative; z-index: 20; padding-top: 96px; }
.resources__panel {
  border-radius: 24px; border: 1px solid rgb(7 167 133 / .2);
  background: linear-gradient(#e7f7f1, #fff); padding: 20px;
  position: relative; overflow: hidden;
}
@media (min-width: 640px) { .resources__panel { padding: 32px; } }
@media (min-width: 768px) { .resources__panel { padding: 48px; } }
.resources__mascot {
  position: absolute; bottom: -32px; right: -32px; width: 160px;
  color: var(--brand-b); opacity: .07; transform: rotate(12deg); pointer-events: none;
}
.resources__head { text-align: center; margin-bottom: 40px; position: relative; }
.resources__head .eyebrow { justify-content: center; color: #047857; letter-spacing: .2em; margin-bottom: 12px; }
.resources__head h2 { font-size: 30px; font-weight: 700; margin-bottom: 16px; }
@media (min-width: 640px) { .resources__head h2 { font-size: 36px; } }
.resources__head p { font-size: 18px; color: var(--muted-fg); max-width: 672px; margin-inline: auto; }
.res-grid { display: grid; grid-template-columns: 1fr; gap: 12px; position: relative; }
@media (min-width: 640px) { .res-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (min-width: 768px) { .res-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .res-grid { grid-template-columns: repeat(4, 1fr); } }
.res-card {
  display: flex; align-items: center; gap: 12px; border-radius: 16px;
  background: #fff; border: 1px solid hsl(193 20% 90% / .6); padding: 16px;
  transition: all .3s;
}
.res-card:hover { border-color: rgb(7 167 133 / .5); box-shadow: var(--shadow-md); }
.res-card__tile {
  height: 40px; width: 40px; flex-shrink: 0; border-radius: 12px;
  background: linear-gradient(to bottom right, #0dbd97, #07a785); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.res-card__tile .ic { width: 20px; height: 20px; }
.res-card__name { font-weight: 700; font-size: 14px; line-height: 1.25; transition: color .2s; }
.res-card:hover .res-card__name { color: #047857; }
.res-card__count { font-size: 12px; color: var(--muted-fg); margin-top: 2px; }
.res-card--all {
  justify-content: center; gap: 8px; color: #fff; font-weight: 700; font-size: 14px;
  background: linear-gradient(to bottom right, #047857, #065f46); border: 0;
}
.res-card--all:hover { box-shadow: var(--shadow-lg); }
.resources__crisis { text-align: center; font-size: 14px; color: var(--muted-fg); margin-top: 32px; position: relative; }
.resources__crisis b { color: var(--fg); font-weight: 700; }

/* ---------- CTA ---------- */
.cta { padding: 96px 0; }
.cta__panel {
  position: relative; overflow: hidden; border-radius: 24px;
  color: #fff; box-shadow: var(--shadow-2xl);
  background:
    radial-gradient(90% 120% at 95% 0%, rgb(10 181 227 / .35), transparent 55%),
    radial-gradient(80% 120% at 80% 100%, rgb(13 189 151 / .3), transparent 55%),
    linear-gradient(to right, #063a44 0%, #075660 55%, #0a7a6d 100%);
}
.cta__skyline {
  position: absolute; right: -20px; bottom: 0; width: 62%; max-width: 640px;
  color: #031e26; opacity: .35; pointer-events: none;
}
.cta__shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgb(0 0 0 / .5), transparent 45%);
}
.cta__content { position: relative; z-index: 10; padding: 32px; max-width: 672px; }
@media (min-width: 768px) { .cta__content { padding: 64px; } }
.cta h2 { font-size: 30px; font-weight: 700; margin-bottom: 16px; }
@media (min-width: 768px) { .cta h2 { font-size: 48px; } }
.cta__lede { font-size: 18px; opacity: .9; margin-bottom: 32px; text-wrap: balance; }
@media (min-width: 768px) { .cta__lede { font-size: 20px; } }
.cta ul { display: grid; gap: 12px; margin-bottom: 40px; }
.cta li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; }
@media (min-width: 768px) { .cta li { font-size: 18px; } }
.cta li .ic { width: 24px; height: 24px; margin-top: 2px; color: #7ee3c9; }
.cta li span { opacity: .95; }
.btn-white {
  display: inline-flex; align-items: center; justify-content: center;
  height: 56px; padding-inline: 40px; border-radius: 9999px;
  background: #fff; color: #164e63; font-size: 18px; font-weight: 500;
  box-shadow: var(--shadow-lg); transition: transform .2s, background .2s;
}
.btn-white:hover { transform: scale(1.05); background: rgb(255 255 255 / .9); }

/* ---------- footer ---------- */
.footer {
  position: relative; width: 100%; color: #fff; overflow: hidden;
  background: linear-gradient(#0d3b46 0%, #0a2f3f 50%, #071f2c 100%);
}
.footer__deco { position: absolute; inset: 0; pointer-events: none; user-select: none; overflow: hidden; }
.footer__deco > div { position: absolute; }
.footer__deco svg { display: block; }
.footer__inner { position: relative; padding: 64px 0 48px; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 640px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: repeat(6, 1fr); } }
.footer__brand { grid-column: span 1; }
@media (min-width: 1024px) { .footer__brand { grid-column: span 2; } }
.footer__wordmark {
  font-size: 24px; font-weight: 700; margin-bottom: 16px;
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: inline-block;
}
.footer__blurb { color: rgb(255 255 255 / .7); max-width: 384px; }
.footer__title { font-weight: 700; margin-bottom: 16px; }
.footer__title--gap { margin-top: 32px; }
.footer__list { display: grid; gap: 2px; color: rgb(255 255 255 / .7); }
.footer__list a { display: inline-block; padding-block: 4px; transition: color .2s; }
.footer__list a:hover { color: var(--brand-a); }
.footer__feat { grid-column: span 1; }
@media (min-width: 1024px) { .footer__feat { grid-column: span 2; } }
.footer__feat-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.footer__feat-head .footer__title { margin-bottom: 0; }
.footer__feat-dots { display: flex; gap: 6px; align-items: center; }
.footer__feat-dots button {
  height: 24px; width: 6px; display: flex; align-items: center;
  background: none; transition: all .3s;
}
.footer__feat-dots button::after {
  content: ""; height: 6px; width: 100%; border-radius: 9999px;
  background: rgb(255 255 255 / .25); transition: all .3s;
}
.footer__feat-dots button:hover::after { background: rgb(255 255 255 / .5); }
.footer__feat-dots .is-on { width: 20px; }
.footer__feat-dots .is-on::after { background: var(--brand-a); }
.footer__feat-stage { position: relative; }
.f-slide { transition: opacity .7s; opacity: 0; position: absolute; inset: 0; pointer-events: none; }
.f-slide.is-on { opacity: 1; position: relative; pointer-events: auto; }
.f-card {
  display: block; border-radius: 16px; overflow: hidden;
  background: rgb(255 255 255 / .05); border: 1px solid rgb(255 255 255 / .1);
  transition: border-color .3s, background .3s;
}
.f-card:hover { border-color: rgb(255 255 255 / .25); background: rgb(255 255 255 / .1); }
.f-card__media { height: 160px; overflow: hidden; }
.f-card__media .ph {
  color: rgb(255 255 255 / .78);
  background:
    radial-gradient(120% 90% at 85% 10%, rgb(10 181 227 / .25), transparent 55%),
    linear-gradient(135deg, rgb(255 255 255 / .08), rgb(255 255 255 / .02));
}
.f-card__body { padding: 16px; }
.f-card__name { font-weight: 600; font-size: 16px; line-height: 1.375; color: #fff; }
.f-card__chip {
  display: inline-block; margin-top: 6px; font-size: 11px; font-weight: 500;
  padding: 2px 8px; border-radius: 9999px;
  background: rgb(10 181 227 / .2); color: var(--brand-a);
}
.f-card__row {
  font-size: 12px; color: rgb(255 255 255 / .7); margin-top: 8px;
  display: flex; align-items: center; gap: 6px;
}
.f-card__row .ic { width: 12px; height: 12px; }
.f-card__row + .f-card__row { margin-top: 4px; }
.f-card__rating { font-size: 12px; color: rgb(255 255 255 / .8); margin-top: 8px; display: flex; align-items: center; gap: 4px; }
.f-card__rating .ic { width: 12px; height: 12px; color: #f5b23b; fill: #f5b23b; }
.f-card__rating .dim { color: rgb(255 255 255 / .65); }
.f-card__desc { font-size: 12px; color: rgb(255 255 255 / .65); margin-top: 8px; line-height: 1.625; }
.footer__bottom {
  margin-top: 48px; padding-top: 32px; border-top: 1px solid rgb(255 255 255 / .1);
  text-align: center; font-size: 14px; color: rgb(255 255 255 / .65);
}
.footer__bottom a:hover { color: var(--brand-a); }

/* ---------- directory page ---------- */
.dir-hero {
  position: relative; overflow: hidden; color: var(--hero-ink);
  background: linear-gradient(to bottom right, #c9effc 0%, #e3f8f3 55%, #c6f0e5 100%);
  border-bottom: 1px solid hsl(193 20% 90% / .6);
}
.dir-hero__skyline {
  position: absolute; inset-inline: 0; bottom: 0; width: 100%; height: 82%;
  color: #0b4f46; opacity: .08; pointer-events: none; user-select: none;
}
.dir-hero__mascot {
  position: absolute; top: 14px; right: 3%; width: 108px;
  color: #0b4f46; opacity: .12; transform: rotate(8deg);
  pointer-events: none; user-select: none;
}
@media (max-width: 767px) { .dir-hero__mascot { width: 72px; right: -8px; } }
.dir-hero__inner { position: relative; padding-block: 56px 60px; }
@media (min-width: 768px) { .dir-hero__inner { padding-block: 72px 76px; } }
.eyebrow--wide { letter-spacing: .2em; color: #047857; }
.dir-hero h1 { font-size: 34px; font-weight: 800; letter-spacing: -.02em; margin: 4px 0 12px; }
@media (min-width: 768px) { .dir-hero h1 { font-size: 44px; } }
.dir-hero__sub { color: rgb(44 38 33 / .75); font-size: 18px; max-width: 560px; }
@media (min-width: 768px) { .dir-hero__sub { font-size: 20px; } }

.dir { padding: 40px 16px 96px; }
.dir__grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 1024px) { .dir__grid { grid-template-columns: 300px 1fr; align-items: start; } }

.filters {
  border-radius: 16px; border: 1px solid hsl(193 20% 90% / .6);
  background: var(--card); box-shadow: var(--shadow-sm); padding: 24px;
}
@media (min-width: 1024px) { .filters { position: sticky; top: 96px; } }
.filters__title {
  display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px;
  margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.filters__tile {
  height: 36px; width: 36px; flex-shrink: 0; border-radius: 10px;
  background: linear-gradient(to bottom right, #0dbd97, #07a785); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.filters__tile .ic { width: 18px; height: 18px; }
.filters form { display: grid; gap: 24px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 14px; font-weight: 500; }
.field__wrap { position: relative; }
.field__wrap .ic {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  color: var(--muted-fg); pointer-events: none;
}
.field input[type="search"] {
  width: 100%; height: 40px; padding: 4px 12px 4px 36px;
  border-radius: 10px; border: 1px solid var(--border);
  background: hsl(193 20% 95% / .5); font: inherit; font-size: 14px; color: var(--fg);
  box-shadow: var(--shadow-sm); transition: border-color .2s, background .2s;
}
.field select {
  width: 100%; height: 40px; padding: 4px 36px 4px 12px;
  border-radius: 10px; border: 1px solid var(--border);
  background: hsl(193 20% 95% / .5); font: inherit; font-size: 14px; color: var(--fg);
  box-shadow: var(--shadow-sm); transition: border-color .2s, background .2s;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23577680' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 2px hsl(193 96% 46% / .35); background: #fff;
}
.filters__apply { min-height: 40px; padding: 8px 16px; font-size: 14px; border-radius: 9999px; width: 100%; }

.dir__count {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: #047857;
  text-transform: uppercase; letter-spacing: .1em;
  background: #e7f7f1; border: 1px solid rgb(7 167 133 / .2);
  border-radius: 9999px; padding: 6px 14px; margin-bottom: 20px;
}
.dir__count::before {
  content: ""; width: 7px; height: 7px; border-radius: 9999px;
  background: linear-gradient(to bottom right, #0dbd97, #047857);
}
.dir__list { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .dir__list { grid-template-columns: repeat(2, 1fr); } }
.dir-card {
  display: flex; flex-direction: column; border-radius: 16px;
  border: 1px solid hsl(193 20% 90% / .6); background: var(--card);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: all .3s;
}
.dir-card:hover {
  border-color: hsl(193 96% 46% / .3); box-shadow: var(--shadow-xl);
  transform: translateY(-3px);
}
.dir-card.is-hidden { display: none; }
.dir-card__media { height: 224px; overflow: hidden; background: var(--muted); }
.dir-card__media img { transition: transform .5s; }
.dir-card:hover .dir-card__media img { transform: scale(1.05); }
/* branded logo graphics: contain on a tinted ground instead of a bad crop */
.dir-card__media--logo {
  background:
    radial-gradient(120% 90% at 85% 10%, hsl(167 92% 34% / .1), transparent 55%),
    linear-gradient(135deg, #e9f8fd, #e7f7f1);
}
.dir-card__media--logo img { object-fit: contain; padding: 24px; }
.dir-card:hover .dir-card__media--logo img { transform: scale(1.02); }
.dir-card__body { padding: 20px; flex: 1; }
.dir-card__name { font-size: 20px; font-weight: 700; margin: 10px 0 8px; transition: color .2s; }
a.dir-card:hover .dir-card__name { color: var(--primary-text); }
.dir-card__desc { color: var(--muted-fg); font-size: 14px; line-height: 1.625; }
.dir-card__foot {
  padding: 12px 20px; border-top: 1px solid var(--muted);
  background: hsl(193 20% 95% / .1); font-size: 13px; color: hsl(193 40% 15% / .8);
  display: flex; flex-wrap: wrap; gap: 6px 20px;
}
.dir-card__foot span { display: inline-flex; align-items: center; gap: 6px; }
.dir-card__foot .ic { width: 14px; height: 14px; color: var(--primary-text); }

.dir__empty {
  border: 1px dashed hsl(193 20% 80%); border-radius: 16px;
  background: linear-gradient(#fff, #f4fbf9);
  padding: 40px 24px 48px; text-align: center; color: var(--muted-fg); margin-top: 8px;
}
.dir__empty-mascot {
  width: 88px; margin: 0 auto 12px; display: block;
  color: #07a785; opacity: .35; transform: rotate(6deg);
}
.dir__empty p + p { margin-top: 8px; }
.dir__empty b { color: var(--fg); }
.dir__empty a { color: var(--primary-text); font-weight: 600; }
.dir__empty a:hover { text-decoration: underline; }
.dir__clear { color: var(--primary-text); font-weight: 600; }
.dir__clear:hover { text-decoration: underline; }

/* ---------- 404 ---------- */
.notfound { padding: 96px 0 128px; text-align: center; }
.notfound h1 { font-size: 72px; font-weight: 800; letter-spacing: -.03em; }
.notfound h1 span {
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.notfound p { font-size: 18px; color: var(--muted-fg); margin: 16px auto 32px; max-width: 480px; }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
