:root {
  --bg: #f6f0e7;
  --bg-soft: #fbf7f1;
  --card: #fffdf9;
  --text: #1b1917;
  --muted: #5e5852;
  --line: rgba(27, 25, 23, 0.12);
  --accent: #b6512d;
  --accent-dark: #8f3f21;
  --forest: #26362d;
  --warm: #eadccc;
  --shadow: 0 18px 60px rgba(38, 23, 11, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  background: linear-gradient(180deg, #fbf8f2 0%, #f6f0e7 100%);
  color: var(--text);
}

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

p,
li {
  color: var(--muted);
  line-height: 1.7;
}

h1,
h2,
h3 {
  margin: 0 0 0.6rem;
  line-height: 1.05;
  color: var(--text);
}

h1,
h2 {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3rem, 7vw, 6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: 1.25rem;
}

ul {
  margin: 0;
  padding-left: 1.2rem;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  backdrop-filter: blur(14px);
  background: rgba(251, 247, 241, 0.86);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  letter-spacing: 0.02em;
}

.brand-logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.button,
.button-ghost,
.button-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  transition: 160ms ease;
}

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

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

.button-ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
}

.button-light {
  background: white;
  color: var(--forest);
}

.button-small {
  min-height: 40px;
  padding: 0.55rem 1rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.text-link {
  color: var(--accent-dark);
  font-weight: 600;
}

.light-link {
  color: rgba(255, 255, 255, 0.85);
}

.hero,
.page-hero {
  padding: 4rem 0 2rem;
}

.hero-editorial {
  padding-top: 2.5rem;
}

.hero-grid,
.page-hero-grid,
.store-hero {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.editorial-shell {
  padding: 1.5rem 0 1rem;
}

.editorial-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: center;
}

.editorial-note {
  max-width: 34ch;
  text-align: right;
}

.editorial-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: stretch;
}

.editorial-copy {
  display: grid;
  gap: 1.2rem;
  align-content: center;
  padding: 1rem 0.5rem 1rem 0;
}

.editorial-copy h1 {
  max-width: 8ch;
}

.editorial-visual {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.2fr 0.72fr;
  min-height: 640px;
}

.editorial-main-image,
.editorial-side-card {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
}

