:root {
  color-scheme: light;
  --ink: #171513;
  --muted: #6f6860;
  --line: #e8e2da;
  --paper: #fbfaf7;
  --soft: #f2eee8;
  --taupe: #9a8774;
  --accent: #1ba597;
  --espresso: #29211b;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-padding-top: 158px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

button,
input,
select {
  font: inherit;
}

.shop-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(251, 250, 247, 0.9);
  border-bottom: 1px solid rgba(232, 226, 218, 0.84);
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
  left: 0;
  padding: 12px 14px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 80;
}

.shop-header-brand {
  align-items: center;
  display: inline-flex;
  gap: 8px;
  min-width: 0;
}

.shop-header-brand svg {
  color: var(--ink);
  display: block;
  flex: 0 0 auto;
  height: 28px;
  width: 24px;
}

.shop-header-brand span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shop-header-nav {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.shop-header-nav::-webkit-scrollbar {
  display: none;
}

.shop-header-nav a {
  border-radius: 999px;
  color: var(--muted);
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 11px;
}

.shop-header-nav a:hover {
  background: var(--soft);
  color: var(--ink);
}

.header-search {
  min-width: 0;
  width: 100%;
}

.header-search label {
  display: block;
  position: relative;
}

.header-search label::before {
  color: var(--muted);
  content: "⌕";
  font-size: 17px;
  left: 14px;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-52%);
  z-index: 1;
}

.header-search span {
  display: none;
}

.header-search input {
  background: var(--soft);
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  min-height: 42px;
  outline: none;
  padding: 0 16px 0 40px;
  width: 100%;
}

.header-search input:focus {
  background: var(--white);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(27, 165, 151, 0.12);
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(251, 250, 247, 0.88);
  border-bottom: 1px solid rgba(232, 226, 218, 0.82);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 14px 18px;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.desktop-nav {
  align-items: center;
  display: none;
  gap: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.desktop-nav a:hover,
.text-link:hover {
  color: var(--ink);
}

.text-link {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 16px;
  font-weight: 650;
  gap: 10px;
}

.brand-mark {
  color: var(--ink);
  display: block;
  fill: currentColor;
  height: 32px;
  width: 31px;
}

.brand-mark-img {
  display: block;
  height: 32px;
  width: 31px;
}

.brand-mark .door {
  fill: var(--paper);
}

.icon-button {
  align-items: center;
  background: var(--ink);
  border: 0;
  border-radius: 999px;
  color: var(--paper);
  display: inline-flex;
  height: 34px;
  justify-content: center;
  min-width: 34px;
  padding: 0 11px;
}

.close-button {
  align-items: center;
  background: var(--soft);
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  font-size: 24px;
  height: 38px;
  justify-content: center;
  line-height: 1;
  width: 38px;
}

.hero {
  padding: 42px 20px 22px;
}

.hero-content {
  max-width: 35rem;
}

.eyebrow {
  color: var(--taupe);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(38px, 11vw, 58px);
  letter-spacing: 0;
  line-height: 0.94;
  margin-bottom: 18px;
  max-width: 10ch;
}

.hero-copy {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  margin-bottom: 26px;
  max-width: 33rem;
}

.hero-actions {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}

.hero-visual {
  aspect-ratio: 1 / 1.06;
  border-radius: 8px;
  margin: 28px 0 0;
  overflow: hidden;
}

.hero-visual img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  width: 100%;
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
}

.primary {
  background: var(--ink);
  color: var(--paper);
}

.secondary {
  background: var(--soft);
  color: var(--ink);
}

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

.instagram-button,
.instagram-inline {
  align-items: center;
  display: inline-flex;
  gap: 7px;
}

.instagram-icon {
  display: inline-block;
  flex: 0 0 auto;
  height: 18px;
  width: 18px;
}

.button .instagram-icon {
  height: 19px;
  width: 19px;
}

.coming-soon-page {
  padding-top: 145px;
  min-height: 100vh;
}

.coming-soon {
  display: grid;
  gap: 34px;
  min-height: 100vh;
  padding: 30px 20px 52px;
  place-items: center;
}

.coming-soon-logo {
  display: block;
  margin: 0 auto 18px;
  max-width: min(360px, 78vw);
  width: 100%;
}

.coming-soon-panel {
  margin: 0 auto;
  max-width: 760px;
  text-align: center;
  width: 100%;
}

.coming-soon-panel h1 {
  font-size: clamp(42px, 9vw, 76px);
  letter-spacing: 0;
  line-height: 0.96;
  margin-bottom: 22px;
  max-width: none;
}

.coming-soon-panel p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(17px, 4.4vw, 22px);
  line-height: 1.45;
  margin: 0 auto 28px;
  max-width: 35rem;
}

