:root {
  --ink: #11110f;
  --muted: #68645d;
  --line: #dfdbd3;
  --paper: #f8f6f1;
  --milk: #fffdf8;
  --graphite: #1a1a17;
  --accent: #8f6f4f;
  --accent-dark: #654a34;
  --radius: 8px;
  --section-side: clamp(18px, 5vw, 72px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 6px clamp(18px, 4vw, 48px);
  color: var(--milk);
  background: rgba(17, 17, 15, 0.94);
  border-bottom: 1px solid rgba(255, 253, 248, 0.16);
  backdrop-filter: blur(18px);
  transition: background-color 260ms ease, border-color 260ms ease, color 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(17, 17, 15, 0.98);
  border-bottom-color: rgba(255, 253, 248, 0.22);
}

.site-header.is-inverted {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.94);
  border-bottom-color: rgba(17, 17, 15, 0.16);
}

.site-header.is-inverted .brand-logo {
  filter: invert(1);
}

.site-header.is-inverted .header-action {
  background: var(--ink);
  color: var(--milk);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.brand-logo {
  width: clamp(62px, 6vw, 84px);
  height: auto;
  border-radius: 0;
  background: transparent;
  border: 0;
  object-fit: contain;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 14px;
}

.nav a,
.header-action {
  opacity: 0.88;
}

.nav a:hover,
.header-action:hover {
  opacity: 1;
}

.header-action {
  padding: 10px 16px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  background: var(--milk);
  color: var(--ink);
  font-size: 14px;
}

.hero {
  position: relative;
  display: flex;
  min-height: 92vh;
  align-items: flex-end;
  padding: 126px var(--section-side) 68px;
  overflow: hidden;
  background: #ddd;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: clamp(22px, 4vw, 42px);
  border-radius: var(--radius);
  background: rgba(17, 17, 15, 0.92);
  backdrop-filter: blur(12px);
  color: var(--milk);
  text-align: center;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px solid rgba(255, 253, 248, 0.86);
  border-radius: calc(var(--radius) - 2px);
  pointer-events: none;
}

.hero-content > * {
  position: relative;
  z-index: 1;
}

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

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

h1 {
  margin-bottom: 22px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(42px, 6.5vw, 92px);
  font-weight: 400;
  letter-spacing: 0.22em;
  line-height: 0.95;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 400;
  line-height: 1;
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 560px;
  margin: 0 auto 30px;
  color: rgba(255, 253, 248, 0.9);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.15;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: var(--radius);
  font-weight: 700;
}

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

.button-secondary {
  border: 1px solid var(--ink);
  color: var(--ink);
}

.hero-content .button-primary {
  background: var(--milk);
  color: var(--ink);
}

.hero-content .button-secondary {
  border-color: currentColor;
  color: inherit;
}

.hero-collage {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: none;
}

.hero-collage img,
.brand-collage img,
.gallery-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-collage img {
  object-position: 58% center;
}

.ticker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--milk);
}

.ticker span {
  min-height: 74px;
  padding: 24px 18px;
  border-right: 1px solid var(--line);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.ticker span:last-child {
  border-right: 0;
}

.section,
.split-section,
.footer {
  padding: clamp(72px, 10vw, 126px) var(--section-side);
}

.collection {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.32fr) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 64px);
  min-height: 100vh;
  align-items: center;
  padding-top: calc(68px + clamp(46px, 6vw, 82px));
  padding-bottom: clamp(72px, 8vw, 112px);
  background: var(--paper);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(260px, 1fr);
  gap: clamp(22px, 6vw, 84px);
  max-width: 1180px;
  margin: 0 auto 44px;
}

.section-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -12px;
}

.section-head p {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
}

.collection .section-head {
  display: block;
  max-width: 360px;
  justify-self: center;
  margin: 0;
  text-align: center;
}

.collection .section-head .eyebrow {
  display: inline-flex;
  position: absolute;
  top: 68px;
  left: var(--section-side);
  width: 132px;
  height: 92px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 18px;
  background: var(--ink);
  color: var(--milk);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-align: center;
}

.collection .section-head h2 {
  max-width: 360px;
  margin-top: 112px;
  margin-bottom: 22px;
  font-size: clamp(58px, 5.6vw, 88px);
  line-height: 0.92;
}

.collection .section-head p {
  max-width: 330px;
  color: #777168;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(18px, 1.4vw, 23px);
  line-height: 1.45;
}

.capsule-showcase {
  display: grid;
  gap: 22px;
}

.featured-product {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 0.72fr);
  gap: clamp(22px, 5vw, 68px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto 34px;
  padding: clamp(16px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--milk);
}

.viewer-stage {
  height: min(72vh, 760px);
  min-height: 500px;
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
  background: #e6e1da;
}

.viewer-stage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.viewer-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.swatches {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.swatch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.swatch span {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(22, 21, 20, 0.2);
  border-radius: 50%;
  background: var(--swatch);
}

.swatch.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--milk);
}

.featured-product,
.look-builder,
.collection > .product-grid {
  display: none;
}

.capsule-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: none;
  margin: 0;
}

