:root {
  color-scheme: light;
  --ink: #172026;
  --muted: #5f6f77;
  --line: #dbe4e7;
  --soft: #f5f8f6;
  --paper: #ffffff;
  --green: #12715b;
  --green-dark: #0b4f40;
  --blue: #285a8f;
  --rose: #b7465a;
  --pink: #ff1b75;
  --amber: #ad7130;
  --shadow: 0 18px 46px rgba(23, 32, 38, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

.nav {
  width: min(1160px, calc(100% - 32px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo {
  color: #ff1b75;
  font-size: 31px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand-divider {
  width: 2px;
  height: 28px;
  background: #2b2429;
  opacity: 0.82;
}

.brand-tagline {
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.mobile-nav-only {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--green-dark);
  cursor: pointer;
}

.nav-toggle span {
  position: relative;
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 160ms ease, top 160ms ease;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

.nav.menu-open .nav-toggle span {
  background: transparent;
}

.nav.menu-open .nav-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav.menu-open .nav-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}

.button,
.button-secondary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 7px;
  padding: 10px 16px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}

.button {
  background: var(--green);
  color: #fff;
}

.button:hover {
  background: var(--green-dark);
}

.button-secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--green-dark);
}

.hero {
  position: relative;
  min-height: 500px;
  height: 500px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(8, 29, 25, 0.82), rgba(8, 29, 25, 0.48) 45%, rgba(8, 29, 25, 0.08)),
    url("https://images.unsplash.com/photo-1516321497487-e288fb19713f?auto=format&fit=crop&w=1800&q=82") center / cover;
  color: #fff;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  width: min(1160px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  padding: 0;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  height: 100%;
  align-items: center;
}

.hero-main {
  min-width: 0;
  padding-bottom: 90px;
}

.eyebrow {
  color: #d7efe8;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  background: linear-gradient(90deg, #ff1b75 0%, #b21cff 48%, #24a6ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  overflow-wrap: anywhere;
}

.oopbuy-word,
.brand-logo {
  background: none;
  color: #ff1b75;
  -webkit-text-fill-color: #ff1b75;
}

h1 {
  max-width: 780px;
  margin-top: 10px;
  font-size: clamp(38px, 6vw, 70px);
}

.hero-copy {
  max-width: 690px;
  margin: 14px 0 0;
  color: #ebf7f4;
  font-size: 19px;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.quick-stats {
  position: absolute;
  left: 0;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(850px, 100%);
  margin-top: 0;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.featured-carousel {
  position: relative;
  justify-self: end;
  width: min(420px, 100%);
  height: 500px;
  min-height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 20px;
  padding: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08)),
    linear-gradient(145deg, rgba(255, 27, 117, 0.18), rgba(36, 166, 255, 0.14));
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.featured-head {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-weight: 950;
}

.featured-head span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  padding: 4px 12px;
  background: rgba(255, 27, 117, 0.92);
  box-shadow: 0 10px 22px rgba(255, 27, 117, 0.28);
}

.featured-dots {
  display: inline-flex;
  gap: 6px;
}

.featured-dots i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

.featured-dots i.active {
  width: 22px;
  background: #fff;
}

.featured-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr;
  color: #fff;
  text-decoration: none;
  opacity: 0;
  transform: translateX(18px) scale(0.98);
  pointer-events: none;
  transition: opacity 360ms ease, transform 360ms ease;
}

.featured-slide.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.featured-slide img {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  object-fit: contain;
  object-position: right center;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.26);
}

.featured-meta {
  position: absolute;
  left: 22px;
  bottom: 78px;
  color: #ffe7f1;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.featured-slide strong {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 28px;
  font-size: 26px;
  line-height: 1.05;
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.32);
}

.quick-stats div {
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.1);
}

.quick-stats strong {
  display: block;
  font-size: 24px;
}

.quick-stats span {
  color: #d7efe8;
  font-size: 13px;
  font-weight: 700;
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: var(--soft);
}

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

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.section-head p,
.intro p,
.content p {
  color: var(--muted);
}

.section-head h2,
.intro h1,
.content h1,
.content h2 {
  font-size: clamp(30px, 4vw, 48px);
}

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

