:root {
  --bg: #120d0a;
  --surface: #1a130f;
  --surface-strong: #241912;
  --surface-soft: #2f2118;
  --card: rgba(31, 22, 17, 0.8);
  --card-strong: rgba(18, 13, 10, 0.88);
  --line: rgba(205, 171, 118, 0.22);
  --line-strong: rgba(205, 171, 118, 0.46);
  --text: #efe3d2;
  --muted: #d3c2ad;
  --soft: #b89f82;
  --accent: #c7a16a;
  --accent-deep: #9f7241;
  --accent-pale: #f0d9b7;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  --radius: 28px;
  --radius-small: 18px;
  --container: min(1180px, calc(100% - 2rem));
  --header-height: 92px;
  --transition: 280ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Mulish", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(131, 90, 45, 0.18), transparent 32%),
    linear-gradient(180deg, #120d0a 0%, #17100c 35%, #0f0a08 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(199, 161, 106, 0.2), transparent);
  pointer-events: none;
  z-index: 0;
}

body::before {
  left: 1.2rem;
}

body::after {
  right: 1.2rem;
}

main,
section,
.container,
.hero-grid > *,
.story-grid > *,
.heritage-grid > *,
.presence-grid > *,
.contact-grid > *,
.collection-grid > *,
.craft-values > *,
.western-mosaic > * {
  min-width: 0;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

body.menu-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

.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;
}

.site-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 4px 4px;
  mix-blend-mode: soft-light;
  z-index: 0;
}

.container {
  width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
  transition:
    background-color var(--transition),
    box-shadow var(--transition),
    backdrop-filter var(--transition),
    border-color var(--transition);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(18, 13, 10, 0.78);
  backdrop-filter: blur(18px);
  border-color: var(--line);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.brand-logo {
  width: 52px;
  height: 52px;
  padding: 0.28rem;
  border-radius: 50%;
  border: 1px solid rgba(240, 217, 183, 0.2);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03)),
    rgba(16, 11, 8, 0.86);
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}

.brand-copy {
  display: inline-flex;
  flex-direction: column;
  gap: 0.12rem;
}

.brand-mark,
.brand-name {
  font-family: "Cormorant Garamond", serif;
}

.brand-mark {
  font-size: 1.02rem;
  color: var(--accent-pale);
}

.brand-name {
  font-size: 1.42rem;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  position: relative;
  font-size: 0.93rem;
  color: rgba(239, 227, 210, 0.82);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  border-radius: 999px;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.section {
  position: relative;
  padding: 7.5rem 0;
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(86%, 1120px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(199, 161, 106, 0.24), transparent);
  opacity: 0.55;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 3.2rem;
}

.section-heading.narrow {
  max-width: 680px;
}

.section-heading h2,
.section-heading p:last-child {
  max-width: 60rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0 0 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-pale);
}

.eyebrow::before {
  content: "";
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

h1,
h2,
h3,
blockquote {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-wrap: balance;
  hyphens: auto;
}

h1 {
  max-width: 12ch;
  font-size: clamp(2.9rem, 5.2vw, 5.4rem);
  margin-bottom: 1.2rem;
}

h2 {
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.5rem, 2vw, 2rem);
  margin-bottom: 0.85rem;
}

p {
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-size: 1.02rem;
  hyphens: auto;
  overflow-wrap: anywhere;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 54px;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.84rem;
  transition:
    transform var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #8c6034 100%);
  color: #120d0a;
  box-shadow: 0 14px 30px rgba(159, 114, 65, 0.25);
}

.button-primary:hover {
  box-shadow: 0 18px 34px rgba(159, 114, 65, 0.3);
}

.button-secondary {
  border-color: rgba(239, 227, 210, 0.25);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.button-secondary:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.08);
}

.button img,
.social-link img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.button[disabled],
.storefront-action[disabled] {
  opacity: 0.56;
  cursor: not-allowed;
  pointer-events: none;
}

.section-storefront {
  padding-top: 5.3rem;
  background:
    radial-gradient(circle at center top, rgba(199, 161, 106, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 18%);
}

.storefront-heading {
  margin-bottom: 2.2rem;
}

.storefront-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.storefront-pill {
  min-width: min(100%, 250px);
  padding: 1rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(42, 28, 20, 0.72), rgba(24, 17, 13, 0.86));
}

.storefront-pill-label {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--soft);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.storefront-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.storefront-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.storefront-placeholder,
.storefront-empty {
  grid-column: 1 / -1;
  padding: 1.8rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(42, 28, 20, 0.72), rgba(24, 17, 13, 0.86));
  text-align: center;
}

.storefront-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(34, 24, 18, 0.78), rgba(17, 12, 9, 0.94));
  box-shadow: var(--shadow);
  content-visibility: auto;
  contain-intrinsic-size: 640px;
}

.storefront-card-media {
  position: relative;
  display: block;
  aspect-ratio: 0.88;
  overflow: hidden;
}

.storefront-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.18));
}

.storefront-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.storefront-card:hover .storefront-card-media img {
  transform: scale(1.04);
}

.storefront-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.2rem;
}

