:root {
  --forest: #173f2a;
  --forest-2: #23563c;
  --pine: #0f2a20;
  --leaf: #78b66b;
  --leaf-dark: #4d8d49;
  --beige: #f4ead7;
  --sand: #ead4aa;
  --cream: #fffaf0;
  --off-white: #f8f7f2;
  --charcoal: #202722;
  --muted: #657267;
  --line: #e1dfd4;
  --white: #ffffff;
  --gold: #c79242;
  --danger-soft: #fff3dc;
  --shadow: 0 18px 55px rgba(23, 63, 42, 0.13);
  --shadow-soft: 0 10px 30px rgba(23, 63, 42, 0.09);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(120, 182, 107, 0.22), transparent 28rem),
    radial-gradient(circle at 92% 16%, rgba(199, 146, 66, 0.16), transparent 22rem),
    linear-gradient(180deg, #fffdf7, var(--off-white));
  color: var(--charcoal);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--forest);
  color: var(--white);
  border-radius: 10px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 247, 0.88);
  border-bottom: 1px solid rgba(35, 86, 60, 0.12);
  backdrop-filter: blur(18px);
}

.header-inner,
.container {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 22px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.logo-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  background: var(--forest);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.logo-mark svg {
  width: 27px;
  color: var(--leaf);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(120, 182, 107, 0.18);
  color: var(--forest);
  transform: translateY(-1px);
}

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

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 99px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 78px);
  padding: clamp(46px, 7vw, 86px) 0 clamp(28px, 4vw, 50px);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0 0 auto auto;
  width: min(52vw, 720px);
  height: 100%;
  content: "";
  background:
    linear-gradient(135deg, rgba(23, 63, 42, 0.08), rgba(120, 182, 107, 0.2)),
    radial-gradient(circle at 60% 34%, rgba(255, 255, 255, 0.8), transparent 18rem);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.9;
  pointer-events: none;
  z-index: -1;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: clamp(30px, 7vw, 86px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--leaf-dark);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  content: "";
  background: var(--gold);
  border-radius: 99px;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--charcoal);
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(3rem, 6.4vw, 6.25rem);
}

