:root {
  --bg: #efe4d3;
  --bg-soft: #f7f2ea;
  --surface: #fbf7f1;
  --surface-warm: #f5ecdf;
  --surface-dark: #261912;
  --surface-dark-2: #3d291f;
  --ink: #231712;
  --muted: #6c5b4e;
  --muted-light: rgba(255, 243, 232, 0.78);
  --line: rgba(51, 34, 23, 0.12);
  --line-strong: rgba(51, 34, 23, 0.18);
  --sand: #e3c6a7;
  --sage: #d7e0d3;
  --blush: #ecd7d0;
  --cream: #f2e8d8;
  --copper: #b96f44;
  --pine: #314138;
  --gold: #d8b48a;
  --shadow: 0 24px 60px rgba(43, 28, 18, 0.08);
  --shadow-strong: 0 34px 90px rgba(34, 20, 12, 0.16);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  line-height: 1.65;
  background:
    radial-gradient(circle at top center, rgba(216, 180, 138, 0.34), transparent 28%),
    linear-gradient(180deg, #f8f3ec 0%, #efe4d3 48%, #f7f2ea 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.18;
  mask-image: radial-gradient(circle at center, black 44%, transparent 100%);
}

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

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

.page-shell {
  width: min(1380px, calc(100% - 34px));
  margin: 0 auto;
  padding: 18px 0 72px;
}

.promo-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: linear-gradient(135deg, #33433a, #23312b);
  color: #fff7ee;
  text-align: center;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: var(--shadow);
}

.site-header,
.store-hero,
.section,
.article-shell,
.site-footer {
  border-radius: var(--radius-xl);
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 18px 0 22px;
  padding: 16px 22px;
  border: 1px solid rgba(35, 23, 18, 0.1);
  border-radius: 999px;
  background: rgba(251, 247, 241, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand::before {
  content: "B";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #271a13, #b16b42);
  color: #fff5eb;
  font-size: 1.1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.brand::after {
  content: "Storefront";
  font-family: "Manrope", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.site-nav a:hover {
  background: var(--surface-warm);
  color: var(--ink);
  transform: translateY(-1px);
}

main {
  display: grid;
  gap: 22px;
}

.store-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  gap: 24px;
  padding: 42px;
  background:
    radial-gradient(circle at top right, rgba(216, 180, 138, 0.2), transparent 26%),
    linear-gradient(135deg, #231710 0%, #3c281e 54%, #6e4329 100%);
  color: #fff5eb;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.store-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -140px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 66%);
}

.hero-copy {
  display: grid;
  align-content: start;
  gap: 18px;
}

.eyebrow,
.card-kicker,
.product-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff4ea;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.72rem;
  font-weight: 800;
}

.section .eyebrow,
.article-shell .eyebrow,
.product-card .card-kicker,
.guide-card .card-kicker,
.panel-card .card-kicker {
  background: rgba(185, 111, 68, 0.1);
  border-color: rgba(185, 111, 68, 0.16);
  color: var(--copper);
}

.product-badge {
  background: rgba(38, 25, 18, 0.72);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff0e3;
}

.hero-copy h1,
.section h2,
.article-hero h1 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(3.3rem, 8vw, 6.4rem);
  max-width: 10ch;
}

.hero-text,
.note,
.section-heading p,
.product-meta p,
.collection-card p,
.help-card p,
.article-copy p,
.article-copy li,
.summary-box ul,
.callout p,
.callout li,
.hero-note,
.fine-print,
.hero-stat span,
.showroom-main p,
.showroom-tile p,
.product-points li,
.site-footer p,
.guide-card p,
.panel-card p {
  color: var(--muted);
}

.store-hero .hero-text,
.store-hero .hero-note,
.store-hero .hero-stat span,
.store-hero .showroom-main p,
.store-hero .showroom-tile p {
  color: var(--muted-light);
}

.hero-actions,
.buy-buttons,
.product-actions,
.guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 6px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
}

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

.button-primary {
  background: #241712;
  color: #fff5eb;
  box-shadow: 0 14px 26px rgba(36, 23, 18, 0.12);
}

.store-hero .button-primary,
.section-dark .button-primary {
  background: #fff2e6;
  color: #231711;
}

.button-secondary {
  background: transparent;
  color: var(--ink);
  border-color: rgba(36, 23, 18, 0.14);
}

.store-hero .button-secondary,
.section-dark .button-secondary {
  color: #fff7ef;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.hero-kpis,
.showroom-stack,
.collection-grid,
.product-grid,
.edit-grid,
.help-grid,
.article-grid,
.process-grid,
.pillar-grid,
.funnel {
  display: grid;
  gap: 18px;
}

.hero-kpis {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 6px;
}

.hero-stat {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
}

.hero-stat strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Fraunces", serif;
  font-size: 2rem;
  line-height: 1;
  color: #fff7ef;
}

.hero-stage {
  display: grid;
  gap: 18px;
  align-content: start;
}

.showroom-main,
.showroom-tile,
.collection-card,
.product-card,
.help-card,
.summary-box,
.callout,
.buy-box,
.panel-card,
.guide-card,
.funnel-step,
.hero-note {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.showroom-main {
  position: relative;
  padding: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.showroom-main::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -10px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 68%);
}

.showroom-main h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1;
  color: #fff5eb;
}

.swatch-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.swatch-row span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.84);
}

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