.storefront-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.storefront-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(240, 217, 183, 0.1);
  color: var(--accent-pale);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.storefront-card-title {
  margin-bottom: 0.65rem;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.storefront-card-title a {
  transition: color var(--transition);
}

.storefront-card-title a:hover {
  color: var(--accent-pale);
}

.storefront-card-summary {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.storefront-card-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  margin-top: auto;
  margin-bottom: 1rem;
}

.storefront-price-current {
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 700;
}

.storefront-price-regular {
  color: var(--soft);
  font-size: 0.92rem;
  text-decoration: line-through;
}

.storefront-card-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

.storefront-action {
  width: 100%;
}

.storefront-card-note {
  margin-top: 0.8rem;
  color: var(--soft);
  font-size: 0.82rem;
}

.floating-cart {
  position: fixed;
  left: 1.2rem;
  bottom: 1.2rem;
  width: min(92vw, 360px);
  z-index: 72;
}

.floating-cart-trigger,
.floating-cart-panel {
  border: 1px solid rgba(240, 217, 183, 0.14);
  background:
    linear-gradient(180deg, rgba(18, 13, 10, 0.92), rgba(12, 8, 6, 0.94)),
    radial-gradient(circle at top, rgba(199, 161, 106, 0.1), transparent 56%);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
}

.floating-cart-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.8rem 0.95rem;
  border-radius: 22px;
  color: var(--text);
  cursor: pointer;
}

.floating-cart-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(240, 217, 183, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--accent-pale);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-cart-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.floating-cart-copy strong,
.floating-cart-copy small {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.floating-cart-copy small {
  color: var(--soft);
}

.floating-cart-badge {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  padding: 0 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #8c6034);
  color: #120d0a;
  font-weight: 700;
}

.floating-cart-panel {
  margin-top: 0.75rem;
  padding: 1rem;
  border-radius: var(--radius);
}

.floating-cart-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.floating-cart-label {
  margin-bottom: 0.35rem;
  color: var(--accent-pale);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.floating-cart-head h3 {
  font-size: 1.55rem;
}

.floating-cart-close {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(240, 217, 183, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

.floating-cart-items {
  display: grid;
  gap: 0.8rem;
  max-height: min(46vh, 420px);
  overflow-y: auto;
  padding-right: 0.2rem;
}

.floating-cart-item,
.floating-cart-empty {
  padding: 0.95rem;
  border-radius: var(--radius-small);
  border: 1px solid rgba(240, 217, 183, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.floating-cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 0.8rem;
  align-items: center;
}

.floating-cart-item img {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  object-fit: cover;
}

.floating-cart-item-copy strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--text);
}

.floating-cart-item-copy span {
  display: block;
  color: var(--soft);
  font-size: 0.86rem;
}

.floating-cart-item-meta {
  display: grid;
  gap: 0.55rem;
}

.floating-cart-quantity {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.28rem 0.42rem;
  border: 1px solid rgba(240, 217, 183, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.floating-cart-quantity button {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(240, 217, 183, 0.12);
  border-radius: 50%;
  background: rgba(14, 10, 8, 0.68);
  color: var(--text);
  font-size: 1rem;
  cursor: pointer;
  transition: background-color var(--transition), border-color var(--transition), transform var(--transition);
}

.floating-cart-quantity button:hover:not(:disabled) {
  background: rgba(51, 35, 25, 0.9);
  border-color: rgba(240, 217, 183, 0.28);
  transform: translateY(-1px);
}

.floating-cart-quantity button:disabled {
  opacity: 0.45;
  cursor: wait;
}

.floating-cart-quantity strong {
  min-width: 1.25rem;
  text-align: center;
  color: var(--text);
  font-size: 0.92rem;
}

.floating-cart-remove {
  border: none;
  background: transparent;
  color: var(--accent-pale);
  cursor: pointer;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  justify-self: end;
}

.floating-cart-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(240, 217, 183, 0.08);
}

.floating-cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.floating-cart-total span {
  color: var(--soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.floating-cart-total strong {
  color: var(--text);
  font-size: 1.12rem;
}

.floating-cart-note {
  margin: 0 0 1rem;
  color: var(--soft);
  font-size: 0.84rem;
}

.floating-cart-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.floating-cart-actions .button[aria-disabled="true"] {
  opacity: 0.48;
  pointer-events: none;
}

.shop-page .site-header {
  backdrop-filter: blur(18px);
}

.shop-hero {
  position: relative;
  min-height: 86svh;
  display: flex;
  align-items: end;
  padding: 8.5rem 0 4rem;
  background-image: var(--section-bg);
  background-size: cover;
  background-position: center;
}

.shop-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 8, 6, 0.42), rgba(11, 8, 6, 0.92)),
    radial-gradient(circle at 20% 20%, rgba(199, 161, 106, 0.12), transparent 38%);
}

.shop-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.7fr);
  gap: 2rem;
  align-items: end;
}

.shop-hero-copy p {
  max-width: 46rem;
  font-size: 1.06rem;
}

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

.shop-hero-card {
  padding: 2rem;
  border: 1px solid rgba(240, 217, 183, 0.12);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(18, 13, 10, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.shop-hero-card::before,
.shop-curation-card::before,
.shop-panel::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: calc(var(--radius) - 10px);
  border: 1px solid rgba(240, 217, 183, 0.06);
  pointer-events: none;
}

.shop-hero-card h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.shop-hero-card p {
  color: var(--soft);
}

.shop-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.shop-hero-metrics div {
  padding: 1rem 0.9rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(240, 217, 183, 0.08);
}

.shop-hero-metrics span {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--soft);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.shop-hero-metrics strong {
  color: var(--text);
  font-size: 1.25rem;
}

.shop-curation {
  position: relative;
  margin-top: -2.8rem;
  padding-bottom: 1.2rem;
  z-index: 2;
}

.shop-curation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.9fr;
  gap: 1rem;
}

.shop-curation-card {
  position: relative;
  min-height: 100%;
  padding: 1.55rem;
  border-radius: var(--radius);
  border: 1px solid rgba(240, 217, 183, 0.1);
  background:
    linear-gradient(180deg, rgba(28, 20, 15, 0.94), rgba(15, 11, 8, 0.92)),
    radial-gradient(circle at top right, rgba(199, 161, 106, 0.12), transparent 42%);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.shop-curation-card span {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--soft);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.shop-curation-card h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.55rem, 2.1vw, 2rem);
}

