:root {
  --green: #155c3b;
  --green-2: #0d3d2a;
  --mint: #e7f0e6;
  --cream: #f8f1e4;
  --paper: #fffaf4;
  --charcoal: #191f1b;
  --muted: #647168;
  --gold: #c7923e;
  --line: rgba(25, 31, 27, 0.1);
  --shadow: 0 16px 42px rgba(25, 31, 27, 0.08);
  --radius: 4px;
  --btn-bg: #000000;
  --btn-text: #ffffff;
  --btn-accent: #65f0d2;
  --btn-divider: rgba(255, 255, 255, 0.35);
  --btn-radius: 0;
  --btn-font-weight: 500;
  --btn-padding-y: 18px;
  --btn-padding-x: 28px;
  --btn-arrow-space: 82px;
  --btn-arrow-size: 1.6rem;
  --btn-transition: 0.28s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

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

a {
  color: var(--green);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.site-header {
  position: relative;
  top: 0;
  z-index: 100;
  background: rgba(248, 241, 228, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(25, 31, 27, 0.06);
  transition: background-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  background: rgba(248, 241, 228, 0.96);
  box-shadow: 0 8px 28px rgba(25, 31, 27, 0.12);
  animation: header-settle 220ms ease both;
}

body.has-sticky-header {
  padding-top: var(--header-height, 82px);
}

@keyframes header-settle {
  from {
    transform: translateY(-8px);
  }

  to {
    transform: translateY(0);
  }
}

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

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--charcoal);
  text-decoration: none;
  position: relative;
  z-index: 130;
  transform: translateY(10px);
}

.brand-mark {
  width: 118px;
  height: 82px;
  object-fit: contain;
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 0;
  background: var(--charcoal);
  color: var(--paper);
  cursor: pointer;
  position: relative;
  z-index: 130;
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 220ms ease, opacity 180ms ease, top 220ms ease;
}

.menu-toggle span:nth-child(1) {
  top: 14px;
}

.menu-toggle span:nth-child(2) {
  top: 21px;
}

.menu-toggle span:nth-child(3) {
  top: 28px;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--charcoal);
  text-decoration: none;
  padding: 9px 13px;
  border-radius: 0;
  font-size: 0.94rem;
  display: inline-flex;
  align-items: center;
}

.mega-item {
  display: inline-flex;
  align-items: center;
}

.nav-links > a.nav-link,
.mega-item > .nav-link {
  position: relative;
  min-height: 38px;
  text-transform: uppercase;
  font-size: 0.98rem;
  font-weight: 680;
  letter-spacing: 0.025em;
  color: var(--charcoal);
  transition: color 180ms ease;
}

.nav-links > a.nav-link::after,
.mega-item > .nav-link::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: -19px;
  height: 2px;
  background: var(--charcoal);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.nav-links > a.nav-link:hover,
.nav-links > a.nav-link:focus-visible,
.nav-links > a.nav-link[aria-current="page"],
.mega-item > .nav-link[aria-current="page"],
.mega-item:focus-within > .nav-link,
.mega-item.is-open > .nav-link {
  color: var(--charcoal);
  background: transparent;
}

.nav-links > a.nav-link:hover::after,
.nav-links > a.nav-link:focus-visible::after,
.nav-links > a.nav-link[aria-current="page"]::after,
.mega-item > .nav-link[aria-current="page"]::after,
.mega-item:focus-within > .nav-link::after,
.mega-item.is-open > .nav-link::after {
  transform: scaleX(1);
}

.mega-active .nav-links > a.nav-link[aria-current="page"]:not(:hover):not(:focus-visible)::after,
.mega-active .mega-item:not(.is-open) > .nav-link[aria-current="page"]::after {
  transform: scaleX(0);
}

.mega-trigger {
  cursor: pointer;
}

.mobile-submenu-toggle,
.mobile-submenu {
  display: none;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 110;
  width: 100vw;
  background: rgba(248, 241, 228, 0.98);
  border-top: 1px solid rgba(25, 31, 27, 0.08);
  box-shadow: 0 28px 58px rgba(25, 31, 27, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -6px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  z-index: 30;
}

.mega-item.is-open .mega-menu,
.mega-item:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.mega-inner {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(32px, 5vw, 76px);
  padding: clamp(34px, 5vw, 56px) 0;
}

.mega-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: clamp(28px, 4vw, 58px);
}

.mega-column h3,
.mega-featured-title {
  margin: 0 0 12px;
  font-size: 0.88rem;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
  color: var(--charcoal);
}

.mega-column ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 7px;
}

.mega-column a,
.mega-feature-card {
  color: var(--charcoal);
  text-decoration: none;
}

.mega-column a {
  display: inline-flex;
  padding: 0;
  font-size: 0.98rem;
  line-height: 1.35;
  font-weight: 520;
  color: #3f4942;
  position: relative;
  transition: color 180ms ease, transform 180ms ease;
}

.mega-column a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}

.mega-column a:hover,
.mega-column a:focus-visible {
  color: var(--green-2);
  background: transparent;
  transform: translateX(4px);
}

.mega-column a:hover::after,
.mega-column a:focus-visible::after {
  transform: scaleX(1);
}

.mega-column a.mega-view-all {
  color: var(--green-2);
  font-weight: 650;
}

.mega-column a.mega-view-all::before {
  content: none;
}

.mega-column a.mega-view-all::after {
  right: 1.25em;
}

.mega-column a.mega-view-all .view-all-arrow {
  display: inline-block;
  margin-left: 0.42em;
  color: var(--gold);
  transition: transform 200ms ease;
}

.mega-column a.mega-view-all:hover .view-all-arrow,
.mega-column a.mega-view-all:focus-visible .view-all-arrow {
  transform: translateX(4px);
}

.mega-featured {
  background: rgba(255, 250, 244, 0.44);
  border-left: 1px solid rgba(25, 31, 27, 0.08);
  padding-left: clamp(24px, 4vw, 42px);
}

.mega-feature-grid {
  display: grid;
  gap: 18px;
}

.mega-feature-card {
  min-height: 158px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  background-color: var(--green-2);
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.mega-feature-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
  transition: transform 240ms ease;
}