.showroom-tile,
.help-card,
.panel-card,
.guide-card,
.summary-box,
.callout,
.buy-box,
.funnel-step {
  padding: 24px;
  background: var(--surface);
}

.showroom-tile {
  min-height: 150px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.showroom-tile h3,
.collection-card h3,
.product-card h3,
.help-card h3,
.guide-card h3,
.panel-card h3,
.summary-box h2,
.callout h3,
.article-copy h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  line-height: 1.05;
}

.showroom-tile h3 {
  margin-top: 8px;
  color: #fff5eb;
  font-size: 1.5rem;
}

.hero-note {
  padding: 18px 20px;
  background: rgba(251, 247, 241, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  font-size: 0.94rem;
}

.section,
.article-shell {
  padding: 36px;
  background: rgba(251, 247, 241, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(216, 180, 138, 0.14), transparent 28%),
    linear-gradient(135deg, #241712 0%, #3a281e 100%);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff5eb;
}

.section-dark .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff4ea;
}

.section-dark h2,
.section-dark h3 {
  color: #fff5eb;
}

.section-dark p {
  color: var(--muted-light);
}

.section-heading,
.section-intro {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.section-heading h2,
.section-intro h2 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 0.95;
  max-width: 11ch;
}

.section-heading p,
.section-intro p {
  margin: 0;
  max-width: 68ch;
}

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

.collection-card {
  display: grid;
  align-content: space-between;
  gap: 20px;
  min-height: 250px;
  padding: 26px;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.collection-card:hover,
.product-card:hover,
.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.collection-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(35, 23, 18, 0.08);
  color: var(--copper);
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  line-height: 1;
}

.collection-foot,
.inline-link,
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--copper);
  font-weight: 800;
}

.collection-foot::after,
.inline-link::after,
.back-link::after {
  content: "↗";
  font-size: 0.95em;
}

.back-link {
  margin-top: 12px;
}

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

.product-card {
  overflow: hidden;
  background: #fffaf3;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.product-top {
  position: relative;
  min-height: 200px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.product-top::after {
  content: "";
  position: absolute;
  right: -16px;
  bottom: -20px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent 68%);
}

.product-top h3 {
  margin: 12px 0 0;
  font-size: 1.85rem;
}

.product-copy {
  margin: 10px 0 0;
  font-weight: 700;
}

.product-meta {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.product-points {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.product-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
}

.product-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.62em;
  border-radius: 50%;
  background: var(--copper);
  flex: 0 0 auto;
}