.shop-curation-card p {
  margin: 0;
  color: rgba(239, 227, 210, 0.82);
}

.shop-curation-quote {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.shop-curation-quote p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  line-height: 1.12;
  color: var(--accent-pale);
}

.section-shop {
  padding-top: 2rem;
}

.shop-shell {
  display: grid;
  grid-template-columns: minmax(270px, 0.34fr) minmax(0, 1fr);
  gap: 1.35rem;
  align-items: start;
}

.shop-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 1rem);
  display: grid;
  gap: 1rem;
}

.shop-panel {
  padding: 1.2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(240, 217, 183, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.shop-panel-soft {
  background: linear-gradient(180deg, rgba(199, 161, 106, 0.08), rgba(255, 255, 255, 0.03));
}

.shop-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.shop-panel-label,
.shop-toolbar-label {
  margin-bottom: 0.75rem;
  color: var(--accent-pale);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.shop-clear-button {
  border: none;
  background: transparent;
  color: var(--accent-pale);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.shop-search input,
.shop-select select {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(240, 217, 183, 0.12);
  border-radius: 18px;
  background: rgba(14, 10, 8, 0.72);
  color: var(--text);
  font: inherit;
}

.shop-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.shop-chip {
  padding: 0.6rem 0.95rem;
  border: 1px solid rgba(240, 217, 183, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  cursor: pointer;
  transition: background-color var(--transition), border-color var(--transition), transform var(--transition);
}

.shop-chip:hover,
.shop-chip.is-active {
  background: rgba(199, 161, 106, 0.16);
  border-color: rgba(240, 217, 183, 0.3);
  transform: translateY(-1px);
}

.shop-chip-list-soft .shop-chip:hover,
.shop-chip-list-soft .shop-chip.is-active {
  background: rgba(255, 255, 255, 0.1);
}

.shop-feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
  color: var(--soft);
}

.shop-feature-list li {
  position: relative;
  padding-left: 1.1rem;
}

.shop-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
}

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

.shop-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.25rem;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(240, 217, 183, 0.08);
  background:
    linear-gradient(180deg, rgba(28, 20, 15, 0.82), rgba(15, 11, 8, 0.9)),
    radial-gradient(circle at top right, rgba(199, 161, 106, 0.09), transparent 46%);
}

.shop-toolbar-copy strong {
  display: block;
  color: var(--text);
  font-size: 1.08rem;
}

.shop-toolbar-controls {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.shop-select span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--soft);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.shop-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(240, 217, 183, 0.12);
  background: rgba(14, 10, 8, 0.72);
  color: var(--text);
}

.shop-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
  min-height: 1.5rem;
}

.shop-active-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(199, 161, 106, 0.12);
  border: 1px solid rgba(240, 217, 183, 0.12);
  color: var(--text);
  font-size: 0.82rem;
}

.shop-active-pill button {
  border: none;
  background: transparent;
  color: var(--accent-pale);
  cursor: pointer;
  font-size: 0.86rem;
}

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

.storefront-grid-shop .storefront-card {
  background:
    linear-gradient(180deg, rgba(30, 21, 16, 0.92), rgba(18, 13, 10, 0.96)),
    radial-gradient(circle at top, rgba(199, 161, 106, 0.08), transparent 56%);
  border-color: rgba(240, 217, 183, 0.1);
}

.storefront-grid-shop .storefront-card-media {
  aspect-ratio: 0.88;
}

.storefront-grid-shop .storefront-card-summary {
  min-height: 4.8rem;
}

.shop-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.product-page .site-header {
  backdrop-filter: blur(18px);
}

.product-hero {
  padding: calc(var(--header-height) + 3.6rem) 0 3rem;
}

.product-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.6rem;
  color: var(--soft);
  font-size: 0.9rem;
}

.product-breadcrumb strong {
  color: var(--accent-pale);
  font-weight: 600;
}

.product-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 1.8rem;
  align-items: start;
}

.product-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-width: min(980px, 100%);
}

.product-gallery,
.product-copy,
.product-story-card {
  min-width: 0;
}

.product-gallery {
  position: sticky;
  top: calc(var(--header-height) + 1rem);
}

.product-main-frame {
  aspect-ratio: 0.9;
  margin-bottom: 1rem;
  cursor: zoom-in;
}

.product-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

.product-zoom-lens {
  position: absolute;
  top: 0;
  left: 0;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(240, 217, 183, 0.32);
  background-repeat: no-repeat;
  background-size: 800%;
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease;
  z-index: 3;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.product-thumb {
  padding: 0;
  border: 1px solid rgba(240, 217, 183, 0.12);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.product-thumb.is-active,
.product-thumb:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 217, 183, 0.28);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.product-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  cursor: pointer;
}