.coming-soon-panel p a {
  color: var(--ink);
  font-weight: 750;
}

.coming-soon-tagline {
  color: var(--ink) !important;
  font-size: clamp(18px, 4.2vw, 22px) !important;
  font-weight: 650;
  margin-bottom: 28px !important;
}

.coming-soon-actions {
  display: grid;
  gap: 10px;
  margin: 0 auto;
  max-width: 640px;
}

.coming-soon-contact {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 750;
  gap: 8px 16px;
  justify-content: center;
  margin-top: 16px;
}

.coming-soon-contact a {
  color: var(--ink);
}

.storefront-section,
.shopping-guides,
.coming-soon-proof,
.coming-soon-products,
.trust-cards {
  max-width: 920px;
  width: 100%;
}

.storefront-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}

.storefront-heading h2 {
  font-size: clamp(30px, 8vw, 54px);
  letter-spacing: 0;
  line-height: 0.96;
  margin: 0;
}

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

.storefront-heading.split a {
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
}

.shop-paths {
  display: grid;
  gap: 10px;
  grid-auto-columns: minmax(190px, 1fr);
  grid-auto-flow: column;
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.shop-paths::-webkit-scrollbar {
  display: none;
}

.shop-paths a {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(23, 21, 19, 0.035);
  display: grid;
  gap: 10px;
  min-height: 160px;
  padding: 18px;
  scroll-snap-align: start;
}

.shop-paths span,
.guide-grid span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-paths strong,
.guide-grid strong {
  color: var(--ink);
  font-size: 22px;
  letter-spacing: 0;
  line-height: 1.06;
}

.shop-paths small,
.guide-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
}

.coming-soon-proof {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 18px;
  padding: 26px 0;
}

.coming-soon-proof h2 {
  font-size: clamp(30px, 8vw, 54px);
  letter-spacing: 0;
  line-height: 0.96;
  margin: 0;
}

.coming-soon-proof p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  margin: 0;
}

.trust-cards {
  display: grid;
  gap: 10px;
}

.trust-cards article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  min-height: 164px;
  padding: 18px;
}

.trust-cards span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.trust-cards strong {
  color: var(--ink);
  font-size: 18px;
  letter-spacing: 0;
}

.trust-cards p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.pricing-note {
  align-items: start;
  background: var(--ink);
  border-radius: 8px;
  color: var(--paper);
  display: grid;
  gap: 10px;
  max-width: 920px;
  padding: 18px;
  width: 100%;
}

.pricing-note strong {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-note span {
  color: rgba(251, 250, 247, 0.84);
  font-size: 15px;
  line-height: 1.55;
}

.coming-soon-products {
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr);
  padding-bottom: 12px;
}

.coming-soon-products article {
  align-content: stretch;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(23, 21, 19, 0.035);
  display: grid;
  gap: 8px;
  grid-template-rows: 180px auto auto auto 1fr;
  min-height: 372px;
  overflow: hidden;
  padding: 14px;
}

.coming-soon-products article:nth-child(2n) {
  background: var(--white);
}

.coming-soon-products img {
  align-self: center;
  display: block;
  height: 168px;
  margin: 0 auto 8px;
  max-width: 100%;
  object-fit: contain;
  width: 100%;
}

.coming-soon-products span {
  color: var(--taupe);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coming-soon-products strong {
  align-self: end;
  color: var(--ink);
  font-size: 19px;
  letter-spacing: 0;
  line-height: 1.1;
}

.coming-soon-products small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.3;
}

.price-compare {
  align-self: end;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0;
  margin-top: 8px;
  padding-top: 8px;
  width: 100%;
}

.price-compare div,
.price-compare a {
  align-items: center;
  column-gap: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  min-height: 34px;
}

.price-compare a {
  border-radius: 5px;
  margin: 0 -4px;
  padding: 0 4px;
}

.price-compare a:hover {
  background: var(--soft);
}

.coming-soon-products .price-compare span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: none;
  white-space: nowrap;
}

.coming-soon-products .price-compare strong {
  align-self: center;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-align: right;
  white-space: nowrap;
}

.coming-soon-products .price-compare div:last-child strong {
  color: var(--accent);
}

.shopping-guides {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.guide-grid {
  display: grid;
  gap: 10px;
}

.guide-grid article {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(232, 226, 218, 0.92);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  padding: 16px;
}

.inventory-section {
  max-width: 1180px;
  padding: 26px 0 56px;
  width: 100%;
}

.inventory-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}

.inventory-heading h2 {
  font-size: clamp(30px, 8vw, 54px);
  letter-spacing: 0;
  line-height: 0.96;
  margin: 0;
}