.mega-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 30%, rgba(0, 0, 0, 0.58) 100%);
  z-index: -1;
  transition: opacity 200ms ease;
}

.mega-feature-card:hover,
.mega-feature-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(25, 31, 27, 0.16);
}

.mega-feature-card:hover::after,
.mega-feature-card:focus-visible::after {
  opacity: 0.9;
}

.mega-feature-card:hover img,
.mega-feature-card:focus-visible img {
  transform: scale(1.04);
}

.mega-feature-card span {
  color: var(--paper);
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.34);
}

.button,
.button-primary,
.button-secondary,
a.button--sm,
a.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: min(280px, 100%);
  min-height: 58px;
  padding: var(--btn-padding-y) calc(var(--btn-padding-x) + var(--btn-arrow-space)) var(--btn-padding-y) var(--btn-padding-x);
  line-height: 1.2;
  border-radius: var(--btn-radius);
  border: 1px solid var(--btn-bg);
  background: var(--btn-bg);
  color: var(--btn-text);
  font-weight: var(--btn-font-weight);
  font-size: 1rem;
  letter-spacing: 0;
  text-decoration: none;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  transition: background var(--btn-transition), border-color var(--btn-transition), color var(--btn-transition), box-shadow var(--btn-transition), transform var(--btn-transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.button::before,
.button-primary::before,
.button-secondary::before,
a.button::before,
button.button::before {
  content: "";
  position: absolute;
  right: 66px;
  top: 50%;
  width: 1px;
  height: 42px;
  background: var(--btn-divider);
  transform: translateY(-50%);
}

.button::after,
.button-primary::after,
.button-secondary::after,
a.button--sm::after,
a.button::after,
button.button::after,
.sidebar .button::after {
  content: "\2192";
  color: var(--btn-accent);
  font-size: var(--btn-arrow-size);
  line-height: 1;
  position: absolute;
  right: 23px;
  top: 47%;
  transform: translateY(-50%) translateX(0);
  transition: transform var(--btn-transition);
}

.card > a:not(.button)::after {
  content: "\2192";
  color: var(--btn-accent);
  font-size: 1.35rem;
  line-height: 1;
  position: absolute;
  right: 22px;
  top: 47%;
  transform: translateY(-50%) translateX(0);
  transition: transform var(--btn-transition);
}

.button:hover,
.button-primary:hover,
.button-secondary:hover,
a.button:hover,
button.button:hover {
  background: #111111;
  border-color: #111111;
  color: var(--btn-text);
  text-decoration: none;
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.16);
  transform: translateY(-1px);
}

.button:hover::after,
.button-primary:hover::after,
.button-secondary:hover::after,
a.button--sm:hover::after,
a.button:hover::after,
button.button:hover::after,
.sidebar .button:hover::after {
  transform: translateY(-50%) translateX(6px);
}

.card > a:not(.button):hover::after {
  transform: translateY(-50%) translateX(6px);
}

.button.secondary {
  background: transparent;
  color: var(--charcoal);
  border-color: rgba(25, 31, 27, 0.9);
  box-shadow: none;
}

.button.secondary::before {
  background: rgba(25, 31, 27, 0.24);
}

.button.secondary::after {
  color: #0d7f69;
}

.button.secondary:hover,
.button.ghost:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--paper);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.button.light {
  background: #f4f1e8;
  color: var(--charcoal);
  border-color: rgba(25, 31, 27, 0.2);
  box-shadow: 0 12px 28px rgba(25, 31, 27, 0.08);
}

.button.light::before {
  background: rgba(25, 31, 27, 0.22);
}

.button.light::after {
  color: #0d7f69;
}

.button.light:hover {
  background: #ebe5d8;
  border-color: rgba(25, 31, 27, 0.34);
  color: var(--charcoal);
}

.button.ghost {
  background: transparent;
  border-color: var(--charcoal);
  color: var(--charcoal);
  box-shadow: none;
}

.button.ghost::before {
  background: rgba(25, 31, 27, 0.22);
}

.button.ghost::after {
  color: #0d7f69;
}

.button--sm {
  min-width: min(240px, 100%);
  min-height: 46px;
  padding: 14px 74px 14px 22px;
  font-size: 0.92rem;
}

.button--sm::before {
  right: 56px;
  height: 32px;
}

.button--sm::after {
  right: 22px;
  font-size: 1.35rem;
}

.back-to-top {
  position: fixed;
  right: clamp(16px, 2.4vw, 30px);
  bottom: clamp(16px, 2.4vw, 30px);
  z-index: 95;
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 250, 244, 0.18);
  border-radius: 3px;
  background: var(--charcoal);
  color: var(--paper);
  font: inherit;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  box-shadow: 0 14px 34px rgba(25, 31, 27, 0.18);
  transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease, background-color 180ms ease;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--green-2);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top.is-visible:hover,
.back-to-top.is-visible:focus-visible {
  transform: translateY(-2px);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--btn-accent);
  outline-offset: 3px;
}

.hero {
  position: relative;
  min-height: 640px;
  color: var(--charcoal);
  isolation: isolate;
  overflow: hidden;
  background: var(--cream);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(248, 241, 228, 0.98) 0%, rgba(248, 241, 228, 0.92) 45%, rgba(248, 241, 228, 0.5) 72%, rgba(248, 241, 228, 0.24) 100%);
  z-index: -1;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  z-index: -2;
}

.hero-inner,
.section-inner,
.footer-inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner {
  min-height: 640px;
  display: grid;
  align-content: center;
  padding: 96px 0 140px;
}

.eyebrow,
.card .kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  color: var(--cream);
  background: #7a551e;
  font-weight: 650;
  text-transform: uppercase;
  border-radius: 0;
  padding: 5px 8px;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  line-height: 1.2;
  position: relative;
}

.eyebrow::before,
.card .kicker::before {
  content: none;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin: 18px 0 18px;
  font-size: clamp(2.7rem, 6vw, 5.35rem);
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  color: #111713;
  font-weight: 850;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.hero p {
  max-width: 610px;
  font-size: 1.13rem;
  color: #465149;
}

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

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  padding: 34px 38px;
  margin-top: -74px;
  position: relative;
  z-index: 5;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: 0 24px 58px rgba(25, 31, 27, 0.14);
}