.product-copy {
  padding: 2rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(240, 217, 183, 0.1);
  background:
    linear-gradient(180deg, rgba(28, 20, 15, 0.92), rgba(15, 11, 8, 0.96)),
    radial-gradient(circle at top right, rgba(199, 161, 106, 0.12), transparent 42%);
  box-shadow: var(--shadow);
}

.product-copy h1 {
  max-width: 11ch;
  font-size: clamp(1.95rem, 3vw, 3.05rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 0.95rem;
}

.product-hero-note {
  margin: 0 0 0.6rem;
  color: var(--soft);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.product-utility-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1rem 0 0.2rem;
}

.product-back-link,
.product-jump-link {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(240, 217, 183, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}

.product-back-link:hover,
.product-jump-link:hover {
  color: var(--text);
  border-color: rgba(240, 217, 183, 0.25);
  transform: translateY(-1px);
}

.product-price-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin: 1.2rem 0 1rem;
}

.product-price {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.9rem);
  color: var(--accent-pale);
}

.product-price-regular {
  color: rgba(239, 227, 210, 0.42);
  text-decoration: line-through;
}

.product-stock {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(240, 217, 183, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 0.86rem;
}

.product-stock-detail {
  margin: -0.2rem 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.product-short,
.product-description {
  color: rgba(239, 227, 210, 0.86);
}

.product-short {
  padding-bottom: 1.25rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid rgba(240, 217, 183, 0.08);
}

.product-short p:last-child {
  margin-bottom: 0;
}

.product-taxonomies {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.4rem 0 1.6rem;
}

.product-taxonomies > div {
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(240, 217, 183, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.product-taxonomies > div > span,
.product-action-label,
.product-meta-grid span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--soft);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-terms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.product-term {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(240, 217, 183, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.product-term-muted {
  color: var(--soft);
}

.product-action-card,
.product-story-card {
  padding: 1.35rem;
  border-radius: var(--radius);
  border: 1px solid rgba(240, 217, 183, 0.1);
  background:
    linear-gradient(180deg, rgba(26, 19, 15, 0.88), rgba(17, 12, 9, 0.94)),
    radial-gradient(circle at top, rgba(199, 161, 106, 0.08), transparent 54%);
}

.product-action-card {
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.18);
}

.product-action-card::before,
.product-story-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: calc(var(--radius) - 10px);
  border: 1px solid rgba(240, 217, 183, 0.05);
  pointer-events: none;
}

.product-quantity-wrap {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.product-quantity-wrap input {
  width: min(140px, 100%);
  padding: 0.9rem 1rem;
  border: 1px solid rgba(240, 217, 183, 0.12);
  border-radius: 18px;
  background: rgba(14, 10, 8, 0.72);
  color: var(--text);
}

.product-action-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.product-service-list {
  display: grid;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.product-service-list li {
  position: relative;
  padding-left: 1rem;
  color: rgba(239, 227, 210, 0.78);
  font-size: 0.92rem;
}

.product-service-list li::before {
  content: "";
  position: absolute;
  top: 0.65rem;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(199, 161, 106, 0.9);
  box-shadow: 0 0 0 4px rgba(199, 161, 106, 0.12);
}

.product-summary-note {
  margin: 1rem 0 0;
  color: rgba(239, 227, 210, 0.76);
}

.product-share-block {
  margin-top: 1.2rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(240, 217, 183, 0.08);
}

.product-share-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.product-share-link {
  width: 100%;
}

.product-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.1rem;
}

.product-meta-grid div {
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(240, 217, 183, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.product-meta-grid strong {
  display: block;
}

.product-story {
  padding-top: 1rem;
}

.product-story-card h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
}

.product-story-note {
  position: sticky;
  top: calc(var(--header-height) + 1rem);
}

.prose > *:first-child {
  margin-top: 0;
}

.prose > *:last-child {
  margin-bottom: 0;
}

.product-description,
.product-short {
  overflow-wrap: anywhere;
}

.product-description h2,
.product-description h3,
.product-description h4 {
  margin: 1.3rem 0 0.7rem;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.product-description p,
.product-short p,
.product-description li {
  color: rgba(239, 227, 210, 0.86);
}

.product-description ul,
.product-description ol {
  padding-left: 1.2rem;
}

.product-description hr {
  border: 0;
  border-top: 1px solid rgba(240, 217, 183, 0.1);
  margin: 1.5rem 0;
}

.product-description a {
  color: var(--accent-pale);
  text-decoration: underline;
  text-decoration-color: rgba(240, 217, 183, 0.3);
}

.product-description img,
.product-description video,
.product-description iframe,
.product-description .wp-video,
.product-description .wp-video-native,
.product-description figure,
.product-short img,
.product-short video,
.product-short iframe,
.product-short .wp-video,
.product-short .wp-video-native,
.product-short figure {
  width: 100% !important;
  max-width: 100% !important;
}

.product-description img,
.product-short img,
.product-description video,
.product-short video,
.product-description iframe,
.product-short iframe,
.product-description .wp-video,
.product-short .wp-video,
.product-description .wp-video-native,
.product-short .wp-video-native {
  display: block;
  height: auto !important;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(240, 217, 183, 0.08);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.product-description .wp-video,
.product-short .wp-video,
.product-description .wp-video-native,
.product-short .wp-video-native {
  margin: 1.2rem 0;
}

.product-description iframe,
.product-short iframe {
  min-height: 340px;
}

.product-gallery-section {
  padding-top: 0;
}

.product-page main[data-product-page] {
  padding-bottom: 4rem;
}

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

.product-gallery-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(240, 217, 183, 0.08);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.product-gallery-card.is-active,
.product-gallery-card:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 217, 183, 0.24);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.product-gallery-card img {
  width: 100%;
  aspect-ratio: 0.86;
  object-fit: cover;
  cursor: pointer;
}

.product-error-state {
  padding-top: calc(var(--header-height) + 4rem);
}

.frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  background: var(--surface-soft);
}

.frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: calc(var(--radius) - 10px);
  pointer-events: none;
  z-index: 2;
}

.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frame img,
.mosaic-card img,
.editorial-card img,
.carousel-slide img {
  cursor: zoom-in;
}

.background-section,
.parallax-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.background-section::before,
.parallax-section::before {
  content: "";
  position: absolute;
  inset: -4%;
  background-image: var(--section-bg);
  background-size: cover;
  background-position: center;
  z-index: -3;
}

.background-section::before {
  transform: scale(1.06);
}

.parallax-section::before {
  transform: translate3d(0, var(--parallax-shift, 0px), 0) scale(1.06);
  will-change: transform;
}

.background-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 8, 6, 0.9), rgba(12, 8, 6, 0.82)),
    linear-gradient(90deg, rgba(12, 8, 6, 0.24), rgba(12, 8, 6, 0.08) 42%, rgba(12, 8, 6, 0.22)),
    radial-gradient(circle at top, rgba(199, 161, 106, 0.12), transparent 42%);
  z-index: -2;
}

.hero {
  min-height: 100svh;
  display: flex;
  align-items: end;
  padding: calc(var(--header-height) + 4rem) 0 4.5rem;
}

.hero-overlay,
.manifesto-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 6, 5, 0.9) 8%, rgba(9, 6, 5, 0.6) 54%, rgba(9, 6, 5, 0.84) 100%),
    linear-gradient(180deg, rgba(19, 13, 10, 0.3) 0%, rgba(19, 13, 10, 0.82) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, rgba(15, 10, 8, 0.96));
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 2rem;
  align-items: end;
}