.inventory-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  margin: 0;
  max-width: 42rem;
}

.inventory-promise {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  margin: 0 0 16px;
}

.inventory-promise div {
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 13px 0;
}

.inventory-promise div:last-child {
  border-bottom: 0;
}

.inventory-promise strong {
  color: var(--ink);
  font-size: 18px;
  letter-spacing: 0;
}

.inventory-promise span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: right;
  text-transform: uppercase;
}

.inventory-tools {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(23, 21, 19, 0.04);
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
  padding: 14px;
}

.inventory-search span {
  display: none;
}

.inventory-search input {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
  min-height: 54px;
  padding: 0 18px;
  width: 100%;
}

.inventory-filters {
  background: var(--soft);
  border-radius: 999px;
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(4, 1fr);
  padding: 4px;
}

.inventory-filter,
.review-filter {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  min-height: 38px;
}

.inventory-filter.active,
.review-filter.active {
  background: var(--white);
  box-shadow: 0 1px 14px rgba(23, 21, 19, 0.08);
  color: var(--ink);
}

.inventory-summary {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: space-between;
  margin: 0 0 14px;
}

.inventory-summary a {
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
}

.inventory-count,
.inventory-empty {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  margin: 0;
}

.review-page {
  background: var(--paper);
}

.review-shell {
  margin: 0 auto;
  max-width: 1180px;
  padding: 24px 18px 48px;
}

.review-header {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 20px;
  padding: 12px 0 28px;
}

.review-header h1 {
  font-size: clamp(42px, 10vw, 72px);
  letter-spacing: 0;
  margin-bottom: 14px;
  max-width: none;
}

.review-header p {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
  max-width: 46rem;
}

.review-stats {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 22px 0;
}

.review-stats div {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.review-stats span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 750;
  margin-bottom: 8px;
}

.review-stats strong {
  font-size: 26px;
  letter-spacing: 0;
}

.review-tools {
  display: grid;
  gap: 14px;
  margin: 0 0 18px;
}

.review-grid {
  display: grid;
  gap: 12px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  padding: 12px;
}

.review-card.is-saved {
  border-color: rgba(27, 165, 151, 0.38);
}

.review-card-visual {
  align-items: center;
  aspect-ratio: 1 / 0.76;
  background: var(--paper);
  border-radius: 6px;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.review-card-visual img {
  display: block;
  max-height: 92%;
  max-width: 92%;
  object-fit: contain;
}

.review-card-body {
  display: grid;
  gap: 10px;
}

.review-status {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-card:not(.is-saved) .review-status {
  color: var(--taupe);
}

.review-card h2 {
  font-size: 22px;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0;
}

.review-card p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

.review-card dl {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
  margin: 2px 0 0;
  padding-top: 10px;
}

.review-card dl div {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.review-card dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.review-card dd {
  font-size: 13px;
  font-weight: 800;
  margin: 0;
  text-align: right;
  word-break: break-word;
}

.review-actions {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr;
  margin-top: 2px;
}

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

.inventory-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(23, 21, 19, 0.04);
  display: grid;
  gap: 10px;
  grid-template-rows: auto auto auto auto auto 1fr auto;
  min-height: 0;
  overflow: hidden;
  padding: 14px;
}

.inventory-card-visual {
  align-items: center;
  background: linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
  border-radius: 6px;
  display: flex;
  justify-content: center;
  min-height: 196px;
  overflow: hidden;
  position: relative;
}

.inventory-card-visual img {
  display: block;
  height: auto;
  max-height: 176px;
  max-width: 100%;
  object-fit: contain;
  width: auto;
}

.inventory-card-badge {
  background: rgba(251, 250, 247, 0.92);
  border: 1px solid var(--line);
  border-radius: 999px;
  bottom: 8px;
  color: var(--muted) !important;
  font-size: 10px !important;
  font-weight: 850 !important;
  left: 8px;
  letter-spacing: 0.04em !important;
  line-height: 1;
  padding: 7px 9px;
  position: absolute;
  text-transform: uppercase !important;
  white-space: nowrap;
}

.inventory-card span {
  color: var(--taupe);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inventory-card > strong {
  color: var(--ink);
  font-size: 21px;
  letter-spacing: 0;
  line-height: 1.08;
}

.inventory-card small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.inventory-card-meta {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 6px;
  margin-top: 4px;
  padding-top: 10px;
}

.inventory-card-meta div {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) max-content;
  min-height: 30px;
}

.inventory-card-meta span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: none;
  white-space: nowrap;
}

.inventory-card-meta strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-align: right;
  white-space: nowrap;
}

.inventory-card-meta div:first-child strong {
  color: var(--accent);
  font-size: 20px;
}