.stat {
  padding: 0;
  position: relative;
}

.stat::before {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  border-radius: var(--radius);
  background: var(--gold);
  margin-bottom: 18px;
}

.stat strong {
  display: block;
  color: var(--green-2);
  font-size: 1.5rem;
  line-height: 1;
}

.stat span {
  display: block;
  color: var(--muted);
  margin-top: 7px;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section::before {
  content: "";
  display: block;
  width: min(1120px, calc(100% - 32px));
  height: 1px;
  margin: 0 auto 66px;
  background: linear-gradient(90deg, rgba(122, 85, 30, 0.45), rgba(25, 31, 27, 0.06), transparent);
}

.section:first-of-type::before,
.section.deep::before {
  display: none;
}

.page-hero + .section {
  padding-top: clamp(56px, 7vw, 72px);
}

.page-hero + .section::before {
  width: min(1240px, calc(100% - 32px));
  margin-bottom: clamp(56px, 7vw, 72px);
}

.section.alt {
  background: rgba(255, 250, 244, 0.78);
}

.section.deep {
  background: var(--mint);
  color: var(--charcoal);
  overflow: hidden;
}

.section.deep .section-inner {
  position: relative;
}

.section.deep p,
.section.deep li {
  color: #465149;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
  position: relative;
}

.section-heading::after {
  content: "GUIDE / SUPPORT";
  position: absolute;
  right: 0;
  top: 8px;
  color: rgba(122, 85, 30, 0.26);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading p,
.lead {
  color: var(--muted);
  font-size: 1.06rem;
}

.section.deep .section-heading p {
  color: #465149;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  align-items: stretch;
}

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

.card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  min-height: 100%;
  position: relative;
}

.card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 18px;
  height: 18px;
  border-top: 1px solid rgba(122, 85, 30, 0.35);
  border-right: 1px solid rgba(122, 85, 30, 0.35);
  opacity: 0.65;
}

.card.featured {
  background: transparent;
}

.card p {
  color: var(--muted);
  margin: 0 0 18px;
}

.card .kicker {
  margin-bottom: 14px;
}

.card > a:not(.button) {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  min-height: 46px;
  min-width: min(220px, 100%);
  margin-top: auto;
  padding: 14px 72px 14px 22px;
  border-radius: 0;
  background: var(--btn-bg);
  color: #fff;
  font-weight: var(--btn-font-weight);
  line-height: 1.2;
  text-decoration: none;
  transition: background var(--btn-transition), color var(--btn-transition), box-shadow var(--btn-transition), transform var(--btn-transition);
  overflow: hidden;
}

.card > a:not(.button)::before {
  content: "";
  position: absolute;
  right: 56px;
  top: 50%;
  width: 1px;
  height: 32px;
  background: var(--btn-divider);
  transform: translateY(-50%);
}

.card > a:not(.button):hover {
  background: #111111;
  color: #fff;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 46px;
  align-items: start;
}

.brand-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 34px;
  align-items: start;
}

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

.article-list .card {
  min-height: 260px;
}

.toc {
  background: var(--mint);
  padding: 22px;
  margin: 26px 0;
}

.toc strong {
  display: block;
  margin-bottom: 10px;
}

.toc a {
  display: block;
  margin: 7px 0;
}