.hero-text {
  max-width: 38rem;
  font-size: 1.08rem;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(240, 217, 183, 0.18);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

.hero-seal img {
  width: 86px;
  height: 86px;
  padding: 0.3rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03)),
    rgba(16, 11, 8, 0.72);
  object-fit: contain;
  opacity: 0.9;
}

.hero-card {
  justify-self: end;
  max-width: 390px;
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(29, 20, 15, 0.76), rgba(15, 10, 8, 0.92)),
    radial-gradient(circle at top, rgba(199, 161, 106, 0.15), transparent 60%);
  border: 1px solid rgba(240, 217, 183, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.card-label {
  margin-bottom: 0.8rem;
  color: var(--accent-pale);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero-card-quote {
  margin-bottom: 1.6rem;
  font-size: 1.08rem;
  color: var(--text);
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.hero-card-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-card-meta span,
.story-milestones span,
.collection-index {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--soft);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-card-meta strong {
  display: block;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text);
  overflow-wrap: anywhere;
}

.section-story {
  padding-top: 6rem;
}

.story-grid,
.heritage-grid,
.presence-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
}

.background-section .story-copy,
.background-section .heritage-copy,
.background-section .presence-copy,
.background-section .contact-copy,
.background-section .section-heading {
  padding: clamp(1.3rem, 2vw, 2rem);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(14, 10, 8, 0.84), rgba(14, 10, 8, 0.64));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

.background-section .section-heading {
  margin-left: auto;
  margin-right: auto;
}

.story-visual {
  position: relative;
  padding: 0 2rem 2rem 0;
}

.frame-tall {
  aspect-ratio: 0.86;
}

.frame-floating {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(44%, 260px);
  aspect-ratio: 0.7;
}

.story-milestones {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.story-milestones article,
.collection-card,
.value-card,
.heritage-plaque {
  padding: 1.4rem;
  border-radius: var(--radius-small);
  background:
    linear-gradient(180deg, rgba(42, 28, 20, 0.72), rgba(24, 17, 13, 0.86));
  border: 1px solid var(--line);
  overflow: hidden;
}

.story-milestones p,
.collection-card p,
.value-card p {
  margin: 0;
  font-size: 0.96rem;
}

.section-heritage {
  background:
    linear-gradient(180deg, rgba(52, 34, 24, 0.2), transparent 40%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.14));
}

.heritage-visual {
  position: relative;
}

.frame-heritage {
  aspect-ratio: 0.9;
}

.heritage-plaque {
  position: absolute;
  left: -1.2rem;
  bottom: 1.2rem;
  max-width: 280px;
  backdrop-filter: blur(12px);
}

.heritage-plaque p {
  margin: 0;
  color: var(--text);
}

.section-craft {
  background:
    linear-gradient(180deg, rgba(111, 74, 39, 0.12), transparent 24%),
    linear-gradient(180deg, transparent 70%, rgba(0, 0, 0, 0.18));
}

.section-craft::after {
  background:
    linear-gradient(180deg, rgba(8, 6, 5, 0.9), rgba(8, 6, 5, 0.82)),
    linear-gradient(90deg, rgba(8, 6, 5, 0.28), rgba(8, 6, 5, 0.14) 48%, rgba(8, 6, 5, 0.28)),
    radial-gradient(circle at top, rgba(199, 161, 106, 0.1), transparent 42%);
}

.manifest-line {
  position: relative;
  max-width: 980px;
  margin: 0 auto 3rem;
  padding: 2rem 2.2rem;
  font-size: clamp(2.2rem, 4vw, 4rem);
  text-align: center;
  color: var(--accent-pale);
  text-shadow: 0 14px 28px rgba(0, 0, 0, 0.34);
  border-radius: var(--radius);
  border: 1px solid rgba(240, 217, 183, 0.12);
  background:
    linear-gradient(180deg, rgba(14, 10, 8, 0.82), rgba(14, 10, 8, 0.58));
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
}

.manifest-line::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: calc(var(--radius) - 10px);
  border: 1px solid rgba(240, 217, 183, 0.08);
  pointer-events: none;
}