.editorial-main-image {
  display: grid;
  align-items: end;
  padding: 1.5rem;
  color: rgba(255, 255, 255, 0.92);
  background:
    linear-gradient(180deg, rgba(6, 7, 9, 0.08), rgba(6, 7, 9, 0.7)),
    radial-gradient(circle at top, #9b806e 0%, #654e49 45%, #1f1919 100%);
}

.editorial-side-stack {
  display: grid;
  gap: 1rem;
  grid-template-rows: 1.1fr 0.9fr;
}

.editorial-side-card {
  padding: 1.2rem;
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(135deg, #ccb09b, #7f5d53);
}

.editorial-side-copy {
  color: var(--text);
  background: linear-gradient(180deg, #fff6ee, #ead2c3);
}

.editorial-stats {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1rem;
}

.editorial-stats > div,
.journey-card,
.final-cta {
  padding: 1.25rem 1.4rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow);
}

.editorial-stats strong {
  display: block;
  margin-bottom: 0.35rem;
}

.page-hero-grid,
.store-hero {
  grid-template-columns: 1fr 0.7fr;
}

.hero-copy,
.product-detail {
  display: grid;
  gap: 1.25rem;
}

.product-detail-clean {
  align-content: start;
  gap: 1rem;
}

.product-detail-sticky {
  position: sticky;
  top: 104px;
  align-self: start;
}

.product-code-title {
  font-family: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2rem, 2.8vw, 2.45rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.05;
  font-variant-ligatures: none;
  font-feature-settings: "liga" 0, "clig" 0;
  text-transform: uppercase;
}

.eyebrow,
.panel-tag,
.product-meta,
.availability-label,
.store-mall,
.footer-title {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.hero-text {
  font-size: 1.08rem;
  max-width: 56ch;
}

.product-subtitle {
  margin: -0.15rem 0 0.35rem;
  font-size: 1rem;
  color: var(--muted);
}

.price-block {
  display: grid;
  gap: 0.18rem;
  margin-top: -0.1rem;
}

.product-price,
.product-price-note {
  margin: 0;
}

.product-price {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
}

.product-price-note {
  font-size: 0.95rem;
  color: var(--muted);
}

.trust-row,
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-row > div {
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.45);
}

.trust-row strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1.2rem;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-card,
.store-visual,
.product-image,
.gallery-main,
.gallery-thumb {
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  padding: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  background: radial-gradient(circle at top, #7b5948 0%, #412f2c 45%, #1f1919 100%);
}

.hero-card-main {
  inset: 0 7% 10% 0;
}

.hero-card-accent {
  width: 48%;
  height: 40%;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #d8bea8, #8d5e4e);
}

.asset-label {
  display: inline-block;
  margin-bottom: 0.6rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: 2.5rem 0 4rem;
}

.section-tight {
  padding-top: 1rem;
}

.compact-section {
  padding-top: 1.5rem;
}

.section-contrast {
  background:
    linear-gradient(90deg, rgba(27, 25, 23, 0.97), rgba(42, 33, 28, 0.97)),
    linear-gradient(135deg, #2b1d18, #101312);
  color: white;
}

.section-contrast h2,
.section-contrast p {
  color: white;
}

.contrast-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.visual-strip {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.visual-strip-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr 0.8fr;
}

.visual-tile,
.campaign-card {
  min-height: 320px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.visual-tile {
  display: grid;
  place-items: end start;
  padding: 1.2rem;
}

.visual-tile-dark {
  background: linear-gradient(135deg, #8f7363, #241e1d);
}

.visual-tile-light {
  background: linear-gradient(135deg, #f2e2d2, #a97967);
}

.visual-copy {
  display: grid;
  align-content: center;
  background: rgba(255, 255, 255, 0.06);
  padding: 1.5rem;
}

.contrast-quote {
  padding: 2rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contrast-quote p {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.section-warm {
  background: linear-gradient(180deg, rgba(234, 220, 204, 0.55), rgba(246, 240, 231, 0));
}

.section-dark {
  background: radial-gradient(circle at top, #31473a 0%, #25352d 60%, #1b2621 100%);
  color: white;
}

.section-dark h2,
.section-dark h3,
.section-dark p {
  color: white;
}

.section-head {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}

.split {
  grid-template-columns: 1fr auto;
  align-items: end;
}

.category-grid,
.feature-grid,
.product-grid,
.store-grid,
.faq-grid,
.detail-grid,
.journey-grid,
.campaign-grid {
  display: grid;
  gap: 1.25rem;
}

.category-grid,
.feature-grid,
.faq-grid,
.journey-grid {
  grid-template-columns: repeat(4, 1fr);
}

.product-grid,
.detail-grid,
.store-grid,
.campaign-grid {
  grid-template-columns: repeat(3, 1fr);
}

.panel,
.feature-card,
.product-card,
.faq-item,
.detail-card,
.journey-card,
.mini-callout,
.info-banner,
.store-card-light,
.form-shell,
.prose-block {
  padding: 1.4rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}

.product-card {
  display: grid;
  gap: 0.7rem;
}

.product-card p {
  max-width: 24ch;
}

.product-image,
.gallery-main {
  min-height: 260px;
  background: linear-gradient(135deg, #e7d7c3, #b08574);
  color: rgba(255, 255, 255, 0.92);
}

.gallery-real {
  display: grid;
  gap: 1rem;
}

.gallery-main-button,
.gallery-thumb-button {
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;
}

.gallery-main-image,
.gallery-thumb-image,
.variant-hero img,
.variant-grid img {
  width: 100%;
  display: block;
  border-radius: 22px;
  object-fit: cover;
  background: #f7f4ef;
}

.gallery-main-image {
  aspect-ratio: 4 / 3.6;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.gallery-row-real {
  align-items: stretch;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 0;
}

.gallery-thumb-image {
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
}

.gallery-thumb-button.active .gallery-thumb-image {
  border-color: var(--text);
}

.related-product-image {
  overflow: hidden;
  background: #f7f4ef;
}

.related-product-image img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  display: block;
}

.gallery-main {
  min-height: 460px;
}

.gallery-thumb {
  min-height: 120px;
  background: linear-gradient(135deg, #d8cab8, #8b6e62);
  color: rgba(255, 255, 255, 0.92);
}

.gallery-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1rem;
}

.service-band,
.callout-band {
  display: grid;
  gap: 1.2rem;
  align-items: center;
  grid-template-columns: 1fr auto;
}

.service-list span {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.store-card {
  padding: 2rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.store-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.store-card-light {
  background: var(--card);
}

.store-list {
  margin: 0;
  padding-left: 1rem;
}

.product-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
}

.availability-box {
  padding: 1.4rem;
  border-radius: 22px;
  background: rgba(182, 81, 45, 0.08);
  border: 1px solid rgba(182, 81, 45, 0.16);
}

.variant-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.variant-pills-clean {
  margin-bottom: 0.2rem;
}

.variant-pill {
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  color: var(--muted);
  cursor: pointer;
}

.variant-pill.active {
  color: white;
  background: var(--text);
  border-color: var(--text);
}

.clean-spec-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.clean-spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 0;
  border-top: 1px solid var(--line);
}

.clean-spec-item:first-child {
  border-top: 0;
}

.clean-spec-item span {
  color: var(--muted);
  font-size: 0.95rem;
}

.clean-spec-item strong {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
}

.best-for-block {
  display: grid;
  gap: 0.8rem;
}

.best-for-label {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

.best-for-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.best-for-list span {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--text);
}

.info-stack {
  display: grid;
  gap: 1rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.campaign-card {
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(135deg, #d9c2b1, #7d5e52);
  color: rgba(255, 255, 255, 0.92);
}

.campaign-card-copy {
  place-items: start;
  text-align: left;
  padding: 1.4rem;
  color: var(--text);
  background: var(--card);
}

.form-shell {
  max-width: 760px;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  font: inherit;
  background: #fff;
}

.mini-callout {
  background: linear-gradient(135deg, #f0e4d6, #dcc1b1);
}

.collection-hero-shell {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
  align-items: center;
}

.collection-hero-shell-double {
  align-items: stretch;
}

.collection-hero-copy {
  display: grid;
  gap: 1rem;
}

.collection-hero-copy h1 {
  font-size: clamp(2.35rem, 4vw, 3.6rem);
  line-height: 0.98;
}

.collection-hero-visual {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #f7f4ef;
}

.collection-hero-double-visual {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1rem;
  border: 0;
  box-shadow: none;
  background: transparent;
  overflow: visible;
}

.collection-hero-panel {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f7f4ef;
  box-shadow: var(--shadow);
}

.collection-hero-panel-product img {
  object-fit: contain;
  background: #fbf8f3;
}

.collection-hero-visual img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3.3;
  object-fit: cover;
}

.collection-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.collection-filter-row-sticky {
  position: sticky;
  top: 0.75rem;
  z-index: 10;
  padding: 0.85rem 0;
  backdrop-filter: blur(10px);
}

.collection-filter {
  appearance: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  font-weight: 600;
  color: var(--text);
}

.collection-filter.active {
  background: var(--text);
  color: white;
  border-color: var(--text);
}

.collection-support-note {
  max-width: 34ch;
}

.collection-filter-intro {
  margin: -0.5rem 0 1rem;
  max-width: 44ch;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

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

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

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

.collection-card {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.collection-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(36, 28, 21, 0.1);
  border-color: rgba(131, 83, 60, 0.26);
}

.collection-card-image {
  display: grid;
  place-items: center;
  border-radius: 18px;
  overflow: hidden;
  background: #f7f4ef;
  aspect-ratio: 1 / 1;
}

.collection-card-placeholder {
  display: grid;
  place-items: center;
  min-height: 0;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at top left, rgba(204, 171, 146, 0.42), transparent 45%),
    linear-gradient(135deg, #fbf7f2, #efe5d8);
  color: #7b5a4a;
}

.collection-card-placeholder span {
  display: inline-block;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(123, 90, 74, 0.18);
  background: rgba(255, 255, 255, 0.58);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.collection-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: 0.9rem;
}

.collection-card-copy {
  display: grid;
  gap: 0.35rem;
}

.collection-card-copy h3 {
  margin: 0;
}

.collection-card-subtitle {
  margin: -0.1rem 0 0;
  font-size: 0.95rem;
}

.collection-card-note {
  margin: 0.1rem 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.45;
}

.collection-card-compact .collection-card-image img {
  padding: 0.75rem;
}

.collection-zero-state {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
  padding: 1.5rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
  max-width: 760px;
}

.collection-zero-state h3,
.collection-zero-state p {
  margin: 0;
}

.collection-section-cta {
  margin-top: 1.25rem;
}

.collection-cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.collection-note {
  margin: 0.2rem 0 0;
  max-width: 32ch;
  color: var(--muted);
}


.store-visual {
  min-height: 360px;
  background: linear-gradient(135deg, #ddccb9, #8a6757);
  color: rgba(255, 255, 255, 0.92);
}

.prose-block {
  display: grid;
  gap: 0.6rem;
  max-width: 780px;
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
}

.site-footer-extended {
  margin-top: 0;
  padding: 2.5rem 0 0;
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.96), rgba(245, 238, 229, 0.96));
}

.footer-grid-extended {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  column-gap: 1.2rem;
  row-gap: 0.45rem;
}

.footer-shell {
  display: grid;
  gap: 0.75rem;
}

.footer-intro {
  display: grid;
  gap: 0.4rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
}

.footer-intro-copy {
  margin: 0;
  max-width: 56ch;
  font-size: 0.98rem;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 0.28rem;
  min-width: 0;
}

.footer-meta {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.footer-bottom-bar {
  margin-top: 1.4rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.footer-bottom-inner {
  min-height: 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom-inner p {
  margin: 0;
  font-size: 0.88rem;
}

.related-price {
  margin: -0.1rem 0 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.product-reference-section {
  padding-top: 2rem;
}

.product-reference-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.reference-left-column {
  display: grid;
  gap: 1.4rem;
}

.reference-gallery {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 1rem;
  align-items: start;
}

.reference-gallery-stack {
  display: grid;
  gap: 0.85rem;
}

.reference-gallery-card,
.reference-main-visual,
.reference-colour-swatch {
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;
}

.reference-gallery-card {
  display: grid;
  place-items: center;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f7f4ef;
  aspect-ratio: 1 / 1;
}

.reference-gallery-card.active {
  border-color: var(--text);
}

.reference-gallery-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: 0.75rem;
}

.reference-main-visual {
  display: grid;
  place-items: center;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #f7f4ef;
  aspect-ratio: 1 / 1;
}

.reference-main-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: 1.1rem;
}

.reference-info {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 1rem;
  align-content: start;
}

.reference-title {
  font-family: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2rem, 2.9vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.05;
  font-variant-ligatures: none;
  font-feature-settings: "liga" 0, "clig" 0;
  text-transform: uppercase;
}

.reference-price {
  margin: 0;
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--text);
}

.reference-color-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.reference-color-line span {
  color: var(--muted);
}

.reference-color-line strong {
  font-weight: 600;
  color: var(--text);
}

.reference-colours {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.reference-colour-swatch {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  font: inherit;
}

.reference-colour-swatch.active {
  border-color: var(--text);
}

.swatch-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.swatch-silver {
  background: linear-gradient(135deg, #d7d8dc, #9ea1a8);
}

.swatch-gold {
  background: linear-gradient(135deg, #e6d4a1, #c49d48);
}

.swatch-green {
  background: linear-gradient(135deg, #8db48f, #4f7d54);
}

.swatch-black {
  background: linear-gradient(135deg, #3a3937, #11100f);
}

.swatch-tortoise {
  background: linear-gradient(135deg, #8c5e37, #442a1b);
}

.swatch-neutral {
  background: linear-gradient(135deg, #dbd5ce, #a69c92);
}

.reference-action-block {
  display: grid;
  gap: 0.75rem;
}

.reference-action-block .button,
.reference-action-block .button-ghost {
  width: 100%;
}

.reference-action-block .button-ghost {
  color: var(--text);
  border-color: rgba(27, 25, 23, 0.18);
  background: rgba(255, 255, 255, 0.92);
}

.reference-action-note {
  margin: 0;
  font-size: 0.92rem;
}

.reference-copy-block {
  display: grid;
  gap: 0.85rem;
}

.reference-summary {
  margin: 0;
  font-size: 1rem;
}

.reference-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.reference-badges span {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.reference-detail-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.reference-detail-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
  border-top: 1px solid var(--line);
}

.reference-detail-item:first-child {
  border-top: 0;
}

.reference-detail-item span {
  color: var(--muted);
}

.reference-detail-item strong {
  font-weight: 600;
  color: var(--text);
}

.reference-lower-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.reference-lower-card {
  padding: 1.35rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}

.reference-content-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}

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

.reference-content-card {
  padding: 1.35rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.reference-content-card h3 {
  margin-bottom: 0.85rem;
}

.reference-content-card p {
  margin: 0;
}

.reference-gallery-card-placeholder,
.reference-main-visual-placeholder {
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #f4eee5, #efe5d8);
  color: var(--text);
}

.reference-main-visual-placeholder {
  min-height: 100%;
}

.reference-gallery-placeholder-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(27, 25, 23, 0.12);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.lightbox {
  width: min(86vw, 980px);
  max-width: 980px;
  padding: 1rem;
  border: 0;
  border-radius: 24px;
  background: rgba(255, 253, 249, 0.98);
  box-shadow: 0 30px 80px rgba(18, 12, 9, 0.24);
}

.lightbox::backdrop {
  background: rgba(17, 14, 12, 0.68);
}

.lightbox-image {
  width: 100%;
  display: block;
  border-radius: 18px;
}

.lightbox-close {
  display: inline-flex;
  margin: 0 0 0.75rem auto;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: white;
  font: inherit;
  cursor: pointer;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 2fr 1fr 1fr;
}

.footer-grid a {
  display: block;
  margin-bottom: 0.45rem;
}

.footer-brand {
  margin-bottom: 0.7rem;
  display: inline-block;
}

@media (max-width: 920px) {
  .hero-grid,
  .page-hero-grid,
  .store-hero,
  .editorial-grid,
  .contrast-grid,
  .product-reference-layout,
  .collection-hero-shell,
  .visual-strip-grid,
  .product-layout,
  .split,
  .collection-cta-band,
  .service-band,
  .callout-band,
  .editorial-topline,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .brand-lockup {
    align-items: center;
  }

  .footer-bottom-inner {
    align-items: flex-start;
  }

  .category-grid,
  .feature-grid,
  .faq-grid,
  .product-grid,
  .detail-grid,
  .store-grid,
  .journey-grid,
  .campaign-grid,
  .editorial-stats,
  .reference-lower-grid,
  .reference-content-grid,
  .collection-grid,
  .collection-grid-compact {
    grid-template-columns: 1fr 1fr;
  }

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

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


  .editorial-topline {
    display: grid;
  }

  .editorial-note {
    text-align: left;
  }

  .editorial-visual {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .reference-info {
    position: static;
    top: auto;
  }

  .reference-gallery {
    grid-template-columns: 1fr;
  }

  .reference-left-column {
    gap: 1.15rem;
  }

  .reference-gallery-stack {
    display: flex;
    overflow-x: auto;
  }

  .reference-gallery-card {
    min-width: 96px;
  }

  .product-detail-sticky {
    position: static;
    top: auto;
  }

  .editorial-side-stack {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .hero-visual {
    min-height: 380px;
  }

  .nav {
    justify-content: flex-end;
  }
}

@media (max-width: 640px) {
  .nav-wrap,
  .nav {
    align-items: flex-start;
  }

  .category-grid,
  .feature-grid,
  .faq-grid,
  .product-grid,
  .detail-grid,
  .store-grid,
  .journey-grid,
  .campaign-grid,
  .editorial-stats,
  .editorial-side-stack,
  .gallery-row {
    grid-template-columns: 1fr;
  }

  .reference-lower-grid {
    grid-template-columns: 1fr;
  }

  .reference-content-grid {
    grid-template-columns: 1fr;
  }

  .reference-content-grid-inline {
    grid-template-columns: 1fr;
  }

  .collection-grid,
  .collection-grid-compact {
    grid-template-columns: 1fr;
  }

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

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

  .collection-filter-row-sticky {
    top: 0;
    padding-top: 0.2rem;
  }

  .gallery-row-real {
    display: flex;
    overflow-x: auto;
    gap: 0.75rem;
    padding-bottom: 0.25rem;
    margin-top: 0;
    scrollbar-width: thin;
  }

  .gallery-row-real .gallery-thumb-image {
    width: 132px;
    min-width: 132px;
  }

  .reference-color-line {
    flex-direction: column;
    align-items: flex-start;
  }

  .lightbox {
    width: calc(100vw - 1.2rem);
    padding: 0.75rem;
    border-radius: 20px;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-card-accent {
    width: 58%;
  }
}


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

.store-card-showcase {
  padding: 0;
  overflow: hidden;
}

.store-card-showcase-light {
  background: var(--card);
}

.store-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f7f4ef;
}

.store-card-media img,
.store-visual-photo img,
.store-photo-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.store-card-body {
  display: grid;
  gap: 0.8rem;
  padding: 1.5rem 1.5rem 1.65rem;
}

.store-visual-photo {
  aspect-ratio: 4 / 3;
  padding: 0;
  overflow: hidden;
  background: #f7f4ef;
}

.store-photo-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.store-photo-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #f7f4ef;
  box-shadow: var(--shadow);
}


.store-photo-grid figure {
  aspect-ratio: 4 / 3;
}

.store-photo-grid .feature,
.store-photo-grid .tall {
  grid-row: auto;
  min-height: auto;
}

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

@media (max-width: 920px) {
  .store-grid-showcase,
  .store-photo-grid,
  .store-photo-grid-metrotown {
    grid-template-columns: 1fr 1fr;
  }

  .store-photo-grid .feature,
  .store-photo-grid .tall {
    min-height: auto;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .store-grid-showcase,
  .store-photo-grid,
  .store-photo-grid-metrotown {
    grid-template-columns: 1fr;
  }

  .store-card-media,
  .store-visual-photo,
  .store-photo-grid figure {
    aspect-ratio: 4 / 3;
  }
}


.store-highlight-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.store-highlight-row span {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  font-size: 0.95rem;
  color: var(--text);
}

.store-detail-section {
  padding-top: 0.25rem;
}

.store-detail-section .detail-card {
  min-height: 148px;
}

.store-detail-section .detail-card h3 {
  margin-bottom: 0.5rem;
}

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


.editorial-image-card,
.visual-tile-photo,
.campaign-photo-card {
  position: relative;
  overflow: hidden;
}

.editorial-image-card img,
.visual-tile-photo img,
.campaign-photo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.editorial-overlay,
.visual-overlay,
.campaign-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.2rem;
  color: rgba(255,255,255,0.96);
  background: linear-gradient(180deg, rgba(10,10,10,0) 0%, rgba(10,10,10,0.72) 100%);
}

.editorial-overlay p,
.editorial-overlay h3,
.visual-overlay p,
.campaign-overlay p {
  margin: 0;
  color: inherit;
}

.editorial-overlay-light {
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(12,12,12,0.46) 100%);
}

.visual-tile-photo {
  padding: 0;
}

.visual-copy p:not(.eyebrow) {
  margin: 0;
  max-width: 30ch;
  color: rgba(255,255,255,0.8);
}

.campaign-grid-real {
  align-items: stretch;
}

.campaign-photo-card {
  padding: 0;
  background: #f7f4ef;
}

.campaign-card-copy p:not(.panel-tag) {
  margin: 0;
  max-width: 28ch;
}

.stores-conversion-hero h1 {
  font-size: clamp(2.6rem, 4.8vw, 4.6rem);
  max-width: 9.5ch;
}

.stores-hero-grid {
  align-items: end;
}

.stores-hero-note {
  align-self: stretch;
  display: grid;
  align-content: end;
  gap: 0.6rem;
  padding: 1.35rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
}

.stores-hero-note p {
  margin: 0;
}

.store-visit-grid {
  align-items: stretch;
}

.store-visit-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.store-visit-body {
  align-content: start;
  gap: 1.15rem;
  padding: 1.45rem;
}

.store-visit-body h2 {
  margin-bottom: 0.35rem;
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  letter-spacing: -0.03em;
}

.store-subtitle {
  margin: -0.15rem 0 0.55rem;
  color: var(--muted);
  font-weight: 600;
}

.store-info-list {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.store-info-list div {
  display: grid;
  grid-template-columns: 7.2rem 1fr;
  gap: 1rem;
  padding: 0.82rem 0;
  border-top: 1px solid var(--line);
}

.store-info-list div:first-child {
  border-top: 0;
}

.store-info-list dt,
.store-info-list dd {
  margin: 0;
}

.store-info-list dt {
  color: var(--muted);
  font-size: 0.92rem;
}

.store-info-list dd {
  color: var(--text);
  font-weight: 600;
  line-height: 1.45;
}

.store-info-list a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.store-action-row .button,
.store-action-row .button-ghost {
  flex: 1 1 9rem;
  min-height: 46px;
  padding-inline: 1rem;
}

.store-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.store-benefit-card {
  min-height: 190px;
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.store-benefit-card h3,
.store-benefit-card p {
  margin: 0;
}

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

  .stores-conversion-hero h1 {
    max-width: 12ch;
  }
}

@media (max-width: 640px) {
  .store-info-list div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .store-action-row {
    display: grid;
  }

  .store-action-row .button,
  .store-action-row .button-ghost {
    width: 100%;
  }

  .store-visit-body {
    padding: 1.15rem;
  }
}

/* Stores conversion page refinements */
.stores-compact-hero {
  padding: 2.2rem 0 1.15rem;
}

.stores-compact-copy {
  max-width: 760px;
  display: grid;
  gap: 0.85rem;
}

.stores-compact-copy h1,
.stores-section-head-sans h2,
.stores-shop-cta h2 {
  font-family: "Instrument Sans", sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.stores-compact-copy h1 {
  max-width: 720px;
  font-size: clamp(2.15rem, 4.2vw, 3.85rem);
}

.stores-compact-copy .hero-text {
  max-width: 56ch;
  margin: 0;
}

.stores-info-section {
  padding-bottom: 2.2rem;
}

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

.store-practical-card {
  display: grid;
  grid-template-columns: 0.38fr 0.62fr;
  gap: 0;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}

.store-practical-image {
  min-height: 100%;
  background: #f7f4ef;
}

.store-practical-image img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
  object-fit: cover;
}

.store-practical-content {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1.25rem;
}

.store-practical-head h2 {
  margin-bottom: 0.25rem;
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.store-info-list-compact div {
  grid-template-columns: 5.7rem 1fr;
  gap: 0.85rem;
  padding: 0.68rem 0;
}

.store-info-list-compact dt,
.store-info-list-compact dd {
  font-size: 0.92rem;
}

.store-service-label {
  margin: 0 0 0.55rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text);
}

.store-service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.store-service-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.68rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 600;
}

.button-ghost {
  color: var(--text);
  border-color: rgba(27, 25, 23, 0.16);
  background: rgba(255, 253, 249, 0.86);
}

.button-ghost:hover {
  border-color: rgba(182, 81, 45, 0.32);
  color: var(--accent-dark);
  background: rgba(255, 255, 255, 0.96);
}

.store-action-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.store-action-row .button,
.store-action-row .button-ghost {
  width: 100%;
  min-height: 44px;
  padding: 0.7rem 0.8rem;
  font-size: 0.92rem;
}

.stores-review-section {
  padding-top: 0.5rem;
}

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

.store-review-card {
  display: grid;
  gap: 0.75rem;
  padding: 1.25rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.store-review-card h3 {
  margin: 0;
  font-size: 1.45rem;
}

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

.store-review-card .button-ghost {
  justify-self: start;
}

.stores-section-head-sans h2,
.stores-shop-cta h2 {
  font-size: clamp(1.65rem, 3vw, 2.55rem);
}

.store-benefit-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.store-benefit-grid-four .store-benefit-card {
  min-height: 178px;
}

.stores-shop-cta-section {
  padding: 2.2rem 0;
}

.stores-shop-cta {
  padding: 1.35rem;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
}

@media (max-width: 1100px) {
  .store-practical-card {
    grid-template-columns: 1fr;
  }

  .store-practical-image {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 920px) {
  .store-detail-card-grid,
  .store-review-grid,
  .store-benefit-grid-four {
    grid-template-columns: 1fr;
  }

  .stores-compact-hero {
    padding-top: 1.7rem;
  }
}

@media (max-width: 640px) {
  .stores-compact-copy h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

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

  .store-info-list-compact div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .store-practical-content,
  .store-review-card,
  .stores-shop-cta {
    padding: 1rem;
  }
}

/* Stores page final compact pass */
.store-practical-image {
  max-height: 300px;
}

.store-practical-image img {
  max-height: 300px;
}

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

.store-action-row-four .button,
.store-action-row-four .button-ghost {
  min-height: 44px;
}

@media (max-width: 1100px) {
  .store-practical-image,
  .store-practical-image img {
    max-height: 280px;
  }
}

@media (max-width: 640px) {
  .store-practical-image,
  .store-practical-image img {
    max-height: 250px;
  }

  .store-action-row-four {
    grid-template-columns: 1fr;
  }
}

/* Stores page alignment and compact practical layout */
.stores-page-container {
  width: min(1440px, calc(100% - 2rem));
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.stores-compact-copy,
.stores-section-head-sans,
.store-practical-content,
.store-review-card,
.store-benefit-card {
  text-align: left;
}

.stores-compact-copy {
  margin-left: auto;
  margin-right: auto;
  justify-items: start;
}

.store-detail-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.store-practical-card {
  grid-template-columns: 1fr;
  align-content: start;
}

.store-practical-image {
  width: 100%;
  height: clamp(260px, 22vw, 320px);
  max-height: 320px;
  overflow: hidden;
  border-radius: 26px 26px 0 0;
}

.store-practical-image img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

#richmond-centre .store-practical-image img {
  object-position: center 42%;
}

#metrotown .store-practical-image img {
  object-position: center 48%;
}

.stores-review-section {
  padding-top: 0;
  padding-bottom: 2.25rem;
}

.stores-review-section .section-head {
  margin-bottom: 1rem;
}

.store-review-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.store-review-card {
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 1rem;
  row-gap: 0.35rem;
  padding: 0.95rem 1rem;
  min-height: 0;
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(38, 23, 11, 0.055);
}

.store-review-card .store-mall,
.store-review-card h3,
.store-review-card p {
  margin: 0;
}

.store-review-card .store-mall,
.store-review-card h3,
.store-review-card p {
  grid-column: 1;
}

.store-review-card h3 {
  font-size: 1.15rem;
}

.store-review-card p:not(.store-mall) {
  font-size: 0.92rem;
}

.store-review-card .button-ghost {
  grid-column: 2;
  grid-row: 1 / span 3;
  min-height: 40px;
  padding: 0.62rem 0.9rem;
  white-space: nowrap;
}

.store-benefit-grid-four .store-benefit-card {
  min-height: 156px;
}

@media (max-width: 1100px) {
  .store-detail-card-grid {
    grid-template-columns: 1fr;
  }

  .store-practical-image {
    height: 290px;
    max-height: 290px;
  }
}

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

@media (max-width: 640px) {
  .stores-page-container {
    width: min(100% - 1rem, 1440px);
  }

  .store-practical-image {
    height: 245px;
    max-height: 245px;
  }

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

  .store-review-card .button-ghost {
    grid-column: 1;
    grid-row: auto;
    justify-self: stretch;
    width: 100%;
  }
}

/* Stores carousel and one-line hero polish */
.stores-compact-copy {
  max-width: 1200px;
  margin-left: 0;
  margin-right: 0;
}

.stores-compact-copy h1 {
  max-width: 1200px;
  font-size: clamp(48px, 5vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.store-carousel {
  position: relative;
  height: clamp(360px, 28vw, 420px);
  max-height: 420px;
  isolation: isolate;
}

.store-carousel-track {
  position: absolute;
  inset: 0;
}

.store-carousel-track img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.store-carousel-track img.active {
  opacity: 1;
  pointer-events: auto;
}

#richmond-centre .store-carousel-track img {
  object-position: center 42%;
}

#richmond-centre .store-carousel-track img:first-child {
  object-position: center 38%;
}

#metrotown .store-carousel-track img {
  object-position: center 48%;
}

#metrotown .store-carousel-track img:first-child {
  object-position: center 45%;
}

.store-carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 253, 249, 0.82);
  color: var(--text);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(26, 18, 12, 0.14);
  backdrop-filter: blur(8px);
}

.store-carousel-prev {
  left: 0.8rem;
}

.store-carousel-next {
  right: 0.8rem;
}

.store-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 0.85rem;
  z-index: 2;
  display: flex;
  gap: 0.4rem;
  transform: translateX(-50%);
  padding: 0.35rem 0.45rem;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.72);
  backdrop-filter: blur(8px);
}

.store-carousel-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(27, 25, 23, 0.28);
  cursor: pointer;
}

.store-carousel-dots button.active {
  width: 18px;
  background: var(--accent);
}

@media (max-width: 920px) {
  .stores-compact-copy h1 {
    max-width: 10ch;
  }

  .store-carousel {
    height: clamp(300px, 46vw, 360px);
    max-height: 360px;
  }
}

@media (max-width: 640px) {
  .stores-compact-copy h1 {
    font-size: clamp(2.25rem, 10vw, 3.1rem);
    max-width: 11ch;
  }

  .store-carousel {
    height: clamp(260px, 68vw, 320px);
    max-height: 320px;
  }

  .store-carousel-arrow {
    width: 34px;
    height: 34px;
    font-size: 1.2rem;
  }
}

/* Stores hero edge spacing adjustment */
.stores-compact-hero .stores-page-container {
  width: min(1440px, calc(100% - 96px));
  padding-left: 0;
  padding-right: 0;
}

.stores-compact-copy h1 {
  max-width: 900px;
}

.stores-compact-copy .hero-text {
  max-width: 680px;
}

@media (max-width: 640px) {
  .stores-compact-hero .stores-page-container {
    width: min(100% - 32px, 1440px);
  }
}

/* Stores hero typography refinement */
.stores-compact-hero {
  padding: 48px 24px 1.25rem 48px;
}

.stores-compact-hero .stores-page-container {
  width: min(1440px, 100%);
}

.stores-compact-copy h1 {
  max-width: 900px;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.stores-compact-copy .hero-text {
  margin-top: 16px;
  max-width: 520px;
  font-size: 16px;
  color: #6b6b6b;
}

.stores-compact-copy .button-row {
  margin-top: 24px;
}

@media (max-width: 640px) {
  .stores-compact-hero {
    padding: 32px 16px 1rem;
  }

  .stores-compact-copy h1 {
    font-size: clamp(40px, 11vw, 56px);
  }
}

/* Stores hero final spacing and line-length adjustment */
.stores-compact-hero {
  padding-bottom: 0.35rem;
}

.stores-compact-hero + .stores-info-section {
  padding-top: 0.65rem;
}

.stores-compact-copy .eyebrow {
  font-size: 0.92rem;
  letter-spacing: 0.13em;
}

.stores-compact-copy h1 {
  max-width: 1280px;
  font-size: clamp(46px, 4.25vw, 68px);
  white-space: nowrap;
}

.stores-compact-copy .hero-text {
  max-width: 900px;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .stores-compact-copy h1,
  .stores-compact-copy .hero-text {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .stores-compact-copy .eyebrow {
    font-size: 0.82rem;
  }
}

/* Collection page usability refinement */
.collection-hero-compact {
  padding: 2.3rem 0 1rem;
}

.collection-hero-simple {
  display: block;
  max-width: 900px;
}

.collection-hero-compact .collection-hero-copy {
  max-width: 760px;
}

.collection-hero-compact h1 {
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(2.25rem, 4.6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 600;
}

.collection-hero-compact .hero-text {
  max-width: 620px;
  margin: 0;
  font-size: 1rem;
}

.collection-filter-row-sticky {
  top: 0.65rem;
}

.collection-card-shop {
  gap: 0.75rem;
}

.collection-card-shop .collection-card-copy {
  gap: 0.42rem;
}

.collection-card-shop h3 {
  font-size: 1.05rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.collection-card-fit {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.collection-model-code {
  margin: 0.05rem 0 0;
  color: rgba(94, 88, 82, 0.78);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collection-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  min-height: 1.55rem;
}

.collection-badge-row span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
  background: rgba(182, 81, 45, 0.1);
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.collection-card-shop .related-price {
  margin-top: 0.2rem;
  font-size: 1rem;
}

.collection-card-shop .collection-card-subtitle {
  margin: 0;
  font-size: 0.9rem;
}

.collection-card-shop .text-link {
  margin-top: 0.15rem;
}

@media (max-width: 640px) {
  .collection-hero-compact {
    padding-top: 1.6rem;
  }

  .collection-hero-compact h1 {
    font-size: clamp(2rem, 11vw, 3.1rem);
  }
}


/* Collection full browsing page */
.collection-hero-two-column {
  padding: 2.4rem 0 1.35rem;
}

.collection-hero-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.85fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.collection-hero-editorial .collection-hero-copy {
  max-width: 760px;
}

.collection-hero-editorial-image {
  justify-self: end;
  width: min(100%, 480px);
  aspect-ratio: 4 / 5;
  display: block;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #f7f4ef;
  box-shadow: var(--shadow);
}

.collection-hero-editorial-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 34%;
}

.collection-nav-section {
  padding: 0.85rem 0 0;
}

.collection-nav-section + .collection-browse-first {
  padding-top: 2.5rem;
}

.collection-filter:hover {
  border-color: rgba(182, 81, 45, 0.3);
  background: rgba(255, 253, 249, 0.96);
}

.collection-filter.active:hover {
  background: var(--text);
  color: white;
  border-color: var(--text);
}

.collection-browse-section {
  padding: 3.1rem 0 1.2rem;
  scroll-margin-top: 104px;
}

.collection-browse-first {
  scroll-margin-top: 122px;
}

.collection-section-header {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.25rem;
}

.collection-section-header h2 {
  max-width: 760px;
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 600;
}

.collection-section-meta {
  margin: 0.35rem 0 0;
  max-width: 48ch;
  color: var(--muted);
}

.collection-section-link {
  white-space: nowrap;
  margin-bottom: 0.35rem;
}

button.collection-section-link {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

button.collection-section-link[hidden] {
  display: none;
}

button.collection-section-link:hover {
  color: var(--accent);
}

.collection-more-store {
  border-radius: 28px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.58);
  box-shadow: var(--shadow);
}

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

  .collection-hero-editorial-image {
    justify-self: start;
    width: min(100%, 420px);
  }

  .collection-section-header {
    align-items: start;
    flex-direction: column;
    gap: 0.75rem;
  }

  .collection-section-link {
    margin-bottom: 0;
  }
}

@media (max-width: 640px) {
  .collection-hero-two-column {
    padding-top: 1.6rem;
  }

  .collection-hero-editorial {
    gap: 1.35rem;
  }

  .collection-hero-editorial-image {
    width: 100%;
    border-radius: 18px;
  }

  .collection-nav-section + .collection-browse-first {
    padding-top: 2rem;
  }

  .collection-browse-section {
    padding-top: 2.35rem;
    scroll-margin-top: 92px;
  }

  .collection-section-header h2 {
    font-size: clamp(1.45rem, 8vw, 2.05rem);
  }

  .collection-more-store {
    padding: 1rem;
  }
}


/* Collection hero image sizing correction */
.collection-hero-editorial-image {
  width: min(100%, 400px);
  max-width: 400px;
  aspect-ratio: 4 / 5;
  background: linear-gradient(180deg, #f6f0e7, #eee2d5);
}

.collection-hero-editorial-image img {
  object-fit: contain;
  object-position: center bottom;
  padding: 0;
}

@media (max-width: 920px) {
  .collection-hero-editorial-image {
    width: min(100%, 360px);
    max-width: 360px;
  }
}

@media (max-width: 640px) {
  .collection-hero-editorial-image {
    width: min(100%, 320px);
    max-width: 320px;
  }
}


/* Collection hero single-line cleanup */
.collection-hero-two-column {
  padding: 2rem 0 1rem;
}

.collection-hero-editorial {
  display: block;
}

.collection-hero-editorial .collection-hero-copy {
  max-width: 1180px;
}

.collection-hero-compact h1 {
  max-width: 1120px;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 0.96;
}

.collection-hero-compact .hero-text {
  max-width: 760px;
}

@media (min-width: 1100px) {
  .collection-hero-compact h1 {
    white-space: nowrap;
  }
}

@media (max-width: 640px) {
  .collection-hero-two-column {
    padding-top: 1.45rem;
  }

  .collection-hero-compact h1 {
    white-space: normal;
  }
}


/* Collection sticky category navigation */
.collection-nav {
  position: sticky;
  top: 78px;
  z-index: 50;
  padding: 14px 0;
  border-top: 1px solid rgba(27, 25, 23, 0.04);
  border-bottom: 1px solid rgba(27, 25, 23, 0.08);
  background: rgba(248, 244, 238, 0.92);
  backdrop-filter: blur(12px);
}

.collection-nav .container {
  overflow: hidden;
}

.collection-nav-inner {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.75rem;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.collection-nav-inner::-webkit-scrollbar {
  display: none;
}

.collection-nav-inner .collection-filter {
  flex: 0 0 auto;
}

.collection-filter-row-sticky {
  position: static;
  top: auto;
  z-index: auto;
  padding: 0;
  backdrop-filter: none;
}

.collection-browse-section {
  scroll-margin-top: 156px;
}

.collection-browse-first {
  scroll-margin-top: 168px;
}

.collection-nav-section + .collection-browse-first {
  padding-top: 2.65rem;
}

@media (max-width: 640px) {
  .collection-nav {
    top: 72px;
    padding: 12px 0;
  }

  .collection-nav .container {
    width: calc(100% - 1rem);
  }

  .collection-nav-inner {
    gap: 0.55rem;
  }

  .collection-nav-inner .collection-filter {
    min-height: 40px;
    padding: 0.55rem 0.85rem;
  }

  .collection-browse-section,
  .collection-browse-first {
    scroll-margin-top: 138px;
  }

  .collection-nav-section + .collection-browse-first {
    padding-top: 2.1rem;
  }
}


/* Collection card model-first refinement */
.collection-card-shop .collection-card-copy {
  gap: 0.36rem;
}

.collection-card-model {
  margin: 0.12rem 0 0;
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(1.08rem, 1.25vw, 1.28rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 700;
}

.collection-card-colour {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
}

.collection-card-shop .collection-card-fit {
  margin-top: 0.08rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.42;
}

.collection-card-price.related-price {
  width: fit-content;
  margin-top: 0.28rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.2;
}

.collection-card-shop .text-link {
  margin-top: 0.28rem;
}


/* Collection final hero and card order pass */
.collection-hero-two-column {
  padding: 0;
}

.collection-hero-editorial {
  width: min(1280px, calc(100% - 2rem));
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 48px 48px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.collection-hero-editorial .collection-hero-copy {
  max-width: 680px;
}

.collection-hero-compact h1 {
  max-width: 680px;
  white-space: normal;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.collection-hero-compact .hero-text {
  max-width: 600px;
}

.collection-hero-editorial-image {
  justify-self: end;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 5;
  display: block;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #f7f4ef;
  box-shadow: var(--shadow);
}

.collection-hero-editorial-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  padding: 0;
}

.collection-card-price.related-price {
  order: 4;
  margin-top: 0.26rem;
  font-size: 1.08rem;
  font-weight: 750;
}

.collection-card-shop .collection-card-fit {
  order: 5;
  margin-top: 0.02rem;
}

.collection-card-shop .text-link {
  order: 6;
}

@media (max-width: 920px) {
  .collection-hero-editorial {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 42px 28px 36px;
  }

  .collection-hero-editorial-image {
    justify-self: start;
    max-width: 420px;
  }
}

@media (max-width: 640px) {
  .collection-hero-editorial {
    width: min(100% - 1rem, 1280px);
    padding: 30px 16px 28px;
    gap: 1.25rem;
  }

  .collection-hero-compact h1 {
    font-size: clamp(2.25rem, 11vw, 3.2rem);
  }

  .collection-hero-editorial-image {
    max-width: 100%;
    border-radius: 20px;
  }
}


/* Collection compact no-image hero pass */
.collection-hero-two-column {
  padding: 0;
}

.collection-hero-editorial {
  width: min(1280px, 100%);
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 48px 24px;
  display: block;
}

.collection-hero-editorial .collection-hero-copy {
  max-width: 1120px;
}

.collection-hero-compact h1 {
  max-width: 1100px;
  font-size: clamp(48px, 5.2vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 600;
  white-space: nowrap;
}

.collection-hero-compact .hero-text {
  max-width: 760px;
  margin: 0;
}

.collection-hero-compact .button-row {
  margin-top: 0.85rem;
}

.collection-nav-section {
  margin-top: 20px;
}

.collection-nav-section + .collection-browse-first {
  padding-top: 2.2rem;
}

.collection-section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: 1.25rem;
  align-items: end;
  margin-bottom: 1.15rem;
}

.collection-section-header h2 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.collection-section-action {
  display: grid;
  justify-items: end;
  gap: 0.35rem;
  text-align: right;
}

.collection-section-action .collection-section-meta {
  margin: 0;
  max-width: 30ch;
  font-size: 0.95rem;
  line-height: 1.45;
}

.collection-section-action .collection-section-link {
  margin: 0;
}

.collection-browse-section {
  padding-top: 2.65rem;
}

@media (max-width: 1100px) {
  .collection-hero-compact h1 {
    max-width: 760px;
    white-space: normal;
  }
}

@media (max-width: 900px) {
  .collection-section-header {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0.65rem;
  }

  .collection-section-header h2 {
    white-space: normal;
    font-size: 36px;
  }

  .collection-section-action {
    justify-items: start;
    text-align: left;
  }

  .collection-section-action .collection-section-meta {
    max-width: 48ch;
  }
}

@media (max-width: 640px) {
  .collection-hero-editorial {
    width: min(100%, 1280px);
    padding: 34px 16px 18px;
  }

  .collection-hero-compact h1 {
    font-size: clamp(40px, 11vw, 54px);
  }

  .collection-nav-section {
    margin-top: 12px;
  }

  .collection-browse-section {
    padding-top: 2.1rem;
  }
}


/* Final rebuilt footer layout */
.site-footer-extended {
  padding: 2rem 0 0;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.98), rgba(245, 238, 229, 0.98));
}

.footer-shell-clean {
  display: grid;
  gap: 1.35rem;
}

.footer-intro-clean {
  display: grid;
  gap: 0.45rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(27, 25, 23, 0.1);
}

.footer-intro-clean .footer-brand {
  margin: 0;
}

.footer-intro-copy {
  margin: 0;
  max-width: 44ch;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.footer-grid-clean,
.footer-grid.footer-grid-extended.footer-grid-clean {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px;
  align-items: start;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 0.42rem;
  min-width: 0;
}

.footer-title {
  margin: 0 0 0.55rem;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-column a,
.footer-grid-clean a {
  display: block;
  margin: 0;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.45;
}

.footer-column a:hover {
  color: var(--accent-dark);
}

.footer-bottom-bar {
  margin-top: 1.55rem;
  border-top: 1px solid rgba(27, 25, 23, 0.1);
  background: rgba(255, 255, 255, 0.42);
}

.footer-bottom-inner {
  min-height: 46px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

@media (max-width: 920px) {
  .footer-grid-clean,
  .footer-grid.footer-grid-extended.footer-grid-clean {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 3rem;
  }
}

@media (max-width: 560px) {
  .site-footer-extended {
    padding-top: 1.6rem;
  }

  .footer-shell-clean {
    gap: 1.1rem;
  }

  .footer-grid-clean,
  .footer-grid.footer-grid-extended.footer-grid-clean {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .footer-bottom-inner {
    min-height: 56px;
    align-items: flex-start;
    padding: 0.8rem 0;
  }
}


/* Final horizontal overflow guard */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
}

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

.site-header,
.collection-hero,
.collection-nav,
.collection-browse-section,
.site-footer,
.footer-bottom-bar {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.site-header .container,
.nav-wrap,
.collection-hero-editorial,
.collection-nav .container,
.collection-browse-section > .container,
#more-in-store > .container,
.footer-shell-clean,
.footer-bottom-inner {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 48px;
  padding-right: 48px;
}

.container {
  max-width: 1280px;
}

.collection-hero-editorial {
  padding-top: 48px;
  padding-bottom: 24px;
}

.collection-hero-compact h1,
.collection-hero h1 {
  max-width: 980px;
  white-space: normal;
  overflow-wrap: normal;
}

.collection-nav {
  overflow-x: hidden;
}

.collection-nav .container {
  overflow: hidden;
}

.collection-nav-inner {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  overflow-x: auto;
  white-space: nowrap;
}

.collection-grid,
.collection-grid-featured,
.product-grid {
  width: 100%;
  max-width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.collection-card,
.collection-card-shop,
.product-card {
  min-width: 0;
  max-width: 100%;
}

.collection-section-header {
  min-width: 0;
}

.collection-section-header > *,
.collection-section-action {
  min-width: 0;
}

.footer-grid-clean,
.footer-grid.footer-grid-extended.footer-grid-clean {
  width: 100%;
  max-width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 920px) {
  .collection-grid,
  .collection-grid-featured,
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .site-header .container,
  .nav-wrap,
  .collection-hero-editorial,
  .collection-nav .container,
  .collection-browse-section > .container,
  #more-in-store > .container,
  .footer-shell-clean,
  .footer-bottom-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .collection-section-header h2 {
    white-space: normal;
  }
}

@media (max-width: 520px) {
  .collection-grid,
  .collection-grid-featured,
  .product-grid {
    gap: 12px;
  }
}


/* Collection hierarchy refinement */
.collection-hero.collection-hero-compact {
  min-height: 0;
}

.collection-hero-editorial {
  padding-top: clamp(56px, 7vw, 88px);
  padding-bottom: clamp(32px, 4.5vw, 56px);
}

.collection-hero-editorial .collection-hero-copy {
  max-width: 920px;
}

.collection-hero-compact .eyebrow {
  margin-bottom: 0.85rem;
}

.collection-hero-compact h1 {
  max-width: 940px;
  font-size: clamp(46px, 5.6vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.collection-hero-compact .hero-text {
  max-width: 620px;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.collection-hero-compact .button-row {
  margin-top: 1.15rem;
}

.collection-nav-section {
  margin-top: 0;
  padding-top: 0;
}

.collection-nav {
  padding: 11px 0;
}

.collection-nav-inner .collection-filter {
  min-height: 38px;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 650;
}

.collection-filtered-section {
  padding-top: 1.35rem;
}

.collection-filter-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(27, 25, 23, 0.08);
}

.collection-filter-toolbar .collection-section-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.collection-filter-controls {
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
  margin: 0 0 1rem;
  padding: 0.9rem;
  border: 1px solid rgba(27, 25, 23, 0.08);
  border-radius: 24px;
  background: rgba(255, 253, 249, 0.82);
  box-shadow: 0 18px 44px rgba(42, 33, 24, 0.045);
}

.collection-filter-group {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.collection-filter-group > span {
  min-width: 64px;
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.filter-pill {
  appearance: none;
  border: 1px solid rgba(27, 25, 23, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 620;
  line-height: 1;
  padding: 0.55rem 0.78rem;
  box-shadow: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.filter-pill:hover {
  border-color: rgba(182, 81, 45, 0.36);
  color: var(--accent-dark);
  transform: translateY(-1px);
}

.filter-pill.active {
  border-color: var(--text);
  background: var(--text);
  color: #fff;
}

.collection-filtered-section .collection-grid {
  margin-top: 0.75rem;
}

.collection-browse-section {
  padding-top: 2.2rem;
}

.collection-nav-section + .collection-browse-first {
  padding-top: 1.65rem;
}

@media (max-width: 768px) {
  .collection-hero-editorial {
    padding-top: 34px;
    padding-bottom: 24px;
  }

  .collection-hero-compact h1 {
    font-size: clamp(38px, 11vw, 56px);
  }

  .collection-filter-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
  }

  .collection-filter-controls {
    padding: 0.78rem;
    border-radius: 20px;
  }

  .collection-filter-group {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .collection-filter-group::-webkit-scrollbar {
    display: none;
  }

  .collection-filter-group > span,
  .filter-pill {
    flex: 0 0 auto;
  }
}


/* Collection pre-deploy polish */
.collection-hero-editorial {
  padding-top: clamp(44px, 5.5vw, 76px);
  padding-bottom: clamp(24px, 3.8vw, 46px);
}

.collection-hero-compact h1 {
  max-width: 820px;
  font-size: clamp(48px, 6vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.collection-hero-compact .hero-text {
  max-width: 560px;
  margin-top: 0.85rem;
}

.collection-nav-section {
  margin-top: 0;
}

.collection-nav {
  top: 78px;
  padding: 10px 0;
}

.collection-nav-inner .collection-filter {
  min-height: 38px;
  padding: 0.56rem 0.95rem;
  border: 1px solid rgba(27, 25, 23, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.75);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 650;
}

.collection-nav-inner .collection-filter:hover {
  border-color: rgba(182, 81, 45, 0.34);
  color: var(--accent-dark);
}

.collection-nav-inner .collection-filter.active {
  border-color: var(--text);
  background: var(--text);
  color: #fff;
}

.collection-filtered-section {
  padding-top: 1.15rem;
}

.collection-filter-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.72rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(27, 25, 23, 0.08);
}

.collection-filter-toolbar .collection-section-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.collection-filter-controls {
  margin-bottom: 0.9rem;
  padding: 0.82rem;
  border-radius: 22px;
  border: 1px solid rgba(27, 25, 23, 0.08);
  background: rgba(255, 253, 249, 0.84);
  box-shadow: 0 16px 38px rgba(42, 33, 24, 0.04);
}

.filter-pill {
  border: 1px solid rgba(27, 25, 23, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 620;
  padding: 0.54rem 0.78rem;
}

.filter-pill:hover {
  border-color: rgba(182, 81, 45, 0.36);
  background: rgba(255, 250, 244, 0.95);
  color: var(--accent-dark);
}

.filter-pill.active {
  border-color: var(--text);
  background: var(--text);
  color: #fff;
}

.collection-browse-section {
  padding-top: 1.95rem;
}

.collection-nav-section + .collection-browse-first {
  padding-top: 1.35rem;
}

@media (max-width: 768px) {
  .collection-hero-editorial {
    padding-top: 30px;
    padding-bottom: 20px;
  }

  .collection-hero-compact h1 {
    font-size: clamp(38px, 11vw, 58px);
  }

  .collection-filter-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.42rem;
  }
}


/* Product detail premium retail refinement */
.reference-action-block {
  gap: 0.65rem;
}

.reference-action-note {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.reference-copy-block {
  gap: 0.9rem;
}

.reference-summary {
  max-width: 42ch;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.55;
}

.reference-badges {
  gap: 0.5rem;
}

.reference-badges span {
  padding: 0.56rem 0.82rem;
  border-color: rgba(27, 25, 23, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.2;
}

.reference-detail-list {
  border-color: rgba(27, 25, 23, 0.1);
}

.reference-detail-item {
  align-items: baseline;
  padding: 0.82rem 0;
  border-color: rgba(27, 25, 23, 0.1);
}

.reference-detail-item span {
  color: rgba(94, 88, 82, 0.82);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.reference-detail-item strong {
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 700;
}

.reference-inline-details .section-head h2 {
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(1.65rem, 2.7vw, 2.6rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.reference-content-grid-inline {
  gap: 0.85rem;
}

.reference-content-card {
  min-height: 148px;
  padding: 1.1rem;
  border-radius: 20px;
  box-shadow: 0 14px 42px rgba(38, 23, 11, 0.06);
}

.reference-content-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.reference-content-card p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.collection-grid-related {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.reference-related-card .collection-card-image {
  aspect-ratio: 1 / 1;
}

.reference-related-card .collection-card-image img {
  object-fit: contain;
  padding: 0.8rem;
}

.reference-related-card .collection-card-model {
  font-size: 1.08rem;
}

@media (max-width: 920px) {
  .collection-grid-related {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .collection-grid-related {
    grid-template-columns: 1fr;
  }

  .reference-content-card {
    min-height: auto;
  }
}


/* Visit List styling */
.reference-inventory-note {
  margin: 0;
  padding: 0.8rem 0.95rem;
  border-radius: 18px;
  border: 1px solid rgba(27, 25, 23, 0.1);
  background: rgba(255, 253, 249, 0.72);
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.visit-added {
  background: var(--forest) !important;
}

.visit-list-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  min-height: 48px;
  padding: 0.8rem 1.12rem;
  border: 1px solid rgba(27, 25, 23, 0.16);
  border-radius: 999px;
  background: var(--text);
  color: white;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(27, 25, 23, 0.18);
}

.visit-list-float.has-items {
  background: var(--accent);
}

.visit-list-overlay {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(27, 25, 23, 0.28);
  backdrop-filter: blur(3px);
}

.visit-list-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: min(440px, 100%);
  height: 100dvh;
  display: grid;
  grid-template-rows: auto auto auto auto auto 1fr;
  gap: 1rem;
  padding: 1.25rem;
  overflow-y: auto;
  border-left: 1px solid var(--line);
  background: linear-gradient(180deg, #fffbf6 0%, #f5eee5 100%);
  box-shadow: -22px 0 60px rgba(27, 25, 23, 0.18);
  transform: translateX(105%);
  transition: transform 180ms ease;
}

.visit-list-drawer.open {
  transform: translateX(0);
}

.visit-list-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.visit-list-header h2 {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.visit-list-close,
.visit-list-item button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.visit-list-close {
  padding: 0.48rem 0.72rem;
}

.visit-list-intro,
.visit-list-note,
.visit-list-empty p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.visit-list-items {
  display: grid;
  gap: 0.75rem;
}

.visit-list-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
}

.visit-list-item img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 14px;
  background: #f7f4ef;
}

.visit-list-item h3,
.visit-list-item p {
  margin: 0;
}

.visit-list-item h3 {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.visit-list-item p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.visit-list-item button {
  padding: 0.44rem 0.62rem;
}

.visit-list-empty {
  padding: 1rem;
  border: 1px dashed rgba(27, 25, 23, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.48);
}

.visit-list-note {
  padding: 0.85rem;
  border-radius: 18px;
  background: rgba(182, 81, 45, 0.08);
  color: var(--accent-dark);
}

.visit-plan-toggle {
  width: 100%;
}

.visit-list-form {
  display: grid;
  gap: 0.8rem;
  padding-top: 0.25rem;
}

.visit-list-form[hidden],
.visit-success[hidden],
.visit-list-overlay[hidden],
.visit-list-empty[hidden] {
  display: none;
}

.visit-list-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--text);
  font-weight: 700;
  font-size: 0.86rem;
}

.visit-list-form input,
.visit-list-form select,
.visit-list-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  font: inherit;
  padding: 0.78rem 0.88rem;
}

.visit-checkbox {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-weight: 600 !important;
  color: var(--muted) !important;
}

.visit-checkbox input {
  width: auto;
  margin-top: 0.25rem;
}

.visit-success {
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(38, 54, 45, 0.18);
  background: rgba(38, 54, 45, 0.08);
}

.visit-success h3,
.visit-success p {
  margin: 0;
}

.visit-success h3 {
  margin-bottom: 0.4rem;
}

@media (max-width: 640px) {
  .visit-list-float {
    right: 0.8rem;
    bottom: 0.8rem;
  }

  .visit-list-drawer {
    width: 100%;
    padding: 1rem;
  }

  .visit-list-item {
    grid-template-columns: 64px 1fr;
  }

  .visit-list-item button {
    grid-column: 2;
    justify-self: start;
  }
}

/* Visit List drawer refinement */
.visit-nav-button {
  min-height: 42px;
  padding: 0.62rem 1rem;
  border-color: rgba(27, 25, 23, 0.18);
  background: rgba(255, 253, 249, 0.72);
  color: var(--text);
  font-size: 0.92rem;
  cursor: pointer;
}

.visit-nav-button.has-items {
  border-color: rgba(182, 81, 45, 0.42);
  color: var(--accent-dark);
  background: rgba(182, 81, 45, 0.08);
}

.visit-list-float {
  display: none !important;
}

.visit-list-overlay {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(27, 25, 23, 0.42);
  backdrop-filter: blur(5px);
}

.visit-list-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: min(440px, 100%);
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border-left: 1px solid rgba(27, 25, 23, 0.1);
  background: linear-gradient(180deg, #fffbf6 0%, #f5eee5 100%);
  box-shadow: -28px 0 70px rgba(27, 25, 23, 0.24);
  transform: translateX(105%);
  transition: transform 220ms ease;
}

.visit-list-drawer.open {
  transform: translateX(0);
}

.visit-list-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 1px solid rgba(27, 25, 23, 0.08);
  background: rgba(255, 253, 249, 0.88);
}

.visit-list-header h2 {
  margin: 0.2rem 0 0;
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.35rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.visit-list-close {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(27, 25, 23, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  font: inherit;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.visit-list-body {
  flex: 1;
  min-height: 0;
  display: grid;
  gap: 0.95rem;
  align-content: start;
  padding: 1rem 1.25rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.visit-list-intro,
.visit-list-empty p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.visit-list-items {
  display: grid;
  gap: 0.75rem;
}

.visit-list-item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
  padding: 0.75rem;
  border: 1px solid rgba(27, 25, 23, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 32px rgba(27, 25, 23, 0.05);
}

.visit-list-item img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  border-radius: 16px;
  background: #f7f4ef;
}

.visit-list-item-copy {
  min-width: 0;
  display: grid;
  gap: 0.18rem;
}

.visit-list-item h3,
.visit-list-item p,
.visit-list-item strong {
  margin: 0;
}

.visit-list-item h3 {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.visit-list-item p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.visit-list-item strong {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
}

.visit-list-item button {
  padding: 0.42rem 0.62rem;
  border: 1px solid rgba(27, 25, 23, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.visit-list-empty {
  padding: 1rem;
  border: 1px dashed rgba(27, 25, 23, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.48);
}

.visit-list-footer {
  display: grid;
  gap: 0.75rem;
  padding: 1rem 1.25rem 1.2rem;
  border-top: 1px solid rgba(27, 25, 23, 0.08);
  background: rgba(255, 251, 246, 0.96);
  box-shadow: 0 -18px 36px rgba(27, 25, 23, 0.06);
}

.visit-list-note {
  margin: 0;
  padding: 0.82rem 0.9rem;
  border-radius: 18px;
  background: rgba(182, 81, 45, 0.08);
  color: var(--accent-dark);
  font-size: 0.86rem;
  line-height: 1.45;
}

.visit-plan-toggle {
  width: 100%;
}

.visit-list-form {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid rgba(27, 25, 23, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.66);
}

.visit-form-head h3 {
  margin: 0.2rem 0 0;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.visit-list-form[hidden],
.visit-success[hidden],
.visit-list-overlay[hidden],
.visit-list-empty[hidden] {
  display: none;
}

.visit-list-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--text);
  font-weight: 700;
  font-size: 0.84rem;
}

.visit-list-form input,
.visit-list-form select,
.visit-list-form textarea {
  width: 100%;
  border: 1px solid rgba(27, 25, 23, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  font: inherit;
  padding: 0.76rem 0.86rem;
}

.visit-checkbox {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-weight: 600 !important;
  color: var(--muted) !important;
}

.visit-checkbox input {
  width: auto;
  margin-top: 0.25rem;
}

.visit-success {
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(38, 54, 45, 0.18);
  background: rgba(38, 54, 45, 0.08);
}

.visit-success h3,
.visit-success p {
  margin: 0;
}

.visit-success h3 {
  margin-bottom: 0.4rem;
}

@media (max-width: 820px) {
  .visit-nav-button {
    order: 8;
  }
}

@media (max-width: 640px) {
  .visit-list-drawer {
    width: 100%;
  }

  .visit-list-item {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .visit-list-item img {
    width: 68px;
    height: 68px;
  }

  .visit-list-item button {
    grid-column: 2;
    justify-self: start;
  }
}

body.visit-list-open {
  overflow: hidden;
}

/* Store Appointment drawer */
.visit-nav-button.button {
  min-height: 42px;
  padding: 0.62rem 1rem;
  border: 1px solid rgba(182, 81, 45, 0.36);
  background: var(--accent);
  color: #fff;
  font-size: 0.92rem;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(182, 81, 45, 0.16);
}

.visit-nav-button.button.has-items {
  background: var(--accent-dark);
  color: #fff;
}

.appointment-nav-button {
  min-height: 42px;
  padding: 0.62rem 1rem;
  border-color: rgba(27, 25, 23, 0.18);
  background: rgba(255, 253, 249, 0.72);
  color: var(--text);
  font-size: 0.92rem;
  cursor: pointer;
}

.appointment-overlay {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(27, 25, 23, 0.42);
  backdrop-filter: blur(5px);
}

.appointment-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: min(480px, 100%);
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-left: 1px solid rgba(27, 25, 23, 0.1);
  background: linear-gradient(180deg, #fffbf6 0%, #f5eee5 100%);
  box-shadow: -28px 0 70px rgba(27, 25, 23, 0.24);
  transform: translateX(105%);
  transition: transform 220ms ease;
}

.appointment-drawer.open {
  transform: translateX(0);
}

.appointment-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 1px solid rgba(27, 25, 23, 0.08);
  background: rgba(255, 253, 249, 0.88);
}

.appointment-header h2 {
  max-width: 340px;
  margin: 0.2rem 0 0;
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.28rem;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.appointment-close {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(27, 25, 23, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  font: inherit;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.appointment-body {
  flex: 1;
  min-height: 0;
  padding: 1rem 1.25rem 1.25rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.appointment-form {
  display: grid;
  gap: 1rem;
}

.appointment-step {
  display: grid;
  gap: 0.72rem;
}

.appointment-step-label {
  margin: 0;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.appointment-store-options,
.appointment-purpose-grid,
.appointment-fields {
  display: grid;
  gap: 0.7rem;
}

.appointment-store-card,
.appointment-purpose-grid label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.72rem;
  align-items: start;
  padding: 0.9rem;
  border: 1px solid rgba(27, 25, 23, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.66);
  cursor: pointer;
}

.appointment-store-card input,
.appointment-purpose-grid input {
  margin-top: 0.22rem;
  accent-color: var(--accent);
}

.appointment-store-card strong {
  display: block;
  margin-bottom: 0.22rem;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.appointment-store-card small,
.appointment-purpose-grid span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.42;
}

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

.appointment-purpose-grid label {
  min-height: 58px;
  padding: 0.75rem;
  border-radius: 18px;
}

.appointment-eye-exam {
  display: grid;
  gap: 0.7rem;
  padding: 0.95rem;
  border: 1px solid rgba(182, 81, 45, 0.16);
  border-radius: 20px;
  background: rgba(182, 81, 45, 0.08);
}

.appointment-eye-exam[hidden],
.appointment-shortlist[hidden],
.appointment-overlay[hidden],
.appointment-success[hidden] {
  display: none;
}

.appointment-eye-exam p {
  margin: 0;
  color: var(--accent-dark);
  font-size: 0.92rem;
  line-height: 1.45;
}

.appointment-eye-link {
  width: fit-content;
  min-height: 40px;
  padding: 0.62rem 0.9rem;
  border: 1px solid rgba(182, 81, 45, 0.22);
  color: var(--accent-dark);
  font-size: 0.88rem;
}

.appointment-shortlist {
  display: grid;
  gap: 0.7rem;
  padding: 0.95rem;
  border: 1px solid rgba(27, 25, 23, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.54);
}

.appointment-shortlist-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.appointment-shortlist-items {
  display: grid;
  gap: 0.55rem;
}

.appointment-shortlist-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0.65rem;
  align-items: center;
}

.appointment-shortlist-item img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 14px;
  background: #f7f4ef;
}

.appointment-shortlist-item strong,
.appointment-shortlist-item span {
  display: block;
}

.appointment-shortlist-item strong {
  color: var(--text);
  font-size: 0.92rem;
}

.appointment-shortlist-item span {
  color: var(--muted);
  font-size: 0.84rem;
}

.appointment-fields label {
  display: grid;
  gap: 0.35rem;
  color: var(--text);
  font-weight: 700;
  font-size: 0.84rem;
}

.appointment-fields input,
.appointment-fields textarea {
  width: 100%;
  border: 1px solid rgba(27, 25, 23, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  font: inherit;
  padding: 0.76rem 0.86rem;
}

.appointment-submit {
  width: 100%;
}

.appointment-success {
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(38, 54, 45, 0.18);
  background: rgba(38, 54, 45, 0.08);
}

.appointment-success h3,
.appointment-success p {
  margin: 0;
}

.appointment-success h3 {
  margin-bottom: 0.4rem;
}

@media (max-width: 820px) {
  .appointment-nav-button {
    order: 9;
  }
}

@media (max-width: 640px) {
  .appointment-drawer {
    width: 100%;
  }

  .appointment-purpose-grid {
    grid-template-columns: 1fr;
  }
}

/* Global header CTA hierarchy */
.nav {
  gap: 0.85rem;
}

.nav .visit-nav-button {
  min-height: 42px;
  padding: 0.62rem 1rem;
  border: 1px solid rgba(182, 81, 45, 0.36);
  background: var(--accent);
  color: #fff;
  font-size: 0.92rem;
  box-shadow: 0 10px 24px rgba(182, 81, 45, 0.16);
}

.nav .visit-nav-button:hover,
.nav .visit-nav-button.has-items {
  background: var(--accent-dark);
  color: #fff;
}

.eye-exam-nav-button {
  min-height: 42px;
  padding: 0.62rem 1rem;
  border-color: rgba(182, 81, 45, 0.42);
  background: rgba(255, 253, 249, 0.86);
  color: var(--accent-dark);
  font-size: 0.92rem;
  cursor: pointer;
}

.eye-exam-nav-button:hover {
  border-color: rgba(182, 81, 45, 0.72);
  background: rgba(182, 81, 45, 0.08);
}

.nav .appointment-nav-button {
  min-height: 42px;
  padding: 0.62rem 1rem;
  border-color: rgba(27, 25, 23, 0.16);
  background: rgba(255, 253, 249, 0.62);
  color: var(--text);
  font-size: 0.92rem;
  box-shadow: none;
}

.nav .appointment-nav-button:hover {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(27, 25, 23, 0.26);
}

.site-modal-open {
  overflow: hidden;
}

.eye-exam-overlay {
  position: fixed;
  inset: 0;
  z-index: 115;
  background: rgba(27, 25, 23, 0.42);
  backdrop-filter: blur(5px);
}

.eye-exam-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 120;
  width: min(440px, calc(100% - 2rem));
  padding: 1.35rem;
  border: 1px solid rgba(27, 25, 23, 0.1);
  border-radius: 28px;
  background: linear-gradient(180deg, #fffbf6 0%, #f5eee5 100%);
  box-shadow: 0 26px 70px rgba(27, 25, 23, 0.24);
  transform: translate(-50%, -46%) scale(0.98);
  opacity: 0;
  pointer-events: none;
  transition: 180ms ease;
}

.eye-exam-modal.open {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.eye-exam-modal h2 {
  margin: 0.35rem 2.4rem 0.7rem 0;
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.35rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.eye-exam-modal p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.55;
}

.eye-exam-modal span {
  display: block;
  margin-top: 0.85rem;
  color: var(--accent-dark);
  font-size: 0.88rem;
  font-weight: 700;
}

.eye-exam-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(27, 25, 23, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  font: inherit;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.eye-exam-booking-link {
  width: 100%;
}

.eye-exam-overlay[hidden] {
  display: none;
}

@media (max-width: 980px) {
  .nav-wrap {
    align-items: flex-start;
    padding-block: 0.8rem;
  }

  .nav {
    justify-content: flex-end;
    gap: 0.55rem;
  }

  .nav > a:not(.button):not(.button-ghost),
  .nav > button:not(.button):not(.button-ghost) {
    font-size: 0.95rem;
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    align-items: center;
  }

  .brand-lockup span {
    max-width: 190px;
    line-height: 1.05;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    order: 2;
  }

  .nav .visit-nav-button {
    order: 1;
  }

  .eye-exam-nav-button {
    order: 2;
  }

  .nav .appointment-nav-button {
    order: 3;
  }
}

@media (max-width: 560px) {
  .nav a:not(.button):not(.button-ghost) {
    display: none;
  }

  .nav .visit-nav-button,
  .eye-exam-nav-button,
  .nav .appointment-nav-button {
    min-height: 38px;
    padding: 0.52rem 0.78rem;
    font-size: 0.84rem;
  }
}

/* Lightweight premium global header */
.site-header .nav-wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
}

.site-header .nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  flex-wrap: nowrap;
}

.header-utility {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin-left: 24px;
  white-space: nowrap;
}

.site-header .nav > a:not(.button):not(.button-ghost) {
  color: var(--text);
  font-weight: 500;
}

.site-header .nav .visit-nav-button,
.site-header .nav .visit-nav-button.button {
  min-height: 38px;
  padding: 0.54rem 0.92rem;
  border: 1px solid rgba(182, 81, 45, 0.35);
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  box-shadow: none;
}

.site-header .nav .visit-nav-button:hover,
.site-header .nav .visit-nav-button.has-items {
  background: var(--accent-dark);
  color: #fff;
}

.site-header .eye-exam-nav-button,
.site-header .nav .eye-exam-nav-button {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent-dark);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.2;
  box-shadow: none;
  cursor: pointer;
}

.site-header .eye-exam-nav-button:hover {
  opacity: 0.72;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-header .appointment-nav-button,
.site-header .nav .appointment-nav-button {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.2;
  box-shadow: none;
  cursor: pointer;
}

.site-header .appointment-nav-button:hover {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 1180px) {
  .site-header .nav-wrap {
    padding-left: 32px;
    padding-right: 32px;
  }

  .site-header .nav {
    gap: 22px;
  }

  .header-utility {
    gap: 18px;
    margin-left: 16px;
  }
}

@media (max-width: 920px) {
  .site-header .nav-wrap {
    flex-wrap: wrap;
    align-items: center;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .site-header .nav {
    width: 100%;
    flex: 0 0 100%;
    justify-content: flex-start;
    order: 2;
    gap: 18px;
  }

  .header-utility {
    margin-left: 0;
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .site-header .nav-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .brand-lockup span {
    max-width: 210px;
    line-height: 1.05;
  }

  .site-header .nav {
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 0.1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .site-header .nav::-webkit-scrollbar {
    display: none;
  }

  .site-header .nav > a:not(.button):not(.button-ghost) {
    display: none;
  }

  .header-utility {
    flex: 0 0 auto;
    gap: 16px;
  }

  .site-header .nav .visit-nav-button,
  .site-header .nav .visit-nav-button.button {
    min-height: 36px;
    padding: 0.5rem 0.78rem;
    font-size: 0.84rem;
  }

  .site-header .eye-exam-nav-button,
  .site-header .appointment-nav-button {
    font-size: 0.86rem;
  }
}

/* Header balance refinement */
.site-header .nav-wrap {
  max-width: 1440px;
  min-height: 82px;
  padding-left: 32px;
  padding-right: 32px;
  gap: 1.25rem;
}

.site-header .brand-lockup {
  gap: 12px;
  flex: 0 0 auto;
}

.site-header .brand-logo {
  width: 36px;
  height: 36px;
}

.site-header .brand-lockup span {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.site-header .nav {
  gap: 34px;
}

.site-header .header-utility {
  gap: 26px;
  margin-left: 22px;
}

.site-header .nav .visit-nav-button,
.site-header .nav .visit-nav-button.button {
  min-height: 38px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
}

.site-header .eye-exam-nav-button,
.site-header .nav .eye-exam-nav-button,
.site-header .appointment-nav-button,
.site-header .nav .appointment-nav-button {
  color: var(--accent-dark);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}

.site-header .eye-exam-nav-button:hover,
.site-header .appointment-nav-button:hover {
  color: var(--accent-dark);
  opacity: 0.72;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 1180px) {
  .site-header .nav-wrap {
    padding-left: 28px;
    padding-right: 28px;
  }

  .site-header .nav {
    gap: 24px;
  }

  .site-header .header-utility {
    gap: 20px;
    margin-left: 8px;
  }

  .site-header .brand-lockup span {
    font-size: 18px;
  }
}

@media (max-width: 920px) {
  .site-header .nav-wrap {
    min-height: 78px;
  }

  .site-header .header-utility {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .site-header .nav-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-header .brand-logo {
    width: 32px;
    height: 32px;
  }

  .site-header .brand-lockup span {
    max-width: 210px;
    font-size: 17px;
  }

  .site-header .nav .visit-nav-button,
  .site-header .nav .visit-nav-button.button {
    min-height: 36px;
    padding: 9px 14px;
    font-size: 14px;
  }

  .site-header .eye-exam-nav-button,
  .site-header .nav .eye-exam-nav-button,
  .site-header .appointment-nav-button,
  .site-header .nav .appointment-nav-button {
    font-size: 14px;
  }
}

/* Visit List retail refinement */
.visit-list-footer {
  gap: 0.85rem;
}

.visit-store-choice {
  display: grid;
  gap: 0.55rem;
}

.visit-store-choice p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visit-store-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.visit-store-pills label {
  cursor: pointer;
}

.visit-store-pills input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.visit-store-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.48rem 0.78rem;
  border: 1px solid rgba(27, 25, 23, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 650;
  transition: 160ms ease;
}

.visit-store-pills input:checked + span {
  border-color: rgba(182, 81, 45, 0.38);
  background: rgba(182, 81, 45, 0.1);
  color: var(--accent-dark);
}

.visit-list-item button {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}

.visit-list-item button:hover {
  color: var(--accent-dark);
  text-decoration-color: currentColor;
}

.visit-list-note {
  color: var(--accent-dark);
}

/* Store Visit flow refinement */
.appointment-timing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.appointment-timing-grid label {
  cursor: pointer;
}

.appointment-timing-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.appointment-timing-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.5rem 0.82rem;
  border: 1px solid rgba(27, 25, 23, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 650;
  transition: 160ms ease;
}

.appointment-timing-grid input:checked + span {
  border-color: rgba(182, 81, 45, 0.38);
  background: rgba(182, 81, 45, 0.1);
  color: var(--accent-dark);
}

.appointment-shortlist-item em {
  display: block;
  margin-top: 0.1rem;
  color: var(--text);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 700;
}

.appointment-submit {
  margin-top: 0.2rem;
}

/* Store Visit drawer compact pass */
.appointment-store-compact {
  gap: 0.55rem;
}

.visit-list-note {
  padding-top: 0.68rem;
  padding-bottom: 0.68rem;
}

/* Store Visit completion polish */
.appointment-field-caption {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.appointment-form-error {
  margin: -0.15rem 0 0;
  color: var(--accent-dark);
  font-size: 0.86rem;
  font-weight: 650;
}

.appointment-form-error[hidden] {
  display: none;
}

.appointment-success {
  animation: drawerSuccessIn 260ms ease both;
}

.appointment-success-summary {
  display: grid;
  gap: 0.65rem;
  margin: 1.15rem 0 1.25rem;
  padding: 1rem;
  border: 1px solid rgba(27, 25, 23, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
}

.appointment-summary-row {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(27, 25, 23, 0.07);
}

.appointment-summary-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.appointment-summary-row span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.appointment-summary-row strong,
.appointment-summary-row li {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.45;
}

.appointment-summary-row ul {
  display: grid;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.appointment-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

@keyframes drawerSuccessIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 520px) {
  .appointment-summary-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .appointment-success-actions {
    flex-direction: column;
  }
}

/* Customer-facing services page */
.services-hero {
  padding: 4.5rem 0 2.4rem;
}

.services-hero-inner {
  max-width: 1120px;
}

.services-hero h1,
.services-section-head h2,
.services-cta-band h2 {
  font-family: "Instrument Sans", sans-serif;
  color: var(--text);
  font-weight: 650;
  letter-spacing: -0.045em;
}

.services-hero h1 {
  max-width: 1040px;
  margin: 0.7rem 0 1rem;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.services-hero .hero-text {
  max-width: 690px;
}

.services-hero .button-row {
  margin-top: 1.55rem;
}

.services-section {
  padding-top: 3.2rem;
}

.services-section-head {
  margin-bottom: 1.6rem;
}

.services-section-head h2 {
  max-width: 820px;
  margin-top: 0.45rem;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.04;
}

.services-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.services-card,
.services-reason-card {
  border: 1px solid rgba(27, 25, 23, 0.08);
  border-radius: 24px;
  background: rgba(255, 252, 246, 0.78);
  box-shadow: 0 18px 48px rgba(49, 38, 29, 0.06);
}

.services-card {
  min-height: 230px;
  padding: 1.35rem;
}

.services-card-kicker,
.services-reason-card span {
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.services-card h3,
.services-reason-card h3 {
  font-family: "Instrument Sans", sans-serif;
  color: var(--text);
  letter-spacing: -0.025em;
}

.services-card h3 {
  margin: 1.05rem 0 0.75rem;
  font-size: 1.35rem;
  line-height: 1.12;
}

.services-card p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.services-visit-section {
  padding-top: 3.4rem;
  padding-bottom: 3.4rem;
}

.services-reason-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.services-reason-card {
  min-height: 160px;
  padding: 1.2rem;
}

.services-reason-card h3 {
  margin: 1.65rem 0 0;
  font-size: 1.1rem;
  line-height: 1.28;
}

.services-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  border: 1px solid rgba(27, 25, 23, 0.08);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 252, 246, 0.92), rgba(245, 235, 222, 0.74));
  box-shadow: 0 22px 60px rgba(49, 38, 29, 0.08);
}

.services-cta-band h2 {
  margin: 0.4rem 0 0.65rem;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.04;
}

.services-cta-band p:not(.eyebrow) {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.services-cta-band .button-row {
  flex-shrink: 0;
}

@media (max-width: 980px) {
  .services-card-grid,
  .services-reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .services-hero {
    padding: 3.2rem 0 1.5rem;
  }

  .services-hero h1 {
    font-size: clamp(2.35rem, 13vw, 3.25rem);
  }

  .services-card-grid,
  .services-reason-grid {
    grid-template-columns: 1fr;
  }

  .services-card {
    min-height: auto;
  }

  .services-cta-band {
    padding: 1.35rem;
    border-radius: 22px;
  }
}

/* Store Visit success screen */
.appointment-drawer.success-mode {
  max-width: min(560px, 94vw);
  background: linear-gradient(145deg, rgba(255, 252, 246, 0.98), rgba(245, 235, 222, 0.96));
}

.appointment-drawer.success-mode .appointment-header,
.appointment-drawer.success-mode .appointment-body {
  border-bottom-color: transparent;
}

.appointment-drawer.success-mode .appointment-body {
  display: grid;
  min-height: calc(100vh - 112px);
  place-items: center;
  padding: 1.4rem;
  overflow-y: auto;
}

.appointment-drawer.success-mode .appointment-success {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  padding: 1.35rem;
  border: 1px solid rgba(27, 25, 23, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 24px 70px rgba(49, 38, 29, 0.14);
}

.appointment-drawer.success-mode .appointment-success h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.9rem, 5vw, 2.65rem);
  letter-spacing: -0.045em;
}

.appointment-drawer.success-mode .appointment-success p {
  font-size: 0.98rem;
  line-height: 1.55;
}

.appointment-drawer.success-mode .appointment-success-summary {
  max-height: 34vh;
  overflow-y: auto;
  background: rgba(250, 245, 238, 0.78);
}

.appointment-drawer.success-mode .appointment-success-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.appointment-drawer.success-mode .appointment-success-actions .button,
.appointment-drawer.success-mode .appointment-success-actions .button-light {
  width: 100%;
  justify-content: center;
  min-height: 46px;
  text-align: center;
}

.appointment-drawer.success-mode [data-appointment-eye-exam].button {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 14px 34px rgba(182, 81, 45, 0.22);
}

.appointment-drawer.success-mode [data-appointment-eye-exam].button:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

.appointment-drawer.success-mode [data-appointment-continue].button {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.appointment-drawer.success-mode [data-appointment-continue].button-light {
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  border: 1px solid rgba(27, 25, 23, 0.12);
}

@media (max-width: 560px) {
  .appointment-drawer.success-mode {
    max-width: 100vw;
  }

  .appointment-drawer.success-mode .appointment-body {
    min-height: calc(100vh - 96px);
    padding: 1rem;
  }

  .appointment-drawer.success-mode .appointment-success {
    padding: 1.1rem;
    border-radius: 22px;
  }

  .appointment-drawer.success-mode .appointment-success-actions {
    grid-template-columns: 1fr;
  }
}

/* Optical-specific services reasons */
.services-reason-grid-optical {
  gap: 1.2rem;
}

.services-reason-grid-optical .services-reason-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.45rem;
  background:
    radial-gradient(circle at 18% 0%, rgba(182, 81, 45, 0.08), transparent 34%),
    rgba(255, 252, 246, 0.84);
}

.services-reason-grid-optical .services-reason-card h3 {
  margin: 1.2rem 0 0.75rem;
  font-size: clamp(1.22rem, 1.55vw, 1.55rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.services-reason-grid-optical .services-reason-card p {
  margin: auto 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.services-reason-grid-optical .services-reason-card span {
  width: fit-content;
  padding: 0.42rem 0.62rem;
  border: 1px solid rgba(182, 81, 45, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
}

@media (max-width: 640px) {
  .services-reason-grid-optical {
    gap: 0.85rem;
  }

  .services-reason-grid-optical .services-reason-card {
    min-height: auto;
    padding: 1.2rem;
  }
}

/* Editorial About page */
.about-hero {
  padding: 5.4rem 0 3.2rem;
  background:
    radial-gradient(circle at 12% 8%, rgba(182, 81, 45, 0.09), transparent 28%),
    linear-gradient(180deg, rgba(250, 246, 239, 0.95), rgba(248, 244, 238, 0.66));
}

.about-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 3.2rem;
  align-items: end;
}

.about-hero-copy h1 {
  max-width: 1100px;
  margin: 0.8rem 0 1rem;
  color: var(--text);
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(3.25rem, 6vw, 6.8rem);
  font-weight: 650;
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.about-hero-copy .hero-text {
  max-width: 650px;
}

.about-hero-copy .button-row {
  margin-top: 1.6rem;
}

.about-hero-note {
  padding: 1.35rem;
  border: 1px solid rgba(27, 25, 23, 0.08);
  border-radius: 26px;
  background: rgba(255, 252, 246, 0.72);
  box-shadow: 0 22px 60px rgba(49, 38, 29, 0.08);
}

.about-hero-note span,
.about-hero-note strong {
  display: block;
  font-family: "Instrument Sans", sans-serif;
  letter-spacing: -0.025em;
}

.about-hero-note span {
  color: var(--muted);
  font-size: 1rem;
}

.about-hero-note strong {
  margin-top: 0.35rem;
  color: var(--text);
  font-size: 1.8rem;
  line-height: 1.05;
}

.about-section-head h2,
.about-split-head h2,
.about-store-copy h3,
.about-cta-band h2 {
  font-family: "Instrument Sans", sans-serif;
  color: var(--text);
  font-weight: 650;
  letter-spacing: -0.045em;
}

.about-section-head h2 {
  max-width: 860px;
  margin-top: 0.45rem;
  font-size: clamp(2.1rem, 3.4vw, 3.7rem);
  line-height: 1;
}

.about-editorial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.about-editorial-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.35rem;
  border: 1px solid rgba(27, 25, 23, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 0%, rgba(182, 81, 45, 0.08), transparent 34%),
    rgba(255, 252, 246, 0.82);
  box-shadow: 0 20px 54px rgba(49, 38, 29, 0.07);
}

.about-editorial-card p,
.about-reason-grid span {
  width: fit-content;
  margin: 0;
  padding: 0.42rem 0.62rem;
  border: 1px solid rgba(182, 81, 45, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-editorial-card h3 {
  margin: auto 0 0.8rem;
  color: var(--text);
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(1.3rem, 1.7vw, 1.7rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.about-editorial-card span {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.about-split-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.65fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.6rem;
}

.about-split-head h2 {
  max-width: 880px;
  margin: 0.45rem 0 0;
  font-size: clamp(2.25rem, 4vw, 4.2rem);
  line-height: 0.98;
}

.about-split-head > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.62;
}

.about-reason-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.about-reason-grid article {
  min-height: 210px;
  padding: 1.3rem;
  border: 1px solid rgba(27, 25, 23, 0.08);
  border-radius: 26px;
  background: rgba(255, 252, 246, 0.78);
  box-shadow: 0 18px 48px rgba(49, 38, 29, 0.06);
}

.about-reason-grid h3 {
  margin: 4.2rem 0 0;
  color: var(--text);
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(1.15rem, 1.45vw, 1.45rem);
  line-height: 1.16;
  letter-spacing: -0.035em;
}

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

.about-store-card {
  overflow: hidden;
  border: 1px solid rgba(27, 25, 23, 0.08);
  border-radius: 30px;
  background: rgba(255, 252, 246, 0.84);
  box-shadow: 0 22px 62px rgba(49, 38, 29, 0.08);
}

.about-store-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(27, 25, 23, 0.06);
}

.about-store-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-store-copy {
  padding: 1.35rem;
}

.about-store-copy h3 {
  margin: 0.45rem 0 1rem;
  font-size: clamp(1.7rem, 2.6vw, 2.6rem);
  line-height: 1;
}

.about-store-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.about-store-tags span {
  padding: 0.48rem 0.72rem;
  border: 1px solid rgba(27, 25, 23, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 650;
}

.about-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.2rem;
  border: 1px solid rgba(27, 25, 23, 0.08);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 252, 246, 0.94), rgba(245, 235, 222, 0.78));
  box-shadow: 0 26px 72px rgba(49, 38, 29, 0.09);
}

.about-cta-band h2 {
  margin: 0.45rem 0 0.7rem;
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  line-height: 0.98;
}

.about-cta-band p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.about-cta-band .button-row {
  flex-shrink: 0;
  justify-content: flex-end;
}

@media (max-width: 1100px) {
  .about-hero-inner,
  .about-split-head,
  .about-cta-band {
    grid-template-columns: 1fr;
  }

  .about-hero-inner {
    align-items: start;
  }

  .about-hero-note {
    max-width: 420px;
  }

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

  .about-cta-band {
    display: block;
  }

  .about-cta-band .button-row {
    justify-content: flex-start;
    margin-top: 1.4rem;
  }
}

@media (max-width: 720px) {
  .about-hero {
    padding: 3.4rem 0 2rem;
  }

  .about-hero-copy h1 {
    font-size: clamp(2.8rem, 13vw, 4.1rem);
  }

  .about-editorial-grid,
  .about-reason-grid,
  .about-store-grid {
    grid-template-columns: 1fr;
  }

  .about-editorial-card,
  .about-reason-grid article {
    min-height: auto;
  }

  .about-reason-grid h3 {
    margin-top: 2.8rem;
  }

  .about-cta-band {
    padding: 1.35rem;
    border-radius: 24px;
  }
}

/* Hard success state: replace the Store Visit form view */
.appointment-drawer.success-mode .appointment-header {
  display: none;
}

.appointment-drawer.success-mode .appointment-body {
  min-height: 100vh;
  place-items: start center;
  padding-top: clamp(1rem, 4vh, 2.2rem);
}

.appointment-drawer.success-mode .appointment-form {
  display: none !important;
}

.appointment-drawer.success-mode .appointment-success[hidden] {
  display: none !important;
}

.appointment-drawer.success-mode .appointment-success:not([hidden]) {
  display: block;
}

.appointment-drawer.success-mode [data-appointment-continue].button-light {
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  border: 1px solid rgba(27, 25, 23, 0.16);
  box-shadow: none;
}

.appointment-drawer.success-mode [data-appointment-eye-exam].button {
  background: var(--accent) !important;
  color: #fff !important;
  border-color: var(--accent) !important;
}

/* About page concise refinement */
.about-hero {
  padding-top: 4rem;
  padding-bottom: 2.15rem;
}

.about-hero-inner {
  gap: 2rem;
}

.about-hero-copy h1 {
  max-width: 980px;
  font-size: clamp(2.9rem, 5.1vw, 5.7rem);
  line-height: 0.94;
}

.about-hero-copy .button-row {
  margin-top: 1.25rem;
}

.about-hero-note {
  padding: 1.05rem;
  border-radius: 22px;
}

.about-hero-note strong {
  font-size: 1.45rem;
}

.about-values-section,
.about-visit-section,
.about-stores-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.about-section-head h2,
.about-split-head h2 {
  max-width: 760px;
  font-size: clamp(1.9rem, 2.8vw, 3rem);
  line-height: 1.04;
}

.about-editorial-grid {
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.about-editorial-card {
  min-height: 210px;
  padding: 1.08rem;
  border-radius: 22px;
}

.about-editorial-card h3 {
  margin-top: 2.2rem;
  margin-bottom: 0.55rem;
  font-size: clamp(1.12rem, 1.35vw, 1.34rem);
}

.about-editorial-card span {
  font-size: 0.92rem;
  line-height: 1.46;
}

.about-split-head {
  gap: 1.35rem;
  margin-bottom: 1.15rem;
}

.about-split-head > p {
  font-size: 0.98rem;
  line-height: 1.5;
}

.about-reason-grid {
  gap: 0.9rem;
}

.about-reason-grid article {
  min-height: 150px;
  padding: 1.05rem;
  border-radius: 22px;
}

.about-reason-grid h3 {
  margin-top: 2.6rem;
  font-size: clamp(1.02rem, 1.22vw, 1.22rem);
}

.about-store-grid {
  gap: 1rem;
}

.about-store-card {
  border-radius: 24px;
}

.about-store-image {
  aspect-ratio: 16 / 8.2;
}

.about-store-copy {
  padding: 1.08rem;
}

.about-store-copy h3 {
  margin-bottom: 0.72rem;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.about-store-tags {
  gap: 0.42rem;
  margin-bottom: 0.95rem;
}

.about-store-tags span {
  padding: 0.42rem 0.62rem;
  font-size: 0.8rem;
}

.about-cta-band {
  padding: 1.6rem;
  border-radius: 26px;
}

.about-cta-band h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
}

.about-cta-band p:not(.eyebrow) {
  max-width: 580px;
  font-size: 0.98rem;
}

@media (max-width: 720px) {
  .about-hero {
    padding-top: 2.8rem;
    padding-bottom: 1.6rem;
  }

  .about-values-section,
  .about-visit-section,
  .about-stores-section {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .about-editorial-card,
  .about-reason-grid article {
    min-height: auto;
  }

  .about-store-image {
    aspect-ratio: 16 / 10;
  }
}

/* About hero headline balance */
.about-hero-inner {
  grid-template-columns: minmax(0, 1fr);
}

.about-hero-copy {
  max-width: 1280px;
}

.about-hero-copy h1 {
  max-width: 1320px;
  font-size: clamp(3rem, 4.45vw, 5.05rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.about-hero-copy .hero-text {
  max-width: 760px;
}

.about-hero-note {
  justify-self: end;
  max-width: 330px;
  margin-top: -5.8rem;
}

@media (max-width: 1180px) {
  .about-hero-copy h1 {
    max-width: 900px;
    font-size: clamp(2.8rem, 6.6vw, 4.6rem);
  }

  .about-hero-note {
    justify-self: start;
    margin-top: 1rem;
  }
}

@media (max-width: 720px) {
  .about-hero-copy h1 {
    font-size: clamp(2.45rem, 11vw, 3.7rem);
    line-height: 0.98;
  }
}


/* Homepage seasonal promotion */
.seasonal-promo-section {
  padding-top: clamp(2.25rem, 4vw, 4.25rem);
  padding-bottom: clamp(2rem, 3.6vw, 3.75rem);
}

.seasonal-promo-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: stretch;
  padding: clamp(1.15rem, 2.4vw, 2rem);
  border: 1px solid rgba(27, 25, 23, 0.08);
  border-radius: clamp(24px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(255, 252, 246, 0.96), rgba(239, 230, 216, 0.74)),
    var(--surface);
  box-shadow: 0 24px 70px rgba(75, 49, 31, 0.1);
  overflow: hidden;
}

.seasonal-promo-copy {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: clamp(0.45rem, 1.6vw, 1.25rem);
}

.seasonal-promo-copy h2 {
  max-width: 720px;
  margin: 0.35rem 0 1rem;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.seasonal-promo-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.65;
}

.promo-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.35rem 0 1.6rem;
}

.promo-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(27, 25, 23, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  box-shadow: 0 12px 30px rgba(75, 49, 31, 0.055);
}

.seasonal-promo-media {
  position: relative;
  min-height: 100%;
  margin: 0;
  border-radius: clamp(20px, 2.4vw, 28px);
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 20%, rgba(190, 85, 45, 0.18), transparent 34%),
    linear-gradient(135deg, #efe4d5, #c9b8a2);
}

.seasonal-promo-media picture,
.seasonal-promo-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.seasonal-promo-media img {
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center;
}

.seasonal-promo-media::after {
  content: "Campaign image";
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.82);
  color: rgba(27, 25, 23, 0.6);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

@media (max-width: 900px) {
  .seasonal-promo-card {
    grid-template-columns: 1fr;
  }

  .seasonal-promo-media {
    order: -1;
  }

  .seasonal-promo-media img {
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 640px) {
  .seasonal-promo-section {
    padding-top: 1.75rem;
  }

  .seasonal-promo-card {
    padding: 0.9rem;
    border-radius: 24px;
  }

  .seasonal-promo-copy {
    padding: 0.55rem;
  }

  .seasonal-promo-copy h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .seasonal-promo-copy .button-row,
  .seasonal-promo-copy .button-row .button {
    width: 100%;
  }

  .seasonal-promo-copy .button-row {
    align-items: stretch;
  }
}


/* Standalone Store Visit page */
.contact-visit-hero {
  padding: clamp(2.8rem, 5vw, 5rem) 0 clamp(1.9rem, 3.4vw, 3.25rem);
  border-bottom: 1px solid rgba(27, 25, 23, 0.08);
  background:
    radial-gradient(circle at 88% 10%, rgba(190, 85, 45, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 251, 246, 0.98), rgba(248, 244, 238, 0.95));
}

.contact-visit-hero-inner {
  max-width: 920px;
}

.contact-visit-hero h1 {
  max-width: 900px;
  margin: 0.45rem 0 1rem;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: clamp(2.65rem, 5.1vw, 5.25rem);
  font-weight: 650;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.contact-visit-hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.65;
}

.contact-visit-hero .button-row {
  margin-top: 1.35rem;
}

.contact-visit-section {
  padding: clamp(2.5rem, 4.5vw, 4.75rem) 0;
}

.contact-visit-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.contact-visit-intro {
  position: sticky;
  top: 104px;
}

.contact-visit-intro h2 {
  max-width: 440px;
  margin: 0.45rem 0 0.85rem;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.045em;
}

.contact-visit-intro > p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.contact-visit-note {
  display: grid;
  gap: 0.35rem;
  max-width: 420px;
  margin-top: 1.25rem;
  padding: 1rem;
  border: 1px solid rgba(190, 85, 45, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 16px 40px rgba(75, 49, 31, 0.06);
}

.contact-visit-note strong {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.25;
}

.contact-visit-note span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.48;
}

.contact-visit-panel {
  border: 1px solid rgba(27, 25, 23, 0.09);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 252, 247, 0.98), rgba(244, 236, 226, 0.82));
  box-shadow: 0 28px 75px rgba(75, 49, 31, 0.1);
  overflow: hidden;
}

.contact-visit-form,
.contact-visit-success {
  display: grid;
  gap: 1rem;
  padding: clamp(1.05rem, 2.4vw, 1.8rem);
}

.contact-form-step {
  display: grid;
  gap: 0.78rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(27, 25, 23, 0.08);
}

.contact-form-step:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

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

.contact-field-grid-two {
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1fr);
  align-items: start;
}

.contact-field-grid label {
  display: grid;
  gap: 0.42rem;
  color: var(--text);
  font-weight: 650;
}

.contact-field-grid label span,
.contact-field-grid .appointment-field-caption {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-field-grid input,
.contact-field-grid textarea {
  width: 100%;
  border: 1px solid rgba(27, 25, 23, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font: inherit;
  padding: 0.88rem 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-field-grid textarea {
  resize: vertical;
}

.contact-field-grid input:focus,
.contact-field-grid textarea:focus {
  border-color: rgba(190, 85, 45, 0.55);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 4px rgba(190, 85, 45, 0.1);
}

.contact-submit {
  justify-self: start;
  margin-top: 0.25rem;
}

.contact-visit-success {
  min-height: 520px;
  align-content: center;
}

.contact-visit-success h2 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.045em;
}

.contact-visit-success > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.contact-success-actions {
  justify-content: flex-start;
}

.contact-success-actions .button {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.contact-success-actions .button-light {
  color: var(--text);
}

@media (max-width: 980px) {
  .contact-visit-grid {
    grid-template-columns: 1fr;
  }

  .contact-visit-intro {
    position: static;
  }

  .contact-visit-intro h2,
  .contact-visit-intro > p,
  .contact-visit-note {
    max-width: 760px;
  }
}

@media (max-width: 680px) {
  .contact-visit-hero {
    padding-top: 2.25rem;
  }

  .contact-visit-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

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

  .contact-visit-form,
  .contact-visit-success {
    padding: 1rem;
  }

  .contact-visit-panel {
    border-radius: 24px;
  }

  .contact-submit,
  .contact-success-actions .button,
  .contact-success-actions .button-light,
  .contact-visit-hero .button-row .button {
    width: 100%;
  }
}


/* Homepage beta-ready promotion layout */
.home-promo-hero {
  padding: clamp(1.2rem, 2.8vw, 2.4rem) 0 clamp(1.8rem, 3.5vw, 3rem);
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.98), rgba(248, 244, 238, 0.92));
}

.home-promo-shell {
  display: grid;
  gap: 1rem;
}

.home-promo-banner {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(27, 25, 23, 0.08);
  border-radius: clamp(18px, 2vw, 28px);
  background: #f5f0df;
  box-shadow: 0 22px 60px rgba(75, 49, 31, 0.12);
}

.home-promo-banner picture,
.home-promo-banner img {
  display: block;
  width: 100%;
}

.home-promo-banner img {
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center;
}

.home-promo-actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.home-section {
  padding-top: clamp(2.3rem, 4vw, 4.25rem);
  padding-bottom: clamp(2.3rem, 4vw, 4.25rem);
}

.home-section-head {
  display: grid;
  gap: 0.45rem;
  margin-bottom: clamp(1.15rem, 2vw, 1.8rem);
}

.home-section-head h2 {
  max-width: 760px;
  margin: 0;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  font-weight: 650;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.home-section-head-split {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 1rem;
}

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

.home-category-card {
  min-height: 190px;
  display: grid;
  align-content: end;
  gap: 0.45rem;
  border-color: rgba(27, 25, 23, 0.08);
  background: linear-gradient(145deg, rgba(255, 252, 247, 0.98), rgba(242, 234, 223, 0.85));
  box-shadow: 0 18px 45px rgba(75, 49, 31, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-category-card:hover {
  transform: translateY(-3px);
  border-color: rgba(190, 85, 45, 0.22);
  box-shadow: 0 24px 60px rgba(75, 49, 31, 0.11);
}

.home-category-card h3,
.home-location-card h3,
.home-product-card h3 {
  font-family: var(--font-sans);
  letter-spacing: -0.035em;
}

.home-category-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 1.7vw, 1.75rem);
}

.home-category-card p:not(.panel-tag) {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.home-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.05rem;
}

.home-product-card {
  padding: 0.85rem;
  gap: 0.5rem;
  border-color: rgba(27, 25, 23, 0.08);
  background: rgba(255, 252, 247, 0.9);
  box-shadow: 0 16px 44px rgba(75, 49, 31, 0.075);
}

.home-product-image {
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 1 / 0.82;
  margin-bottom: 0.35rem;
  border-radius: 18px;
  background: #f7f4ef;
}

.home-product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.7rem;
}

.home-product-card .product-meta {
  margin: 0.1rem 0 0;
  max-width: none;
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-product-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.32rem;
  font-weight: 700;
}

.home-product-card .home-product-colour,
.home-product-card span {
  margin: 0;
  max-width: none;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.42;
}

.home-product-card strong {
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.2;
}

.home-product-card .text-link {
  margin-top: 0.15rem;
  font-size: 0.94rem;
}

.home-locations {
  background: linear-gradient(180deg, rgba(248, 244, 238, 0), rgba(234, 220, 204, 0.52));
}

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

.home-location-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1fr);
  gap: 1.15rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid rgba(27, 25, 23, 0.08);
  border-radius: 28px;
  background: rgba(255, 252, 247, 0.88);
  box-shadow: 0 18px 50px rgba(75, 49, 31, 0.08);
}

.home-location-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  object-fit: cover;
  object-position: center;
}

.home-location-card h3 {
  margin: 0.35rem 0 0.55rem;
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
  font-weight: 650;
}

.home-location-card p:not(.panel-tag) {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.56;
}

@media (max-width: 1100px) {
  .home-product-grid,
  .home-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-location-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .home-promo-hero {
    padding-top: 1rem;
  }

  .home-promo-banner img {
    aspect-ratio: 4 / 5;
  }

  .home-promo-actions .button {
    width: 100%;
  }

  .home-section-head-split {
    grid-template-columns: 1fr;
  }

  .home-section-head h2 {
    font-size: clamp(1.85rem, 8vw, 2.65rem);
  }

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

@media (max-width: 520px) {
  .home-product-grid,
  .home-category-grid {
    grid-template-columns: 1fr;
  }
}


/* Homepage compact product + location rows */
.home-section {
  padding-top: clamp(1.7rem, 3vw, 3rem);
  padding-bottom: clamp(1.7rem, 3vw, 3rem);
}

.home-section-head {
  margin-bottom: clamp(0.9rem, 1.5vw, 1.25rem);
}

.home-section-head h2 {
  font-size: clamp(1.75rem, 2.55vw, 2.65rem);
  line-height: 1.04;
}

.home-product-grid {
  gap: 0.8rem;
}

.home-product-card {
  padding: 0.65rem;
  gap: 0.34rem;
  border-radius: 18px;
}

.home-product-image {
  aspect-ratio: 1 / 0.58;
  margin-bottom: 0.18rem;
  border-radius: 14px;
}

.home-product-image img {
  padding: 0.55rem;
}

.home-product-card .product-meta {
  font-size: 0.63rem;
  letter-spacing: 0.08em;
}

.home-product-card h3 {
  font-size: 1.08rem;
}

.home-product-card .home-product-colour,
.home-product-card span {
  font-size: 0.82rem;
  line-height: 1.3;
}

.home-product-card strong {
  font-size: 0.96rem;
}

.home-product-card .text-link {
  font-size: 0.84rem;
}

.home-location-grid {
  gap: 0.85rem;
}

.home-location-card {
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 0.85rem;
  padding: 0.72rem;
  border-radius: 22px;
}

.home-location-card img {
  aspect-ratio: 1 / 0.78;
  border-radius: 17px;
}

.home-location-card h3 {
  margin: 0.22rem 0 0.38rem;
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
}

.home-location-card p:not(.panel-tag) {
  margin-bottom: 0.7rem;
  font-size: 0.9rem;
  line-height: 1.42;
}

.home-location-card .button {
  padding: 0.72rem 1rem;
  font-size: 0.9rem;
}

@media (max-width: 1100px) {
  .home-location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .home-location-card img {
    aspect-ratio: 16 / 8;
  }
}

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

  .home-location-card {
    grid-template-columns: 170px minmax(0, 1fr);
  }
}

@media (max-width: 560px) {
  .home-location-card {
    grid-template-columns: 1fr;
  }
}


/* Homepage grid repair: featured products + store locations */
.home-section {
  padding-top: clamp(1.9rem, 3.2vw, 3.25rem);
  padding-bottom: clamp(1.9rem, 3.2vw, 3.25rem);
}

.home-section-head-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 1rem;
}

.home-store-head {
  max-width: 760px;
}

.home-store-head p:not(.eyebrow) {
  margin: 0.45rem 0 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.home-store-head .text-link {
  display: inline-flex;
  margin-top: 0.55rem;
}

.home-product-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 1rem !important;
  width: 100%;
}

.home-product-card {
  min-width: 0;
  width: 100%;
  height: 100%;
  padding: 0.85rem !important;
  border-radius: 20px !important;
  display: grid;
  align-content: start;
  gap: 0.46rem !important;
  background: rgba(255, 252, 247, 0.95);
  border: 1px solid rgba(27, 25, 23, 0.08);
  box-shadow: 0 16px 42px rgba(75, 49, 31, 0.075);
}

.home-product-image {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4 / 3 !important;
  min-height: 0 !important;
  margin: 0 0 0.35rem !important;
  border-radius: 16px !important;
  overflow: hidden;
  background: #f7f4ef;
  display: grid;
  place-items: center;
}

.home-product-image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain !important;
  padding: 0.6rem !important;
}

.home-product-card .product-meta {
  margin: 0;
  max-width: none;
  color: var(--accent-dark);
  font-size: 0.68rem !important;
  font-weight: 750;
  letter-spacing: 0.09em;
  line-height: 1.25;
  text-transform: uppercase;
}

.home-product-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.16rem !important;
  font-weight: 700;
  line-height: 1.08;
}

.home-product-card .home-product-colour,
.home-product-card span {
  margin: 0;
  max-width: none;
  color: var(--muted);
  font-size: 0.88rem !important;
  line-height: 1.34;
}

.home-product-card strong {
  color: var(--text);
  font-size: 1rem !important;
  line-height: 1.15;
}

.home-product-card .text-link {
  margin-top: 0.2rem;
  font-size: 0.88rem !important;
}

.home-location-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 1rem !important;
  width: 100%;
}

.home-location-card {
  min-width: 0;
  height: 100%;
  display: grid !important;
  grid-template-columns: 1fr !important;
  align-content: start;
  gap: 0 !important;
  padding: 0 !important;
  border-radius: 24px !important;
  overflow: hidden;
  background: rgba(255, 252, 247, 0.94);
  border: 1px solid rgba(27, 25, 23, 0.08);
  box-shadow: 0 18px 46px rgba(75, 49, 31, 0.08);
}

.home-location-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 8.4 !important;
  border-radius: 0 !important;
  object-fit: cover !important;
  object-position: center;
}

.home-location-card > div {
  display: grid;
  gap: 0.38rem;
  padding: 0.95rem 1rem 1rem;
}

.home-location-card h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.45rem, 2vw, 2rem) !important;
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.04em;
}

.home-location-card p:not(.panel-tag) {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem !important;
  line-height: 1.45;
}

.home-location-city {
  color: rgba(94, 88, 82, 0.86) !important;
  font-weight: 600;
}

.home-location-copy {
  max-width: 44rem;
}

.home-location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.34rem;
  margin-top: 0.15rem;
}

.home-location-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.34rem 0.62rem;
  border: 1px solid rgba(27, 25, 23, 0.1);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.82);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 650;
}

.home-location-card .button {
  justify-self: stretch;
  margin-top: 0;
  padding: 0.74rem 0.95rem !important;
  font-size: 0.9rem !important;
  text-align: center;
}

.home-location-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  align-items: center;
  margin-top: 0.45rem;
}

@media (max-width: 1100px) {
  .home-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .home-section-head-split,
  .home-location-grid {
    grid-template-columns: 1fr !important;
  }

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

  .home-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 520px) {
  .home-product-grid {
    grid-template-columns: 1fr !important;
  }

  .home-location-actions {
    grid-template-columns: 1fr;
  }
}


/* Premium compact footer navigation */
.site-footer-extended {
  padding-top: 1.55rem;
}

.footer-shell-clean {
  gap: 1.05rem;
}

.footer-intro-clean {
  gap: 0.34rem;
  padding-bottom: 0.82rem;
}

.footer-intro-copy {
  font-size: 0.9rem;
  line-height: 1.45;
}

.footer-grid-clean,
.footer-grid.footer-grid-extended.footer-grid-clean {
  gap: clamp(2rem, 4vw, 3rem);
}

.footer-column {
  gap: 0.24rem;
}

.footer-title {
  margin-bottom: 0.48rem;
  color: rgba(142, 65, 37, 0.92);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-column a,
.footer-grid-clean a,
.footer-connect a {
  position: relative;
  width: fit-content;
  max-width: 100%;
  color: rgba(27, 25, 23, 0.82);
  font-size: clamp(0.94rem, 0.95vw, 1.04rem);
  font-weight: 450;
  line-height: 1.42;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-column a::after,
.footer-grid-clean a::after,
.footer-connect a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.12rem;
  height: 1px;
  background: currentColor;
  opacity: 0.58;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.footer-column a:hover,
.footer-grid-clean a:hover,
.footer-connect a:hover {
  color: var(--accent-dark);
}

.footer-column a:hover::after,
.footer-grid-clean a:hover::after,
.footer-connect a:hover::after {
  transform: scaleX(1);
}

.footer-bottom-bar {
  margin-top: 1.18rem;
}

.footer-bottom-inner {
  min-height: 42px;
}

.footer-bottom-inner p {
  font-size: 0.8rem;
}

@media (max-width: 560px) {
  .footer-column {
    gap: 0.18rem;
  }

  .footer-title {
    margin-bottom: 0.35rem;
  }

  .footer-column a,
  .footer-grid-clean a,
  .footer-connect a {
    font-size: 0.98rem;
  }
}


/* Lightweight filtered collection controls */
.collection-filtered-section {
  padding-top: 2.4rem;
}

.collection-filter-controls {
  display: grid;
  gap: 0.8rem;
  margin: 0 0 1.35rem;
  padding: 1rem;
  border: 1px solid rgba(27, 25, 23, 0.08);
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.72);
  box-shadow: 0 18px 45px rgba(42, 33, 24, 0.05);
}

.collection-filter-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.collection-filter-group > span {
  min-width: 58px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.filter-pill {
  appearance: none;
  border: 1px solid rgba(27, 25, 23, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.58rem 0.82rem;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, opacity 180ms ease;
}

.filter-pill:hover {
  border-color: rgba(182, 81, 45, 0.34);
  color: var(--accent-dark);
}

.filter-pill.active {
  border-color: var(--text);
  background: var(--text);
  color: #fff;
}

.collection-empty-note {
  grid-column: 1 / -1;
  margin: 0;
  padding: 2rem;
  border: 1px solid rgba(27, 25, 23, 0.08);
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.72);
  color: var(--muted);
}

@media (max-width: 768px) {
  .collection-filtered-section {
    padding-top: 1.7rem;
  }

  .collection-filter-controls {
    margin-bottom: 1rem;
    padding: 0.85rem;
    border-radius: 18px;
  }

  .collection-filter-group {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.1rem;
    scrollbar-width: none;
  }

  .collection-filter-group::-webkit-scrollbar {
    display: none;
  }

  .collection-filter-group > span,
  .filter-pill {
    flex: 0 0 auto;
  }
}


/* Final beta mobile and collection polish */
.mobile-menu-toggle {
  display: none;
  appearance: none;
  border: 1px solid rgba(27, 25, 23, 0.14);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.86);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 650;
  min-height: 36px;
  padding: 0.5rem 0.82rem;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(20, 18, 16, 0.36);
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 150;
  width: min(86vw, 360px);
  height: 100vh;
  padding: 1.15rem;
  background: var(--cream);
  border-left: 1px solid var(--line);
  box-shadow: -24px 0 60px rgba(30, 24, 18, 0.18);
  transform: translateX(104%);
  transition: transform 220ms ease;
}

.mobile-menu-panel.open {
  transform: translateX(0);
}

.mobile-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(27, 25, 23, 0.1);
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mobile-menu-head button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.mobile-menu-links {
  display: grid;
  gap: 0.15rem;
  padding-top: 0.9rem;
}

.mobile-menu-links a,
.mobile-menu-links button {
  display: flex;
  align-items: center;
  min-height: 46px;
  border: 0;
  border-bottom: 1px solid rgba(27, 25, 23, 0.08);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  text-decoration: none;
}

.collection-card-image {
  aspect-ratio: 4 / 3;
  padding: 0.7rem;
  background: rgba(255, 253, 249, 0.86);
}

.collection-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.collection-card-image.is-image-missing {
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.92), rgba(248, 244, 238, 0.86));
}

.collection-card-image.is-image-missing span {
  color: rgba(94, 88, 82, 0.72);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.collection-card-material {
  margin: -0.08rem 0 0;
  color: rgba(94, 88, 82, 0.82);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.25;
}

@media (max-width: 760px) {
  .site-header .nav-wrap {
    min-height: 68px;
    flex-wrap: nowrap;
    gap: 0.65rem;
    padding: 0.55rem 16px;
  }

  .site-header .brand-lockup {
    min-width: 0;
    flex: 1 1 auto;
  }

  .site-header .brand-logo {
    width: 30px;
    height: 30px;
  }

  .site-header .brand-lockup span {
    max-width: 145px;
    font-size: 14px;
    line-height: 1.04;
  }

  .site-header .nav {
    width: auto;
    flex: 0 0 auto;
    order: 0;
    gap: 0.45rem;
    overflow: visible;
    padding: 0;
  }

  .site-header .nav > a:not(.button):not(.button-ghost),
  .site-header .eye-exam-nav-button,
  .site-header .appointment-nav-button {
    display: none;
  }

  .site-header .header-utility {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-left: 0;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
  }

  .site-header .nav .visit-nav-button,
  .site-header .nav .visit-nav-button.button {
    min-height: 34px;
    padding: 0.48rem 0.72rem;
    font-size: 0.78rem;
  }

  .collection-hero-editorial {
    padding-top: 40px;
    padding-bottom: 24px;
  }

  .collection-nav {
    top: 68px;
  }

  .collection-filter-controls {
    gap: 0.48rem;
  }

  .collection-filter-group {
    align-items: flex-start;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 0.45rem;
  }

  .collection-filter-group > span {
    padding-top: 0.55rem;
  }

  .collection-filter-group .filter-pill {
    width: max-content;
  }

  .collection-card-shop .collection-card-copy {
    padding: 0.85rem;
    gap: 0.25rem;
  }

  .collection-card-material,
  .collection-card-shop .collection-card-fit {
    display: none;
  }

  .collection-badge-row span:nth-child(n+2) {
    display: none;
  }

  .collection-card-model {
    font-size: 0.98rem;
  }

  .collection-card-colour {
    font-size: 0.83rem;
  }

  .collection-card-price.related-price {
    font-size: 0.95rem;
  }

  .footer-grid-clean,
  .footer-grid.footer-grid-extended.footer-grid-clean {
    grid-template-columns: 1fr;
    gap: 1.05rem;
  }

  .footer-title {
    margin-bottom: 0.35rem;
  }

  .footer-column {
    gap: 0.28rem;
  }

  .footer-column a,
  .footer-grid-clean a {
    font-size: 0.95rem;
    line-height: 1.35;
  }
}

@media (max-width: 420px) {
  .collection-grid,
  .collection-grid-featured,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .collection-card-image {
    padding: 0.5rem;
  }
}


/* Wood collection and lightweight site search */
.site-header .nav-search-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-weight: 500;
  padding: 0;
}

.site-header .nav-search-button:hover {
  color: var(--accent-dark);
}

.site-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 180;
  background: rgba(20, 18, 16, 0.38);
  backdrop-filter: blur(4px);
}

.site-search-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 190;
  width: min(92vw, 480px);
  height: 100vh;
  padding: 1.35rem;
  background: #fbf7f1;
  border-left: 1px solid rgba(27, 25, 23, 0.1);
  box-shadow: -28px 0 70px rgba(30, 24, 18, 0.18);
  transform: translateX(104%);
  transition: transform 220ms ease;
  overflow-y: auto;
}

.site-search-panel.open {
  transform: translateX(0);
}

.site-search-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.site-search-head h2 {
  max-width: 11ch;
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(1.65rem, 5vw, 2.35rem);
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.site-search-close {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.site-search-field {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.site-search-field span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.site-search-field input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(27, 25, 23, 0.14);
  border-radius: 18px;
  background: #fffdf9;
  color: var(--text);
  font: inherit;
  font-size: 1rem;
  padding: 0 1rem;
  outline: none;
}

.site-search-field input:focus {
  border-color: rgba(182, 81, 45, 0.55);
  box-shadow: 0 0 0 4px rgba(182, 81, 45, 0.08);
}

.site-search-results {
  display: grid;
  gap: 0.7rem;
}

.site-search-result {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  padding: 0.7rem;
  border: 1px solid rgba(27, 25, 23, 0.08);
  border-radius: 20px;
  background: rgba(255, 253, 249, 0.86);
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.site-search-result:hover {
  transform: translateY(-1px);
  border-color: rgba(182, 81, 45, 0.28);
  background: #fffdf9;
}

.site-search-thumb {
  display: grid;
  place-items: center;
  width: 76px;
  aspect-ratio: 1;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.site-search-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.35rem;
}

.site-search-thumb em,
.site-search-empty {
  color: rgba(94, 88, 82, 0.78);
  font-size: 0.86rem;
  font-style: normal;
}

.site-search-copy {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.site-search-copy strong {
  color: var(--text);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.site-search-copy span {
  color: var(--muted);
  font-size: 0.88rem;
}

.site-search-copy b {
  color: var(--text);
  font-size: 0.92rem;
}

.collection-wood-section .collection-card,
.collection-wood-section .collection-card-image {
  background: linear-gradient(180deg, rgba(253, 248, 239, 0.95), rgba(246, 238, 225, 0.82));
}

@media (max-width: 760px) {
  .site-header .nav-search-button {
    display: none;
  }

  .site-search-panel {
    width: min(94vw, 390px);
    padding: 1rem;
  }

  .site-search-result {
    grid-template-columns: 64px minmax(0, 1fr);
    border-radius: 18px;
  }

  .site-search-thumb {
    width: 64px;
  }
}


/* Major collection browsing refinement */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.collection-hero.collection-hero-compact {
  padding: 0;
}

.collection-hero-editorial,
.collection-hero.collection-hero-compact .collection-hero-editorial {
  padding-top: 26px;
  padding-bottom: 14px;
}

.collection-hero-editorial .collection-hero-copy {
  max-width: 760px;
}

.collection-hero-compact .eyebrow {
  margin-bottom: 0.42rem;
  font-size: 0.78rem;
}

.collection-hero-compact h1,
.collection-hero h1 {
  max-width: 760px;
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(28px, 4.4vw, 54px);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.collection-hero-compact .hero-text {
  max-width: 560px;
  margin-top: 0.55rem;
  font-size: 0.96rem;
  line-height: 1.45;
}

.collection-hero-compact .button-row {
  margin-top: 0.75rem;
}

.collection-nav-section {
  margin-top: 0;
}

.collection-nav,
.collection-nav-section.collection-nav {
  top: 78px;
  padding: 8px 0;
}

.collection-search-strip {
  display: grid;
  grid-template-columns: minmax(320px, 420px) auto;
  gap: 0.8rem 1rem;
  align-items: center;
  margin-bottom: 0.65rem;
}

.collection-search-field input {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(27, 25, 23, 0.13);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.9);
  color: var(--text);
  font: inherit;
  font-size: 0.92rem;
  padding: 0 1rem;
  outline: none;
}

.collection-search-field input:focus {
  border-color: rgba(182, 81, 45, 0.5);
  box-shadow: 0 0 0 4px rgba(182, 81, 45, 0.08);
}

.collection-search-strip p {
  margin: 0;
  color: rgba(94, 88, 82, 0.84);
  font-size: 0.9rem;
  line-height: 1.35;
}

.collection-search-compact,
.collection-filter-toggle {
  display: none;
  appearance: none;
  min-height: 40px;
  border: 1px solid rgba(27, 25, 23, 0.13);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.9);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 650;
  padding: 0.55rem 0.95rem;
}

.collection-nav-inner.collection-filter-row {
  gap: 0.48rem;
}

.collection-nav-inner .collection-filter {
  min-height: 34px;
  padding: 0.48rem 0.82rem;
  font-size: 0.82rem;
}

.collection-filtered-section {
  padding-top: 0.72rem;
}

.collection-filter-toolbar {
  margin-bottom: 0.48rem;
  padding-bottom: 0.5rem;
}

.collection-filter-toolbar .collection-section-meta {
  font-size: 0.9rem;
}

.collection-filter-controls {
  gap: 0.48rem;
  margin-bottom: 0.72rem;
  padding: 0.68rem;
  border-radius: 18px;
}

.collection-filter-group {
  gap: 0.38rem;
}

.collection-filter-group > span {
  min-width: 62px;
  font-size: 0.68rem;
}

.filter-pill {
  font-size: 0.8rem;
  padding: 0.45rem 0.68rem;
}

.collection-filtered-section .collection-grid {
  margin-top: 0.35rem;
}

body:has([data-filter-section]:not([hidden])) .collection-hero-editorial,
body:has([data-filter-section]:not([hidden])) .collection-hero.collection-hero-compact .collection-hero-editorial {
  padding-top: 30px;
  padding-bottom: 10px;
}

body:has([data-filter-section]:not([hidden])) .collection-hero-compact .eyebrow {
  margin-bottom: 0.28rem;
}

body:has([data-filter-section]:not([hidden])) .collection-hero-compact h1,
body:has([data-filter-section]:not([hidden])) .collection-hero h1 {
  font-size: clamp(38px, 4.2vw, 58px);
}

body:has([data-filter-section]:not([hidden])) .collection-hero-compact .hero-text,
body:has([data-filter-section]:not([hidden])) .collection-hero-compact .button-row {
  display: none;
}

body:has([data-filter-section]:not([hidden])) .collection-nav-section {
  border-top: 0;
}

body:has([data-filter-section]:not([hidden])) .collection-nav,
body:has([data-filter-section]:not([hidden])) .collection-nav-section.collection-nav {
  padding-top: 4px;
}

.collection-browse-section {
  padding-top: 1.35rem;
}

.collection-nav-section + .collection-browse-first {
  padding-top: 0.95rem;
}

@media (max-width: 768px) {
  .collection-hero-editorial,
  .collection-hero.collection-hero-compact .collection-hero-editorial {
    padding-top: 18px;
    padding-bottom: 10px;
  }

  .collection-hero-compact h1,
  .collection-hero h1 {
    font-size: clamp(30px, 9vw, 42px);
    max-width: 100%;
  }

  .collection-hero-compact .hero-text {
    margin-top: 0.42rem;
    font-size: 0.9rem;
  }

  .collection-nav,
  .collection-nav-section.collection-nav {
    top: 68px;
    padding: 7px 0;
  }

  .collection-search-strip {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .collection-search-field {
    display: none;
  }

  .collection-search-compact {
    display: inline-flex;
    align-items: center;
    width: max-content;
  }

  .collection-search-strip p {
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .collection-nav-inner.collection-filter-row {
    gap: 0.38rem;
  }

  .collection-nav-inner .collection-filter {
    min-height: 32px;
    padding: 0.44rem 0.72rem;
    font-size: 0.78rem;
  }

  .collection-filtered-section {
    padding-top: 0.6rem;
  }

  .collection-filter-toolbar {
    flex-direction: row;
    align-items: center;
    margin-bottom: 0.45rem;
    padding-bottom: 0.42rem;
  }

  .collection-filter-toolbar .collection-section-meta {
    font-size: 0.8rem;
  }

  .collection-filter-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.55rem;
  }

  .collection-filter-controls {
    display: none;
    margin-bottom: 0.62rem;
    padding: 0.62rem;
  }

  .collection-filter-controls.is-open {
    display: grid;
  }

  .collection-filter-group {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.34rem;
  }

  .collection-filter-group > span {
    min-width: auto;
    padding-top: 0;
    margin-right: 0.2rem;
    font-size: 0.66rem;
  }

  .filter-pill {
    font-size: 0.76rem;
    padding: 0.42rem 0.62rem;
  }

  .collection-grid,
  .collection-grid-featured {
    gap: 10px;
  }

  .collection-browse-section,
  .collection-nav-section + .collection-browse-first {
    padding-top: 0.85rem;
  }
}


/* Header search box refinement */
.site-header .nav-search-box {
  appearance: none;
  display: inline-flex;
  align-items: center;
  width: clamp(190px, 16vw, 260px);
  min-height: 38px;
  border: 1px solid rgba(27, 25, 23, 0.14);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.86);
  color: rgba(94, 88, 82, 0.9);
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 500;
  padding: 0 0.95rem;
  text-align: left;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.site-header .nav-search-box::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-right: 0.5rem;
  border: 1.8px solid currentColor;
  border-radius: 999px;
  box-shadow: 5px 5px 0 -3.8px currentColor;
  transform: rotate(-12deg);
  flex: 0 0 auto;
}

.site-header .nav-search-box:hover {
  border-color: rgba(182, 81, 45, 0.42);
  background: #fffdf9;
  color: var(--accent-dark);
}

.site-header .nav-search-box span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .site-header .nav-search-box {
    width: 42px;
    min-width: 42px;
    padding: 0;
    justify-content: center;
  }

  .site-header .nav-search-box::before {
    margin-right: 0;
  }

  .site-header .nav-search-box span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

@media (max-width: 760px) {
  .site-header .nav-search-box {
    display: none;
  }
}

.site-header .nav-search-inline {
  position: relative;
  width: clamp(220px, 19vw, 320px);
  margin: 0;
}

.site-header .nav-search-inline label {
  display: block;
  position: relative;
}

.site-header .nav-search-inline label::before {
  content: "";
  position: absolute;
  left: 0.95rem;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 1.8px solid rgba(94, 88, 82, 0.88);
  border-radius: 999px;
  box-shadow: 5px 5px 0 -3.8px rgba(94, 88, 82, 0.88);
  transform: translateY(-50%) rotate(-12deg);
  pointer-events: none;
}

.site-header .nav-search-inline input {
  width: 100%;
  min-height: 38px;
  border: 1px solid rgba(27, 25, 23, 0.14);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.9);
  color: var(--text);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  outline: none;
  padding: 0 0.9rem 0 2.25rem;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.site-header .nav-search-inline input:focus {
  border-color: rgba(182, 81, 45, 0.45);
  background: #fffdf9;
  box-shadow: 0 0 0 4px rgba(182, 81, 45, 0.08);
}

.nav-search-dropdown {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  right: 0;
  z-index: 160;
  display: grid;
  gap: 0.35rem;
  max-height: min(58vh, 430px);
  overflow-y: auto;
  padding: 0.55rem;
  border: 1px solid rgba(27, 25, 23, 0.1);
  border-radius: 20px;
  background: rgba(251, 247, 241, 0.98);
  box-shadow: 0 22px 54px rgba(36, 27, 19, 0.14);
}

.nav-search-dropdown[hidden],
.collection-filter-group-polarized[hidden] {
  display: none !important;
}

.nav-search-result {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  grid-template-areas:
    "image model price"
    "image colour price";
  gap: 0.08rem 0.58rem;
  align-items: center;
  padding: 0.45rem;
  border-radius: 14px;
  color: var(--text);
  text-decoration: none;
  transition: background 150ms ease, transform 150ms ease;
}

.nav-search-result:hover {
  background: rgba(255, 253, 249, 0.88);
  transform: translateY(-1px);
}

.nav-search-result span {
  grid-area: image;
  display: grid;
  place-items: center;
  width: 46px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
}

.nav-search-result img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.25rem;
}

.nav-search-result strong {
  grid-area: model;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.9rem;
  letter-spacing: -0.02em;
}

.nav-search-result em {
  grid-area: colour;
  min-width: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-search-result b {
  grid-area: price;
  font-size: 0.82rem;
}

.nav-search-empty {
  margin: 0;
  padding: 0.65rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.collection-card-shop {
  cursor: pointer;
}

@media (max-width: 1180px) {
  .site-header .nav-search-inline {
    width: 46px;
  }

  .site-header .nav-search-inline input {
    color: transparent;
    padding-right: 0;
  }

  .site-header .nav-search-inline input::placeholder {
    color: transparent;
  }

  .site-header .nav-search-inline:focus-within {
    width: min(320px, 36vw);
  }

  .site-header .nav-search-inline:focus-within input {
    color: var(--text);
    padding-right: 0.9rem;
  }

  .site-header .nav-search-inline:focus-within input::placeholder {
    color: rgba(94, 88, 82, 0.86);
  }
}

@media (max-width: 760px) {
  .site-header .nav-search-inline {
    display: none;
  }
}

/* Mobile retail polish */
@media (max-width: 760px) {
  .site-header {
    background: rgba(251, 247, 241, 0.96);
  }

  .site-header .container,
  .nav-wrap,
  .collection-hero-editorial,
  .collection-nav .container,
  .collection-browse-section > .container,
  #more-in-store > .container,
  .footer-shell-clean,
  .footer-bottom-inner {
    padding-left: 14px;
    padding-right: 14px;
  }

  .site-header .nav-wrap {
    min-height: 60px;
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
  }

  .site-header .brand-lockup {
    gap: 0.45rem;
  }

  .site-header .brand-logo {
    width: 28px;
    height: 28px;
  }

  .site-header .brand-lockup span {
    max-width: 132px;
    font-size: 13px;
    line-height: 1.02;
  }

  .site-header .nav .visit-nav-button,
  .site-header .nav .visit-nav-button.button,
  .mobile-menu-toggle {
    min-height: 32px;
    padding: 0.42rem 0.62rem;
    font-size: 0.74rem;
  }

  .mobile-menu-panel {
    width: min(90vw, 340px);
    padding: 1rem;
  }

  .home-promo-hero {
    padding-top: 0.75rem;
  }

  .home-promo-shell {
    gap: 0.75rem;
  }

  .home-promo-banner,
  .home-promo-banner img {
    border-radius: 18px;
  }

  .home-promo-actions {
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
  }

  .home-promo-actions .button,
  .home-promo-actions .button-ghost {
    min-height: 42px;
    padding: 0.68rem 0.6rem;
    font-size: 0.86rem;
  }

  .home-section-head,
  .home-section-head-split {
    gap: 0.55rem;
    margin-bottom: 0.9rem;
  }

  .home-section-head h2,
  .collection-section-header h2 {
    font-size: clamp(1.65rem, 8vw, 2.35rem);
    line-height: 1;
  }

  .home-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.72rem !important;
  }

  .home-product-card {
    padding: 0.7rem !important;
    border-radius: 18px !important;
  }

  .home-product-card h3 {
    font-size: 1rem;
    line-height: 1.1;
  }

  .home-product-card span,
  .home-product-card .product-meta {
    display: none;
  }

  .home-product-colour {
    margin: 0;
    font-size: 0.84rem;
  }

  .stores-info-section {
    padding-top: 1.25rem;
    padding-bottom: 1.5rem;
  }

  .stores-page-container {
    width: min(100% - 1rem, 1440px);
  }

  .store-detail-card-grid {
    gap: 0.85rem;
  }

  .store-practical-card {
    border-radius: 20px;
  }

  .store-carousel,
  .store-practical-image {
    height: clamp(210px, 58vw, 260px);
    max-height: 260px;
    border-radius: 20px 20px 0 0;
  }

  .store-practical-content {
    gap: 0.72rem;
    padding: 0.9rem;
  }

  .store-practical-head h2 {
    font-size: 1.24rem;
  }

  .store-info-list-compact div {
    grid-template-columns: 4.8rem minmax(0, 1fr);
    gap: 0.55rem;
    padding: 0.48rem 0;
  }

  .store-info-list-compact dt,
  .store-info-list-compact dd,
  .store-service-pills span {
    font-size: 0.8rem;
  }

  .store-service-pills {
    gap: 0.38rem;
  }

  .store-service-pills span {
    min-height: 29px;
    padding: 0.35rem 0.5rem;
  }

  .store-action-row,
  .store-action-row-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.48rem;
  }

  .store-action-row .button,
  .store-action-row .button-ghost,
  .store-action-row-four .button,
  .store-action-row-four .button-ghost {
    min-height: 39px;
    padding: 0.58rem 0.45rem;
    font-size: 0.78rem;
    line-height: 1.15;
  }

  .collection-hero-editorial,
  .collection-hero.collection-hero-compact .collection-hero-editorial {
    padding-top: 18px;
    padding-bottom: 12px;
  }

  .collection-hero-compact h1,
  .collection-hero h1 {
    font-size: clamp(2.05rem, 9.5vw, 2.85rem);
    line-height: 0.98;
  }

  .collection-hero-compact .hero-text {
    max-width: 34ch;
    font-size: 0.88rem;
  }

  .collection-nav,
  .collection-nav-section.collection-nav {
    top: 60px;
  }

  .collection-search-strip {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .collection-search-strip p {
    order: 3;
    grid-column: 1 / -1;
  }

  .collection-nav-inner.collection-filter-row {
    padding-bottom: 0.1rem;
    scrollbar-width: none;
  }

  .collection-nav-inner.collection-filter-row::-webkit-scrollbar {
    display: none;
  }

  .collection-filter-toolbar {
    gap: 0.5rem;
  }

  .collection-filter-toolbar .collection-section-link {
    white-space: nowrap;
  }

  .collection-filter-controls {
    border-radius: 16px;
  }

  .collection-grid,
  .collection-grid-featured,
  .product-grid {
    gap: 0.7rem;
  }

  .collection-card,
  .collection-card-shop {
    border-radius: 18px;
  }

  .collection-card-image {
    aspect-ratio: 1.1 / 1;
    padding: 0.45rem;
  }

  .collection-card-shop .collection-card-copy {
    padding: 0.68rem;
    gap: 0.18rem;
  }

  .collection-badge-row {
    min-height: 1.35rem;
    gap: 0.25rem;
  }

  .collection-badge-row span {
    min-height: 21px;
    padding: 0.22rem 0.42rem;
    font-size: 0.62rem;
  }

  .collection-card-model {
    margin-top: 0.04rem;
    font-size: 0.96rem;
    line-height: 1.06;
  }

  .collection-card-colour {
    font-size: 0.8rem;
    line-height: 1.2;
  }

  .collection-card-price.related-price {
    margin-top: 0.12rem;
    font-size: 0.9rem;
  }

  .collection-card-shop .text-link {
    margin-top: 0.1rem;
    font-size: 0.82rem;
  }

  .product-reference-section {
    padding-top: 1rem;
  }

  .product-reference-layout {
    gap: 1.2rem;
  }

  .reference-left-column {
    gap: 1rem;
  }

  .reference-gallery {
    gap: 0.65rem;
  }

  .reference-main-visual {
    order: 1;
    border-radius: 18px;
  }

  .reference-main-visual img {
    padding: 0.65rem;
  }

  .reference-gallery-stack {
    order: 2;
    gap: 0.55rem;
    padding-bottom: 0.1rem;
    scrollbar-width: none;
  }

  .reference-gallery-stack::-webkit-scrollbar {
    display: none;
  }

  .reference-gallery-card {
    min-width: 72px;
    border-radius: 14px;
  }

  .reference-gallery-card img {
    padding: 0.45rem;
  }

  .reference-info {
    gap: 0.72rem;
  }

  .reference-title {
    font-size: clamp(2rem, 11vw, 2.9rem);
  }

  .reference-price {
    font-size: 1.12rem;
  }

  .reference-color-line {
    gap: 0.25rem;
    padding: 0.75rem 0;
  }

  .reference-colours {
    gap: 0.5rem;
  }

  .reference-colour-swatch {
    min-height: 40px;
    padding: 0.58rem 0.78rem;
    font-size: 0.9rem;
  }

  .reference-action-block .button,
  .reference-action-block .button-ghost {
    min-height: 44px;
  }

  .reference-badges {
    gap: 0.4rem;
  }

  .reference-badges span {
    padding: 0.48rem 0.62rem;
    font-size: 0.82rem;
  }

  .reference-detail-item {
    padding: 0.72rem 0;
    font-size: 0.9rem;
  }

  .reference-inline-details .section-head {
    margin-bottom: 0.75rem;
  }

  .reference-content-card {
    padding: 0.9rem;
    border-radius: 18px;
  }
}

@media (max-width: 420px) {
  .home-promo-actions .button,
  .home-promo-actions .button-ghost {
    font-size: 0.8rem;
  }

  .home-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .site-header .brand-lockup span {
    max-width: 118px;
    font-size: 12px;
  }

  .site-header .nav .visit-nav-button,
  .site-header .nav .visit-nav-button.button {
    max-width: 86px;
    white-space: normal;
  }

  .mobile-menu-toggle {
    padding-left: 0.54rem;
    padding-right: 0.54rem;
  }

  .collection-grid,
  .collection-grid-featured,
  .product-grid {
    gap: 0.55rem;
  }

  .collection-card-shop .collection-card-copy {
    padding: 0.58rem;
  }

  .collection-card-model {
    font-size: 0.9rem;
  }

  .collection-card-colour,
  .collection-card-shop .text-link {
    font-size: 0.76rem;
  }

  .store-action-row,
  .store-action-row-four {
    grid-template-columns: 1fr 1fr;
  }
}