.inventory-item-number {
  opacity: 0.72;
}

.inventory-card-meta .inventory-item-number span,
.inventory-card-meta .inventory-item-number strong {
  font-size: 10px;
}

.inventory-retailers {
  display: grid;
  gap: 6px;
  grid-template-columns: 1fr;
  margin-top: 2px;
}

.inventory-retailers a,
.inventory-retailers div {
  align-items: center;
  background: var(--soft);
  border-radius: 7px;
  color: var(--ink);
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) max-content;
  min-height: 38px;
  padding: 0 12px;
}

.inventory-retailers span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: none;
  white-space: nowrap;
}

.inventory-retailers strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  text-align: right;
  white-space: nowrap;
}

.inventory-retailers a:hover {
  background: var(--ink);
}

.inventory-retailers a:hover span,
.inventory-retailers a:hover strong {
  color: var(--paper);
}

.inventory-retailer-note {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  margin: 0;
}

.inventory-card-action {
  align-items: center;
  background: var(--ink);
  border-radius: 999px;
  color: var(--paper);
  display: inline-flex;
  font-size: 13px;
  font-weight: 850;
  justify-content: center;
  margin-top: 4px;
  min-height: 42px;
  padding: 0 14px;
  text-align: center;
}

.inventory-card-action:hover {
  background: var(--accent);
}

.inventory-detail-trigger {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
  min-height: 40px;
  padding: 0 14px;
}

.inventory-detail-trigger:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.modal-open {
  overflow: hidden;
}

.product-detail-modal {
  align-items: center;
  background: rgba(23, 21, 19, 0.42);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 18px;
  position: fixed;
  z-index: 120;
}

.product-detail-modal[hidden] {
  display: none;
}

.product-detail-shell {
  background: var(--paper);
  border: 1px solid rgba(232, 226, 218, 0.86);
  border-radius: 12px;
  box-shadow: 0 28px 80px rgba(23, 21, 19, 0.22);
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1fr);
  max-height: min(86vh, 860px);
  max-width: 980px;
  overflow: hidden;
  position: relative;
  width: min(100%, 980px);
}

.product-detail-close {
  align-items: center;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-size: 28px;
  height: 42px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 14px;
  top: 14px;
  width: 42px;
  z-index: 2;
}

.product-detail-media {
  align-items: center;
  background: linear-gradient(180deg, #ffffff 0%, var(--soft) 100%);
  display: flex;
  justify-content: center;
  min-height: 420px;
  padding: 34px;
}

.product-detail-media img {
  display: block;
  max-height: 420px;
  max-width: 100%;
  object-fit: contain;
}

.product-detail-body {
  display: grid;
  gap: 16px;
  max-height: min(86vh, 860px);
  overflow: auto;
  padding: 34px;
}

.product-detail-body h2 {
  font-size: clamp(34px, 5vw, 54px);
  letter-spacing: 0;
  line-height: 0.96;
  margin: 0;
  padding-right: 38px;
}

.product-detail-subtitle {
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  margin: 0;
}

.product-detail-price {
  align-items: center;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
}

.product-detail-price span,
.product-detail-section-heading span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-detail-price strong {
  color: var(--accent);
  font-size: 30px;
  letter-spacing: 0;
}

.product-detail-section {
  display: grid;
  gap: 10px;
}

.product-detail-section h3 {
  font-size: 18px;
  letter-spacing: 0;
  margin: 0;
}

.product-detail-section p,
.product-detail-muted {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.product-detail-section-heading {
  align-items: baseline;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

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

.product-variant {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 13px;
  text-align: left;
}

.product-variant.selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(27, 165, 151, 0.12);
}

.product-variant span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.product-variant strong {
  color: var(--accent);
  font-size: 20px;
  line-height: 1;
}

.product-variant small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.product-detail-facts,
.product-detail-retailers {
  display: grid;
  gap: 8px;
  margin: 0;
}

.product-detail-facts div,
.product-detail-retailers a,
.product-detail-retailers div {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) max-content;
  min-height: 42px;
  padding: 0 12px;
}

.product-detail-facts dt,
.product-detail-retailers span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.product-detail-facts dd,
.product-detail-retailers strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  margin: 0;
  text-align: right;
}

.product-detail-retailers a:hover {
  border-color: var(--accent);
}

.product-detail-actions {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
  padding-top: 6px;
}

.inventory-more {
  display: none;
  margin: 20px auto 0;
  min-width: min(100%, 280px);
}

.inventory-more.is-visible {
  display: inline-flex;
}

.domain-launch-page {
  min-height: 100vh;
}

