:root {
  --ink: #19323a;
  --muted: #5d6f74;
  --brand: #0f7c80;
  --brand-dark: #0b5f63;
  --brand-soft: #e4f4f2;
  --cream: #fbf1df;
  --cream-2: #fffaf2;
  --sand: #ead9bf;
  --sage: #d7eee8;
  --white: #ffffff;
  --line: rgba(25, 50, 58, 0.1);
  --shadow: 0 18px 45px rgba(25, 50, 58, 0.12);
  --shadow-soft: 0 10px 28px rgba(25, 50, 58, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream-2);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 250, 242, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand strong {
  color: var(--brand);
}

.brand-mark {
  display: block;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  object-fit: contain;
}

.brand-name {
  line-height: 1;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-menu a {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 700;
}

.nav-menu a:hover,
.nav-menu a:focus {
  color: var(--brand-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 999px;
}

.hero {
  background: var(--cream);
}

.hero-banner {
  padding: 46px 0 34px;
  background: linear-gradient(135deg, var(--cream), var(--sage));
  border-radius: 0 0 34px 34px;
  box-shadow: var(--shadow);
}

.hero-banner-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 405px);
  gap: 38px;
  align-items: center;
}

.hero-banner-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--ink);
  text-align: left;
}

.hero-banner-logo {
  width: 68px;
  height: 68px;
  margin-bottom: 20px;
  border-radius: 20px;
  object-fit: contain;
  box-shadow: var(--shadow-soft);
}

.hero-banner-media {
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.hero.hero-banner .hero-banner-media {
  border: 0;
  box-shadow: 0 18px 38px rgba(25, 50, 58, 0.1);
}

.hero-banner-image {
  width: 100%;
  height: min(42vw, 355px);
  max-height: 355px;
  object-fit: cover;
  object-position: center 62%;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.1;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 5.6vw, 4.65rem);
  letter-spacing: -0.06em;
}

.hero-banner h1 {
  max-width: 680px;
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 4.5vw, 3.9rem);
}

.hero-text {
  max-width: 610px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 2px solid var(--brand);
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover,
.button:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 124, 128, 0.2);
}

.button-primary {
  background: var(--brand);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus {
  background: var(--brand-dark);
}

.button-secondary {
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(15, 124, 128, 0.22);
  backdrop-filter: blur(10px);
}

.button-secondary:hover,
.button-secondary:focus {
  background: var(--white);
  border-color: rgba(15, 124, 128, 0.38);
}

.section {
  padding: 74px 0;
}

.categories {
  padding-top: 46px;
  background: var(--white);
}

.section-heading {
  max-width: 740px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-heading h2,
.intro h2,
.suggest h2,
.contact h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.045em;
}

.section-heading p,
.category-card p,
.intro p,
.trust-item p,
.suggest-card p,
.contact p {
  color: var(--muted);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.category-card {
  position: relative;
  min-height: 226px;
  padding: 30px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), #fbf8f2);
  border: 1px solid rgba(123, 98, 68, 0.12);
  border-radius: 30px;
  box-shadow: 0 12px 30px rgba(25, 50, 58, 0.065);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.category-card::after {
  position: absolute;
  inset: auto 18px 18px auto;
  width: 78px;
  height: 78px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  opacity: 0.04;
  transform: scale(0.86);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.category-card:hover,
.category-card:focus {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, currentColor 22%, rgba(123, 98, 68, 0.12));
  box-shadow: 0 20px 40px rgba(25, 50, 58, 0.105);
}

.category-card:hover::after,
.category-card:focus::after {
  opacity: 0.065;
  transform: scale(1);
}

.category-icon {
  position: relative;
  display: inline-grid;
  width: 68px;
  height: 68px;
  margin-bottom: 24px;
  place-items: center;
  color: currentColor;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.18) 38%, transparent 62%),
    linear-gradient(145deg, color-mix(in srgb, currentColor 19%, #ffffff), color-mix(in srgb, currentColor 7%, #ffffff));
  border: 1px solid color-mix(in srgb, currentColor 16%, rgba(255, 255, 255, 0.88));
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 12px 24px rgba(25, 50, 58, 0.08),
    0 0 0 7px color-mix(in srgb, currentColor 6%, transparent);
  transition: transform 0.24s cubic-bezier(.2,.8,.2,1), box-shadow 0.24s ease, background 0.24s ease;
}

.category-icon::after {
  position: absolute;
  inset: 9px 11px auto auto;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  content: "";
  opacity: 0.9;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.category-icon svg {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
  filter: drop-shadow(0 2px 3px rgba(25, 50, 58, 0.08));
}

.category-icon .icon-plate {
  stroke-width: 1.9;
}

.category-icon .icon-accent {
  stroke-width: 2.25;
}

.category-card:hover .category-icon,
.category-card:focus .category-icon {
  transform: translateY(-2px) scale(1.06) rotate(-1deg);
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.22) 40%, transparent 64%),
    linear-gradient(145deg, color-mix(in srgb, currentColor 24%, #ffffff), color-mix(in srgb, currentColor 10%, #ffffff));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 16px 30px rgba(25, 50, 58, 0.11),
    0 0 0 8px color-mix(in srgb, currentColor 8%, transparent);
}

.category-card:hover .category-icon::after,
.category-card:focus .category-icon::after {
  opacity: 1;
  transform: translate(-2px, 2px) scale(0.86);
}

.category-icon-image {
  width: 84px;
  height: 84px;
  padding: 12px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.26) 42%, transparent 68%),
    linear-gradient(145deg, color-mix(in srgb, currentColor 14%, #ffffff), color-mix(in srgb, currentColor 7%, #ffffff));
  border: 1px solid color-mix(in srgb, currentColor 15%, transparent);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 12px 24px rgba(25, 50, 58, 0.08),
    0 0 0 7px color-mix(in srgb, currentColor 6%, transparent);
  overflow: hidden;
}

.category-icon-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 14px rgba(25, 50, 58, 0.12));
}

.category-page-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 16px;
  overflow: visible;
}