.capsule-card {
  display: grid;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--milk);
}

.capsule-card > img {
  display: block;
  width: 100%;
  height: clamp(280px, 28vw, 390px);
  background: #e6e1da;
  object-fit: cover;
  object-position: top center;
  cursor: ew-resize;
}

.capsule-card-body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 16px;
  background: var(--milk);
  color: var(--ink);
}

.capsule-card-body .eyebrow {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  color: var(--accent-dark);
}

.capsule-card-body h3 {
  grid-column: 1 / -1;
  display: flex;
  width: calc(100% + 32px);
  min-height: 44px;
  align-items: center;
  justify-content: flex-start;
  margin: 0 -16px 2px;
  padding: 8px 16px;
  background: var(--milk);
  color: var(--ink);
}

.capsule-card-body p:not(.eyebrow) {
  grid-column: 1 / -1;
  min-height: 54px;
  color: var(--muted);
}

.capsule-swatches {
  grid-column: 1 / -1;
  display: flex;
  grid-template-columns: none;
  gap: 9px;
  margin-top: 4px;
}

.capsule-swatches .swatch {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  min-height: 0;
  padding: 3px;
  border-color: var(--line);
  border-radius: 50%;
  font-size: 0;
  gap: 0;
  line-height: 0;
}

.capsule-swatches .swatch span {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
}

.capsule-swatches .swatch.is-active {
  border-color: var(--ink);
  background: transparent;
  color: transparent;
  box-shadow: 0 0 0 2px rgba(17, 17, 15, 0.12);
}

.capsule-price-link {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--milk);
  font-size: 14px;
  font-weight: 700;
}

.capsule-price-link:hover {
  background: var(--ink);
  color: #c9a15d;
}

.vk-mark {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--milk);
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.capsule-price-link:hover .vk-mark {
  background: var(--milk);
  color: var(--ink);
}

.look-builder {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.72fr);
  gap: clamp(22px, 5vw, 68px);
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto 34px;
  padding: clamp(16px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f1eee8;
}

.look-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-height: 620px;
}

.look-piece {
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
  background: var(--milk);
}

.look-piece img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.look-controls {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: clamp(8px, 2vw, 18px);
}

.look-controls p:not(.eyebrow),
.control-group > span {
  color: var(--muted);
  font-size: 17px;
}

.control-group {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.control-group > span {
  font-weight: 700;
}

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

.segment {
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.segment.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--milk);
}

.look-swatches {
  margin-top: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.product-card {
  display: grid;
  min-height: 590px;
  align-content: space-between;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--milk);
}

.product-card p {
  color: var(--muted);
}

.product-card > span {
  color: var(--accent-dark);
  font-weight: 700;
}

.product-visual {
  display: block;
  width: 100%;
  height: 385px;
  margin-bottom: 22px;
  border-radius: calc(var(--radius) - 2px);
  background-color: #ddd5ca;
  object-fit: cover;
  object-position: top center;
}

.gallery-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.32fr);
  gap: clamp(32px, 4vw, 64px);
  min-height: 100vh;
  align-items: center;
  padding-top: calc(68px + clamp(46px, 6vw, 82px));
  padding-bottom: clamp(72px, 8vw, 112px);
  background: var(--paper);
}

.gallery-section .section-head {
  display: block;
  order: 2;
  max-width: 360px;
  justify-self: center;
  margin: 0;
  text-align: center;
}

.gallery-section .section-head .eyebrow {
  display: inline-flex;
  position: absolute;
  top: 68px;
  left: var(--section-side);
  width: 132px;
  height: 92px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 18px;
  background: var(--ink);
  color: var(--milk);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-align: center;
}

.gallery-section .section-head h2 {
  max-width: 360px;
  margin-top: 0;
  margin-bottom: 22px;
  font-size: clamp(58px, 5.6vw, 88px);
  line-height: 0.92;
}

.gallery-section .section-head p {
  max-width: 330px;
  color: #777168;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(18px, 1.4vw, 23px);
  line-height: 1.45;
}

.gallery-carousel {
  position: relative;
  order: 1;
  width: 100%;
  max-width: none;
  height: min(76vh, 760px);
  min-height: 520px;
  margin: 0;
  overflow: hidden;
}

.gallery-track {
  --active-index: 0;
  display: flex;
  height: 100%;
  gap: 18px;
  transition: transform 420ms ease;
  transform: translateX(calc(50% - (var(--active-index) * (min(62vw, 560px) + 18px)) - (min(62vw, 560px) / 2)));
}

.gallery-slide {
  flex: 0 0 min(62vw, 560px);
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #eee;
  opacity: 0.48;
  transform: scale(0.88);
  transition: opacity 260ms ease, transform 260ms ease, box-shadow 260ms ease;
}

.gallery-slide.is-active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 24px 70px rgba(22, 21, 20, 0.14);
}

.gallery-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.gallery-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(22, 21, 20, 0.2);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.9);
  color: var(--ink);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
}

.gallery-arrow-prev {
  left: 18px;
}

.gallery-arrow-next {
  right: 18px;
}