.category-card,
.find-card,
.guide-link,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.category-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.category-card:hover,
.find-card:hover,
.guide-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.category-card-main {
  display: flex;
  flex: 1;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.category-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.category-card div,
.guide-link {
  padding: 16px;
}

.category-card h3,
.find-card h3,
.guide-link h3 {
  font-size: 19px;
}

.category-card p,
.find-card p,
.guide-link p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.accordion-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--green-dark);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
  list-style: none;
}

.accordion-card summary::-webkit-details-marker {
  display: none;
}

.accordion-card summary::after {
  flex: 0 0 auto;
  color: var(--pink);
  content: "+";
  display: none;
  font-size: 24px;
  line-height: 1;
}

.accordion-card[open] summary::after {
  content: "-";
}

.accordion-card .panel-link {
  margin-top: 14px;
  padding: 0 14px;
}

.category-feature-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin: 0 16px 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.category-feature-link:hover {
  border-color: var(--green);
  background: var(--soft);
}

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

.find-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.find-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.find-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 6px;
  padding: 5px 9px;
  background: #edf5f2;
  color: var(--green-dark);
}

.find-card .button-secondary {
  width: 100%;
  min-height: 40px;
  margin-top: auto;
  padding: 8px 12px;
  font-size: 13px;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 44px;
  align-items: start;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 24px;
}

.check-list {
  margin: 18px 0 0;
  padding-left: 22px;
}

.check-list li + li {
  margin-top: 8px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 0 0 12px;
}

.faq-list details:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.faq-list summary {
  cursor: pointer;
  color: var(--green-dark);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
}

.faq-list summary::marker {
  color: var(--pink);
}

.faq-list p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.panel-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 8px 12px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.panel-link:hover {
  border-color: var(--green);
  background: var(--soft);
}

.intro {
  padding: 34px 0 22px;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--green-dark);
  text-decoration: none;
}

.intro h1 {
  max-width: 900px;
  margin-top: 0;
  font-size: clamp(34px, 5vw, 58px);
}

.intro p {
  max-width: 820px;
  margin: 14px 0 0;
  font-size: 18px;
}

.content {
  padding: 42px 0 72px;
}

.content h2 {
  margin-top: 42px;
}

.content .split > div > h2:first-child {
  margin-top: 0;
}

.content h3 {
  margin: 24px 0 0;
  font-size: 22px;
}

.content p,
.content li {
  font-size: 17px;
}

.content ul,
.content ol {
  margin: 16px 0 0;
  padding-left: 22px;
  color: var(--muted);
}

.content li + li {
  margin-top: 7px;
}

.faq-grid,
.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-item {
  padding: 18px;
}

.faq-item h3 {
  font-size: 18px;
}