.craft-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-bottom: 1.4rem;
}

.value-card {
  min-height: 220px;
}

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

.craft-gallery .frame {
  aspect-ratio: 0.78;
}

.section-collections {
  background:
    radial-gradient(circle at right top, rgba(199, 161, 106, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(11, 8, 6, 0.3), transparent 26%);
}

.section-product-carousel {
  padding-top: 4.5rem;
  background:
    radial-gradient(circle at center, rgba(199, 161, 106, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 20%);
}

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

.section-western-mosaic {
  padding-top: 4.5rem;
}

.western-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 200px;
  gap: 1rem;
}

.mosaic-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-small);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  background: rgba(0, 0, 0, 0.18);
}

.mosaic-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 9, 7, 0.08), rgba(13, 9, 7, 0.42));
}

.mosaic-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.mosaic-card:hover img {
  transform: scale(1.05);
}

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

.mosaic-card-tall {
  grid-row: span 2;
}

.collection-card {
  min-height: 260px;
  position: relative;
}

.collection-card::after {
  content: "";
  position: absolute;
  inset: auto 1.4rem 1.2rem;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0.6;
}

.section-editorial {
  padding-top: 2rem;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 1.2rem;
}

.editorial-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.editorial-card-large {
  min-height: 640px;
}

.editorial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(10, 7, 6, 0.88));
  z-index: 1;
}

.editorial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.editorial-card figcaption {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 2;
  font-size: 0.98rem;
  color: var(--text);
}

.editorial-card:hover img {
  transform: scale(1.04);
}

.section-carousel {
  padding-top: 4rem;
}

.carousel {
  position: relative;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(78%, 1fr);
  gap: 1.1rem;
  overflow-x: auto;
  padding: 0.2rem 0.1rem 0.8rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.carousel::before {
  content: "";
  position: absolute;
  inset: auto 4% -1.8rem;
  height: 110px;
  background: radial-gradient(circle, rgba(199, 161, 106, 0.16), transparent 70%);
  filter: blur(28px);
  z-index: 0;
  pointer-events: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-slide {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

.carousel-slide-product {
  min-height: 560px;
}

.carousel-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 8, 6, 0.1), rgba(11, 8, 6, 0.88));
  z-index: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-slide-product img {
  object-position: center 32%;
}

.carousel-caption {
  position: absolute;
  left: 1.6rem;
  right: 1.6rem;
  bottom: 1.6rem;
  z-index: 2;
  max-width: 38rem;
}

.carousel-caption span {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--accent-pale);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.carousel-caption h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(2rem, 3vw, 3rem);
  max-width: 14ch;
}

.carousel-caption p {
  margin-bottom: 0;
  max-width: 32rem;
  color: var(--text);
}

.carousel-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(240, 217, 183, 0.18);
  border-radius: 50%;
  background: rgba(14, 10, 8, 0.72);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
  transition: transform var(--transition), background-color var(--transition), border-color var(--transition);
}

.carousel-control:hover {
  transform: translateY(-50%) scale(1.04);
  background: rgba(28, 19, 14, 0.9);
  border-color: rgba(240, 217, 183, 0.34);
}

.carousel-control span {
  font-size: 1.2rem;
  line-height: 1;
}

.carousel-control-prev {
  left: -0.6rem;
}

.carousel-control-next {
  right: -0.6rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(240, 217, 183, 0.28);
  cursor: pointer;
  transition: transform var(--transition), background-color var(--transition);
}

.carousel-dot.is-active {
  background: var(--accent);
  transform: scale(1.15);
}

.section-presence {
  padding-top: 5rem;
}

.presence-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.presence-list span,
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 46px;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.presence-visual {
  aspect-ratio: 0.95;
}