.split-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(24px, 6vw, 86px);
  min-height: 100vh;
  align-items: center;
  padding-top: calc(68px + clamp(46px, 6vw, 82px));
  padding-bottom: clamp(72px, 8vw, 112px);
  background: var(--graphite);
  color: var(--milk);
}

.about-panel {
  max-width: 650px;
}

.about-panel .eyebrow {
  display: inline-flex;
  position: absolute;
  top: 68px;
  left: calc(var(--section-side) + 72px);
  width: 132px;
  height: 92px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 18px;
  background: var(--milk);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-align: center;
}

.about-panel h2 {
  margin-top: 112px;
}

.about-panel p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 16px;
  color: rgba(255, 253, 248, 0.76);
  font-size: 18px;
}

.about-panel p:not(.eyebrow):last-child {
  margin-bottom: 0;
}

.brand-collage {
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
}

.brand-collage img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.principles {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 253, 248, 0.2);
}

.principles article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
  padding: 28px;
  background: var(--graphite);
}

.principles span {
  color: rgba(255, 253, 248, 0.46);
  font-weight: 700;
}

.principles p {
  grid-column: 1 / -1;
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.68);
}

.fit {
  background: var(--milk);
}

.fit-table-wrap {
  max-width: 1180px;
  margin: 0 auto;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.fit-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: var(--milk);
}

.fit-table th,
.fit-table td {
  padding: 20px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.fit-table th {
  color: var(--accent-dark);
  font-size: 13px;
  text-transform: uppercase;
}

.fit-table tr:last-child td {
  border-bottom: 0;
}

.footer {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) minmax(180px, 0.7fr) minmax(240px, 0.9fr);
  gap: clamp(28px, 7vw, 120px);
  padding: clamp(38px, 5vw, 64px) var(--section-side);
  border-top: 1px solid var(--line);
  background: var(--milk);
  color: var(--muted);
  font-size: 14px;
}

.footer-title {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer p {
  margin-bottom: 8px;
}

.footer a {
  display: table;
  margin-bottom: 8px;
  color: var(--muted);
}

.footer a:hover {
  color: var(--ink);
}

.footer-brand p:not(.footer-title) {
  max-width: 260px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--ink);
  font-weight: 700;
}

.footer-social .vk-mark {
  width: 24px;
  height: 24px;
  background: var(--ink);
  color: var(--milk);
  font-size: 10px;
}

.footer-legal {
  justify-self: end;
  text-align: left;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero,
  .collection,
  .gallery-section,
  .featured-product,
  .look-builder,
  .ticker,
  .product-grid,
  .section-head,
  .split-section,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .hero {
    min-height: 86vh;
  }

  .look-preview {
    min-height: 560px;
  }

  .collection {
    gap: 28px;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .collection .section-head {
    max-width: 100%;
  }

  .collection .section-head .eyebrow {
    width: 108px;
    height: 76px;
    margin: 0 auto 26px;
  }

  .collection .section-head h2 {
    max-width: 620px;
  }

  .gallery-section {
    gap: 28px;
    padding-top: calc(68px + 48px);
    padding-bottom: 48px;
  }

  .gallery-section .section-head {
    order: 1;
    max-width: 100%;
  }

  .gallery-section .section-head .eyebrow {
    position: static;
    width: 108px;
    height: 76px;
    margin: 0 auto 26px;
  }

  .gallery-section .section-head h2,
  .gallery-section .section-head p {
    max-width: 620px;
  }

  .gallery-carousel {
    order: 2;
  }

  .split-section {
    gap: 28px;
    padding-top: calc(68px + 48px);
    padding-bottom: 48px;
  }

  .about-panel {
    max-width: 100%;
  }

  .about-panel .eyebrow {
    position: static;
    width: 108px;
    height: 64px;
    margin: 0 auto 26px;
  }

  .about-panel h2 {
    margin-top: 0;
  }

  .brand-collage img {
    min-height: 360px;
  }

  .collection .section-head p {
    max-width: 620px;
  }

  .ticker span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .gallery-carousel {
    height: 62vh;
    min-height: 460px;
  }

  .gallery-track {
    transform: translateX(calc(50% - (var(--active-index) * (min(78vw, 560px) + 18px)) - (min(78vw, 560px) / 2)));
  }

  .gallery-slide {
    flex-basis: min(78vw, 560px);
  }

  .footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .footer-legal {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .brand span:last-child {
    display: none;
  }

  h1 {
    font-size: clamp(34px, 12vw, 52px);
    letter-spacing: 0.16em;
  }

  .hero-actions .button,
  .swatches {
    width: 100%;
  }

  .swatches,
  .look-preview,
  .product-grid,
  .capsule-grid,
  .principles {
    grid-template-columns: 1fr;
  }

  .capsule-swatches {
    width: auto;
  }

  .viewer-stage,
  .product-visual,
  .gallery-carousel,
  .gallery-grid img,
  .gallery-grid img:nth-child(2) {
    height: 430px;
    min-height: 0;
  }

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

.collection > .featured-product,
.collection > .look-builder,
.collection > .product-grid {
  display: none;
}