.category-page-icon {
  display: block;
  width: 105px;
  height: 105px;
  max-width: 105px;
  max-height: 105px;
  object-fit: contain;
  object-position: center;
  flex: 0 0 105px;
  overflow: visible;
  border-radius: 0;
  filter: drop-shadow(0 8px 14px rgba(25, 50, 58, 0.12));
}

.category-page-heading img.category-page-icon {
  width: 105px;
  height: 105px;
  max-width: 105px;
  max-height: 105px;
  object-fit: contain;
  object-position: center;
  flex: 0 0 105px;
  overflow: visible;
  border-radius: 0;
  position: static;
}

.category-page-heading h1 {
  margin-bottom: 0;
}

.category-card h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.16;
  letter-spacing: -0.032em;
}

.category-card p {
  max-width: 28ch;
  font-size: 0.96rem;
  line-height: 1.62;
}

.category-card-vets {
  color: #2f80c8;
}

.category-card-groomers {
  color: #0f8f8a;
}

.category-card-supplies {
  color: #c58218;
}

.category-card-walkers {
  color: #6f8f3d;
}

.category-card-trainers {
  color: #7568c8;
}

.category-card-boarding {
  color: #3f8a5c;
}

.category-card-rescue {
  color: #c95c61;
}

.category-card-emergency {
  color: #d94b3d;
}

.category-card-parks {
  color: #4f9a68;
}

.category-card-lost-found {
  color: #b86aa6;
}


.intro {
  background: var(--cream-2);
}