.edit-grid,
.pillar-grid,
.help-grid,
.process-grid,
.funnel {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.edit-card,
.guide-card {
  display: grid;
  gap: 16px;
}

.edit-cover {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.edit-cover strong {
  display: block;
  max-width: 12ch;
  font-family: "Fraunces", serif;
  font-size: 2rem;
  line-height: 1;
}

.help-card {
  display: grid;
  gap: 12px;
  align-content: start;
}

.help-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff3e4;
  color: var(--copper);
  font-weight: 800;
}

.help-card .inline-link {
  margin-top: auto;
}

.site-footer {
  margin-top: 24px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, #241712 0%, #3f2b1f 100%);
  color: rgba(255, 244, 234, 0.76);
  box-shadow: var(--shadow);
}

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

.footer-heading {
  margin: 0 0 10px;
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  color: #fff7ef;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-column a {
  color: #fff7ef;
  font-weight: 700;
}

.footer-brand .brand {
  margin-bottom: 12px;
}

.footer-brand .brand::after {
  display: none;
}

.article-hero {
  display: grid;
  gap: 14px;
  padding: 32px;
  margin-bottom: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(216, 180, 138, 0.18), transparent 26%),
    linear-gradient(135deg, #241712 0%, #3f2a1f 100%);
  color: #fff5eb;
  box-shadow: var(--shadow);
}

.article-hero .hero-text {
  color: var(--muted-light);
  max-width: 64ch;
}

.article-hero h1 {
  font-size: clamp(3rem, 6vw, 5.2rem);
  max-width: 12ch;
}

.article-grid {
  grid-template-columns: minmax(0, 1.16fr) minmax(300px, 0.84fr);
  align-items: start;
}

.article-copy {
  display: grid;
  gap: 18px;
}

.article-copy section {
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 30px rgba(43, 27, 17, 0.06);
}

.article-copy section:first-child {
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.article-copy h2 {
  margin-bottom: 12px;
  font-size: 2rem;
}

.article-copy h3 {
  margin: 18px 0 10px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
}

.article-copy ul,
.summary-box ul,
.callout ul {
  margin: 0;
  padding-left: 20px;
}

.article-copy li + li,
.summary-box li + li,
.callout li + li {
  margin-top: 8px;
}

.stack {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 104px;
}

.summary-box,
.callout,
.buy-box,
.panel-card,
.guide-card,
.funnel-step {
  box-shadow: var(--shadow);
}

.summary-box,
.callout {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 240, 231, 0.92));
}

.summary-box h2,
.callout h3 {
  font-size: 1.6rem;
}

.buy-box {
  background:
    radial-gradient(circle at top right, rgba(216, 180, 138, 0.36), transparent 32%),
    linear-gradient(180deg, #fff2e4 0%, #f1e1cf 100%);
  border-color: rgba(185, 111, 68, 0.18);
}

.fine-print {
  margin-top: 10px;
  font-size: 0.9rem;
}

.funnel-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--surface-dark);
  color: #fff;
  font-weight: 800;
}

.tone-sand {
  background: linear-gradient(180deg, #e8d2bc, #fffaf4 96%);
}

.tone-olive {
  background: linear-gradient(180deg, #dde7da, #fbfdfa 96%);
}

.tone-blush {
  background: linear-gradient(180deg, #efdcd5, #fff9f6 96%);
}

.tone-cream {
  background: linear-gradient(180deg, #f4eadc, #fffaf3 96%);
}

@media (max-width: 1200px) {
  .store-hero,
  .article-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .collection-grid,
  .product-grid,
  .edit-grid,
  .help-grid,
  .process-grid,
  .pillar-grid,
  .funnel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .stack {
    position: static;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 18px, 1380px);
  }

  .site-header,
  .site-footer,
  .section,
  .article-shell,
  .store-hero {
    padding: 24px;
  }

  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 28px;
  }

  .brand::after {
    display: none;
  }

  .hero-copy h1,
  .section-heading h2,
  .section-intro h2,
  .article-hero h1 {
    max-width: none;
  }

  .promo-strip {
    border-radius: 18px;
    text-transform: none;
    letter-spacing: 0.04em;
  }

  .collection-grid,
  .product-grid,
  .edit-grid,
  .help-grid,
  .process-grid,
  .pillar-grid,
  .funnel,
  .showroom-stack {
    grid-template-columns: 1fr;
  }
}
/* Storefront polish pass */
.service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.service-pill {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(251, 247, 241, 0.92);
  box-shadow: var(--shadow);
}

.service-pill span {
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-pill strong {
  font-family: "Fraunces", serif;
  font-size: 1.08rem;
  line-height: 1.18;
}

.hero-rail,
.hero-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-chip,
.detail-chip,
.shelf-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-chip {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff4ea;
  transition: transform 0.18s ease, background 0.18s ease;
}

.hero-chip:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.16);
}

.detail-chip,
.shelf-index {
  border: 1px solid rgba(35, 23, 18, 0.12);
  background: rgba(255, 255, 255, 0.56);
  color: var(--ink);
}

.showroom-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.92fr);
  gap: 20px;
  align-items: end;
}

.showroom-copy,
.hero-product-scene {
  position: relative;
  z-index: 1;
}

.showroom-copy {
  display: grid;
  align-content: start;
  gap: 16px;
}

.hero-product-scene {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: end;
  min-height: 280px;
  padding: 24px 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  overflow: hidden;
}