.faq-item p {
  margin-bottom: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #13211e;
  color: #d6e2df;
  padding: 38px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 900px) {
  .wrap,
  .nav,
  .hero-inner {
    width: min(1160px, calc(100% - 24px));
  }

  .nav {
    position: relative;
    min-height: 72px;
    align-items: center;
    flex-direction: row;
    padding: 10px 0;
  }

  .brand {
    min-width: 0;
    flex: 1;
    gap: 10px;
    white-space: nowrap;
  }

  .brand-logo {
    font-size: 28px;
  }

  .brand-divider,
  .brand-tagline {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    width: 100%;
    overflow: visible;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
    max-height: calc(100vh - 88px);
    overflow-y: auto;
    padding: 8px;
  }

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

  .nav-links a {
    display: flex;
    min-height: 44px;
    align-items: center;
    border-radius: 6px;
    padding: 10px 12px;
    color: var(--ink);
  }

  .nav-links .mobile-nav-only {
    display: flex;
  }

  .nav-links a:hover {
    background: var(--soft);
  }

  .nav-links .button {
    width: 100%;
    margin-top: 6px;
    color: #fff;
  }

  .hero {
    height: auto;
    min-height: auto;
    align-items: start;
    overflow: hidden;
    background:
      linear-gradient(180deg, rgba(8, 29, 25, 0.84), rgba(8, 29, 25, 0.62)),
      url("https://images.unsplash.com/photo-1516321497487-e288fb19713f?auto=format&fit=crop&w=1200&q=78") center top / cover;
  }

  .hero-inner {
    height: auto;
    padding: 32px 0 28px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    height: auto;
  }

  .hero-main {
    padding-bottom: 0;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .hero h1 {
    max-width: 360px;
    margin-top: 8px;
    font-size: clamp(38px, 11vw, 48px);
    line-height: 0.98;
  }

  .hero-copy {
    max-width: 360px;
    margin-top: 14px;
    font-size: 18px;
    line-height: 1.45;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .hero-actions .button,
  .hero-actions .button-secondary {
    min-height: 50px;
    border-radius: 8px;
    font-size: 16px;
    white-space: normal;
  }

  .featured-carousel {
    max-width: 420px;
    width: 100%;
  }

  .quick-stats {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    width: 100%;
    margin-top: 24px;
    border-radius: 8px;
    overflow: hidden;
  }

  .quick-stats div {
    padding: 12px 10px;
  }

  .quick-stats strong {
    font-size: 24px;
    line-height: 1;
  }

  .quick-stats span {
    margin-top: 5px;
    font-size: 11px;
    line-height: 1.2;
  }

  .grid,
  .find-grid,
  .split,
  .faq-grid,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  #categories .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  #categories .category-card {
    min-height: 150px;
    border: 0;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(12, 30, 26, 0.07);
  }

  #categories .category-card-main {
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 150px;
    padding: 18px 10px;
    text-align: center;
  }

  #categories .category-card img {
    width: 74px;
    height: 58px;
    aspect-ratio: auto;
    object-fit: contain;
  }

  #categories .category-card div {
    padding: 0;
  }

  #categories .category-card h3 {
    font-size: 18px;
    line-height: 1.15;
  }

  #categories .category-card p,
  #categories .category-feature-link {
    display: none;
  }

  .mobile-accordion-group {
    gap: 10px;
  }

  .accordion-card {
    padding: 16px;
  }

  .accordion-card p {
    margin-top: 10px;
  }

  .accordion-card summary::after {
    display: block;
  }

  .section-head,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .section {
    padding: 46px 0;
  }

  .section-head {
    gap: 14px;
    margin-bottom: 20px;
  }

  .section-head h2,
  .intro h1,
  .content h1,
  .content h2 {
    font-size: 32px;
    line-height: 1.08;
  }

  .intro {
    padding: 24px 0 18px;
  }

  .intro h1 {
    font-size: 34px;
    line-height: 1.04;
  }

  .intro p {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.55;
  }

  .content {
    padding: 28px 0 46px;
  }

  .content h2 {
    margin-top: 28px;
    font-size: 28px;
  }

  .content p,
  .content li {
    font-size: 15px;
    line-height: 1.6;
  }

  .content ul,
  .content ol {
    margin-top: 12px;
    padding-left: 18px;
  }

  .content li + li {
    margin-top: 5px;
  }

  .content .actions {
    margin-top: 16px;
  }

  .content .actions .button,
  .content .actions .button-secondary {
    min-height: 44px;
    border-radius: 8px;
    font-size: 15px;
    padding: 8px 12px;
    white-space: normal;
  }

  .content .guide-grid {
    gap: 10px;
  }

  .content .guide-link {
    padding: 14px;
  }

  .content .guide-link h3 {
    font-size: 17px;
  }

  .content .guide-link p {
    display: none;
  }

  .content .find-grid {
    gap: 12px;
    margin-top: 18px;
  }

  .content .find-card {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    min-height: 118px;
    border-radius: 8px;
  }

  .content .find-card img {
    width: 118px;
    height: 100%;
    min-height: 118px;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .content .find-card-body {
    gap: 8px;
    min-width: 0;
    padding: 12px;
  }

  .content .meta-row {
    gap: 6px;
    font-size: 11px;
    line-height: 1.1;
  }

  .content .pill {
    min-height: 24px;
    padding: 4px 7px;
  }

  .content .find-card h3 {
    font-size: 17px;
    line-height: 1.15;
  }

  .content .find-card p {
    display: none;
  }

  .content .find-card .button-secondary {
    min-height: 34px;
    margin-top: auto;
    padding: 6px 10px;
    font-size: 12px;
  }

  .content .panel {
    padding: 16px;
  }

  .content .panel h3 {
    font-size: 20px;
  }

  .content .panel-link {
    width: 100%;
    min-height: 40px;
    margin-top: 14px;
    text-align: center;
    white-space: normal;
  }

  .content .check-list {
    padding-left: 18px;
  }

  .faq-list {
    gap: 8px;
  }

  .faq-list details {
    padding-bottom: 10px;
  }

  .faq-list summary {
    font-size: 15px;
  }

  .faq-list p {
    font-size: 13px;
  }

  .directory-summary {
    padding: 32px 0;
  }

  .directory-summary .split {
    gap: 16px;
  }

  .directory-summary .eyebrow {
    display: none;
  }

  .directory-summary h2 {
    max-width: 340px;
    font-size: 28px;
    line-height: 1.06;
  }

  .directory-summary p {
    max-width: 340px;
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
  }

  .directory-summary .actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 18px;
  }

  .directory-summary .button,
  .directory-summary .button-secondary {
    min-height: 44px;
    border-radius: 8px;
    font-size: 15px;
    padding: 8px 12px;
  }

  .directory-summary .panel {
    padding: 16px;
  }

  .directory-summary .panel h3 {
    font-size: 18px;
    line-height: 1.15;
  }

  .directory-summary .check-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
    padding: 0;
    list-style: none;
  }

  .directory-summary .check-list li {
    margin: 0;
    border-radius: 7px;
    background: var(--soft);
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
    padding: 9px 10px;
  }
}