.trust {
  padding-top: 0;
  background: var(--cream-2);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-item {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}

.trust-item h2 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.suggest {
  background: linear-gradient(180deg, var(--cream-2), var(--sage));
}

.suggest-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px;
  background: var(--ink);
  color: var(--white);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.suggest-card .eyebrow,
.suggest-card p {
  color: #d7e5df;
}

.suggest-card h2 {
  max-width: 680px;
}

.contact {
  background: var(--white);
}

.contact a {
  color: var(--brand-dark);
  font-weight: 800;
  box-shadow: inset 0 -0.12em 0 var(--brand-soft);
}

.site-footer {
  padding: 42px 0;
  background: var(--ink);
  color: #d7e5df;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.footer-brand {
  color: var(--white);
}

.footer-brand .brand-mark {
  background: rgba(255, 255, 255, 0.12);
}

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

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    display: block;
    padding: 12px;
  }

  .hero-banner-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-banner-media {
    max-width: 520px;
    width: 100%;
  }

  .hero-banner-image {
    height: min(56vw, 320px);
    object-position: center 64%;
  }

  .hero.hero-banner .hero-banner-content {
    display: contents;
  }

  .hero.hero-banner .hero-banner-logo {
    display: none;
  }

  .hero.hero-banner h1 {
    order: 1;
  }

  .hero.hero-banner .hero-text {
    order: 2;
  }

  .hero.hero-banner .hero-banner-media {
    order: 3;
  }

  .hero.hero-banner .hero-actions {
    order: 4;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .suggest-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .nav {
    min-height: 66px;
  }

  .nav-menu {
    top: 66px;
    left: 12px;
    right: 12px;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.4rem);
  }

  .hero-banner h1 {
    font-size: clamp(2rem, 9.5vw, 3.25rem);
  }

  .hero-text {
    font-size: 0.98rem;
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .brand {
    font-size: 1.35rem;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .hero-banner {
    padding: 28px 0 26px;
    border-radius: 0 0 24px 24px;
  }

  .hero-banner-grid {
    gap: 20px;
  }

  .hero-banner-logo {
    width: 62px;
    height: 62px;
    margin-bottom: 18px;
    border-radius: 18px;
  }

  .hero-banner-image {
    height: min(58vw, 275px);
    object-position: center 65%;
  }

  .hero.hero-banner .hero-banner-media {
    order: 1;
    margin-bottom: 4px;
  }

  .hero.hero-banner h1 {
    order: 2;
  }

  .hero.hero-banner .hero-text {
    order: 3;
  }

  .hero.hero-banner .hero-actions {
    order: 4;
  }

  .section {
    padding: 50px 0;
  }

  .categories {
    padding-top: 34px;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: auto;
    padding: 24px;
  }

  .category-icon-image {
    width: 76px;
    height: 76px;
  }


  .suggest-card {
    padding: 28px;
    border-radius: 24px;
  }
}

@media (max-width: 600px) {
  .category-page-heading {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.65rem;
  }

  .category-page-icon,
  .category-page-heading img.category-page-icon {
    width: 84px;
    height: 84px;
    max-width: 84px;
    max-height: 84px;
    flex-basis: 84px;
    object-fit: contain;
  }
}


.page-hero {
  padding: 42px 0 34px;
  background: linear-gradient(135deg, var(--cream), var(--sage));
}

.page-hero-content {
  max-width: 780px;
}

.page-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 400px);
  gap: 36px;
}

.page-hero-media {
  border-width: 7px;
}

.page-hero-image {
  height: min(32vw, 280px);
  max-height: 280px;
  object-position: center 48%;
}

.veterinarians-hero-image {
  object-position: center center;
}

.pet-supplies-hero-media {
  position: relative;
}

.pet-supplies-hero-media::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background: rgba(0, 0, 0, 0.4);
}

.pet-supplies-hero-image {
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 920px) {
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-image {
    height: min(48vw, 280px);
  }
}

@media (max-width: 620px) {
  .groomers-hero .page-hero-content {
    display: contents;
  }

  .groomers-hero .page-hero-media {
    order: 1;
    margin-bottom: 4px;
  }

  .groomers-hero .page-hero-image {
    height: min(64vw, 260px);
  }

  .groomers-hero .eyebrow {
    order: 2;
  }

  .groomers-hero .category-page-heading {
    order: 3;
  }

  .groomers-hero .page-hero-content > p:not(.eyebrow) {
    order: 4;
  }

  .groomers-hero .breadcrumb {
    order: 5;
  }
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--brand-dark);
  font-weight: 800;
}

.page-hero h1 {
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 4.7vw, 4rem);
}

.page-hero p {
  color: var(--muted);
  font-size: 1.14rem;
}

.listing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: start;
}

.listing-list {
  display: grid;
  gap: 18px;
}

.business-card,
.directory-note,
.empty-state {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}

.listing-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 10px;
}

.business-card h2 {
  margin: 0;
  font-size: 1.45rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--brand-dark);
  background: var(--brand-soft);
  font-size: 0.75rem;
  font-weight: 800;
}

.status-pill-warning {
  color: #7c4a08;
  background: #fff1d6;
}

.business-description {
  margin-bottom: 18px;
  color: var(--muted);
}

.business-card-photo {
  width: 100%;
  height: min(34vw, 220px);
  margin-bottom: 22px;
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 12px 28px rgba(25, 50, 58, 0.1);
}

.emergency-contacts-section {
  padding-top: 34px;
  padding-bottom: 0;
}