.related {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.article-body .related {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.article-body .related .card {
  min-height: 220px;
}

.article-body .related .card:nth-child(n+3) {
  display: none;
}

.article-body .related .button,
.article-body .related .card > a {
  margin-top: auto;
  min-width: min(250px, 100%);
}

.cta-panel {
  background: var(--mint);
  padding: 26px;
  margin: 34px 0;
}

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

.brand-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 48px;
  align-items: center;
}

.brand-hero,
.brand-directory-hero {
  background:
    linear-gradient(90deg, rgba(248, 241, 228, 0.98) 0%, rgba(248, 241, 228, 0.9) 46%, rgba(248, 241, 228, 0.54) 74%, rgba(248, 241, 228, 0.18) 100%),
    url("brands-hero-original.png") center right / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.brand-directory-hero {
  min-height: 470px;
  display: flex;
  align-items: center;
}

.brand-hero::after,
.brand-directory-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(25, 31, 27, 0.08);
}

.brand-hero .section-inner,
.brand-directory-hero .section-inner {
  position: relative;
  z-index: 1;
}

.brand-logo-panel,
.brand-logo-wrap {
  margin: 0;
  background: var(--paper);
  padding: clamp(18px, 3vw, 28px);
  box-shadow: 0 18px 42px rgba(25, 31, 27, 0.1);
  min-height: 260px;
  display: grid;
  align-content: center;
  gap: 16px;
}

.brand-logo-wrap {
  min-height: 220px;
  max-width: 340px;
  justify-self: end;
}

.brand-logo-panel img,
.brand-logo-wrap img {
  width: 100%;
  max-height: 190px;
  object-fit: contain;
}

.brand-logo-wrap img {
  max-height: 160px;
}

.brand-logo-panel figcaption,
.brand-logo-wrap figcaption {
  color: var(--muted);
  font-size: 0.86rem;
}

.brand-directory-card,
.brand-mini-card {
  gap: 14px;
  padding: 0 0 8px;
}

.brand-card-media {
  width: 100%;
  min-height: 172px;
  display: grid;
  place-items: center;
  background: var(--paper);
  padding: 22px;
  box-shadow: inset 0 0 0 1px rgba(25, 31, 27, 0.06);
}

.brand-card-media img {
  width: 100%;
  max-width: 230px;
  height: 132px;
  object-fit: contain;
}

.brand-directory-card p {
  min-height: 104px;
}

.brand-directory-card h3,
.brand-mini-card h3 {
  min-height: 2.6em;
}

.brand-directory-card > .kicker,
.brand-mini-card > .kicker {
  margin-top: 4px;
}

.brand-card-actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

.brand-card-actions .button.secondary {
  min-height: 46px;
  margin-top: auto;
}

.brand-lead {
  font-size: 1.08rem;
  color: #354039;
  margin-top: 0;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(25, 31, 27, 0.08);
}

.brand-cta-panel {
  background: #fffefd;
  border: 1px solid rgba(25, 31, 27, 0.08);
  padding: 24px;
  margin: 34px 0;
  box-shadow: 0 12px 28px rgba(25, 31, 27, 0.05);
}

.brand-cta-panel h2 {
  margin-top: 14px;
}

.compact-related {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 22px;
}

.compact-related .card {
  min-height: 0;
}

.compact-related .card::after {
  opacity: 0.28;
}

.compact-related .card h3 {
  min-height: 0;
}

.brand-name-chip {
  min-height: 118px;
  width: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  background: #fffefd;
  border: 1px solid rgba(25, 31, 27, 0.08);
  color: var(--green-2);
  font-weight: 850;
  padding: 18px;
}

.brand-sidebar {
  padding: 22px;
  background: #fffefd;
  box-shadow: inset 0 0 0 1px rgba(25, 31, 27, 0.06);
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  justify-content: center;
  margin-top: 54px;
}

.pagination a,
.pagination button,
.pagination span,
.pagination .page-numbers {
  min-width: 38px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 11px;
  background: transparent;
  color: var(--charcoal);
  text-decoration: none;
  border: 0;
  box-shadow: none;
  border-radius: 2px;
  font-weight: 650;
  line-height: 1;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.pagination span,
.pagination .page-numbers.dots {
  color: rgba(25, 31, 27, 0.35);
}

.pagination a:hover,
.pagination button:hover,
.pagination .page-numbers:hover {
  background: rgba(21, 92, 59, 0.08);
  color: var(--green-2);
  text-decoration: none;
  transform: translateY(-1px);
}

.pagination a[aria-current="page"],
.pagination .page-numbers.current {
  background: var(--green);
  color: var(--paper);
  box-shadow: 0 8px 18px rgba(21, 92, 59, 0.16);
  transform: none;
}

.pagination a[aria-current="page"]:hover,
.pagination .page-numbers.current:hover {
  background: var(--green);
  color: var(--paper);
}

.brand-page-content .article-body {
  padding-top: clamp(28px, 4vw, 52px);
}

.brand-page-content .brand-article {
  background: #fffdf9;
  border: 1px solid rgba(25, 31, 27, 0.06);
  box-shadow: 0 12px 32px rgba(25, 31, 27, 0.06);
}

.meta-line {
  color: var(--muted);
  font-size: 0.95rem;
}

.article-body {
  background: var(--paper);
  border: 0;
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 48px);
  box-shadow: var(--shadow);
}

.article-body p,
.article-body li {
  color: #39463f;
}

.article-body h2 {
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
  margin-top: 42px;
}

.brand-article h2 {
  font-size: clamp(1.28rem, 1.7vw, 1.72rem);
  font-weight: 760;
  margin-top: 34px;
  color: #151a17;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body ul,
.article-body ol {
  padding-left: 22px;
}

.checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  padding-left: 0 !important;
  margin: 22px 0 30px;
  list-style: none;
}

.checklist li {
  position: relative;
  padding: 12px 14px 12px 34px;
  background: rgba(231, 240, 230, 0.72);
  box-shadow: inset 0 0 0 1px rgba(25, 31, 27, 0.05);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 20px;
  width: 8px;
  height: 8px;
  background: var(--gold);
}

.resource-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 34px 0 0;
  background: rgba(25, 31, 27, 0.08);
}

.resource-strip a {
  display: flex;
  min-height: 86px;
  align-items: center;
  padding: 18px;
  background: var(--paper);
  color: var(--charcoal);
  font-weight: 800;
  text-decoration: none;
}

.resource-strip a:hover {
  color: var(--green-2);
  background: rgba(231, 240, 230, 0.72);
}

.sidebar {
  position: sticky;
  top: 96px;
  background: rgba(231, 240, 230, 0.76);
  color: var(--charcoal);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid rgba(25, 31, 27, 0.06);
  box-shadow: 0 10px 24px rgba(25, 31, 27, 0.04);
}

.sidebar p {
  color: var(--muted);
}

.sidebar .button {
  width: 100%;
  min-width: 0;
  padding-left: 20px;
  padding-right: 70px;
  font-size: 0.92rem;
}

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

.faq details {
  background: rgba(255, 250, 244, 0.62);
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  box-shadow: inset 0 0 0 1px rgba(25, 31, 27, 0.06);
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  padding: 18px 20px;
  position: relative;
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green-2);
  font-size: 1.15rem;
  transition: transform 220ms ease;
}

.faq details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-panel {
  overflow: hidden;
}

.js .faq-panel {
  max-height: 0;
  transition: max-height 320ms ease;
}

.faq-panel-inner {
  padding: 0 20px 20px;
}

.faq p {
  color: var(--muted);
  margin-bottom: 0;
}

.home-faq {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(248, 241, 228, 0.98) 0%, rgba(248, 241, 228, 0.9) 44%, rgba(248, 241, 228, 0.56) 68%, rgba(248, 241, 228, 0.24) 100%),
    url("faq-section-bg-home.png") right center / auto 100% no-repeat,
    var(--cream);
}

.home-faq::before {
  background: linear-gradient(90deg, rgba(122, 85, 30, 0.38), rgba(25, 31, 27, 0.06), transparent);
}

.home-faq .section-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 0.78fr);
  gap: 60px;
  align-items: center;
  min-height: 520px;
}

.home-faq-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-faq-panel {
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.94), rgba(255, 250, 244, 0.28));
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 24px 58px rgba(25, 31, 27, 0.16);
  backdrop-filter: blur(3px) saturate(1.04);
  border: 1px solid rgba(255, 250, 244, 0.66);
  outline: 1px solid rgba(25, 31, 27, 0.06);
  outline-offset: -8px;
}

.home-faq-panel .faq {
  gap: 12px;
}

.home-faq-panel .faq details {
  background: rgba(255, 250, 244, 0.78);
  box-shadow: inset 0 0 0 1px rgba(25, 31, 27, 0.08);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 42px;
  align-items: start;
}

