@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,500&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap");

:root {
  --ivory: #f4f0e8;
  --ivory-2: #ebe4d8;
  --paper: #fbf8f2;
  --ink: #171612;
  --ink-soft: #36332d;
  --muted: #777066;
  --line: rgba(23, 22, 18, 0.18);
  --line-light: rgba(255, 255, 255, 0.2);
  --vermilion: #b44731;
  --vermilion-dark: #8f3324;
  --plum: #271b22;
  --moss: #404536;
  --gold: #c49a5a;
  --white: #fffdf8;
  --serif: "Cormorant Garamond", "Iowan Old Style", "Baskerville", Georgia, serif;
  --sans: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  --gutter: clamp(20px, 4.2vw, 72px);
  --section-space: clamp(88px, 11vw, 176px);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ivory);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::after {
  position: fixed;
  z-index: 9999;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.11'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

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

a {
  color: inherit;
}

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

button {
  color: inherit;
}

::selection {
  color: var(--white);
  background: var(--vermilion);
}

:focus-visible {
  outline: 2px solid var(--vermilion);
  outline-offset: 5px;
}

.site-shell {
  position: relative;
  width: 100%;
  overflow: clip;
  background: var(--ivory);
}

.scroll-progress {
  position: fixed;
  z-index: 1300;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--vermilion);
  pointer-events: none;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateY(-160%);
  transition: transform 0.25s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1200;
  top: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  min-height: 82px;
  padding: 0 var(--gutter);
  border-bottom: 1px solid var(--line);
  background: rgba(244, 240, 232, 0.88);
  backdrop-filter: blur(18px) saturate(120%);
  transition:
    min-height 0.35s var(--ease-out),
    background 0.35s ease,
    transform 0.45s var(--ease-out);
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(244, 240, 232, 0.96);
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.header-left,
.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-right {
  justify-content: flex-end;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
}

.nav-link {
  position: relative;
  padding: 11px 0;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-link::after {
  position: absolute;
  right: 100%;
  bottom: 4px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transition: right 0.35s var(--ease-out);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  right: 0;
}

.nav-link.is-active {
  color: var(--vermilion-dark);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition:
    color 0.35s ease,
    background 0.35s ease,
    transform 0.45s var(--ease-out);
}

.brand:hover .brand-mark {
  color: var(--white);
  background: var(--vermilion);
  transform: rotate(-9deg);
}

.brand-mark svg {
  width: 16px;
  height: 16px;
}

.brand-word {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
}

.icon-btn {
  display: inline-grid;
  width: 37px;
  height: 37px;
  padding: 0;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition:
    border-color 0.25s ease,
    color 0.25s ease,
    background 0.25s ease;
}

.icon-btn:hover {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.icon-btn svg {
  width: 17px;
  height: 17px;
}

.menu-toggle {
  display: none;
}

.mobile-drawer {
  position: fixed;
  z-index: 1500;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 72px 28px 34px;
  visibility: hidden;
  opacity: 0;
  background: var(--plum);
  transition:
    visibility 0.4s,
    opacity 0.4s ease;
}

.mobile-drawer.is-open {
  visibility: visible;
  opacity: 1;
}

.mobile-drawer > a {
  position: relative;
  display: block;
  padding: 14px 0;
  color: var(--white);
  border-bottom: 1px solid var(--line-light);
  font-family: var(--serif);
  font-size: clamp(36px, 12vw, 62px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-decoration: none;
  transform: translateY(24px);
  opacity: 0;
  transition:
    transform 0.5s var(--ease-out),
    opacity 0.35s ease;
}

.mobile-drawer.is-open > a {
  transform: translateY(0);
  opacity: 1;
}

.mobile-drawer.is-open > a:nth-of-type(2) {
  transition-delay: 0.04s;
}

.mobile-drawer.is-open > a:nth-of-type(3) {
  transition-delay: 0.08s;
}

.mobile-drawer.is-open > a:nth-of-type(4) {
  transition-delay: 0.12s;
}

.mobile-drawer.is-open > a:nth-of-type(5) {
  transition-delay: 0.16s;
}

.mobile-drawer.is-open > a:nth-of-type(6) {
  transition-delay: 0.2s;
}

.mobile-drawer > a:last-child {
  margin-top: 18px;
  color: #e7ad8e;
  border-bottom: 0;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 22px;
  color: var(--white);
  border-color: var(--line-light);
}

/* Shared type */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--vermilion-dark);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 38px;
  height: 1px;
  content: "";
  background: currentColor;
}

.display-title,
.section-title,
.page-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.065em;
}

.display-title {
  max-width: 12ch;
  font-size: clamp(68px, 9.5vw, 158px);
  line-height: 0.77;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(54px, 6.5vw, 105px);
  line-height: 0.86;
}

.page-title {
  max-width: 10ch;
  font-size: clamp(72px, 10.6vw, 168px);
  line-height: 0.77;
}

.body-copy {
  margin: 0;
  color: var(--muted);
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.75;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0 24px;
  overflow: hidden;
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease,
    transform 0.35s var(--ease-out);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn svg {
  width: 15px;
  height: 15px;
  transition: transform 0.35s var(--ease-out);
}

.btn:hover svg {
  transform: translateX(5px);
}

.btn-dark {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.btn-dark:hover {
  border-color: var(--vermilion);
  background: var(--vermilion);
}

.btn-light {
  border-color: rgba(23, 22, 18, 0.35);
  background: rgba(255, 253, 248, 0.68);
}

.btn-light:hover,
.btn-ghost:hover {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.section {
  position: relative;
  padding: var(--section-space) var(--gutter);
}

.section.compact {
  padding-top: clamp(72px, 7vw, 116px);
  padding-bottom: clamp(72px, 7vw, 116px);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.45fr);
  gap: clamp(34px, 7vw, 110px);
  align-items: end;
  margin-bottom: clamp(52px, 7vw, 104px);
}

.section-head .body-copy {
  max-width: 420px;
  padding-bottom: 8px;
}

/* Home hero */
.hero {
  padding: clamp(46px, 6vw, 92px) var(--gutter) clamp(52px, 6vw, 92px);
}

.hero-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.38fr);
  gap: clamp(28px, 6vw, 100px);
  align-items: end;
  margin-bottom: clamp(46px, 5vw, 76px);
}

.hero-title-row .body-copy {
  max-width: 390px;
  padding: 0 0 6px;
  font-size: clamp(15px, 1.15vw, 18px);
}

.inline-orbit {
  display: inline-grid;
  width: 0.7em;
  height: 0.7em;
  margin: 0 0.02em;
  place-items: center;
  vertical-align: 0.05em;
  color: var(--white);
  border-radius: 50%;
  background: var(--vermilion);
  font-family: var(--sans);
  font-size: 0.48em;
  animation: slow-spin 14s linear infinite;
}

@keyframes slow-spin {
  to {
    transform: rotate(360deg);
  }
}

.hero-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(250px, 31vh));
  gap: clamp(10px, 1vw, 16px);
  min-height: 600px;
}