.section-manifesto {
  min-height: 72svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.manifesto-overlay {
  background:
    linear-gradient(180deg, rgba(9, 6, 5, 0.58), rgba(9, 6, 5, 0.9)),
    linear-gradient(90deg, rgba(18, 13, 10, 0.62), rgba(18, 13, 10, 0.34));
}

.manifesto-content {
  max-width: 900px;
}

.manifesto-content h2 {
  margin-bottom: 1rem;
  font-size: clamp(3rem, 5vw, 5.2rem);
  text-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
}

.manifesto-content p:last-child {
  max-width: 38rem;
  margin: 0 auto;
  font-size: 1.12rem;
  color: var(--accent-pale);
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.section-contact {
  background:
    radial-gradient(circle at left top, rgba(199, 161, 106, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 26%);
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 1.8rem 0 0.4rem;
}

.contact-detail-card {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-small);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(42, 28, 20, 0.72), rgba(24, 17, 13, 0.86));
}

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

.contact-detail-card strong {
  display: block;
  color: var(--text);
  font-size: 0.97rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.contact-note {
  margin-top: 1.2rem;
  font-size: 0.92rem;
  color: var(--soft);
}

.contact-visual {
  aspect-ratio: 0.92;
}

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

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

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  max-width: 48rem;
}

.footer-brand img {
  width: 62px;
  height: 62px;
  padding: 0.34rem;
  border-radius: 50%;
  border: 1px solid rgba(240, 217, 183, 0.18);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03)),
    rgba(16, 11, 8, 0.8);
  object-fit: contain;
  flex-shrink: 0;
}

.footer-brand p:first-child,
.footer-copy {
  color: var(--text);
}

.footer-inner p {
  margin: 0;
  color: var(--soft);
  font-size: 0.92rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background:
    linear-gradient(180deg, rgba(7, 5, 4, 0.86), rgba(7, 5, 4, 0.94)),
    radial-gradient(circle at center, rgba(199, 161, 106, 0.14), transparent 38%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), visibility var(--transition);
  z-index: 80;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-figure {
  position: relative;
  margin: 0;
  width: min(100%, 1180px);
  max-height: calc(100svh - 3rem);
}

.lightbox-image {
  width: 100%;
  max-height: calc(100svh - 8rem);
  object-fit: contain;
  border-radius: var(--radius);
  border: 1px solid rgba(240, 217, 183, 0.16);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.44);
  background: rgba(12, 8, 6, 0.9);
}

.lightbox-caption {
  margin-top: 0.9rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-small);
  background: rgba(12, 8, 6, 0.72);
  border: 1px solid rgba(240, 217, 183, 0.1);
  color: var(--text);
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(240, 217, 183, 0.18);
  border-radius: 50%;
  background: rgba(12, 8, 6, 0.78);
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: transform var(--transition), background-color var(--transition), border-color var(--transition);
}

.lightbox-close:hover {
  transform: scale(1.04);
  background: rgba(24, 16, 12, 0.94);
  border-color: rgba(240, 217, 183, 0.32);
}

.audio-player {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  width: min(92vw, 340px);
  z-index: 70;
}

.audio-player-trigger,
.audio-player-panel {
  border: 1px solid rgba(240, 217, 183, 0.14);
  background:
    linear-gradient(180deg, rgba(18, 13, 10, 0.92), rgba(12, 8, 6, 0.94)),
    radial-gradient(circle at top, rgba(199, 161, 106, 0.12), transparent 56%);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
}

.audio-player-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.8rem 0.95rem;
  border-radius: 22px;
  color: var(--text);
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), background-color var(--transition);
}

.audio-player-trigger:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 217, 183, 0.26);
}

.audio-player-trigger-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(240, 217, 183, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--accent-pale);
  font-size: 1.2rem;
}

.audio-player-trigger-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  min-width: 0;
}

.audio-player-trigger-copy strong,
.audio-player-trigger-copy small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.audio-player-trigger-copy strong {
  font-size: 0.92rem;
}

.audio-player-trigger-copy small {
  color: var(--soft);
  font-size: 0.76rem;
}