.faq-main {
  min-width: 0;
}

.faq-page .toc {
  background:
    linear-gradient(90deg, rgba(231, 240, 230, 0.96), rgba(255, 250, 244, 0.76));
  margin-top: 0;
}

.faq-page .faq {
  margin-bottom: 42px;
}

.faq-page h2 {
  padding-top: 14px;
  margin-top: 34px;
  border-top: 1px solid rgba(122, 85, 30, 0.18);
}

.faq-page h2:first-of-type {
  border-top: 0;
  margin-top: 0;
}

.faq-page .cta-panel {
  margin-top: 52px;
  padding: clamp(24px, 4vw, 40px);
  background:
    linear-gradient(135deg, rgba(231, 240, 230, 0.98), rgba(255, 250, 244, 0.76));
}

.faq-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.faq-link-grid a {
  background: var(--paper);
  color: var(--charcoal);
  min-height: 92px;
  display: flex;
  align-items: center;
  padding: 18px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(25, 31, 27, 0.06);
}

.faq-link-grid a:hover {
  color: var(--green-2);
  background: var(--mint);
}

.marquee {
  overflow: hidden;
  background: var(--charcoal);
  color: var(--cream);
  margin-top: 46px;
  padding: 16px 0;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 250, 244, 0.08), inset 0 -1px 0 rgba(255, 250, 244, 0.08);
}

.section.deep .eyebrow {
  color: var(--mint);
}

.section.alt .eyebrow,
.site-footer .eyebrow {
  color: var(--paper);
}

.marquee-track {
  display: inline-flex;
  gap: 0;
  min-width: max-content;
  animation: medcan-marquee 56s linear infinite;
}

.marquee span {
  color: rgba(255, 250, 244, 0.94);
  font-size: 1.08rem;
  font-weight: 760;
  letter-spacing: 0.03em;
  padding-right: 28px;
}

@keyframes medcan-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }

  .faq-panel {
    transition: none;
  }
}

.crumbs {
  margin: 0 auto;
  width: min(1240px, calc(100% - 32px));
  padding: 8px 0 7px;
  color: var(--muted);
  font-size: 0.9rem;
}

.crumbs a {
  color: var(--green-2);
}

.page-hero .hero-crumbs {
  width: auto;
  margin: 0 0 clamp(18px, 2.6vw, 28px);
  padding: 7px 11px;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  min-height: 34px;
  line-height: 1.25;
  background: rgba(255, 250, 244, 0.76);
  color: #314039;
  text-shadow: 0 1px 18px rgba(255, 250, 244, 0.72);
  backdrop-filter: blur(5px);
}

.page-hero .hero-crumbs a {
  color: var(--green-2);
}

.page-hero {
  background: var(--cream);
  color: var(--charcoal);
  padding: 92px 0 76px;
}

.page-hero p {
  max-width: 760px;
  color: #465149;
  font-size: 1.12rem;
}

.page-hero.brand-hero,
.page-hero.brand-directory-hero {
  background:
    linear-gradient(90deg, rgba(248, 241, 228, 0.98) 0%, rgba(248, 241, 228, 0.9) 46%, rgba(248, 241, 228, 0.54) 74%, rgba(248, 241, 228, 0.18) 100%),
    url("brands-hero-original.png") center right / cover no-repeat;
}

.page-hero.brand-directory-hero {
  min-height: 470px;
  display: flex;
  align-items: center;
}

.page-hero.guides-hero {
  min-height: 470px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(248, 241, 228, 0.98) 0%, rgba(248, 241, 228, 0.9) 46%, rgba(248, 241, 228, 0.56) 74%, rgba(248, 241, 228, 0.2) 100%),
    url("guides-hero-desktop.png") center right / cover no-repeat;
}

.page-hero.locations-hero {
  min-height: 470px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(248, 241, 228, 0.98) 0%, rgba(248, 241, 228, 0.86) 43%, rgba(248, 241, 228, 0.38) 72%, rgba(248, 241, 228, 0.08) 100%),
    url("locations-hero-desktop.png") center right / cover no-repeat;
}

.page-hero.blog-hero {
  min-height: 470px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(248, 241, 228, 0.98) 0%, rgba(248, 241, 228, 0.9) 46%, rgba(248, 241, 228, 0.56) 74%, rgba(248, 241, 228, 0.2) 100%),
    url("blog-hero-desktop.png") center right / cover no-repeat;
}

.page-hero.location-detail-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
  background: var(--cream);
}

.page-hero.location-detail-hero::before,
.page-hero.location-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-hero.location-detail-hero::before {
  z-index: 0;
  background: var(--detail-hero-image) center / cover no-repeat;
  transform: scale(1.01);
}

.page-hero.location-detail-hero::after {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(248, 241, 228, 0.92) 0%, rgba(248, 241, 228, 0.76) 39%, rgba(248, 241, 228, 0.24) 67%, rgba(248, 241, 228, 0) 100%),
    linear-gradient(180deg, rgba(25, 31, 27, 0.06), rgba(25, 31, 27, 0.16));
}

.page-hero.location-detail-hero .section-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-hero.location-detail-hero:not(.store-detail-hero) {
  min-height: 470px;
  background:
    linear-gradient(90deg, rgba(248, 241, 228, 0.9) 0%, rgba(248, 241, 228, 0.74) 42%, rgba(248, 241, 228, 0.22) 68%, rgba(248, 241, 228, 0) 100%),
    linear-gradient(180deg, rgba(25, 31, 27, 0.05), rgba(25, 31, 27, 0.14)),
    var(--detail-hero-image) center / cover no-repeat;
}

.crumbs + .page-hero.location-detail-hero {
  margin-top: 0;
}

.page-hero.location-detail-hero:not(.store-detail-hero)::before {
  display: none;
}

.page-hero.location-detail-hero:not(.store-detail-hero)::after {
  display: block;
  z-index: 1;
}