.domain-launch {
  display: grid;
  gap: 32px;
  margin: 0 auto;
  max-width: 980px;
  min-height: 100vh;
  padding: 32px 20px 42px;
}

.domain-launch-logo {
  display: block;
  height: auto;
  width: min(390px, 88vw);
}

.domain-launch-hero {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 18px;
  padding: 32px 0;
}

.domain-launch-hero h1 {
  font-size: clamp(42px, 9vw, 76px);
  line-height: 0.96;
  margin: 0;
  max-width: 11ch;
}

.domain-launch-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(17px, 4.4vw, 22px);
  line-height: 1.45;
  margin: 0;
  max-width: 38rem;
}

.domain-launch-actions {
  display: grid;
  gap: 10px;
  max-width: 620px;
}

.domain-launch-grid {
  display: grid;
  gap: 10px;
}

.domain-launch-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  padding: 18px;
}

.domain-launch-grid span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.domain-launch-grid strong {
  font-size: 18px;
}

.domain-launch-grid p,
.domain-launch-note {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.domain-launch-note a {
  color: var(--ink);
  font-weight: 800;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding: 13px 0;
  scrollbar-width: none;
}

.trust-strip span {
  border-right: 1px solid var(--line);
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 650;
  padding: 0 18px;
  white-space: nowrap;
}

.section {
  padding: 34px 18px;
}

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

.shop-tools {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.search-field span {
  display: none;
}

.search-field input {
  border-radius: 999px;
  min-height: 46px;
}

.filter-tabs {
  background: var(--soft);
  border-radius: 999px;
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(4, 1fr);
  padding: 4px;
}

.filter-tab {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  min-height: 38px;
}

.filter-tab.active {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 1px 14px rgba(23, 21, 19, 0.08);
}

.section-heading h2,
.why h2,
.concierge h2 {
  font-size: 28px;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
}

.product-grid {
  display: grid;
  gap: 12px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 104px 1fr;
  min-height: 136px;
  overflow: hidden;
}

.product-image {
  align-items: center;
  background: var(--white);
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 10px;
  position: relative;
}

.product-image img {
  display: block;
  height: 100%;
  max-height: 110px;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.product-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
}

.product-brand {
  color: var(--taupe);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.product-info h3 {
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1.15;
  margin-bottom: 14px;
}

.product-meta {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
  margin: -6px 0 12px;
}

.price-row {
  align-items: baseline;
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.price-row span {
  font-size: 18px;
  font-weight: 750;
}

.price-row s {
  color: var(--muted);
  font-size: 14px;
}

.add-button {
  align-self: start;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  min-height: 34px;
  padding: 0 13px;
  font-size: 12px;
  font-weight: 750;
}

.why {
  background: var(--ink);
  color: var(--paper);
}

.why .eyebrow,
.why p,
.proof-list span {
  color: #bdb4aa;
}

.why p {
  font-size: 16px;
  line-height: 1.58;
  margin: 18px 0 24px;
}

.proof-list {
  display: grid;
  gap: 10px;
}

.proof-list div {
  border-top: 1px solid rgba(251, 250, 247, 0.18);
  padding-top: 14px;
}

.proof-list strong,
.proof-list span {
  display: block;
}

.proof-list strong {
  font-size: 15px;
  margin-bottom: 5px;
}

.proof-list span {
  font-size: 14px;
  line-height: 1.45;
}

.concierge {
  padding-bottom: 96px;
}

.concierge h2 {
  margin-bottom: 20px;
}

.concierge-form {
  display: grid;
  gap: 12px;
}

.gallery-hero {
  padding: 42px 20px 14px;
}

.brand-kit-hero {
  padding: 42px 20px 20px;
}

.brand-kit-hero h1 {
  max-width: none;
}

.kit-hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.kit-hero-strip span {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  display: inline-flex;
  font-size: 13px;
  font-weight: 750;
  gap: 8px;
  min-height: 36px;
  padding: 0 12px;
}

.kit-hero-strip span::before {
  background: var(--dot);
  border: 1px solid rgba(23, 21, 19, 0.12);
  border-radius: 999px;
  content: "";
  height: 12px;
  width: 12px;
}

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

.asset-section {
  padding-top: 26px;
}

.asset-section:last-of-type {
  padding-bottom: 104px;
}

.asset-grid {
  display: grid;
  gap: 12px;
}

.asset-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  display: grid;
  gap: 12px;
  overflow: hidden;
  padding: 10px;
}

.asset-card img {
  aspect-ratio: 1.45 / 1;
  background: var(--white);
  border-radius: 6px;
  display: block;
  object-fit: contain;
  width: 100%;
}

.asset-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  padding: 0 2px 3px;
}

.product-asset-grid .asset-card img {
  aspect-ratio: 1 / 1;
  max-height: 250px;
}

.kit-section {
  padding-top: 28px;
}

.kit-grid,
.swatch-grid,
.usage-grid {
  display: grid;
  gap: 12px;
}

.kit-card,
.type-card,
.usage-grid div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.kit-card {
  display: grid;
  gap: 14px;
}

.kit-card img {
  background: var(--paper);
  border-radius: 6px;
  display: block;
  min-height: 150px;
  object-fit: contain;
  padding: 18px;
  width: 100%;
}

.kit-card.icon-card img {
  max-height: 220px;
}

.kit-card.dark-card img {
  background: var(--ink);
  padding: 0;
}

.kit-card.taupe-card img {
  background: var(--paper);
}

.kit-card h3 {
  font-size: 18px;
  letter-spacing: 0;
  margin-bottom: 0;
}

.kit-card p,
.type-card p,
.usage-grid span {
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.swatch {
  background: var(--swatch);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--paper);
  display: grid;
  gap: 42px;
  min-height: 145px;
  padding: 16px;
}

.light-swatch {
  color: var(--ink);
}

.swatch span,
.usage-grid strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
}

.swatch strong {
  font-size: 16px;
}

.color-guidance,
.type-specs {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.color-guidance p,
.type-specs span {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  padding: 14px;
}

.color-guidance strong {
  color: var(--ink);
}

.type-specs span {
  border-left: 3px solid var(--accent);
}

.type-sample {
  color: var(--ink) !important;
  font-size: clamp(34px, 9vw, 76px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.96;
  margin-bottom: 18px !important;
  max-width: 12ch;
}

.usage-grid div {
  display: grid;
  gap: 8px;
}

label span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

input {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  min-height: 52px;
  outline: none;
  padding: 0 14px;
  width: 100%;
}

input:focus {
  border-color: var(--taupe);
}

@media (max-width: 559px) {
  .coming-soon {
    align-content: start;
    gap: 24px;
    padding: 20px 14px 38px;
  }

  .coming-soon-logo {
    margin-bottom: 10px;
    max-width: 290px;
  }

  .coming-soon-panel {
    max-width: 100%;
    text-align: left;
  }

  .coming-soon-panel .eyebrow,
  .coming-soon-panel p,
  .coming-soon-panel h1 {
    margin-left: 0;
    margin-right: 0;
  }

  .coming-soon-panel h1 {
    font-size: clamp(40px, 12.5vw, 56px);
  }

  .coming-soon-actions .button {
    min-height: 50px;
    width: 100%;
  }

  .coming-soon-actions {
    max-width: 100%;
    width: 100%;
  }

  .coming-soon-contact {
    align-items: stretch;
    display: grid;
    justify-content: stretch;
    text-align: center;
  }

  .coming-soon > section,
  .coming-soon-proof,
  .storefront-section,
  .shopping-guides,
  .trust-cards,
  .pricing-note,
  .coming-soon-products,
  .inventory-section {
    max-width: calc(100dvw - 28px);
    width: 100%;
  }

  .coming-soon-logo,
  .coming-soon-panel,
  .coming-soon-actions,
  .coming-soon-contact {
    max-width: calc(100dvw - 28px);
  }

  .coming-soon-proof,
  .storefront-section,
  .shopping-guides,
  .trust-cards,
  .pricing-note,
  .coming-soon-products,
  .inventory-section {
    max-width: none;
  }

  .coming-soon-proof {
    padding: 22px 0;
  }

  .coming-soon-proof h2,
  .storefront-heading h2,
  .inventory-heading h2 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1;
  }

  .shop-paths {
    margin-left: -14px;
    margin-right: -14px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .trust-cards article,
  .shop-paths a,
  .shopping-guides,
  .guide-grid article,
  .pricing-note,
  .coming-soon-products article,
  .inventory-card {
    border-radius: 8px;
  }

  .coming-soon-products article {
    grid-template-rows: 168px auto auto auto 1fr;
    min-height: 356px;
  }

  .coming-soon-products img {
    height: 156px;
  }

  .price-compare div,
  .price-compare a {
    min-height: 38px;
  }

  .inventory-heading {
    gap: 10px;
  }

  .inventory-promise {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
  }

  .inventory-promise div {
    padding: 13px 14px;
  }

  .inventory-tools {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 10;
  }

  .inventory-search {
    padding: 10px 10px 0;
  }

  .inventory-search input {
    min-height: 52px;
  }

  .inventory-summary {
    align-items: start;
    display: grid;
    gap: 6px;
  }

  .inventory-summary a {
    font-size: 12px;
  }

  .inventory-filters {
    border-radius: 0 0 8px 8px;
    overflow-x: auto;
  }

  .inventory-filter {
    min-width: 68px;
  }

  .inventory-card-visual {
    min-height: 216px;
  }

  .inventory-card-visual img {
    max-height: 198px;
  }

  .inventory-card > strong {
    font-size: 22px;
  }

  .inventory-card small {
    font-size: 13px;
  }

  .inventory-card-meta div,
  .inventory-retailers a,
  .inventory-retailers div {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .inventory-retailers a,
  .inventory-retailers div {
    min-height: 42px;
  }

  .inventory-card-action {
    min-height: 46px;
  }

  .inventory-detail-trigger {
    min-height: 44px;
  }

  .product-detail-modal {
    align-items: end;
    padding: 0;
  }

  .product-detail-shell {
    border-radius: 14px 14px 0 0;
    grid-template-columns: 1fr;
    max-height: 92vh;
    width: 100%;
  }

  .product-detail-close {
    right: 12px;
    top: 12px;
  }

  .product-detail-media {
    min-height: 260px;
    padding: 26px 18px 14px;
  }

  .product-detail-media img {
    max-height: 230px;
  }

  .product-detail-body {
    max-height: 60vh;
    padding: 22px 18px 28px;
  }

  .product-detail-body h2 {
    font-size: clamp(32px, 9vw, 42px);
  }

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

  .product-detail-actions {
    grid-template-columns: 1fr;
  }
}

.mobile-bar {
  align-items: center;
  background: rgba(251, 250, 247, 0.92);
  border: 1px solid var(--line);
  border-radius: 999px;
  bottom: 16px;
  box-shadow: 0 18px 50px rgba(23, 21, 19, 0.12);
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(3, 1fr);
  left: 16px;
  padding: 5px;
  position: fixed;
  right: 16px;
  z-index: 30;
}

.mobile-bar a,
.mobile-bar button {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  padding: 12px 10px;
  text-align: center;
}

.mobile-bar a:first-child {
  background: var(--ink);
  color: var(--paper);
}

.empty-state {
  color: var(--muted);
  font-weight: 650;
  margin: 0;
  padding: 24px 0;
}

.cart-backdrop {
  background: rgba(23, 21, 19, 0.32);
  inset: 0;
  position: fixed;
  z-index: 40;
}

.cart-drawer {
  background: var(--paper);
  border-left: 1px solid var(--line);
  bottom: 0;
  box-shadow: -20px 0 80px rgba(23, 21, 19, 0.18);
  display: flex;
  flex-direction: column;
  max-width: 440px;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(105%);
  transition: transform 220ms ease;
  width: min(100%, 440px);
  z-index: 50;
}

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

.cart-header {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 20px;
}

.cart-header h2,
.checkout-form h2 {
  font-size: 28px;
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
}

.cart-items {
  display: grid;
  gap: 12px;
  overflow: auto;
  padding: 16px;
}

.cart-empty {
  color: var(--muted);
  margin: 0;
  padding: 28px 4px;
}

.cart-line {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: 72px 1fr;
  padding: 10px;
}

.cart-line img {
  aspect-ratio: 1;
  display: block;
  object-fit: contain;
  width: 100%;
}

.cart-line h3 {
  font-size: 15px;
  letter-spacing: 0;
  line-height: 1.15;
  margin-bottom: 6px;
}

.cart-line p {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.cart-line-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.qty-control {
  align-items: center;
  background: var(--soft);
  border-radius: 999px;
  display: inline-flex;
  gap: 9px;
  padding: 4px;
}

.qty-control button {
  align-items: center;
  background: var(--white);
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  font-weight: 800;
  height: 26px;
  justify-content: center;
  width: 26px;
}

.qty-control span {
  font-size: 12px;
  font-weight: 800;
  min-width: 14px;
  text-align: center;
}

.cart-price {
  font-size: 14px;
  font-weight: 800;
}

.cart-summary {
  background: var(--white);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding: 16px;
}

.cart-summary div {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.cart-summary span,
.cart-summary p {
  color: var(--muted);
  font-size: 13px;
}

.cart-summary p {
  margin: 2px 0 4px;
}

.checkout-dialog {
  background: transparent;
  border: 0;
  max-width: 420px;
  padding: 16px;
  width: min(100%, 420px);
}

.checkout-dialog::backdrop {
  background: rgba(23, 21, 19, 0.34);
}

.checkout-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 24px 90px rgba(23, 21, 19, 0.22);
  display: grid;
  gap: 14px;
  padding: 20px;
  position: relative;
}

.checkout-form .close-button {
  position: absolute;
  right: 14px;
  top: 14px;
}

.checkout-form h2 {
  margin-bottom: 6px;
}

select {
  appearance: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  min-height: 52px;
  outline: none;
  padding: 0 14px;
  width: 100%;
}

.toast {
  background: var(--ink);
  border-radius: 999px;
  bottom: 78px;
  color: var(--paper);
  font-size: 13px;
  font-weight: 750;
  left: 50%;
  padding: 12px 16px;
  position: fixed;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 70;
}

@media (min-width: 560px) {
  .coming-soon-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-paths {
    grid-auto-columns: minmax(210px, 1fr);
  }

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

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

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

  .inventory-promise div {
    border-bottom: 0;
    border-right: 1px solid var(--line);
    display: grid;
    justify-content: stretch;
  }

  .inventory-promise div:last-child {
    border-right: 0;
  }

  .inventory-promise span {
    text-align: left;
  }
}

@media (min-width: 760px) {
  html {
    scroll-padding-top: 78px;
  }

  .shop-header {
    grid-template-columns: minmax(190px, 0.45fr) auto minmax(260px, 0.55fr);
    padding: 12px max(24px, calc((100vw - 1180px) / 2));
  }

  .shop-header-nav {
    justify-content: center;
  }

  .shop-header-nav a {
    font-size: 13px;
    padding: 8px 12px;
  }

  .header-search input {
    min-height: 40px;
  }

  .coming-soon-page {
    padding-top: 65px;
  }

  .site-header {
    padding: 18px 32px;
  }

  .desktop-nav {
    display: flex;
  }

  .hero {
    align-items: center;
    display: grid;
    gap: 42px;
    grid-template-columns: minmax(0, 0.88fr) minmax(340px, 0.72fr);
    min-height: calc(100vh - 70px);
    padding: 54px 32px;
  }

  h1 {
    font-size: clamp(54px, 7vw, 96px);
    max-width: 11ch;
  }

  .hero-copy {
    font-size: 19px;
    max-width: 31rem;
  }

  .hero-actions {
    display: flex;
    max-width: 360px;
  }

  .hero-actions .button {
    flex: 1;
  }

  .coming-soon {
    padding: 48px 32px;
  }

  .coming-soon-actions {
    display: flex;
    justify-content: center;
  }

  .coming-soon-actions .button {
    min-width: 148px;
  }

  .coming-soon-proof {
    align-items: end;
    grid-template-columns: minmax(0, 0.7fr) minmax(320px, 0.85fr);
  }

  .storefront-heading.split {
    grid-template-columns: 1fr auto;
  }

  .shop-paths {
    grid-auto-flow: initial;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow: visible;
  }

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

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

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

  .inventory-tools {
    align-items: center;
    grid-template-columns: minmax(280px, 0.58fr) minmax(320px, 0.42fr);
  }

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

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

  .review-tools {
    align-items: center;
    grid-template-columns: minmax(280px, 0.58fr) minmax(320px, 0.42fr);
  }

  .review-card {
    align-items: center;
    grid-template-columns: 180px 1fr;
  }

  .review-card-visual {
    aspect-ratio: 1 / 1;
  }

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

  .hero-visual {
    margin: 0;
  }

  .trust-strip {
    justify-content: center;
  }

  .section,
  .gallery-hero,
  .brand-kit-hero {
    padding-left: 32px;
    padding-right: 32px;
  }

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

  .shop-tools {
    align-items: center;
    grid-template-columns: minmax(280px, 0.55fr) minmax(320px, 0.45fr);
  }

  .product-card {
    grid-template-columns: 138px 1fr;
    min-height: 166px;
  }

  .product-image img {
    max-height: 140px;
  }

  .why {
    display: grid;
    gap: 42px;
    grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.75fr);
  }

  .why p {
    margin-bottom: 0;
  }

  .proof-list {
    align-self: center;
  }

  .concierge {
    align-items: end;
    display: grid;
    gap: 36px;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  }

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

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

  .kit-card.wide,
  .type-card {
    grid-column: span 2;
  }

  .mobile-bar {
    display: none;
  }

  .asset-section:last-of-type {
    padding-bottom: 34px;
  }
}

@media (min-width: 1120px) {
  .site-header,
  .hero,
  .section,
  .gallery-hero,
  .brand-kit-hero {
    padding-left: max(48px, calc((100vw - 1180px) / 2));
    padding-right: max(48px, calc((100vw - 1180px) / 2));
  }

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

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

  .product-card {
    display: flex;
    flex-direction: column;
  }

  .product-image {
    aspect-ratio: 1 / 0.9;
  }

  .product-info {
    flex: 1;
  }

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

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

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

  .kit-card.wide {
    grid-column: span 2;
  }

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