.audio-player-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.15rem;
  color: var(--accent-pale);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audio-player-hint::before {
  content: "";
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.audio-player-trigger-caret {
  font-size: 1.1rem;
  color: var(--accent-pale);
  transition: transform var(--transition);
}

.audio-player.is-open .audio-player-trigger-caret {
  transform: rotate(45deg);
}

.audio-player:not(.is-open) .audio-player-trigger {
  animation: audio-player-breathe 2.8s ease-in-out infinite;
}

.audio-player.is-open .audio-player-trigger {
  animation: none;
}

.audio-player-panel {
  margin-top: 0.7rem;
  padding: 1rem;
  border-radius: var(--radius);
}

.audio-player-head {
  margin-bottom: 0.9rem;
}

.audio-player-label {
  margin-bottom: 0.3rem;
  color: var(--accent-pale);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.audio-player-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.audio-player-controls {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.9rem;
}

.audio-icon-button,
.audio-main-button,
.audio-track-button {
  border: 1px solid rgba(240, 217, 183, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), background-color var(--transition);
}

.audio-icon-button:hover,
.audio-main-button:hover,
.audio-track-button:hover,
.audio-track-button.is-active {
  transform: translateY(-1px);
  border-color: rgba(240, 217, 183, 0.26);
  background: rgba(255, 255, 255, 0.08);
}

.audio-icon-button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1rem;
}

.audio-main-button {
  min-height: 48px;
  border-radius: 999px;
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audio-player-progress {
  width: 100%;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.audio-player-progress-bar {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), #f0d9b7);
}

.audio-player-track {
  margin-bottom: 0.9rem;
}

.audio-player-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.9rem;
  margin-top: 0.55rem;
  font-size: 0.84rem;
  color: var(--muted);
}

.audio-player-meta strong {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
}

.audio-player-volume {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.audio-player-volume label {
  color: var(--soft);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.audio-player-volume input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
}

.audio-player-playlist {
  display: grid;
  gap: 0.55rem;
}

.audio-track-button {
  padding: 0.8rem 0.9rem;
  border-radius: 18px;
  text-align: left;
  font-size: 0.9rem;
}

@keyframes audio-player-breathe {
  0%,
  100% {
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
  }

  50% {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(240, 217, 183, 0.08);
    transform: translateY(-1px);
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .story-grid,
  .heritage-grid,
  .presence-grid,
  .contact-grid,
  .collection-grid,
  .craft-values,
  .craft-gallery,
  .editorial-grid,
  .contact-details {
    grid-template-columns: 1fr;
  }

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

  .storefront-grid-shop,
  .shop-hero-grid,
  .shop-curation-grid,
  .shop-shell,
  .shop-hero-metrics,
  .product-shell,
  .product-story-grid,
  .product-meta-grid,
  .product-gallery-strip {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    position: static;
  }

  .product-story-note {
    position: static;
  }

  .product-gallery {
    position: static;
  }

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

  .carousel-track {
    grid-auto-columns: minmax(88%, 1fr);
  }

  .mosaic-card-tall {
    grid-row: span 1;
  }

  .hero-card {
    justify-self: start;
  }

  .carousel-caption h3 {
    max-width: 18ch;
  }

  .editorial-card,
  .editorial-card-large,
  .carousel-slide,
  .presence-visual,
  .contact-visual {
    min-height: 420px;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 84px;
  }

  .menu-toggle {
    position: relative;
    display: inline-flex;
    flex-shrink: 0;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 1rem auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.4rem;
    border-radius: 24px;
    background: rgba(18, 13, 10, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity var(--transition),
      transform var(--transition);
  }

  body.menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    font-size: 0.95rem;
  }

  .floating-cart,
  .audio-player {
    width: min(94vw, 320px);
  }

  .shop-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .shop-curation {
    margin-top: -1.6rem;
  }

  .hero {
    align-items: center;
    padding-bottom: 3.4rem;
  }

  .hero-grid {
    align-items: center;
  }

  .hero-card-meta,
  .story-milestones {
    grid-template-columns: 1fr;
  }

  .carousel-control {
    display: none;
  }

  h1 {
    max-width: 14ch;
    font-size: clamp(2.4rem, 7vw, 4rem);
  }

  body::before,
  body::after {
    opacity: 0.45;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 5.8rem 0;
  }

  .hero {
    min-height: 92svh;
    padding-top: calc(var(--header-height) + 2.8rem);
  }

  .hero-card,
  .story-milestones article,
  .collection-card,
  .value-card,
  .heritage-plaque {
    padding: 1.2rem;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .brand-name {
    font-size: 1.18rem;
  }

  .storefront-grid,
  .storefront-grid-shop,
  .floating-cart-actions,
  .product-action-buttons,
  .product-share-actions {
    grid-template-columns: 1fr;
  }

  .shop-toolbar-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .shop-hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 2.8rem);
  }

  .product-copy {
    padding: 1.35rem;
  }

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

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

  .product-zoom-lens {
    display: none;
  }

  .product-utility-row {
    flex-direction: column;
    align-items: stretch;
  }

  .shop-curation {
    margin-top: -1rem;
  }

  .story-visual {
    padding-right: 0;
    padding-bottom: 1rem;
  }

  .frame-floating {
    position: relative;
    right: auto;
    bottom: auto;
    width: 72%;
    margin: -3.5rem 0 0 auto;
  }

  .manifest-line {
    text-align: left;
  }

  .contact-actions,
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .storefront-grid,
  .floating-cart-actions {
    grid-template-columns: 1fr;
  }

  .button,
  .social-link {
    justify-content: center;
  }

  .western-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .mosaic-card-wide {
    grid-column: span 1;
  }

  .carousel-track {
    grid-auto-columns: 100%;
  }

  .carousel-slide {
    min-height: 460px;
  }

  .carousel-slide-product {
    min-height: 430px;
  }

  .carousel-caption {
    left: 1.1rem;
    right: 1.1rem;
    bottom: 1.1rem;
  }

  .carousel-caption h3 {
    max-width: none;
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  .hero-seal {
    width: 96px;
    height: 96px;
  }

  .hero-seal img {
    width: 68px;
    height: 68px;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-brand img {
    width: 54px;
    height: 54px;
  }

  .floating-cart {
    left: 0.8rem;
    bottom: 5.9rem;
    width: min(94vw, 320px);
  }

  .floating-cart-item {
    grid-template-columns: 62px 1fr auto;
  }

  .floating-cart-item img {
    width: 62px;
    height: 62px;
  }

  body::before,
  body::after {
    display: none;
  }

  .lightbox {
    padding: 1rem;
  }

  .lightbox-image {
    max-height: calc(100svh - 9rem);
  }

  .lightbox-close {
    top: 0.75rem;
    right: 0.75rem;
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
  }

  .audio-player {
    right: 0.8rem;
    bottom: 0.8rem;
    width: min(94vw, 320px);
  }

  .product-page .audio-player {
    bottom: 7.1rem;
    width: min(92vw, 300px);
  }

  .product-page main[data-product-page] {
    padding-bottom: 13rem;
  }

  .audio-player-panel {
    padding: 0.9rem;
  }

  .audio-player-meta {
    flex-direction: column;
  }
}