.location-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.page-hero.store-detail-hero {
  background:
    linear-gradient(90deg, rgba(248, 241, 228, 0.94) 0%, rgba(248, 241, 228, 0.78) 42%, rgba(248, 241, 228, 0.28) 70%, rgba(248, 241, 228, 0.06) 100%),
    linear-gradient(180deg, rgba(25, 31, 27, 0.05), rgba(25, 31, 27, 0.16)),
    url("hero-store-desktop.png") center / cover no-repeat;
}

.page-hero.store-detail-hero::before {
  display: none;
}

.page-hero.store-detail-hero::after {
  display: none;
}

.page-hero.faq-hero {
  min-height: 470px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(248, 241, 228, 0.99) 0%, rgba(248, 241, 228, 0.9) 45%, rgba(248, 241, 228, 0.52) 74%, rgba(248, 241, 228, 0.14) 100%),
    url("faq-section-bg-home.png") center right / cover no-repeat;
}

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

.sitemap-group {
  background: var(--paper);
  border: 1px solid rgba(25, 31, 27, 0.08);
  padding: clamp(22px, 3vw, 32px);
  box-shadow: 0 18px 44px rgba(25, 31, 27, 0.06);
}

.sitemap-group h2 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  margin-bottom: 18px;
}

.sitemap-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sitemap-list a {
  color: var(--green-2);
  text-decoration: none;
  display: inline-block;
  transition: color 180ms ease, transform 180ms ease;
}

.sitemap-list a:hover {
  color: var(--charcoal);
  transform: translateX(4px);
}

.site-footer {
  background: var(--paper);
  color: var(--charcoal);
  padding: 68px 0;
  border-top: 1px solid rgba(25, 31, 27, 0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(130px, 0.55fr));
  gap: 42px;
  align-items: start;
}

.footer-nav {
  display: grid;
  gap: 9px;
  justify-content: start;
}

.footer-nav a,
.site-footer a {
  color: var(--charcoal);
  text-decoration: none;
  transition: transform 0.22s ease, color 0.22s ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--green-2);
  text-decoration: none;
  transform: translateX(6px);
}

.site-footer p {
  color: var(--muted);
  margin: 12px 0 0;
}

.footer-kicker {
  display: block;
  color: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-note {
  max-width: 360px;
}

.glossary-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 46px;
  align-items: start;
}

.glossary-article {
  background: #fffefd;
  border: 1px solid rgba(25, 31, 27, 0.06);
  box-shadow: 0 12px 32px rgba(25, 31, 27, 0.06);
}

.glossary-article h2,
.glossary-term-article h2 {
  font-size: clamp(1.28rem, 1.7vw, 1.72rem);
  font-weight: 760;
  margin-top: 34px;
  color: #151a17;
}

.glossary-term-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 26px 0 34px;
}

.glossary-term-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 172px;
  padding: 22px;
  background: #fffefd;
  color: var(--charcoal);
  text-decoration: none;
  border: 1px solid rgba(25, 31, 27, 0.08);
  box-shadow: 0 10px 24px rgba(25, 31, 27, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.glossary-term-card:hover {
  text-decoration: none;
  transform: translateY(-2px);
  border-color: rgba(21, 92, 59, 0.28);
  box-shadow: 0 16px 34px rgba(25, 31, 27, 0.08);
}

.glossary-term-card strong {
  color: var(--charcoal);
  font-size: 1.08rem;
}

.glossary-term-card span {
  color: var(--muted);
}

.glossary-term-card em {
  margin-top: auto;
  color: var(--green-2);
  font-style: normal;
  font-weight: 650;
}

.term-inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 30px;
}

.term-inline-list a {
  display: inline-flex;
  padding: 9px 12px;
  background: #fffefd;
  border: 1px solid rgba(25, 31, 27, 0.08);
  color: var(--green-2);
  text-decoration: none;
  font-weight: 650;
}

.term-inline-list a:hover {
  border-color: rgba(21, 92, 59, 0.32);
  text-decoration: none;
  transform: translateY(-1px);
}

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

.location-card {
  gap: 14px;
}

.location-card-media,
.location-hero-media {
  width: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fffefd;
  border: 1px solid rgba(25, 31, 27, 0.08);
  box-shadow: 0 10px 24px rgba(25, 31, 27, 0.05);
}

.location-card-media {
  aspect-ratio: 16 / 9;
}

.location-card-media img,
.location-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-card h3 {
  min-height: 2.5em;
}

.location-card p {
  min-height: 96px;
}

.location-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 8px;
}

.location-meta span {
  padding: 6px 9px;
  background: #fffefd;
  border: 1px solid rgba(25, 31, 27, 0.08);
  color: var(--muted);
  font-size: 0.86rem;
}

.location-hero-media {
  aspect-ratio: 16 / 10;
  margin: 26px 0 32px;
}

.location-page .brand-cta-panel {
  margin-top: 38px;
}

.blog-card-media,
.blog-featured-image {
  width: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fffefd;
  border: 1px solid rgba(25, 31, 27, 0.08);
  box-shadow: 0 10px 24px rgba(25, 31, 27, 0.05);
}

.blog-card-media {
  aspect-ratio: 16 / 9;
  margin-bottom: 4px;
}

.blog-featured-image {
  aspect-ratio: 16 / 9;
  margin: 0 0 34px;
}

.blog-card-media img,
.blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.term-page .brand-cta-panel {
  margin-top: 36px;
}

.notice {
  border-left: 4px solid var(--gold);
  background: rgba(199, 146, 62, 0.12);
  padding: 16px 18px;
  margin: 24px 0;
}

.source-list {
  display: grid;
  gap: 10px;
  padding-left: 0 !important;
  list-style: none;
}

.source-list li {
  padding: 12px 14px;
  background: rgba(231, 240, 230, 0.58);
  box-shadow: inset 0 0 0 1px rgba(25, 31, 27, 0.06);
}

.source-list a {
  font-weight: 760;
}