.hero-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 0;
  background: var(--ivory-2);
  isolation: isolate;
}

.hero-card::after,
.page-visual::after,
.category-card::after,
.collection-card::after,
.editorial-image::after,
.regions-image::after,
.blog-card::after,
.stylist-card::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 45%, rgba(20, 15, 12, 0.52) 100%);
}

.hero-card img,
.page-visual img,
.category-card img,
.collection-card img,
.editorial-image img,
.regions-image > img,
.blog-card > img,
.stylist-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--drift, 0px), 0) scale(1.03);
  transition:
    transform 1.1s var(--ease-out),
    filter 0.7s ease;
}

.hero-card:hover img,
.category-card:hover img,
.collection-card:hover img,
.blog-card:hover > img,
.stylist-card:hover > img {
  transform: translate3d(0, var(--drift, 0px), 0) scale(1.085);
}

.hero-card.tall {
  grid-column: 1 / 5;
  grid-row: 1 / 3;
}

.hero-card.copy-card {
  grid-column: 5 / 9;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(26px, 3vw, 46px);
  color: var(--white);
  background: var(--plum);
}

.hero-card.copy-card::after,
.hero-card.right-bottom::after {
  display: none;
}

.copy-card .eyebrow {
  color: #e8a984;
}

.hero-card.center-image {
  grid-column: 5 / 8;
  grid-row: 2;
}

.hero-card.right-top {
  grid-column: 9 / 13;
  grid-row: 1 / 3;
}

