:root {
  --bg: #f7f6f2;
  --bg-2: #f0eee8;
  --surface: rgba(255, 255, 255, 0.94);
  --surface-solid: #ffffff;
  --surface-soft: #f5f2eb;
  --text: #101010;
  --muted: #5f5b55;
  --muted-2: #7b766f;
  --line: rgba(16, 16, 16, 0.08);
  --line-strong: rgba(16, 16, 16, 0.16);
  --brand: #2d2a25;
  --shadow-lg: 0 20px 56px rgba(16, 16, 16, 0.1);
  --shadow-md: 0 12px 28px rgba(16, 16, 16, 0.06);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --site-width: min(1180px, calc(100% - 2rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  line-height: 1.65;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), transparent 28%),
    radial-gradient(circle at 100% 20%, rgba(255, 255, 255, 0.72), transparent 24%),
    linear-gradient(180deg, #fbfaf8 0%, var(--bg) 42%, #ece8df 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 16, 16, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 16, 16, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.26), transparent 72%);
}

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

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3,
strong {
  text-wrap: balance;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
  letter-spacing: -0.035em;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-shell {
  width: var(--site-width);
  margin: 0 auto;
}

.site-header {
  position: relative;
  backdrop-filter: blur(12px);
  background: rgba(250, 249, 246, 0.86);
  border-bottom: 1px solid rgba(16, 16, 16, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  padding: 0.85rem 0;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.site-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.2rem;
  flex: 0 0 auto;
  aspect-ratio: 1;
  padding: 0.32rem;
  border-radius: 1rem;
  border: 1px solid var(--line-strong);
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.site-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0.8rem;
}

.site-logo-copy {
  display: grid;
  gap: 0.14rem;
}

.site-logo-copy strong {
  color: var(--text);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-logo-copy small {
  color: var(--muted-2);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0.25rem 0;
  border-radius: 0;
  border-bottom: 1px solid transparent;
  color: var(--muted);
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
  border-color: var(--brand);
  transform: translateY(-1px);
}

main {
  display: block;
}

.hero,
.page-hero,
.section-block {
  padding: clamp(1.2rem, 2.8vw, 2.45rem) 0;
}

.hero-home {
  padding-top: clamp(0.8rem, 1.8vw, 1.3rem);
}

.hero-grid,
.split-layout,
.page-hero-grid,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(0.9rem, 2vw, 1.35rem);
  align-items: start;
}

.hero-grid-home {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(0.85rem, 1.9vw, 1.15rem);
  align-items: start;
}

.hero-copy {
  display: grid;
  align-content: start;
  gap: 0.4rem;
}

.hero-copy-home {
  gap: 0.55rem;
  padding-top: 0.2rem;
}

.hero-copy-home .hero-lead {
  max-width: 30rem;
}

.hero-copy h1,
.page-hero h1 {
  font-size: clamp(2.9rem, 7vw, 5rem);
  margin-bottom: 0.8rem;
}

.hero-copy h1::before,
.section-copy h2::before,
.section-heading h2::before,
.contact-copy h2::before,
.page-hero h1::before,
.overview-panel h2::before {
  content: "";
  display: block;
  width: 2.25rem;
  height: 2px;
  margin-bottom: 0.8rem;
  background: var(--brand);
}

.hero-lead,
.section-copy p,
.section-copy-paragraph,
.mini-card p,
.contact-card strong,
.panel-copy,
.footer-note {
  color: var(--muted);
}

.hero-lead {
  max-width: 34rem;
  font-size: 1.08rem;
}

.hero-stack,
.mini-stack {
  display: grid;
  gap: 1rem;
}

.panel,
.mini-card,
.gallery-card,
.contact-card,
.map-frame {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9));
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.panel,
.mini-card,
.contact-card {
  padding: clamp(1.25rem, 3vw, 1.7rem);
}

.panel-dark {
  color: var(--text);
  border-color: rgba(16, 16, 16, 0.08);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.95), transparent 46%),
    linear-gradient(180deg, #f5f3ee 0%, #efebe3 100%);
}

.panel-dark .panel-copy {
  color: var(--muted);
}

.logo-stage {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.logo-stage img {
  width: min(100%, 15rem);
  margin: 0 auto;
  padding: 0.45rem;
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.logo-stage-compact {
  min-height: 0;
}

.store-overview-card {
  justify-content: flex-start;
  gap: 1.1rem;
}

.store-overview-card img {
  width: min(100%, 11.5rem);
  margin: 0;
}

.store-overview-copy {
  display: grid;
  gap: 0.45rem;
}

.store-overview-kicker {
  color: var(--muted-2);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.panel-copy {
  max-width: 34rem;
}

.panel-copy-tight {
  margin-bottom: 0;
}

.overview-panel {
  padding: clamp(1.2rem, 2.8vw, 1.65rem);
}

.overview-panel h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.9rem;
}

.overview-panel .panel-copy {
  max-width: none;
}

.overview-panel .panel-copy + .panel-copy {
  margin-top: 0.85rem;
}

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

.hero-figure {
  overflow: hidden;
  padding: 0.65rem;
}

.hero-figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 16rem;
  object-fit: cover;
  border-radius: calc(var(--radius-md) - 0.45rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.72rem 1.15rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #ffffff;
  background: #25d366;
  border: 1px solid #25d366;
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line-strong);
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.stats-strip-inline {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 31rem;
  margin-top: 1.1rem;
}

.stats-strip article {
  padding: 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-md);
}

.stats-strip-inline article {
  padding: 1rem 1.05rem;
}

.stats-strip strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text);
  font-size: 1.3rem;
}