@media (max-width: 1040px) and (min-width: 821px) {
  .brand-grid,
  .brand-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  body.nav-open {
    overflow: hidden;
  }

  .nav {
    min-height: 44px;
    align-items: center;
    flex-direction: row;
    padding: 0;
    gap: 18px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 120;
    width: 100%;
    min-height: 100dvh;
    max-height: 100dvh;
    padding: 112px min(24px, 6vw) 34px;
    background:
      radial-gradient(circle at 100% 0%, rgba(199, 146, 62, 0.12), transparent 32%),
      linear-gradient(180deg, rgba(255, 250, 244, 0.98), var(--cream));
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 320ms cubic-bezier(.22, 1, .36, 1);
    box-shadow: 0 24px 70px rgba(25, 31, 27, 0.18);
  }

  .nav-open .nav-links {
    transform: translateX(0);
  }

  .mega-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
    align-items: center;
    border-bottom: 1px solid rgba(25, 31, 27, 0.1);
  }

  .mega-menu {
    display: none;
  }

  .nav-links a {
    font-size: 1.18rem;
    padding: 18px 0;
    border-radius: 0;
    border-bottom: 0;
    color: var(--charcoal);
    text-decoration: none;
  }

  .nav-links > a.nav-link,
  .mega-item > .nav-link {
    min-height: 0;
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 650;
    letter-spacing: 0.02em;
    width: 100%;
  }

  .nav-links > a.nav-link {
    border-bottom: 1px solid rgba(25, 31, 27, 0.1);
  }

  .nav-links > a.nav-link::after,
  .mega-item > .nav-link::after {
    display: none;
  }

  .nav-links a:hover,
  .nav-links a[aria-current="page"] {
    background: transparent;
  }

  .nav-links > a.nav-link[aria-current="page"],
  .mega-item > .nav-link[aria-current="page"] {
    color: var(--green-2);
    box-shadow: inset 3px 0 0 var(--gold);
    padding-left: 14px;
  }

  .mobile-submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: var(--charcoal);
    cursor: pointer;
    transition: color 180ms ease, transform 180ms ease;
  }

  .mobile-submenu-toggle:hover,
  .mobile-submenu-toggle:focus-visible {
    color: var(--green-2);
  }

  .mobile-submenu-toggle:focus-visible {
    outline: 1px solid rgba(13, 61, 42, 0.45);
    outline-offset: 4px;
  }

  .mobile-submenu-toggle span {
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 220ms ease;
  }

  .mega-item.is-mobile-open .mobile-submenu-toggle span {
    transform: rotate(225deg) translateY(-2px);
  }

  .mobile-submenu {
    grid-column: 1 / -1;
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    overflow: hidden;
    margin: 0;
    border-left: 2px solid transparent;
    transition: grid-template-rows 260ms ease, opacity 220ms ease, margin 220ms ease;
  }

  .mobile-submenu > ul {
    min-height: 0;
    list-style: none;
    padding: 0 0 0 18px;
    margin: 0;
  }

  .mega-item.is-mobile-open .mobile-submenu {
    grid-template-rows: 1fr;
    opacity: 1;
    margin: 0 0 14px;
    border-left-color: var(--gold);
  }

  .mobile-submenu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 42px;
    padding: 8px 0;
    font-size: 0.98rem;
    font-weight: 500;
    color: #34423a;
    border-bottom: 0;
    transition: color 180ms ease, transform 180ms ease;
  }

  .mobile-submenu a:hover,
  .mobile-submenu a:focus-visible {
    color: var(--green-2);
    transform: translateX(4px);
  }

  .mobile-submenu-action {
    color: var(--green-2);
    font-weight: 650;
  }

  .button,
  .button-primary,
  .button-secondary,
  a.button,
  button.button {
    min-width: min(100%, 280px);
    padding-left: 22px;
    padding-right: 92px;
  }

  .page-hero.brand-hero,
  .page-hero.brand-directory-hero {
    background:
      linear-gradient(180deg, rgba(248, 241, 228, 0.98) 0%, rgba(248, 241, 228, 0.9) 60%, rgba(248, 241, 228, 0.72) 100%),
      url("brands-hero-mobile.png") center bottom / cover no-repeat;
  }

  .page-hero.brand-directory-hero {
    min-height: 560px;
    align-items: flex-start;
  }

  .page-hero.guides-hero {
    min-height: 560px;
    align-items: flex-start;
    background:
      linear-gradient(180deg, rgba(248, 241, 228, 0.98) 0%, rgba(248, 241, 228, 0.9) 58%, rgba(248, 241, 228, 0.72) 100%),
      url("guides-hero-mobile.png") center bottom / cover no-repeat;
  }

  .page-hero.locations-hero {
    min-height: 560px;
    align-items: flex-start;
    background:
      linear-gradient(180deg, rgba(248, 241, 228, 0.98) 0%, rgba(248, 241, 228, 0.86) 54%, rgba(248, 241, 228, 0.62) 100%),
      url("locations-hero-mobile.png") center bottom / cover no-repeat;
  }

  .page-hero.blog-hero {
    min-height: 560px;
    align-items: flex-start;
    background:
      linear-gradient(180deg, rgba(248, 241, 228, 0.98) 0%, rgba(248, 241, 228, 0.9) 58%, rgba(248, 241, 228, 0.72) 100%),
      url("blog-hero-mobile.png") center bottom / cover no-repeat;
  }

  .page-hero.location-detail-hero {
    min-height: 480px;
    align-items: flex-start;
  }

  .page-hero.location-detail-hero::before {
    background-position: center;
  }

  .page-hero.location-detail-hero::after {
    background:
      linear-gradient(180deg, rgba(248, 241, 228, 0.92) 0%, rgba(248, 241, 228, 0.72) 52%, rgba(248, 241, 228, 0.4) 100%),
      linear-gradient(180deg, rgba(25, 31, 27, 0.06), rgba(25, 31, 27, 0.16));
  }

  .page-hero.location-detail-hero:not(.store-detail-hero) {
    min-height: 460px;
    background:
      linear-gradient(180deg, rgba(248, 241, 228, 0.92) 0%, rgba(248, 241, 228, 0.7) 52%, rgba(248, 241, 228, 0.36) 100%),
      linear-gradient(180deg, rgba(25, 31, 27, 0.05), rgba(25, 31, 27, 0.14)),
      var(--detail-hero-image) center / cover no-repeat;
  }

  .crumbs {
    padding: 7px 0 6px;
    font-size: 0.84rem;
  }

  .crumbs + .page-hero.location-detail-hero {
    margin-top: 0;
  }

  .page-hero.store-detail-hero {
    background:
      linear-gradient(180deg, rgba(248, 241, 228, 0.94) 0%, rgba(248, 241, 228, 0.76) 52%, rgba(248, 241, 228, 0.42) 100%),
      linear-gradient(180deg, rgba(25, 31, 27, 0.05), rgba(25, 31, 27, 0.15)),
      url("hero-store-mobile.png") center / cover no-repeat;
  }

  .page-hero.faq-hero {
    min-height: 560px;
    align-items: flex-start;
    background:
      linear-gradient(180deg, rgba(248, 241, 228, 0.98) 0%, rgba(248, 241, 228, 0.88) 56%, rgba(248, 241, 228, 0.7) 100%),
      url("faq-section-bg-home.png") center bottom / cover no-repeat;
  }

  .hero,
  .hero-inner {
    min-height: 560px;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(248, 241, 228, 0.98) 0%, rgba(248, 241, 228, 0.9) 68%, rgba(248, 241, 228, 0.68) 100%);
  }

  .stats,
  .grid,
  .grid.two,
  .article-list,
  .article-layout,
  .brand-article-layout,
  .glossary-layout,
  .faq-layout,
  .footer-inner,
  .related,
  .brand-list,
  .brand-grid,
  .location-grid,
  .brand-hero-grid,
  .checklist,
  .resource-strip,
  .home-faq .section-inner,
  .faq-link-grid {
    grid-template-columns: 1fr;
  }

  .glossary-term-grid {
    grid-template-columns: 1fr;
  }

  .home-faq {
    background:
      linear-gradient(180deg, rgba(248, 241, 228, 0.86), rgba(248, 241, 228, 0.98) 48%, rgba(248, 241, 228, 1) 100%),
      url("faq-section-bg-home.png") right top / auto 250px no-repeat,
      var(--cream);
  }

  .home-faq .section-inner {
    min-height: 0;
    gap: 28px;
  }

  .home-faq-intro {
    max-width: 620px;
  }

  .home-faq-panel {
    width: 100%;
    padding: clamp(22px, 6vw, 34px);
    background: linear-gradient(180deg, rgba(255, 250, 244, 0.96), rgba(255, 250, 244, 0.72));
    outline-offset: -6px;
  }

  .home-faq-panel .actions {
    width: 100%;
  }

  .home-faq-panel .button {
    width: 100%;
    min-width: 0;
  }

  .home-faq-panel .faq summary {
    padding-right: 46px;
  }

  .sitemap-groups,
  .sitemap-list {
    grid-template-columns: 1fr;
  }

  .stats {
    margin-top: -36px;
    gap: 30px;
    padding: 30px 24px;
  }

  .stat {
    border: 0;
  }

  .sidebar {
    position: static;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .nav-links {
    padding-left: 18px;
    padding-right: 18px;
  }

  .nav-links a {
    padding: 16px 0;
    font-size: 1.02rem;
  }

  .nav-links > a.nav-link,
  .mega-item > .nav-link {
    font-size: 1.04rem;
  }

  .mobile-submenu a {
    padding: 7px 0;
    font-size: 0.92rem;
  }

  .section {
    padding: 72px 0;
  }

  .home-faq {
    background:
      linear-gradient(180deg, rgba(248, 241, 228, 0.92), rgba(248, 241, 228, 0.99) 42%, rgba(248, 241, 228, 1) 100%),
      url("faq-section-bg-home.png") center top / auto 210px no-repeat,
      var(--cream);
  }

  .home-faq .section-inner {
    gap: 22px;
  }

  .home-faq-panel {
    padding: 22px 16px;
    box-shadow: 0 16px 38px rgba(25, 31, 27, 0.12);
  }

  .home-faq-panel .faq details {
    background: rgba(255, 250, 244, 0.9);
  }

  .home-faq-panel .faq summary {
    font-size: 0.98rem;
    line-height: 1.35;
  }

  .back-to-top {
    width: 42px;
    height: 42px;
    right: 14px;
    bottom: 14px;
    font-size: 1.12rem;
  }

  .section::before {
    margin-bottom: 48px;
  }

  .section-heading::after,
  .hero-inner {
    padding-top: 54px;
    padding-bottom: 72px;
  }

  .brand-mark {
    width: 108px;
    height: 76px;
  }

  .brand {
    transform: translateY(10px);
  }
}