.hero-card.right-bottom {
  z-index: 3;
  grid-column: 8 / 11;
  grid-row: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  background: rgba(244, 240, 232, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 55px rgba(23, 18, 16, 0.2);
}

.hero-card.right-bottom > div {
  position: relative;
  min-height: 0;
  overflow: hidden;
}

.hero-card.right-bottom .quote-chip {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  background: var(--paper);
}

.hero-card-label {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 16px;
  color: var(--white);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.floating-stat {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  min-width: 102px;
  padding: 13px 15px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(251, 248, 242, 0.84);
  backdrop-filter: blur(12px);
  text-align: right;
}

.floating-stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 35px;
  font-weight: 500;
  line-height: 0.9;
}

.floating-stat span {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-note {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(27px, 2.6vw, 43px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-note small {
  display: block;
  max-width: 27ch;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.05em;
}

.quote-chip .hero-note {
  color: var(--ink);
  font-size: clamp(22px, 2vw, 32px);
}

.quote-chip .hero-note small {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.copy-card .btn-dark {
  color: var(--ink);
  border-color: var(--white);
  background: var(--white);
}

.copy-card .btn-light {
  color: var(--white);
  border-color: var(--line-light);
  background: transparent;
}

.hero-stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-stat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 22px clamp(16px, 2.2vw, 34px);
  border-right: 1px solid var(--line);
}

.hero-stat:last-child {
  border-right: 0;
}

.hero-stat strong {
  font-family: var(--serif);
  font-size: clamp(34px, 3.2vw, 52px);
  font-weight: 500;
  line-height: 1;
}

.hero-stat span {
  max-width: 12ch;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.13em;
  text-align: right;
  text-transform: uppercase;
}

/* Moving editorial line */
.marquee {
  width: 100%;
  overflow: hidden;
  color: var(--white);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--vermilion);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 36s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 14px 25px;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1;
  white-space: nowrap;
}

.marquee-item::after {
  content: "✦";
  font-family: var(--sans);
  font-size: 9px;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* Collection rail */
.section.featured {
  color: var(--white);
  background: var(--ink);
}

.featured-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(42px, 5vw, 74px);
}

.featured .eyebrow {
  color: #e8a984;
}

.featured .section-title {
  max-width: 8ch;
}

.collection-rail-wrap {
  position: relative;
}

.collection-rail {
  display: grid;
  grid-auto-columns: minmax(300px, 34vw);
  grid-auto-flow: column;
  gap: clamp(14px, 1.8vw, 28px);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0 var(--gutter) 26px 0;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  cursor: grab;
}

.collection-rail::-webkit-scrollbar {
  display: none;
}

.collection-rail.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.collection-card {
  position: relative;
  height: clamp(470px, 58vw, 740px);
  overflow: hidden;
  scroll-snap-align: start;
  background: var(--plum);
}

.collection-card:nth-child(even) {
  height: clamp(420px, 52vw, 660px);
  margin-top: clamp(40px, 6vw, 90px);
}

.collection-card.is-near img {
  filter: saturate(1.08);
}

.card-meta {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 18px;
  left: 20px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
}

.card-meta strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 500;
  line-height: 0.95;
}

.card-meta span,
.card-meta b {
  display: block;
  margin-top: 8px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.card-meta b {
  opacity: 0.7;
}

.rail-controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 24px;
}

.rail-btn {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition:
    color 0.25s ease,
    background 0.25s ease;
}

.rail-btn:hover {
  color: var(--ink);
  background: var(--white);
}

.rail-btn svg {
  width: 18px;
  height: 18px;
}

/* Editorial split */
.editorial-banner {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  min-height: min(76vw, 820px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.editorial-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 46px;
  padding: clamp(40px, 6vw, 92px);
  background: var(--paper);
}

.editorial-copy .section-title {
  max-width: 8ch;
  font-size: clamp(48px, 5.8vw, 92px);
}

.editorial-copy .body-copy {
  max-width: 390px;
}

.editorial-image {
  position: relative;
  min-height: 540px;
  overflow: hidden;
}

.round-seal {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 4vw, 60px);
  bottom: clamp(24px, 4vw, 60px);
  display: grid;
  width: clamp(112px, 12vw, 170px);
  aspect-ratio: 1;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: rgba(180, 71, 49, 0.84);
  backdrop-filter: blur(10px);
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 0.85;
  text-align: center;
  transform: rotate(-9deg);
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.process-card {
  position: relative;
  min-height: 330px;
  padding: clamp(32px, 4.2vw, 66px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    color 0.45s ease,
    background 0.45s ease;
}

.process-card:nth-child(even) {
  border-right: 0;
}

.process-card:hover {
  color: var(--white);
  background: var(--plum);
}

.process-number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--vermilion);
  font-family: var(--serif);
  font-size: clamp(55px, 6vw, 90px);
  font-style: italic;
  line-height: 0.8;
}

.process-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition:
    color 0.4s ease,
    border-color 0.4s ease,
    transform 0.5s var(--ease-out);
}

.process-card:hover .process-icon {
  color: var(--white);
  border-color: var(--line-light);
  transform: rotate(8deg);
}

.process-icon svg {
  width: 24px;
  height: 24px;
}

.process-card h3 {
  margin: clamp(54px, 6vw, 88px) 0 15px;
  font-family: var(--serif);
  font-size: clamp(32px, 3.4vw, 52px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.process-card p {
  max-width: 48ch;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  transition: color 0.4s ease;
}

.process-card:hover p {
  color: rgba(255, 255, 255, 0.64);
}

/* Categories */
.category-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(190px, 20vw);
  gap: clamp(10px, 1.3vw, 20px);
}

.category-card {
  position: relative;
  grid-column: span 4;
  min-height: 430px;
  overflow: hidden;
  color: var(--white);
  background: var(--plum);
}

.category-card:nth-child(1) {
  grid-column: span 7;
  grid-row: span 2;
}

.category-card:nth-child(2) {
  grid-column: span 5;
  grid-row: span 2;
}

.category-card:nth-child(3) {
  grid-column: span 4;
  grid-row: span 2;
}

.category-card:nth-child(4) {
  grid-column: span 4;
  grid-row: span 2;
}

.category-card:nth-child(5) {
  grid-column: span 4;
  grid-row: span 2;
}

.category-content {
  position: absolute;
  z-index: 3;
  right: clamp(20px, 2.5vw, 38px);
  bottom: clamp(20px, 2.5vw, 36px);
  left: clamp(20px, 2.5vw, 38px);
}

.category-content h3 {
  max-width: 10ch;
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: clamp(34px, 4.2vw, 70px);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: -0.045em;
}

.category-content p {
  margin: 0;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.category-arrow {
  position: absolute;
  z-index: 3;
  top: 20px;
  right: 20px;
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transform: rotate(-45deg);
  transition:
    color 0.3s ease,
    background 0.3s ease,
    transform 0.45s var(--ease-out);
}

.category-card:hover .category-arrow {
  color: var(--ink);
  background: var(--white);
  transform: rotate(0);
}

.category-arrow svg {
  width: 17px;
}

/* Pricing */
.pricing-section {
  color: var(--white);
  background: var(--plum);
}

.pricing-section .eyebrow {
  color: #e8a984;
}

.pricing-section .body-copy {
  color: rgba(255, 255, 255, 0.55);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.plan-card {
  position: relative;
  display: flex;
  min-height: 620px;
  flex-direction: column;
  padding: clamp(32px, 4vw, 58px);
  color: var(--white);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: transparent;
  transition:
    color 0.4s ease,
    background 0.4s ease;
}

.plan-card:hover {
  color: var(--ink);
  background: var(--ivory);
}

.plan-card.featured {
  color: var(--white);
  background: var(--vermilion);
}

.plan-card.featured:hover {
  color: var(--white);
  background: var(--vermilion-dark);
}

.plan-kicker {
  margin-bottom: clamp(34px, 5vw, 74px);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.plan-price {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: clamp(74px, 7vw, 112px);
  font-weight: 500;
  line-height: 0.75;
  letter-spacing: -0.07em;
}

.plan-price sup {
  margin-right: 5px;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 400;
  vertical-align: top;
}

.plan-period {
  min-height: 42px;
  color: rgba(255, 255, 255, 0.53);
  font-size: 9px;
  line-height: 1.5;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.plan-card:hover .plan-period {
  color: var(--muted);
}

.plan-card.featured .plan-period,
.plan-card.featured:hover .plan-period {
  color: rgba(255, 255, 255, 0.68);
}

.plan-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 38px 0 44px;
  list-style: none;
}

.plan-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line-light);
  font-size: 13px;
}

.plan-card:hover .plan-list li {
  border-color: var(--line);
}

.plan-card.featured:hover .plan-list li {
  border-color: var(--line-light);
}

.plan-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.plan-card:not(.featured) .btn {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.plan-card:not(.featured):hover .btn {
  color: var(--ink);
  border-color: var(--ink);
}

.plan-badge {
  position: absolute;
  top: 22px;
  right: 20px;
  padding: 8px 12px;
  color: var(--vermilion);
  background: var(--white);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.testimonial-card {
  display: flex;
  min-height: 440px;
  flex-direction: column;
  padding: clamp(30px, 3.8vw, 55px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    color 0.45s ease,
    background 0.45s ease;
}

.testimonial-card:hover {
  color: var(--white);
  background: var(--moss);
}

.stars {
  color: var(--vermilion);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.testimonial-quote {
  margin: clamp(48px, 6vw, 78px) 0 38px;
  font-family: var(--serif);
  font-size: clamp(27px, 2.7vw, 42px);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--vermilion);
  font-family: var(--serif);
  font-size: 20px;
}

.testimonial-author strong,
.testimonial-author span {
  display: block;
}

.testimonial-author strong {
  font-size: 12px;
  font-weight: 600;
}

.testimonial-author span {
  color: var(--muted);
  font-size: 10px;
}

.testimonial-card:hover .testimonial-author span {
  color: rgba(255, 255, 255, 0.58);
}

/* Regions */
.regions-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  min-height: 760px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.regions-copy {
  padding: clamp(42px, 6vw, 90px);
  background: var(--paper);
}

.regions-copy .section-title {
  max-width: 8ch;
  font-size: clamp(50px, 5.5vw, 90px);
}

.region-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(42px, 5vw, 70px);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.region-item {
  padding: 17px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.region-item strong {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  line-height: 1;
}

.region-item span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.regions-image {
  position: relative;
  min-height: 630px;
  overflow: hidden;
}

.regions-quote {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 5vw, 72px);
  bottom: clamp(24px, 5vw, 70px);
  width: min(440px, calc(100% - 48px));
  padding: clamp(27px, 3vw, 44px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(39, 27, 34, 0.82);
  backdrop-filter: blur(12px);
}

.regions-quote blockquote {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(29px, 3vw, 46px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.regions-quote p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  line-height: 1.6;
}

/* Final CTA */
.quiz-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
  padding: clamp(72px, 9vw, 132px) var(--gutter);
  color: var(--white);
  background: var(--vermilion);
}

.quiz-banner h2 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(60px, 8.5vw, 132px);
  font-weight: 500;
  line-height: 0.78;
  letter-spacing: -0.065em;
}

.quiz-banner p {
  max-width: 52ch;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.quiz-banner .btn-dark {
  min-width: 230px;
  color: var(--white);
  border-color: var(--white);
  background: transparent;
}

.quiz-banner .btn-dark:hover {
  color: var(--vermilion);
  background: var(--white);
}

/* Inner pages */
.page-hero {
  padding: clamp(54px, 7vw, 108px) var(--gutter) clamp(64px, 8vw, 124px);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.38fr);
  gap: clamp(32px, 7vw, 112px);
  align-items: end;
  margin-bottom: clamp(52px, 6vw, 90px);
}

.page-hero-grid .body-copy {
  max-width: 390px;
  padding-bottom: 8px;
  font-size: clamp(15px, 1.2vw, 18px);
}

.page-visual {
  position: relative;
  height: clamp(560px, 70vw, 900px);
  overflow: hidden;
  background: var(--plum);
}

.page-visual img {
  object-position: center 25%;
}

.page-visual-overlay {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  padding: clamp(25px, 4vw, 58px);
  color: var(--white);
}

.page-visual-overlay strong,
.page-visual-overlay span {
  display: block;
}

.page-visual-overlay strong {
  max-width: 14ch;
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 62px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.page-visual-overlay span {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.page-visual-overlay .btn-dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(23, 22, 18, 0.36);
  backdrop-filter: blur(10px);
}

.page-nav-strip {
  position: sticky;
  z-index: 900;
  top: 68px;
  display: flex;
  justify-content: center;
  overflow-x: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(244, 240, 232, 0.94);
  backdrop-filter: blur(14px);
  scrollbar-width: none;
}

.page-nav-strip::-webkit-scrollbar {
  display: none;
}

.page-nav-strip a {
  padding: 15px clamp(16px, 2.5vw, 34px);
  color: var(--muted);
  border-right: 1px solid var(--line);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.page-nav-strip a:first-child {
  border-left: 1px solid var(--line);
}

.page-nav-strip a:hover {
  color: var(--white);
  background: var(--ink);
}

/* Stylists and editorial cards */
.stylist-profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 26px);
}

.stylist-card {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: var(--white);
  background: var(--plum);
}

.stylist-card:nth-child(2) {
  margin-top: clamp(50px, 7vw, 104px);
}

.stylist-card-content {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 26px;
  left: 28px;
}

.stylist-card-content h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.stylist-card-content p {
  margin: 11px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 26px);
}

.blog-card {
  position: relative;
  grid-column: span 4;
  min-height: 640px;
  overflow: hidden;
  color: var(--white);
  text-decoration: none;
  background: var(--plum);
}

.blog-card:first-child {
  grid-column: span 6;
}

.blog-card:nth-child(2) {
  grid-column: span 6;
  margin-top: 80px;
}

.blog-card:nth-child(3) {
  grid-column: 4 / 10;
  margin-top: 8px;
}

.blog-card-content {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 28px;
  left: 28px;
}

.blog-card-content span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-card-content h3 {
  max-width: 13ch;
  margin: 12px 0 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 70px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

/* Footer */
.site-footer {
  padding: clamp(70px, 9vw, 126px) var(--gutter) 30px;
  color: var(--white);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.25fr) repeat(3, minmax(120px, 0.45fr));
  gap: clamp(34px, 5vw, 74px);
  padding-bottom: clamp(62px, 8vw, 108px);
}

.footer-brand .brand {
  color: var(--white);
}

.footer-brand > p {
  max-width: 36ch;
  margin: 26px 0;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.2;
}

.socials {
  display: flex;
  gap: 8px;
}

.socials a {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 0.25s ease,
    background 0.25s ease;
}

.socials a:hover {
  color: var(--ink);
  background: var(--white);
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-col h3 {
  margin: 0 0 24px;
  color: #e8a984;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-col a {
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid var(--line-light);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-legal a {
  text-decoration: none;
}

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

/* Progressive motion */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(48px);
  transition:
    opacity 0.85s ease,
    transform 1s var(--ease-out);
  transition-delay: calc(var(--reveal-delay, 0) * 90ms);
}

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

[data-reveal-delay="1"] {
  --reveal-delay: 1;
}

[data-reveal-delay="2"] {
  --reveal-delay: 2;
}

[data-reveal-delay="3"] {
  --reveal-delay: 3;
}

/* Tablet */
@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .site-header {
    min-height: 70px;
  }

  .hero-board {
    grid-template-rows: repeat(2, minmax(230px, 30vh));
  }

  .hero-card.tall {
    grid-column: 1 / 6;
  }

  .hero-card.copy-card {
    grid-column: 6 / 13;
  }

  .hero-card.center-image {
    grid-column: 6 / 9;
  }

  .hero-card.right-top {
    grid-column: 9 / 13;
    grid-row: 2;
  }

  .hero-card.right-bottom {
    display: none;
  }

  .category-card:nth-child(n) {
    grid-column: span 6;
  }

  .category-card:nth-child(1),
  .category-card:nth-child(2) {
    grid-column: span 6;
  }

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

  .plan-card {
    min-height: 540px;
  }

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

  .testimonial-card {
    min-height: 330px;
  }

  .stylist-profile-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stylist-card:nth-child(2) {
    margin-top: 50px;
  }

  .stylist-card:nth-child(3) {
    grid-column: 1 / -1;
    width: 60%;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1.3fr repeat(3, 0.55fr);
  }
}

/* Mobile */
@media (max-width: 760px) {
  :root {
    --gutter: 18px;
    --section-space: 92px;
  }

  .site-header {
    grid-template-columns: 1fr auto 1fr;
    min-height: 66px;
  }

  .site-header .header-right .icon-btn:first-of-type {
    display: none;
  }

  .brand-word {
    font-size: 24px;
  }

  .brand-mark {
    width: 28px;
    height: 28px;
  }

  .display-title {
    font-size: clamp(56px, 18.6vw, 94px);
    line-height: 0.79;
  }

  .section-title {
    font-size: clamp(49px, 15.5vw, 76px);
  }

  .page-title {
    font-size: clamp(61px, 18vw, 92px);
  }

  .hero-title-row,
  .section-head,
  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-title-row {
    margin-bottom: 38px;
  }

  .hero-title-row .body-copy,
  .page-hero-grid .body-copy {
    max-width: 47ch;
    padding: 0;
  }

  .hero-board {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 58vh 300px 260px;
    gap: 9px;
    min-height: auto;
  }

  .hero-card.tall {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .hero-card.copy-card {
    grid-column: 1 / -1;
    grid-row: 2;
    padding: 28px 24px;
  }

  .hero-card.center-image {
    grid-column: 1;
    grid-row: 3;
  }

  .hero-card.right-top {
    grid-column: 2;
    grid-row: 3;
  }

  .hero-card.copy-card .hero-note {
    font-size: 33px;
  }

  .hero-actions .btn {
    flex: 1 1 150px;
    padding-inline: 16px;
  }

  .floating-stat {
    top: 12px;
    right: 12px;
  }

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

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

  .hero-stat:last-child {
    border-bottom: 0;
  }

  .marquee-item {
    padding: 12px 18px;
    font-size: 18px;
  }

  .featured-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .collection-rail {
    grid-auto-columns: 82vw;
    padding-right: var(--gutter);
  }

  .collection-card,
  .collection-card:nth-child(even) {
    height: 116vw;
    max-height: 620px;
    margin-top: 0;
  }

  .editorial-banner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .editorial-copy {
    min-height: 500px;
    padding: 42px 24px;
  }

  .editorial-image {
    min-height: 118vw;
  }

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

  .process-card,
  .process-card:nth-child(even) {
    min-height: 360px;
    border-right: 0;
  }

  .category-grid {
    display: flex;
    margin-right: calc(var(--gutter) * -1);
    overflow-x: auto;
    padding-right: var(--gutter);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .category-grid::-webkit-scrollbar {
    display: none;
  }

  .category-card:nth-child(n) {
    width: 82vw;
    min-width: 82vw;
    min-height: 124vw;
    scroll-snap-align: start;
  }

  .plan-card {
    min-height: 580px;
    padding: 36px 28px;
  }

  .regions-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .regions-copy {
    padding: 48px 24px;
  }

  .regions-image {
    min-height: 128vw;
  }

  .region-list {
    grid-template-columns: 1fr 1fr;
  }

  .regions-quote {
    right: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
  }

  .quiz-banner {
    grid-template-columns: 1fr;
    gap: 38px;
    align-items: start;
  }

  .quiz-banner h2 {
    font-size: clamp(58px, 18vw, 88px);
  }

  .quiz-banner .btn {
    justify-self: stretch;
  }

  .page-hero {
    padding-top: 52px;
  }

  .page-visual {
    height: 130vw;
    max-height: 720px;
  }

  .page-visual-overlay {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
  }

  .page-visual-overlay .btn {
    width: 100%;
  }

  .page-nav-strip {
    top: 66px;
    justify-content: flex-start;
  }

  .stylist-profile-grid {
    display: flex;
    margin-right: calc(var(--gutter) * -1);
    overflow-x: auto;
    padding-right: var(--gutter);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .stylist-card,
  .stylist-card:nth-child(2),
  .stylist-card:nth-child(3) {
    width: 82vw;
    min-width: 82vw;
    min-height: 122vw;
    margin: 0;
    scroll-snap-align: start;
  }

  .blog-grid {
    display: flex;
    margin-right: calc(var(--gutter) * -1);
    overflow-x: auto;
    padding-right: var(--gutter);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .blog-card,
  .blog-card:first-child,
  .blog-card:nth-child(2),
  .blog-card:nth-child(3) {
    width: 84vw;
    min-width: 84vw;
    min-height: 122vw;
    margin: 0;
    scroll-snap-align: start;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 20px;
  }

  .footer-col:last-child {
    grid-column: 1 / -1;
  }

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

@media (max-width: 420px) {
  .site-header {
    padding-inline: 15px;
  }

  .header-left,
  .header-right {
    gap: 6px;
  }

  .brand {
    gap: 7px;
  }

  .brand-word {
    font-size: 22px;
  }

  .display-title {
    font-size: 17.4vw;
  }

  .hero-card.copy-card {
    grid-row: 2;
  }

  .region-list {
    grid-template-columns: 1fr;
  }

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

  .footer-brand,
  .footer-col:last-child {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

  .hero-card img,
  .page-visual img,
  .category-card img,
  .collection-card img,
  .editorial-image img,
  .regions-image > img,
  .blog-card > img,
  .stylist-card > img {
    transform: none !important;
  }
}