.hero p {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.hero-search {
  max-width: 720px;
  margin-top: 30px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(35, 86, 60, 0.14);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.hero-search label {
  display: block;
  padding: 4px 12px 8px;
  color: var(--forest);
  font-size: 0.84rem;
  font-weight: 900;
}

.hero-search div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.hero-search input {
  border-radius: 999px;
  background: var(--off-white);
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.hero-chips a {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(35, 86, 60, 0.12);
  border-radius: 999px;
  color: var(--forest);
  font-size: 0.85rem;
  font-weight: 850;
  box-shadow: 0 8px 24px rgba(23, 63, 42, 0.06);
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.hero-chips a:hover {
  background: var(--beige);
  transform: translateY(-2px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  background: var(--forest-2);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.button.secondary {
  background: var(--white);
  color: var(--forest);
  border: 1px solid var(--line);
}

.button.secondary:hover {
  background: var(--beige);
}

.hero-showcase {
  display: grid;
  gap: 16px;
  align-self: stretch;
}

.map-card,
.hero-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background: var(--forest);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  animation: floatIn 700ms ease both;
}

.map-card {
  min-height: 310px;
  background:
    linear-gradient(145deg, rgba(15, 42, 32, 0.96), rgba(35, 86, 60, 0.94)),
    var(--pine);
}

.map-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent);
}

.map-topline {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 900;
}

.map-topline strong {
  color: var(--sand);
}

.map-visual {
  position: absolute;
  inset: 72px 24px 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background:
    radial-gradient(circle at 34% 35%, rgba(120, 182, 107, 0.42), transparent 5rem),
    radial-gradient(circle at 70% 58%, rgba(199, 146, 66, 0.35), transparent 5rem),
    rgba(255, 255, 255, 0.06);
}

.pin {
  position: absolute;
  width: 22px;
  height: 22px;
  background: var(--sand);
  border: 5px solid var(--white);
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  transform: rotate(-45deg);
}

.pin::after {
  position: absolute;
  inset: 3px;
  content: "";
  background: var(--forest);
  border-radius: 50%;
}

.pin-one {
  left: 22%;
  top: 28%;
}

.pin-two {
  right: 26%;
  top: 45%;
}

.pin-three {
  left: 50%;
  bottom: 20%;
}

.hero-card::after {
  position: absolute;
  right: -76px;
  top: -76px;
  width: 210px;
  height: 210px;
  content: "";
  background: rgba(120, 182, 107, 0.25);
  border-radius: 50%;
}

.hero-card h2 {
  color: var(--white);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.hero-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.hero-stats div {
  padding: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
}

.hero-stats strong {
  display: block;
  font-size: 1.45rem;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
}

.section {
  padding: clamp(44px, 7vw, 84px) 0;
}

.section-tight {
  padding: 0 0 clamp(30px, 5vw, 58px);
}

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

.category-strip a {
  display: grid;
  gap: 6px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(35, 86, 60, 0.12);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.category-strip a:hover {
  border-color: rgba(120, 182, 107, 0.52);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.category-strip span {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 950;
}

.category-strip strong {
  color: var(--forest);
  font-size: 1.04rem;
}

.category-strip small {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

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

.section-heading h2 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
}

.section-heading p {
  max-width: 560px;
  margin: 10px 0 0;
  color: var(--muted);
}

.directory-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  margin-bottom: 24px;
}

.field,
.form-field {
  display: grid;
  gap: 8px;
}

.field label,
.form-field label {
  color: var(--forest);
  font-size: 0.88rem;
  font-weight: 900;
}

input,
textarea,
select {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  color: var(--charcoal);
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

input,
select {
  min-height: 50px;
  padding: 0 14px;
}

textarea {
  min-height: 136px;
  padding: 14px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--leaf-dark);
  box-shadow: 0 0 0 4px rgba(120, 182, 107, 0.22);
}

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

.store-card {
  display: grid;
  grid-template-columns: minmax(230px, 0.38fr) minmax(0, 1fr);
  gap: 22px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 240, 0.86)),
    var(--white);
  border: 1px solid rgba(35, 86, 60, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.store-card:hover {
  border-color: rgba(120, 182, 107, 0.5);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.store-image,
.blog-image,
.detail-image {
  position: relative;
  overflow: hidden;
  min-height: 178px;
  border-radius: 18px;
  background: var(--store-bg, var(--blog-bg, var(--forest)));
}

.store-image::before,
.blog-image::before,
.detail-image::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 74% 22%, rgba(255, 255, 255, 0.3), transparent 4.2rem),
    linear-gradient(120deg, transparent 45%, rgba(255, 250, 240, 0.16) 46% 48%, transparent 49%);
}

.store-image::after,
.detail-image::after {
  position: absolute;
  inset: auto -10% -42px;
  height: 86px;
  content: "";
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.store-illustration {
  position: absolute;
  left: 50%;
  top: 55%;
  width: min(150px, 72%);
  height: 116px;
  transform: translate(-50%, -50%);
}

.store-illustration.large {
  width: min(300px, 72%);
  height: 220px;
}

.store-awning {
  position: absolute;
  left: 6%;
  right: 6%;
  top: 10%;
  height: 30%;
  background:
    repeating-linear-gradient(90deg, var(--cream) 0 18px, var(--sand) 18px 36px);
  border-radius: 18px 18px 8px 8px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.store-window,
.store-door {
  position: absolute;
  bottom: 4%;
  background: rgba(255, 250, 240, 0.92);
  border: 4px solid rgba(23, 63, 42, 0.46);
  border-radius: 12px;
}

.store-window {
  left: 10%;
  width: 44%;
  height: 44%;
}

.store-door {
  right: 12%;
  width: 25%;
  height: 58%;
}

.store-leaf {
  position: absolute;
  left: 22%;
  top: -2%;
  width: 34px;
  height: 52px;
  background: var(--leaf);
  border-radius: 80% 10% 80% 10%;
  box-shadow: 26px 15px 0 rgba(120, 182, 107, 0.72);
  transform: rotate(36deg);
}

.online .store-door {
  background: rgba(255, 250, 240, 0.7);
}

.online .store-window::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42%;
  height: 28%;
  content: "";
  border: 3px solid var(--forest);
  border-top: 0;
  transform: translate(-50%, -50%);
}

.rank-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 1;
  padding: 8px 10px;
  background: rgba(255, 250, 240, 0.92);
  color: var(--forest);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 950;
}

.store-content {
  display: grid;
  gap: 12px;
}

.store-topline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.store-title {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.store-title a:hover {
  color: var(--forest-2);
}

.store-type {
  flex: 0 0 auto;
  padding: 7px 10px;
  background: var(--beige);
  color: var(--forest);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
}

.rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.stars {
  color: var(--gold);
  letter-spacing: 0;
  white-space: nowrap;
}

.store-meta {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.95rem;
}

.store-meta a {
  color: var(--forest-2);
  font-weight: 850;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-row span {
  padding: 7px 10px;
  background: rgba(120, 182, 107, 0.16);
  color: var(--forest);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.listing-disclaimer,
.notice-box {
  padding: 14px 16px;
  background: var(--danger-soft);
  border: 1px solid #ebcf93;
  border-radius: 16px;
  color: #6d511e;
  font-size: 0.9rem;
}

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

.trust-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(23, 63, 42, 0.94), rgba(35, 86, 60, 0.9)),
    var(--forest);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--white);
}

.trust-band h2,
.trust-band h3 {
  color: var(--white);
}

.trust-band p {
  color: rgba(255, 255, 255, 0.76);
}

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

.trust-grid article {
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
}

.contact-grid .trust-band {
  align-items: start;
  grid-template-columns: 1fr;
}

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

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

.blog-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(35, 86, 60, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.blog-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.blog-image {
  min-height: 168px;
  border-radius: 0;
  background: var(--blog-bg, var(--forest));
}

.blog-icon {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  background: rgba(255, 250, 240, 0.92);
  border-radius: 18px;
  color: var(--forest);
  box-shadow: var(--shadow-soft);
}

.blog-icon svg {
  width: 34px;
}

.blog-content {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.blog-content h3 {
  font-size: 1.2rem;
}

.blog-content p {
  margin: 0;
  color: var(--muted);
}

.page-hero {
  padding: clamp(48px, 8vw, 86px) 0 clamp(28px, 5vw, 56px);
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(2.75rem, 6vw, 5.6rem);
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

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

.detail-panel,
.side-panel,
.form-card,
.state-card,
.updates-panel {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(35, 86, 60, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.detail-panel,
.side-panel,
.form-card,
.updates-panel {
  padding: 22px;
}

.detail-image {
  min-height: 280px;
  margin-bottom: 20px;
}

.detail-body {
  display: grid;
  gap: 18px;
}

.side-panel {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 16px;
}

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

.state-card {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.state-card h3 {
  font-size: 1.2rem;
}

.state-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.state-card div {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 10px;
}

.state-card dt {
  color: var(--forest);
  font-weight: 900;
}

.state-card dd {
  margin: 0;
  color: var(--muted);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 300px;
  gap: 34px;
  align-items: start;
}

.article-content {
  display: grid;
  gap: 20px;
}

.article-content p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.article-content .blog-image {
  min-height: 300px;
  border-radius: var(--radius);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 26px;
  align-items: start;
}

.form-card {
  display: grid;
  gap: 16px;
}

.form-card button {
  justify-self: start;
}

.success-message {
  display: none;
  padding: 14px 16px;
  background: rgba(120, 182, 107, 0.18);
  border: 1px solid rgba(120, 182, 107, 0.48);
  border-radius: 16px;
  color: var(--forest);
  font-weight: 850;
}

.success-message.visible {
  display: block;
}

.site-footer {
  margin-top: 40px;
  padding: 42px 0;
  background: var(--forest);
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 26px;
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
}

.site-footer p {
  max-width: 520px;
  margin: 12px 0 0;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .trust-band,
  .detail-layout,
  .article-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid,
  .state-grid,
  .category-strip {
    grid-template-columns: 1fr;
  }

  .side-panel {
    position: static;
  }
}

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

  .nav-links {
    position: fixed;
    inset: 78px 18px auto;
    display: none;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links a {
    border-radius: 14px;
  }

  .store-card {
    grid-template-columns: 1fr;
  }

  .hero-search div {
    grid-template-columns: 1fr;
  }

  .directory-toolbar {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom,
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 520px) {
  .header-inner,
  .container {
    width: min(100% - 28px, var(--max));
  }

  .hero {
    padding-top: 42px;
  }

  h1,
  .page-hero h1 {
    font-size: 2.65rem;
  }

  .store-topline {
    display: grid;
  }

  .state-card div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}