.stats-strip span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section-copy h2,
.section-heading h2,
.contact-copy h2 {
  font-size: clamp(2.25rem, 4.2vw, 3.45rem);
  margin-bottom: 1rem;
}

.section-surface {
  position: relative;
}

.section-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.section-surface > .site-shell {
  position: relative;
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 1rem;
}

.section-copy-paragraph {
  max-width: 40rem;
}

.split-layout-home {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
}

.section-copy-balanced {
  display: grid;
  align-content: center;
  gap: 0.45rem;
}

.section-copy-balanced p {
  margin-bottom: 0;
}

.section-copy-balanced .hero-actions {
  margin-top: 1rem;
}

.mini-card h3 {
  font-size: 1.95rem;
}

.gallery-grid,
.brand-grid,
.contact-cards {
  display: grid;
  gap: 1rem;
}

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

.gallery-grid-large {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.gallery-grid-store {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-card {
  padding: 0.6rem;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: calc(var(--radius-md) - 0.5rem);
}

.store-level-stack {
  display: grid;
  gap: 1.3rem;
}

.store-level {
  display: grid;
  gap: 0.9rem;
}

.store-level-heading {
  display: grid;
  gap: 0.35rem;
}

.store-level-label {
  color: var(--muted-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.store-level-heading h3 {
  margin: 0;
  font-size: clamp(1.9rem, 3.8vw, 2.6rem);
}

.brand-grid {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  align-items: stretch;
}

.page-hero .brand-grid {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--logo-card-height, 7.4rem);
  padding: var(--logo-card-padding, 1rem 1.05rem);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 247, 242, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.brand-logo img {
  width: auto;
  max-width: min(100%, var(--logo-max-width, 10rem));
  max-height: var(--logo-max-height, 4.35rem);
  object-fit: contain;
}

.brand-grid-featured {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

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

.brand-wordmark-card {
  position: relative;
  overflow: hidden;
}

.brand-highlight-card {
  min-height: 8.8rem;
  padding: 1.1rem 1.15rem;
  border-color: rgba(16, 16, 16, 0.1);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(242, 238, 229, 0.95));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 12px 26px rgba(16, 16, 16, 0.06);
}

.brand-wordmark-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(45, 42, 37, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(244, 240, 232, 0.92));
  pointer-events: none;
}

.brand-wordmark {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  text-align: center;
  color: var(--brand);
  line-height: 1;
  overflow-wrap: anywhere;
  font-size: clamp(1.35rem, 2.6vw, 2.05rem);
}

.brand-wordmark--serif,
.brand-wordmark--classic {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}

.brand-wordmark--serif {
  letter-spacing: 0.02em;
}

.brand-wordmark--classic {
  font-style: italic;
}

.brand-wordmark--bold,
.brand-wordmark--strong,
.brand-wordmark--spaced {
  font-family: "Manrope", sans-serif;
}

.brand-wordmark--bold {
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-wordmark--spaced {
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
}

.brand-wordmark--accent {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
  color: #cb2c6d;
}

.brand-wordmark--strong {
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.brand-spotlight-card,
.brand-catalog-card {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.92), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 240, 232, 0.95));
  box-shadow: var(--shadow-md);
}

.brand-spotlight-card {
  min-height: 10rem;
  align-content: space-between;
}

.brand-tag {
  color: var(--muted-2);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.brand-spotlight-media,
.brand-catalog-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 6.9rem;
  padding: 1rem;
  border-radius: calc(var(--radius-md) - 0.45rem);
  border: 1px solid rgba(16, 16, 16, 0.06);
  background: linear-gradient(180deg, #ffffff, rgba(247, 243, 236, 0.96));
}

.brand-spotlight-media img,
.brand-catalog-media img {
  width: auto;
  max-width: min(100%, var(--catalog-logo-max-width, 10.8rem));
  max-height: var(--catalog-logo-max-height, 3.9rem);
  object-fit: contain;
}

.brand-grid-catalog {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: stretch;
}

.brand-catalog-card {
  min-height: 13.6rem;
  align-content: start;
}

.brand-catalog-card--wide {
  --catalog-logo-max-width: 12.75rem;
  --catalog-logo-max-height: 4rem;
}

.brand-catalog-card--square {
  --catalog-logo-max-width: 7rem;
  --catalog-logo-max-height: 5rem;
}

.brand-catalog-card--compact {
  --catalog-logo-max-width: 8.3rem;
  --catalog-logo-max-height: 3.25rem;
}

.brand-catalog-card--standard {
  --catalog-logo-max-width: 9.6rem;
  --catalog-logo-max-height: 4.15rem;
}

.brand-catalog-card--wordmark .brand-catalog-media {
  padding-inline: 0.8rem;
}

.brand-catalog-card--wordmark .brand-wordmark {
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
}

.brand-catalog-card--wordmark .brand-wordmark--spaced {
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.brand-catalog-card--wordmark .brand-wordmark--accent {
  color: var(--brand);
}

.brand-catalog-meta {
  display: grid;
  gap: 0.3rem;
}

.brand-catalog-meta h3 {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 1.7rem;
}

.brand-catalog-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.brand-category-stack {
  display: grid;
  gap: 1.6rem;
}

.brand-category-section {
  display: grid;
  gap: 0.85rem;
}

.brand-category-section > h3 {
  margin: 0;
  font-size: clamp(1.9rem, 3.6vw, 2.65rem);
}

.brand-category-section > h3::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2px;
  margin-bottom: 0.7rem;
  background: var(--brand);
}

.brand-logo--wide {
  grid-column: span 2;
  --logo-max-width: 13rem;
  --logo-max-height: 4.3rem;
}

.brand-logo--square {
  --logo-card-height: 8.1rem;
  --logo-max-width: 7.4rem;
  --logo-max-height: 6rem;
}

.brand-logo--compact {
  --logo-max-width: 8.2rem;
  --logo-max-height: 3.75rem;
}

.brand-logo--standard {
  --logo-max-width: 9.4rem;
  --logo-max-height: 4.6rem;
}

.keyword-pills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  width: 100%;
}

.keyword-pills li {
  display: grid;
  gap: 0.18rem;
  padding: 0.8rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(16, 16, 16, 0.08);
  background: rgba(255, 255, 255, 0.58);
}

.keyword-pills strong {
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.05;
}

.keyword-pills span {
  color: var(--muted-2);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-layout {
  align-items: stretch;
}

.contact-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1rem;
}

.contact-card span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--muted-2);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.map-frame {
  overflow: hidden;
  padding: 0;
}

.map-frame iframe {
  width: 100%;
  min-height: 25rem;
  height: 100%;
  border: 0;
}

.site-footer {
  padding: 1.2rem 0 1.6rem;
  border-top: 1px solid rgba(16, 16, 16, 0.08);
  background: rgba(255, 255, 255, 0.36);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-bottom: 0.75rem;
}

.footer-inner strong {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-inner nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-inner nav a {
  color: var(--muted);
}

.footer-note {
  width: var(--site-width);
  margin: 0 auto;
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  animation: rise 560ms ease forwards;
}

.delay-1 {
  animation-delay: 120ms;
}

.delay-2 {
  animation-delay: 220ms;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-layout,
  .page-hero-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .gallery-grid-large {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .brand-logo--wide {
    grid-column: auto;
  }
}

@media (max-width: 820px) {
  .header-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav ul,
  .contact-cards,
  .gallery-grid,
  .gallery-grid-large,
  .gallery-grid-store,
  .gallery-grid-compact,
  .stats-strip {
    grid-template-columns: 1fr 1fr;
  }

  .site-nav ul {
    display: grid;
    width: 100%;
    gap: 0.7rem;
  }

  .site-nav,
  .site-nav a,
  .contact-cards,
  .gallery-grid,
  .gallery-grid-large,
  .gallery-grid-store,
  .gallery-grid-compact,
  .stats-strip {
    width: 100%;
  }

  .site-nav a {
    justify-content: flex-start;
    padding: 0.6rem 0.8rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
  }

  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    color: var(--text);
    background: #ffffff;
    border-color: var(--line-strong);
  }

  .mini-stack-columns {
    grid-template-columns: 1fr;
  }

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

  .brand-spotlight-grid {
    grid-template-columns: 1fr 1fr;
  }

  .brand-catalog-card {
    min-height: 12.2rem;
  }

  .brand-catalog-media,
  .brand-spotlight-media {
    min-height: 6rem;
    padding: 0.85rem;
  }

  .brand-catalog-meta h3 {
    font-size: 1.45rem;
  }

  .brand-category-stack {
    gap: 1.25rem;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(1180px, calc(100% - 1rem));
  }

  .header-inner {
    gap: 0.85rem;
    padding: 0.75rem 0;
  }

  .site-logo {
    gap: 0.8rem;
  }

  .site-logo-copy small {
    display: none;
  }

  .site-logo-mark {
    width: 3.7rem;
  }

  .site-logo-copy strong {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.5rem, 14vw, 3.8rem);
  }

  .section-copy h2,
  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(1.95rem, 11vw, 2.8rem);
  }

  .hero-lead,
  .section-copy p,
  .section-copy-paragraph,
  .panel-copy,
  .mini-card p,
  .contact-card strong {
    font-size: 0.96rem;
  }

  .overview-panel,
  .panel,
  .mini-card,
  .contact-card {
    padding: 1rem;
  }

  .overview-panel h2 {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }

  .stats-strip,
  .contact-cards,
  .gallery-grid,
  .gallery-grid-large,
  .gallery-grid-store,
  .gallery-grid-compact,
  .brand-grid {
    grid-template-columns: 1fr;
  }

  .site-nav ul,
  .stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-grid-highlight {
    grid-template-columns: 1fr;
  }

  .brand-spotlight-grid {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .section-block {
    padding: 1rem 0;
  }

  .hero-copy,
  .hero-stack,
  .mini-stack,
  .store-level,
  .store-level-stack {
    gap: 0.85rem;
  }

  .brand-spotlight-card,
  .brand-catalog-card {
    gap: 0.7rem;
    padding: 0.85rem;
    border-radius: 18px;
  }

  .brand-spotlight-card,
  .brand-catalog-card {
    min-height: auto;
  }

  .brand-tag {
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }

  .brand-spotlight-media,
  .brand-catalog-media {
    min-height: 4.9rem;
    padding: 0.7rem;
    border-radius: 14px;
  }

  .brand-spotlight-media img,
  .brand-catalog-media img {
    max-height: var(--catalog-logo-max-height, 3.25rem);
  }

  .brand-catalog-card--wordmark .brand-wordmark,
  .brand-spotlight-media .brand-wordmark {
    font-size: clamp(1.1rem, 7vw, 1.45rem);
  }

  .brand-catalog-card--wordmark .brand-wordmark--spaced,
  .brand-spotlight-media .brand-wordmark--spaced {
    font-size: clamp(0.88rem, 5.8vw, 1.05rem);
    letter-spacing: 0.14em;
  }

  .brand-catalog-meta {
    gap: 0.18rem;
  }

  .brand-catalog-meta h3 {
    font-size: 1.22rem;
  }

  .brand-catalog-meta p {
    font-size: 0.88rem;
  }

  .brand-category-stack {
    gap: 1rem;
  }

  .brand-category-section {
    gap: 0.7rem;
  }

  .brand-category-section > h3 {
    font-size: clamp(1.5rem, 8.5vw, 2rem);
  }

  .brand-category-section > h3::before {
    width: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .contact-cards {
    gap: 0.75rem;
  }

  .contact-card {
    padding: 1rem;
  }

  .contact-card strong {
    overflow-wrap: anywhere;
  }

  .button,
  .site-nav a {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
    gap: 0.65rem;
    margin-top: 1rem;
  }

  .button {
    min-height: 2.85rem;
    padding: 0.72rem 0.95rem;
  }

  .stats-strip-inline {
    max-width: none;
  }

  .stats-strip article {
    padding: 0.9rem 0.85rem;
  }

  .stats-strip strong {
    font-size: 1.12rem;
  }

  .stats-strip span,
  .contact-card span {
    font-size: 0.82rem;
  }

  .store-level-heading h3 {
    font-size: clamp(1.6rem, 8vw, 2rem);
  }

  .gallery-card {
    padding: 0.45rem;
  }

  .gallery-card img {
    border-radius: 14px;
  }

  .keyword-pills {
    gap: 0.5rem;
  }

  .keyword-pills li {
    padding: 0.7rem;
  }

  .keyword-pills strong {
    font-size: 1rem;
  }

  .keyword-pills span {
    font-size: 0.68rem;
  }

  .map-frame iframe {
    min-height: 18.5rem;
  }

  .footer-inner nav ul {
    gap: 0.75rem;
  }

  .footer-note {
    width: min(1180px, calc(100% - 1rem));
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  .site-shell {
    width: min(1180px, calc(100% - 0.85rem));
  }

  .hero,
  .page-hero,
  .section-block {
    padding: 0.85rem 0;
  }

  .site-logo-mark {
    width: 3.3rem;
    padding: 0.22rem;
  }

  .site-logo-copy strong {
    font-size: 0.84rem;
  }

  .site-nav ul {
    gap: 0.55rem;
  }

  .site-nav a {
    min-height: 2.7rem;
    padding: 0.55rem 0.7rem;
    font-size: 0.92rem;
    text-align: center;
    justify-content: center;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.2rem, 13vw, 3.2rem);
    margin-bottom: 0.65rem;
  }

  .section-copy h2,
  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(1.8rem, 10.5vw, 2.45rem);
    margin-bottom: 0.75rem;
  }

  .hero-copy h1::before,
  .section-copy h2::before,
  .section-heading h2::before,
  .contact-copy h2::before,
  .page-hero h1::before,
  .overview-panel h2::before,
  .brand-category-section > h3::before {
    width: 1.35rem;
    margin-bottom: 0.45rem;
  }

  .hero-lead,
  .section-copy p,
  .section-copy-paragraph,
  .panel-copy,
  .mini-card p,
  .contact-card strong {
    font-size: 0.92rem;
  }

  .stats-strip,
  .site-nav ul {
    grid-template-columns: 1fr 1fr;
  }

  .stats-strip {
    gap: 0.6rem;
  }

  .stats-strip article {
    padding: 0.78rem 0.7rem;
  }

  .stats-strip strong {
    font-size: 1.02rem;
  }

  .stats-strip span {
    font-size: 0.78rem;
  }

  .button {
    min-height: 2.75rem;
    font-size: 0.94rem;
  }

  .brand-spotlight-card,
  .brand-catalog-card,
  .contact-card,
  .mini-card,
  .panel {
    padding: 0.82rem;
  }

  .brand-catalog-media,
  .brand-spotlight-media {
    min-height: 4.5rem;
    padding: 0.6rem;
  }

  .brand-catalog-meta h3 {
    font-size: 1.1rem;
  }

  .brand-catalog-meta p {
    font-size: 0.84rem;
  }

  .store-level-heading h3 {
    font-size: clamp(1.45rem, 8.5vw, 1.85rem);
  }

  .contact-card span {
    font-size: 0.76rem;
  }

  .keyword-pills li {
    padding: 0.62rem;
  }

  .keyword-pills strong {
    font-size: 0.95rem;
  }

  .keyword-pills span {
    font-size: 0.64rem;
    letter-spacing: 0.1em;
  }

  .map-frame iframe {
    min-height: 16.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