@media (max-width: 560px) {
  .hero-inner {
    padding-top: 30px;
    padding-bottom: 24px;
  }

  .featured-carousel {
    height: 380px;
    min-height: 380px;
  }

  .featured-slide img {
    height: 380px;
  }

  .featured-meta {
    bottom: 72px;
  }

  .featured-slide strong {
    bottom: 26px;
  }

  .brand-logo {
    font-size: 28px;
  }

  .brand-divider {
    height: 24px;
  }

  .brand-tagline {
    width: 100%;
    font-size: 13px;
  }

  .hero h1 {
    max-width: 310px;
    font-size: 40px;
  }

  .hero-copy {
    max-width: 330px;
    font-size: 16px;
  }

  .button,
  .button-secondary {
    width: 100%;
    white-space: normal;
  }

  .directory-summary {
    padding: 28px 0;
  }

  .directory-summary h2 {
    font-size: 26px;
  }

  .breadcrumb {
    margin-bottom: 8px;
    font-size: 12px;
  }

  .intro h1 {
    font-size: 30px;
  }

  .content h2 {
    font-size: 25px;
  }

  .content .find-card {
    grid-template-columns: 104px minmax(0, 1fr);
    min-height: 112px;
  }

  .content .find-card img {
    width: 104px;
    min-height: 112px;
  }

  .content .find-card-body {
    padding: 10px;
  }

  .content .meta-row span:not(.pill) {
    display: none;
  }

  .content .find-card h3 {
    font-size: 16px;
  }

  .site-footer {
    padding: 28px 0;
  }

  .footer-inner p {
    margin-bottom: 0;
  }

  .quick-stats {
    margin-top: 22px;
  }

  .quick-stats div {
    padding: 10px 8px;
  }

  .quick-stats strong {
    font-size: 21px;
  }

  .quick-stats span {
    font-size: 10px;
  }

  #categories .grid {
    gap: 10px;
  }

  #categories .category-card,
  #categories .category-card-main {
    min-height: 132px;
  }

  #categories .category-card-main {
    padding: 16px 8px;
  }

  #categories .category-card img {
    width: 62px;
    height: 50px;
  }

  #categories .category-card h3 {
    font-size: 16px;
  }
}

@media (max-width: 380px) {
  .brand-logo {
    font-size: 25px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .intro h1 {
    font-size: 27px;
  }

  .content .find-card {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .content .find-card img {
    width: 92px;
  }

  .content .find-card-body {
    gap: 7px;
    padding: 9px;
  }

  .content .find-card h3 {
    font-size: 15px;
  }

  .content .find-card .button-secondary {
    min-height: 32px;
    padding: 5px 8px;
  }
}