.store-examples-section {
  margin-top: 42px;
  padding-top: 34px;
  border-top: 1px solid rgba(25, 31, 27, 0.1);
}

.store-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 24px 0 36px;
}

.store-preview-card {
  background: var(--paper);
  border: 1px solid rgba(25, 31, 27, 0.08);
  display: flex;
  flex-direction: column;
  min-width: 0;
  box-shadow: 0 18px 44px rgba(25, 31, 27, 0.06);
}

.store-card-media {
  height: 190px;
  background: var(--mint);
  overflow: hidden;
}

.store-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.store-card-body h3 {
  margin-bottom: 0;
  font-size: 1.18rem;
  line-height: 1.2;
}

.store-card-body p {
  margin: 0;
}

.store-location {
  color: var(--green-2);
  font-weight: 700;
  font-size: 0.92rem;
}

.store-card-body .button {
  margin-top: auto;
}

.city-link-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 4px;
}

.city-link-strip a {
  background: var(--mint);
  color: var(--green-2);
  text-decoration: none;
  padding: 10px 12px;
  border: 1px solid rgba(25, 31, 27, 0.08);
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 180ms ease, background 180ms ease;
}

.city-link-strip a:hover {
  background: var(--paper);
  transform: translateY(-1px);
}

@media (max-width: 820px) {
  .store-preview-grid {
    grid-template-columns: 1fr;
  }

  .store-card-media {
    height: 220px;
  }
}


.store-detail-media {
  background: var(--paper);
  border: 1px solid rgba(25, 31, 27, 0.08);
  padding: clamp(14px, 2vw, 22px);
  margin-bottom: 34px;
  box-shadow: 0 18px 44px rgba(25, 31, 27, 0.06);
}

.store-detail-media img {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
}