.emergency-contacts-card {
  display: grid;
  gap: 22px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  color: var(--white);
  background: linear-gradient(135deg, #7f1d1d 0%, #991f1f 58%, #681515 100%);
  box-shadow: 0 18px 42px rgba(104, 21, 21, 0.24);
}

.emergency-contacts-card .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.emergency-contacts-card h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.5rem;
}

.emergency-contacts-card p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.9);
}

.emergency-contact-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.emergency-call-button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 18px;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 18px;
  color: #7f1d1d;
  background: var(--white);
  box-shadow: 0 10px 22px rgba(25, 50, 58, 0.16);
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.emergency-call-button strong {
  display: inline-block;
  font-size: 0.95em;
}

.emergency-call-button:hover,
.emergency-call-button:focus-visible {
  transform: translateY(-2px);
  border-color: #ffe8d6;
  background: #fff7ed;
  box-shadow: 0 16px 30px rgba(25, 50, 58, 0.22);
}

.emergency-call-button:focus-visible {
  outline: 3px solid #ffe8d6;
  outline-offset: 3px;
}

.emergency-call-button-warning {
  color: #681515;
  background: #fff1d6;
}

.emergency-call-button-warning:hover,
.emergency-call-button-warning:focus-visible {
  background: #ffe8bd;
}

.emergency-drive-times {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
}

.emergency-drive-times h3 {
  color: var(--white);
  font-size: 1.05rem;
}

.emergency-drive-times ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
}

.emergency-drive-times li {
  padding: 12px 14px;
  border-radius: 16px;
  color: #fffaf0;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 700;
}

.emergency-drive-times p {
  font-size: 0.92rem;
  line-height: 1.55;
}

.emergency-alert,
.what-to-do-card {
  padding: 28px;
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}

.emergency-alert {
  background: #fff4dc;
  border: 1px solid #f3d48a;
}

.emergency-alert h2,
.what-to-do-card h2 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.emergency-alert p + p {
  margin-top: 12px;
}

.what-to-do-card {
  background: var(--white);
  border: 1px solid var(--line);
}

.emergency-steps {
  display: grid;
  gap: 14px;
  list-style: none;
}

.emergency-steps li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--muted);
}

.emergency-steps span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--brand);
  font-weight: 800;
}

.business-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.business-detail span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.business-detail a {
  color: var(--brand-dark);
  font-weight: 800;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -4px 0 20px;
}

.services-list span {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--muted);
  background: #f7f1e6;
  font-size: 0.84rem;
  font-weight: 700;
}

.business-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.business-card-muted {
  background: #fffdf8;
}

.button-muted {
  color: var(--brand-dark);
  background: var(--brand-soft);
  border-color: rgba(39, 124, 106, 0.18);
}

.directory-note {
  position: sticky;
  top: 106px;
}

.directory-note h2,
.empty-state h2 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.directory-note p,
.empty-state p {
  color: var(--muted);
}

.directory-note p + p {
  margin-top: 12px;
}

.source-note {
  font-weight: 800;
}

.empty-state {
  text-align: center;
}

.empty-state p {
  max-width: 620px;
  margin: 0 auto 22px;
}

.logo-concept-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.logo-concept-card {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}

.logo-concept-card-featured {
  border-color: rgba(15, 124, 128, 0.26);
  box-shadow: 0 16px 38px rgba(15, 124, 128, 0.14);
}

.logo-concept-card img {
  width: 112px;
  height: 112px;
  margin-bottom: 18px;
}

.logo-concept-card .status-pill {
  width: fit-content;
  margin-bottom: 12px;
  color: var(--brand-dark);
}

.logo-concept-card h2 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.logo-concept-card p {
  color: var(--muted);
}

@media (max-width: 920px) {
  .listing-layout,
  .logo-concept-grid {
    grid-template-columns: 1fr;
  }

  .emergency-contact-actions,
  .emergency-drive-times ul {
    grid-template-columns: 1fr;
  }

  .directory-note {
    position: static;
  }
}

@media (max-width: 620px) {
  .emergency-contacts-section {
    padding-top: 26px;
  }

  .emergency-contacts-card {
    padding: 22px;
    border-radius: 24px;
  }

  .emergency-call-button {
    min-height: 64px;
    padding: 16px;
  }

  .business-details {
    grid-template-columns: 1fr;
  }
}