.hero-product-scene::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 18px;
  height: 20px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 72%);
}

.scene-card {
  position: absolute;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 247, 239, 0.9);
  color: #3b281d;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(24, 14, 10, 0.14);
}

.scene-card-top {
  top: 14px;
  right: 14px;
}

.scene-card-bottom {
  left: 14px;
  bottom: 20px;
}

.hero-figure,
.product-figure,
.mini-figure {
  position: relative;
}

.hero-figure {
  height: 230px;
}

.product-figure {
  width: min(100%, 200px);
  height: 170px;
  margin: 0 auto;
}

.mini-figure {
  width: min(100%, 110px);
  height: 82px;
  margin-bottom: 10px;
}

.hero-figure::before,
.product-figure::before,
.mini-figure::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  top: 28%;
  bottom: 26%;
  border-radius: 48px 48px 26px 24px;
  background: linear-gradient(180deg, #b3754b 0%, #845232 52%, #694028 100%);
  box-shadow: inset 0 10px 12px rgba(255, 255, 255, 0.08), 0 18px 30px rgba(34, 20, 12, 0.18);
}

.hero-figure::after,
.product-figure::after,
.mini-figure::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: 14%;
  height: 20%;
  border-radius: 999px;
  background: linear-gradient(180deg, #f8efe2, #d7bfa1 100%);
  box-shadow: 0 10px 18px rgba(35, 23, 18, 0.14);
}

.figure-slipper::before,
.mini-slipper::before {
  top: 40%;
  bottom: 30%;
  left: 14%;
  right: 14%;
  border-radius: 44px 44px 24px 22px;
  transform: rotate(-6deg);
}

.figure-slipper::after,
.mini-slipper::after {
  left: 10%;
  right: 12%;
  bottom: 16%;
  height: 16%;
}

.figure-platform::before,
.mini-platform::before {
  top: 34%;
  bottom: 30%;
  left: 16%;
  right: 16%;
  border-radius: 42px 42px 24px 22px;
  transform: rotate(-4deg);
}

.figure-platform::after,
.mini-platform::after {
  bottom: 12%;
  height: 28%;
}

.figure-short-boot::before,
.mini-boot::before {
  top: 16%;
  bottom: 26%;
  left: 24%;
  right: 24%;
  border-radius: 30px 30px 20px 18px;
}

.figure-short-boot::after,
.mini-boot::after {
  left: 16%;
  right: 16%;
  bottom: 12%;
  height: 20%;
}

.figure-classic-boot::before,
.mini-classic::before {
  top: 6%;
  bottom: 24%;
  left: 26%;
  right: 26%;
  border-radius: 28px 28px 22px 20px;
}

.figure-classic-boot::after,
.mini-classic::after {
  left: 18%;
  right: 18%;
  bottom: 10%;
  height: 18%;
}

.figure-wide-slipper::before {
  top: 38%;
  bottom: 30%;
  left: 10%;
  right: 10%;
  border-radius: 48px 48px 26px 24px;
  transform: rotate(-4deg);
}

.figure-wide-slipper::after {
  left: 8%;
  right: 8%;
  bottom: 15%;
  height: 18%;
}

.showroom-tile {
  display: grid;
  align-content: start;
  gap: 10px;
}

.showroom-tile p {
  margin: 0;
}

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

.product-card {
  display: grid;
}

.product-top {
  display: grid;
  gap: 18px;
  min-height: 0;
}

.product-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 0.8fr);
  gap: 14px;
  align-items: end;
}

.product-detail-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: flex-start;
}

.product-detail-panel .detail-chip {
  background: rgba(255, 255, 255, 0.62);
}

.showroom-main .detail-chip {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff4ea;
}

.hero-copy h1 {
  max-width: 11ch;
}

@media (max-width: 1200px) {
  .service-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showroom-main {
    grid-template-columns: 1fr;
  }

  .hero-product-scene,
  .product-gallery {
    grid-template-columns: 1fr;
  }

  .hero-product-scene {
    min-height: 220px;
  }
}

@media (max-width: 760px) {
  .service-strip {
    grid-template-columns: 1fr;
  }

  .service-pill strong {
    font-size: 1rem;
  }

  .showroom-main {
    padding: 22px;
  }

  .hero-product-scene {
    min-height: 190px;
    padding: 18px 14px 14px;
  }

  .scene-card {
    font-size: 0.64rem;
  }

  .hero-rail {
    gap: 8px;
  }

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