@font-face {
  font-family: "Onest";
  src: url("/assets/fonts/onest-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Onest";
  src: url("/assets/fonts/onest-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Onest";
  src: url("/assets/fonts/onest-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Playfair Display";
  src: url("/assets/fonts/playfair-italic-cyrillic.woff2") format("woff2");
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Playfair Display";
  src: url("/assets/fonts/playfair-italic-latin-ext.woff2") format("woff2");
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Playfair Display";
  src: url("/assets/fonts/playfair-italic-latin.woff2") format("woff2");
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --milk: #f3f0e9;
  --paper: #fbfaf6;
  --stone: #d9d2c7;
  --stone-dark: #aaa195;
  --ink: #171715;
  --ink-soft: #4c4b47;
  --denim: #334656;
  --denim-light: #617384;
  --orange: #e85d18;
  --orange-dark: #b83e08;
  --whatsapp: #176b44;
  --line: rgba(23, 23, 21, 0.22);
  --header-h: 64px;
  --gutter: clamp(18px, 3.2vw, 58px);
  --content: 1560px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--milk);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--milk);
  color: var(--ink);
  font-family: "Onest", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
  color: inherit;
  font: inherit;
}

button,
[role="button"],
summary {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

::selection {
  background: var(--orange);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  padding: 12px 16px;
  background: var(--ink);
  color: var(--paper);
  transition: transform 180ms ease;
}

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

.section-pad {
  padding: clamp(86px, 10vw, 170px) var(--gutter);
}

section[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  width: 100%;
  min-height: var(--header-h);
  padding: 8px var(--gutter);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--milk) 96%, transparent);
  transition: min-height 250ms ease, background 250ms ease;
}

.site-header.is-scrolled {
  min-height: 58px;
  background: var(--paper);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 44px;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.brand__fruit {
  position: relative;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
}

.brand__fruit::before {
  position: absolute;
  top: -4px;
  right: -2px;
  width: 9px;
  height: 6px;
  border-radius: 9px 2px 9px 2px;
  background: #8d9f72;
  content: "";
  transform: rotate(-24deg);
}

.brand__fruit span {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.56);
  transform: rotate(28deg);
}

.brand__name {
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  gap: clamp(18px, 2.6vw, 42px);
  font-size: 13px;
}

.desktop-nav a {
  position: relative;
  display: grid;
  min-height: 44px;
  place-items: center;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
}

.language-toggle,
.menu-toggle {
  display: grid;
  min-width: 44px;
  min-height: 44px;
  place-items: center;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
}

.language-toggle {
  border: 1px solid var(--line);
}

.header-ticket {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 142px;
  min-height: 44px;
  padding: 0 14px;
  background: var(--ink);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  color: var(--paper);
  font-size: 12px;
  font-weight: 600;
  transition: background 180ms ease, color 180ms ease;
}

.header-ticket:hover {
  background: var(--orange);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  grid-template-rows: repeat(2, 1px);
  gap: 6px;
  border: 1px solid var(--line);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  z-index: 150;
  inset: 0;
  padding: max(20px, env(safe-area-inset-top)) var(--gutter) max(24px, env(safe-area-inset-bottom));
  background: var(--denim);
  color: var(--paper);
  overflow-y: auto;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.mobile-menu__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mobile-menu__close {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  background: transparent;
  color: inherit;
  font-size: 30px;
}

.mobile-menu nav {
  display: grid;
  margin: clamp(36px, 9vh, 90px) 0 48px;
}

.mobile-menu nav a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  min-height: 74px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.mobile-menu nav a span:first-child {
  font-size: 11px;
  opacity: 0.68;
}

.mobile-menu nav a span:last-child {
  font-size: clamp(26px, 8vw, 44px);
  letter-spacing: -0.04em;
}

.hero {
  position: relative;
  min-height: max(690px, calc(100svh - var(--header-h)));
  overflow: clip;
  background: var(--stone);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(243, 240, 233, 0.08) 0%, rgba(243, 240, 233, 0.72) 40%, rgba(243, 240, 233, 0.72) 60%, rgba(243, 240, 233, 0.08) 100%);
  content: "";
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__rail {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(180deg, #f0f0ee, #686865 45%, #f8f8f6 55%, #7b7b78);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.18);
}

.hero__brandline {
  position: absolute;
  z-index: 1;
  right: -0.03em;
  bottom: 4.5%;
  left: -0.03em;
  overflow: hidden;
  color: rgba(23, 23, 21, 0.12);
  font-size: clamp(82px, 14.2vw, 290px);
  font-weight: 800;
  letter-spacing: -0.09em;
  line-height: 0.72;
  text-align: center;
  white-space: nowrap;
}

.hero__copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(710px, 56vw);
  margin: 0 auto;
  padding-top: clamp(92px, 13vh, 148px);
  text-align: center;
}

.hero h1 {
  margin: 0;
  font-size: clamp(54px, 6.35vw, 114px);
  font-weight: 540;
  letter-spacing: -0.075em;
  line-height: 0.87;
  text-wrap: balance;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em,
.style-note h2 em,
.how h2 em {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.96em;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.hero__lead {
  max-width: 610px;
  margin: 28px 0 0;
  color: #2c2b28;
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.45;
  text-wrap: balance;
}

.hero__actions,
.final-cta__copy > div {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  gap: 22px;
}

.ticket-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 224px;
  min-height: 54px;
  padding: 0 18px;
  background: var(--ink);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
  color: var(--paper);
  font-size: 13px;
  font-weight: 650;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.ticket-button:hover {
  background: var(--denim);
  transform: translateY(-2px);
}

.ticket-button--orange {
  background: var(--orange);
  color: var(--ink);
}

.ticket-button--orange:hover {
  background: #ff7a33;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  gap: 12px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 650;
}

.hero__facts {
  position: absolute;
  z-index: 4;
  right: var(--gutter);
  bottom: 20px;
  left: var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(243, 240, 233, 0.9);
}

.hero__facts p {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  min-width: 0;
  min-height: 64px;
  margin: 0;
  padding: 10px 24px;
  gap: 14px;
  border-top: 1px solid rgba(23, 23, 21, 0.52);
}

.hero__facts p + p {
  border-left: 1px solid var(--line);
}

.hero__facts strong {
  font-size: clamp(18px, 2vw, 29px);
  letter-spacing: -0.06em;
}

.hero__facts span {
  min-width: 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.style-note {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  align-items: end;
  max-width: var(--content);
  min-height: 760px;
  margin: 0 auto;
  gap: clamp(48px, 8vw, 150px);
}

.style-note__intro {
  align-self: center;
  max-width: 530px;
}

.style-note h2,
.how h2 {
  margin: 0;
  font-size: clamp(48px, 6vw, 104px);
  font-weight: 520;
  letter-spacing: -0.075em;
  line-height: 0.94;
}

.style-note h2 span,
.style-note h2 em,
.how h2 span,
.how h2 em {
  display: block;
}

.style-note__intro > p:last-child {
  max-width: 480px;
  margin: 32px 0 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.4vw, 20px);
}

.palette-type {
  display: grid;
  min-width: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.palette-type span {
  position: relative;
  display: block;
  overflow: hidden;
  min-width: 0;
  padding: 0.03em 0;
  font-size: clamp(60px, 8vw, 145px);
  font-weight: 720;
  letter-spacing: -0.085em;
  line-height: 0.92;
  white-space: nowrap;
}

.palette-type span + span {
  border-top: 1px solid var(--line);
}

.palette-type span:nth-child(1) {
  color: #c79ba0;
}

.palette-type span:nth-child(2) {
  color: var(--ink);
  text-align: right;
}

.palette-type span:nth-child(3) {
  color: var(--denim-light);
}

.wardrobe {
  padding-right: 0;
  padding-left: 0;
  background: var(--paper);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.5fr);
  align-items: end;
  width: min(calc(100% - (2 * var(--gutter))), var(--content));
  margin: 0 auto clamp(60px, 7vw, 110px);
  gap: 24px clamp(30px, 6vw, 100px);
}

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

.section-head h2,
.questions__title h2 {
  min-width: 0;
  margin: 0;
  font-size: clamp(46px, 6.3vw, 112px);
  font-weight: 530;
  letter-spacing: -0.075em;
  line-height: 0.92;
  text-wrap: balance;
}

.section-head > p:last-child {
  max-width: 430px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.25vw, 19px);
}

.wardrobe__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  min-width: 0;
}

.look-stage {
  position: sticky;
  top: calc(var(--header-h) + 12px);
  align-self: start;
  height: calc(100svh - var(--header-h) - 24px);
  min-height: 620px;
  max-height: 980px;
  margin-left: var(--gutter);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #d8d2c9;
}

.look-stage__rail {
  position: absolute;
  z-index: 5;
  top: 23px;
  right: 22px;
  left: 22px;
  height: 5px;
  background: linear-gradient(180deg, #f3f3f1, #747472 46%, #f8f8f8 52%, #737371);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.18);
}

.look-stage__rail span {
  position: absolute;
  top: 4px;
  width: 1px;
  height: 22px;
  background: #676765;
}

.look-stage__rail span:nth-child(1) { left: 12%; }
.look-stage__rail span:nth-child(2) { left: 38%; }
.look-stage__rail span:nth-child(3) { left: 64%; }
.look-stage__rail span:nth-child(4) { left: 88%; }

.look-stage__images {
  position: absolute;
  inset: 50px 30px 92px;
  overflow: hidden;
  background: var(--stone);
}

.look-stage__images img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  object-position: center 28%;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 400ms var(--ease), opacity 220ms ease;
}

.look-stage__images img.is-active {
  z-index: 2;
  opacity: 1;
  clip-path: inset(0);
}

.look-stage__footer {
  position: absolute;
  right: 30px;
  bottom: 18px;
  left: 30px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.look-stage__number {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  background: var(--orange);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  font-size: 12px;
  font-weight: 750;
}

.look-stage__footer strong {
  min-width: 0;
  font-size: clamp(17px, 1.5vw, 23px);
  letter-spacing: -0.035em;
}

.look-stage__hint {
  max-width: 150px;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.3;
  text-align: right;
}

.look-stage__controls {
  position: absolute;
  z-index: 7;
  top: 17px;
  right: 30px;
  display: flex;
  gap: 8px;
}

.look-stage__controls button {
  position: relative;
  display: grid;
  width: 44px;
  height: 58px;
  padding-top: 10px;
  place-items: center;
  border: 1px solid rgba(23, 23, 21, 0.45);
  background: var(--milk);
  font-size: 10px;
  font-weight: 700;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.look-stage__controls button::before {
  position: absolute;
  top: 6px;
  width: 5px;
  height: 5px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
}

.look-stage__controls button.is-active {
  background: var(--orange);
  transform: translateY(8px);
}

.look-stories {
  min-width: 0;
}

.look-story {
  display: flex;
  align-items: center;
  min-height: 78svh;
  padding: 70px clamp(32px, 6vw, 108px);
  border-bottom: 1px solid var(--line);
}

.look-story:nth-child(2) {
  background: #dde2e5;
}

.look-story:nth-child(3) {
  background: #c9c1b7;
}

.look-story:nth-child(4) {
  background: #beb8af;
}

.look-story__media {
  display: none;
}

.look-story__copy {
  width: min(100%, 560px);
}

.look-story__index {
  display: block;
  margin-bottom: 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.look-story h3 {
  margin: 0;
  font-size: clamp(46px, 5.5vw, 96px);
  font-weight: 540;
  letter-spacing: -0.075em;
  line-height: 0.92;
  text-wrap: balance;
}

.look-story p {
  max-width: 420px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.35vw, 20px);
}

.look-story a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin-top: 34px;
  gap: 18px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 650;
}

.how {
  background: var(--denim);
  color: var(--paper);
}

.how__head,
.steps,
.how__note {
  width: min(100%, var(--content));
  margin-right: auto;
  margin-left: auto;
}

.how__head {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  align-items: end;
  gap: 36px;
}

.how__head .eyebrow {
  align-self: start;
  padding-top: 12px;
}

.how h2 {
  font-size: clamp(48px, 6.4vw, 112px);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(70px, 8vw, 130px);
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
}

.steps li {
  position: relative;
  min-width: 0;
  min-height: 300px;
  padding: 28px clamp(22px, 3vw, 48px) 40px;
}

.steps li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.38);
}

.steps li > span {
  display: block;
  color: #ff7a33;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.steps h3 {
  max-width: 330px;
  margin: 100px 0 14px;
  font-size: clamp(24px, 2.4vw, 40px);
  font-weight: 540;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.steps p {
  max-width: 360px;
  margin: 0;
  color: rgba(251, 250, 246, 0.76);
  font-size: 14px;
}

.how__note {
  margin-top: 22px;
  color: rgba(251, 250, 246, 0.66);
  font-size: 12px;
  text-align: right;
}

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

.stores__layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.46fr) minmax(0, 1fr);
  width: min(100%, var(--content));
  margin: 0 auto;
  gap: 0;
  border: 1px solid var(--line);
}

.location-list {
  display: grid;
  grid-template-rows: repeat(2, minmax(230px, 1fr));
  min-width: 0;
  border-right: 1px solid var(--line);
  background: var(--paper);
}

.location-list button {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 50px;
  align-items: center;
  align-content: center;
  min-width: 0;
  min-height: 230px;
  padding: 32px 28px;
  gap: 18px;
  background: transparent;
  text-align: left;
  transition: background 240ms var(--ease), color 240ms var(--ease);
}

.location-list button + button {
  border-top: 1px solid var(--line);
}

.location-list button::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: var(--orange);
  content: "";
  transform: scaleY(0);
  transition: transform 240ms var(--ease);
}

.location-list button.is-active {
  background: linear-gradient(135deg, #fffdfa 0%, #f3ede3 100%);
}

.location-list button.is-active::before {
  transform: scaleY(1);
}

.location-list__number {
  color: var(--ink-soft);
  font-size: clamp(34px, 3.4vw, 58px);
  font-weight: 350;
  letter-spacing: -0.08em;
  line-height: 1;
  transition: color 240ms var(--ease);
}

.location-list button.is-active .location-list__number {
  color: var(--orange);
}

.location-list__copy {
  display: grid;
  min-width: 0;
}

.location-list__copy strong {
  min-width: 0;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 560;
  letter-spacing: -0.045em;
  overflow-wrap: anywhere;
}

.location-list__copy small {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 12px;
}

.location-list__arrow {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 18px;
  transition: background 240ms var(--ease), border-color 240ms var(--ease), color 240ms var(--ease), transform 240ms var(--ease);
}

.location-list button:hover .location-list__arrow,
.location-list button:focus-visible .location-list__arrow,
.location-list button.is-active .location-list__arrow {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--paper);
  transform: translate(2px, -2px);
}

.map-panel {
  display: grid;
  grid-template-rows: minmax(460px, 58vh) auto;
  min-width: 0;
  background: var(--stone);
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
  filter: grayscale(0.88) contrast(0.94) sepia(0.08);
}

.map-panel__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
  padding: 18px 24px;
  gap: 20px;
  background: var(--ink);
  color: var(--paper);
}

.map-panel__bar div {
  display: grid;
  min-width: 0;
}

.map-panel__bar div span {
  color: rgba(251, 250, 246, 0.6);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-panel__bar strong {
  min-width: 0;
  margin-top: 4px;
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 540;
  overflow-wrap: anywhere;
}

.map-panel__bar a {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 48px;
  gap: 16px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 650;
}

.store-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  align-items: end;
  width: min(100%, var(--content));
  margin: 44px auto 0;
  gap: 24px 38px;
}

.store-contact p {
  display: grid;
  min-width: 0;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.store-contact p span {
  margin-bottom: 7px;
  color: var(--ink-soft);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.store-contact p a {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 44px;
  font-size: clamp(15px, 1.5vw, 21px);
  font-weight: 540;
  overflow-wrap: anywhere;
}

.questions {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  width: min(100%, calc(var(--content) + (2 * var(--gutter))));
  margin: 0 auto;
  gap: clamp(50px, 9vw, 160px);
  background: var(--paper);
}

.questions__title {
  align-self: start;
  position: sticky;
  top: calc(var(--header-h) + 40px);
}

.faq-list {
  min-width: 0;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 44px;
  align-items: center;
  min-height: 96px;
  padding: 14px 0;
  list-style: none;
  gap: 10px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary > span {
  color: var(--ink-soft);
  font-size: 11px;
}

.faq-list summary strong {
  min-width: 0;
  font-size: clamp(18px, 1.7vw, 26px);
  font-weight: 540;
  letter-spacing: -0.035em;
}

.faq-list summary i {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  font-size: 22px;
  font-style: normal;
  transition: transform 220ms var(--ease), background 180ms ease;
}

.faq-list details[open] summary i {
  background: var(--orange);
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 650px;
  margin: 0;
  padding: 0 54px 30px 52px;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.2vw, 18px);
}

.final-cta {
  position: relative;
  min-height: min(820px, 82svh);
  overflow: clip;
  background: var(--stone);
}

.final-cta::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(243, 240, 233, 0.97) 0%, rgba(243, 240, 233, 0.9) 32%, rgba(243, 240, 233, 0.08) 63%);
  content: "";
}

.final-cta > img {
  width: 100%;
  height: 100%;
  min-height: min(820px, 82svh);
  object-fit: cover;
  object-position: center;
}

.final-cta__copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: var(--gutter);
  width: min(660px, 44vw);
  transform: translateY(-50%);
}

.final-cta__copy h2 {
  margin: 0;
  font-size: clamp(48px, 6.2vw, 108px);
  font-weight: 530;
  letter-spacing: -0.075em;
  line-height: 0.91;
  text-wrap: balance;
}

.final-cta__copy > p:not(.eyebrow) {
  max-width: 510px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.3vw, 19px);
}

.final-cta__copy > div {
  justify-content: flex-start;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 54px var(--gutter) max(42px, env(safe-area-inset-bottom));
  gap: 30px clamp(40px, 8vw, 130px);
  background: var(--ink);
  color: var(--paper);
}

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

.site-footer > div:first-child > p {
  margin: 14px 0 0;
  color: rgba(251, 250, 246, 0.62);
  font-size: 12px;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 26px;
}

.site-footer__links a {
  display: grid;
  min-height: 44px;
  place-items: center;
  border-bottom: 1px solid rgba(251, 250, 246, 0.42);
  font-size: 13px;
}

.site-footer__note {
  max-width: 900px;
  margin: 0;
  color: rgba(251, 250, 246, 0.55);
  font-size: 11px;
  line-height: 1.55;
}

.site-footer__copy {
  margin: 0;
  color: rgba(251, 250, 246, 0.55);
  font-size: 11px;
  text-align: right;
}

.floating-action {
  position: fixed;
  z-index: 90;
  bottom: max(18px, env(safe-area-inset-bottom));
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.floating-action--whatsapp {
  left: max(18px, env(safe-area-inset-left));
  background: var(--whatsapp);
  color: #fff;
}

.floating-action--whatsapp svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.floating-action--top {
  right: max(18px, env(safe-area-inset-right));
  background: var(--ink);
  color: var(--paper);
  font-size: 21px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 220ms var(--ease);
}

.floating-action--top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal,
html.motion-ready .reveal,
html.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero__copy {
    width: min(690px, 66vw);
  }

  .hero h1 {
    font-size: clamp(54px, 7.7vw, 92px);
  }

  .wardrobe__layout {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.8fr);
  }

  .look-stage {
    min-height: 580px;
    margin-left: 28px;
  }

  .look-story {
    padding-right: 46px;
    padding-left: 46px;
  }

  .look-stage__hint {
    display: none;
  }

  .look-stage__footer {
    grid-template-columns: 54px minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 58px;
  }

  .hero {
    display: flex;
    min-height: 0;
    flex-direction: column;
    background: var(--milk);
  }

  .hero__copy {
    position: relative;
    order: 1;
    align-items: flex-start;
    width: 100%;
    padding: 58px var(--gutter) 42px;
    text-align: left;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(48px, 10vw, 82px);
  }

  .hero__lead {
    max-width: 650px;
    text-wrap: pretty;
  }

  .hero__actions {
    justify-content: flex-start;
  }

  .hero__media {
    position: relative;
    order: 2;
    height: clamp(420px, 65svh, 690px);
  }

  .hero__media::after {
    background: linear-gradient(180deg, rgba(243, 240, 233, 0.04), rgba(243, 240, 233, 0.02) 72%, rgba(23, 23, 21, 0.2));
  }

  .hero__media img {
    object-position: 48% center;
  }

  .hero__brandline {
    bottom: 1%;
    color: rgba(251, 250, 246, 0.54);
    font-size: clamp(74px, 18vw, 150px);
  }

  .hero__facts {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    order: 3;
    margin: 0 var(--gutter);
    background: transparent;
  }

  .hero__facts p {
    padding: 12px 14px;
  }

  .style-note {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 70px;
  }

  .style-note__intro {
    max-width: 720px;
  }

  .style-note h2,
  .how h2 {
    font-size: clamp(48px, 10vw, 86px);
  }

  .palette-type span {
    font-size: clamp(58px, 13vw, 116px);
  }

  .section-head {
    grid-template-columns: 1fr;
  }

  .wardrobe__layout {
    display: block;
  }

  .look-stage {
    position: sticky;
    z-index: 15;
    top: var(--header-h);
    display: block;
    width: 100%;
    height: 58px;
    min-height: 0;
    margin: 0;
    border-right: 0;
    border-left: 0;
    background: var(--paper);
  }

  .look-stage__rail,
  .look-stage__images,
  .look-stage__footer {
    display: none;
  }

  .look-stage__controls {
    position: static;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 100%;
    gap: 0;
  }

  .look-stage__controls button {
    width: auto;
    height: 100%;
    min-height: 56px;
    padding: 0;
    border: 0;
    border-right: 1px solid var(--line);
    clip-path: none;
  }

  .look-stage__controls button::before {
    display: none;
  }

  .look-stage__controls button.is-active {
    transform: none;
  }

  .look-story {
    position: relative;
    display: grid;
    min-height: 0;
    padding: 0;
    background: var(--paper) !important;
  }

  .look-story::before {
    position: absolute;
    z-index: 2;
    top: 18px;
    right: 16px;
    left: 16px;
    height: 4px;
    background: linear-gradient(180deg, #efefec, #71716f 48%, #fafafa 55%, #6e6e6c);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.18);
    content: "";
  }

  .look-story__media {
    display: block;
    width: 100%;
    height: min(720px, 92svh);
    min-height: 480px;
    object-fit: cover;
    object-position: center 24%;
  }

  .look-story__copy {
    width: 100%;
    padding: 32px var(--gutter) 74px;
    background: var(--paper);
  }

  .look-story h3 {
    max-width: 720px;
    font-size: clamp(44px, 9.5vw, 76px);
  }

  .look-story p {
    max-width: 560px;
  }

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

  .how__head .eyebrow {
    padding-top: 0;
  }

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

  .steps li {
    min-height: 220px;
  }

  .steps li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.38);
    border-left: 0;
  }

  .steps h3 {
    margin-top: 58px;
  }

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

  .location-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .location-list button {
    grid-template-columns: 48px minmax(0, 1fr) 44px;
    min-height: 154px;
    padding: 22px 18px;
    gap: 14px;
  }

  .location-list button + button {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .location-list__copy strong {
    font-size: clamp(16px, 2.5vw, 24px);
  }

  .location-list__arrow {
    width: 42px;
    height: 42px;
  }

  .map-panel {
    grid-template-rows: 440px auto;
  }

  .map-panel iframe {
    min-height: 440px;
  }

  .store-contact {
    grid-template-columns: 1fr 1fr;
  }

  .store-contact .ticket-button {
    grid-column: 1 / -1;
  }

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

  .questions__title {
    position: static;
  }

  .final-cta {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .final-cta::after {
    display: none;
  }

  .final-cta > img {
    height: clamp(400px, 64svh, 640px);
    min-height: 0;
    object-position: 64% center;
  }

  .final-cta__copy {
    position: static;
    width: 100%;
    padding: 70px var(--gutter) 84px;
    background: var(--stone);
    transform: none;
  }

  .final-cta__copy h2 {
    max-width: 760px;
    font-size: clamp(48px, 10vw, 82px);
  }
}

@media (min-width: 621px) and (max-width: 860px) {
  .hero__media {
    height: clamp(680px, 84svh, 780px);
  }

  .hero__media img {
    object-position: center;
  }
}

@media (max-width: 680px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    padding-right: 12px;
    padding-left: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand__name {
    overflow: hidden;
    max-width: 155px;
    text-overflow: ellipsis;
  }

  .header-ticket {
    display: none;
  }

  .header-actions {
    gap: 5px;
  }

  .hero__copy {
    padding-top: 44px;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 64px);
    line-height: 0.91;
  }

  .hero__lead {
    margin-top: 22px;
    font-size: 15px;
  }

  .hero__actions {
    align-items: stretch;
    width: 100%;
    margin-top: 26px;
    flex-direction: column;
    gap: 8px;
  }

  .hero__actions .ticket-button,
  .hero__actions .text-link {
    width: 100%;
  }

  .hero__actions .text-link {
    justify-content: space-between;
    padding: 3px 0;
  }

  .hero__media {
    height: clamp(390px, 62svh, 560px);
  }

  .hero__media img {
    object-position: center;
  }

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

  .hero__facts p {
    min-height: 58px;
    padding-right: 4px;
    padding-left: 4px;
  }

  .hero__facts p + p {
    border-left: 0;
  }

  .hero__facts strong {
    width: 62px;
  }

  .style-note {
    gap: 56px;
  }

  .style-note h2,
  .how h2,
  .section-head h2,
  .questions__title h2,
  .final-cta__copy h2 {
    font-size: clamp(42px, 12vw, 64px);
  }

  .palette-type span {
    font-size: clamp(48px, 15.2vw, 78px);
  }

  .section-head {
    margin-bottom: 48px;
  }

  .look-story__media {
    height: 72svh;
    min-height: 450px;
  }

  .look-story__copy {
    padding-bottom: 66px;
  }

  .look-story h3 {
    font-size: clamp(42px, 12vw, 62px);
  }

  .how__note {
    text-align: left;
  }

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

  .location-list button {
    grid-template-columns: 44px minmax(0, 1fr) 42px;
    min-height: 112px;
    padding: 18px 16px;
    gap: 12px;
  }

  .location-list button + button {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .location-list__number {
    font-size: 34px;
  }

  .location-list__copy strong {
    font-size: 20px;
  }

  .location-list__arrow {
    width: 40px;
    height: 40px;
  }

  .map-panel {
    grid-template-rows: 370px auto;
  }

  .map-panel iframe {
    min-height: 370px;
  }

  .map-panel__bar {
    align-items: stretch;
    flex-direction: column;
    padding: 18px;
  }

  .map-panel__bar a {
    justify-content: space-between;
  }

  .store-contact {
    grid-template-columns: 1fr;
  }

  .store-contact .ticket-button {
    grid-column: auto;
    width: 100%;
  }

  .faq-list summary {
    grid-template-columns: 30px minmax(0, 1fr) 44px;
    min-height: 88px;
  }

  .faq-list details > p {
    padding-right: 12px;
    padding-left: 40px;
  }

  .final-cta__copy > div {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .final-cta__copy .ticket-button,
  .final-cta__copy .text-link {
    width: 100%;
  }

  .final-cta__copy .text-link {
    justify-content: space-between;
  }

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

  .site-footer__links {
    justify-content: flex-start;
  }

  .site-footer__copy {
    text-align: left;
  }
}

@media (max-width: 420px) {
  :root {
    --gutter: 16px;
  }

  .brand__name {
    max-width: 132px;
    font-size: 14px;
  }

  .brand__fruit {
    width: 22px;
    height: 22px;
  }

  .language-toggle,
  .menu-toggle {
    min-width: 44px;
    min-height: 44px;
  }

  .hero__copy {
    padding-top: 38px;
    padding-bottom: 34px;
  }

  .hero h1 {
    font-size: clamp(39px, 12.4vw, 53px);
  }

  .hero__media {
    height: 54svh;
    min-height: 350px;
  }

  .hero__media img {
    object-position: center;
  }

  .hero__brandline {
    font-size: 18vw;
  }

  .section-pad {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .palette-type span {
    font-size: 14.8vw;
  }

  .look-stage__controls button {
    min-width: 0;
  }

  .look-story__media {
    min-height: 400px;
  }

  .steps li {
    min-height: 210px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .questions {
    gap: 44px;
  }

  .faq-list summary strong {
    font-size: 17px;
  }

  .final-cta > img {
    height: 52svh;
    min-height: 340px;
  }

  .floating-action {
    width: 50px;
    height: 50px;
  }
}

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

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

  .look-stage__images img {
    clip-path: none;
  }
}

/* Real-inventory edition: every product-like image is tied to a Mandarin Kids publication. */
.hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(520px, 1.12fr);
  align-items: center;
  padding: 0 var(--gutter) 98px;
  gap: clamp(28px, 4vw, 74px);
  background: linear-gradient(135deg, #f3f0e9 0%, #e3ded4 100%);
}

.hero__copy {
  grid-column: 1;
  grid-row: 1;
  align-items: flex-start;
  width: auto;
  max-width: 670px;
  margin: 0;
  padding-top: clamp(58px, 8vh, 104px);
  text-align: left;
}

.hero h1 {
  font-size: clamp(54px, 5.55vw, 102px);
}

.hero__actions {
  justify-content: flex-start;
}

.hero__media {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: min(760px, calc(100svh - var(--header-h) - 126px));
  min-height: 570px;
  margin: 28px 0 0;
}

.hero__media::after {
  content: none;
}

.hero__collage {
  position: absolute;
  inset: 26px 0 52px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(210px, 0.65fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero__frame {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 21, 0.28);
  background: #d5d0c8;
}

.hero__frame--main {
  grid-row: 1 / -1;
}

.hero__frame--occasion {
  grid-column: 2;
  grid-row: 1;
}

.hero__frame--denim {
  grid-column: 2;
  grid-row: 2;
}

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

.hero__frame--main img {
  object-position: center 48%;
}

.hero__frame--occasion img {
  object-position: center;
}

.hero__frame--denim img {
  object-position: center 34%;
}

.hero__frame figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 9px 11px;
  background: rgba(251, 250, 246, 0.92);
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.hero__brandline {
  z-index: 3;
  bottom: 0;
  color: rgba(23, 23, 21, 0.16);
  font-size: clamp(70px, 9.2vw, 170px);
  text-align: right;
}

.hero__rail {
  top: 14px;
}

.look-stage__images {
  background: #d6d0c7;
}

.look-stage__images img {
  object-fit: contain;
  object-position: center;
  background: #d6d0c7;
}

.look-stage__summary {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.look-stage__summary small {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 600;
}

.look-stage__controls {
  max-width: calc(100% - 60px);
  overflow-x: auto;
  scrollbar-width: none;
}

.look-stage__controls::-webkit-scrollbar {
  display: none;
}

.look-story:nth-child(4n + 1) {
  background: var(--paper);
}

.look-story:nth-child(4n + 2) {
  background: #dde2e5;
}

.look-story:nth-child(4n + 3) {
  background: #d7cec3;
}

.look-story:nth-child(4n + 4) {
  background: #c7c1b8;
}

.look-story__category,
.look-story__badge {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.look-story__category {
  margin: 0 8px 16px 0;
  border: 1px solid var(--line);
}

.look-story__badge {
  margin-bottom: 16px;
  background: rgba(232, 93, 24, 0.13);
  color: var(--orange-dark);
}

.look-story__badge--available {
  background: rgba(23, 107, 68, 0.14);
  color: var(--whatsapp);
}

.look-story__badge--preorder {
  background: rgba(51, 70, 86, 0.14);
  color: var(--denim);
}

.look-story__details {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  gap: 8px;
}

.look-story__details span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  background: rgba(251, 250, 246, 0.48);
  font-size: 11px;
  font-weight: 650;
}

.look-story .look-story__source {
  min-height: 36px;
  margin-top: 12px;
  border-bottom: 0;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 550;
}

.catalog-message {
  display: grid;
  min-height: 52svh;
  margin: 0;
  padding: 70px clamp(32px, 6vw, 108px);
  place-items: center start;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 28px);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(390px, 0.8fr);
  min-height: 760px;
  background: linear-gradient(135deg, #ddd6cb 0%, #f3f0e9 100%);
}

.final-cta::after {
  content: none;
}

.final-cta > img {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: 760px;
  min-height: 760px;
  object-fit: cover;
  object-position: center;
}

.final-cta__copy {
  position: static;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  width: auto;
  max-width: 760px;
  padding: 80px var(--gutter);
  transform: none;
}

.site-footer__admin {
  width: fit-content;
  color: rgba(251, 250, 246, 0.5);
  font-size: 10px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(330px, 0.9fr) minmax(450px, 1.1fr);
  }

  .hero__collage {
    grid-template-columns: minmax(0, 1.25fr) minmax(180px, 0.75fr);
  }
}

@media (max-width: 900px) {
  .hero {
    display: flex;
    padding: 0;
    gap: 0;
  }

  .hero__copy {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 58px var(--gutter) 42px;
  }

  .hero__media {
    width: calc(100% - (2 * var(--gutter)));
    height: clamp(540px, 72svh, 760px);
    min-height: 0;
    margin: 0 var(--gutter);
  }

  .hero__collage {
    inset: 0 0 44px;
  }

  .hero__brandline {
    bottom: 0;
    font-size: clamp(68px, 18vw, 140px);
  }

  .hero__rail {
    top: -12px;
  }

  .look-stage__controls {
    display: flex;
    max-width: none;
  }

  .look-stage__controls button {
    min-width: 66px;
    flex: 1 0 66px;
  }

  .look-story__media {
    height: min(720px, 78svh);
    min-height: 470px;
    object-fit: contain;
    object-position: center;
    background: #d6d0c7;
  }

  .final-cta {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .final-cta > img {
    order: 1;
    width: 100%;
    height: min(690px, 78svh);
    min-height: 460px;
    object-fit: cover;
    object-position: center 35%;
  }

  .final-cta__copy {
    order: 2;
    width: 100%;
    max-width: none;
    padding: 70px var(--gutter) 84px;
  }
}

@media (max-width: 560px) {
  .hero__media {
    height: 590px;
  }

  .hero__collage {
    grid-template-columns: minmax(0, 1.5fr) minmax(122px, 0.5fr);
    gap: 7px;
  }

  .hero__frame figcaption {
    right: 8px;
    bottom: 8px;
    left: 8px;
    padding: 7px 8px;
    font-size: 9px;
  }

  .look-story__media {
    height: 66svh;
    min-height: 420px;
  }

  .look-story__category,
  .look-story__badge {
    font-size: 9px;
  }

  .final-cta > img {
    height: 66svh;
    min-height: 420px;
  }
}

/* Temporary source-conscious lookbook: weak social frames stay truthful and are
   presented as small editorial prints instead of oversized campaign photography. */
.hero__collage {
  inset: 30px 0 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(112px, 0.22fr);
  grid-template-rows: minmax(0, 1fr);
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(23, 23, 21, 0.2);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.42), transparent 46%),
    #d5d0c7;
}

.hero__frame--main {
  grid-row: auto;
  padding: clamp(12px, 1.35vw, 20px);
  border: 0;
  background: #f8f5ee;
  box-shadow: 0 24px 60px rgba(37, 31, 25, 0.17);
  transform: rotate(-0.45deg);
}

.hero__frame--main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #ecebe7;
}

.hero__frame figcaption {
  right: clamp(20px, 2vw, 30px);
  bottom: clamp(20px, 2vw, 30px);
  left: clamp(20px, 2vw, 30px);
}

.hero__folio {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 4px 12px 18px;
  border-left: 1px solid rgba(23, 23, 21, 0.3);
  color: rgba(23, 23, 21, 0.72);
}

.hero__folio span {
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.15em;
  line-height: 1.4;
  writing-mode: vertical-rl;
}

.hero__folio strong {
  color: var(--orange);
  font-size: clamp(36px, 3.2vw, 58px);
  font-weight: 650;
  letter-spacing: -0.07em;
  line-height: 0.9;
  writing-mode: vertical-rl;
}

.wardrobe__layout {
  display: block;
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.look-stage {
  display: none;
}

.look-stories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.6vw, 26px);
}

.look-story,
.look-story:nth-child(4n + 1),
.look-story:nth-child(4n + 2),
.look-story:nth-child(4n + 3),
.look-story:nth-child(4n + 4) {
  display: grid;
  min-width: 0;
  min-height: 0;
  grid-template-rows: auto 1fr;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 21, 0.22);
  background: #f6f2ea;
  box-shadow: 0 18px 48px rgba(48, 39, 30, 0.08);
}

.look-story:nth-child(3n + 2) {
  background: #e4e8e9;
}

.look-story:nth-child(3n + 3) {
  background: #ddd4c8;
}

.look-story__media-frame {
  position: relative;
  display: grid;
  aspect-ratio: 4 / 5;
  min-height: 0;
  overflow: hidden;
  place-items: center;
  border-bottom: 1px solid rgba(23, 23, 21, 0.18);
  background: #d8d2c9;
  isolation: isolate;
}

.look-story__media-frame::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.36), transparent 48%),
    linear-gradient(0deg, rgba(30, 26, 22, 0.06), transparent 36%);
  content: "";
  pointer-events: none;
}

.look-story__ambient {
  position: absolute;
  z-index: 0;
  inset: -12%;
  width: 124%;
  height: 124%;
  opacity: 0.2;
  object-fit: cover;
  filter: blur(30px) saturate(0.7) contrast(0.88);
  transform: scale(1.06);
}

.look-story__media {
  position: relative;
  z-index: 2;
  display: block;
  width: auto;
  height: auto;
  min-height: 0;
  max-width: min(76%, 310px);
  max-height: calc(100% - 58px);
  padding: 7px;
  border: 1px solid rgba(23, 23, 21, 0.18);
  background: #f8f5ee;
  box-shadow: 0 16px 36px rgba(26, 22, 18, 0.23);
  object-fit: contain;
}

.look-story__copy {
  display: flex;
  width: 100%;
  padding: clamp(22px, 2.2vw, 32px);
  flex-direction: column;
  align-items: flex-start;
}

.look-story__index {
  margin-bottom: 14px;
}

.look-story__category,
.look-story__badge {
  margin-bottom: 12px;
}

.look-story h3 {
  max-width: 13ch;
  font-size: clamp(30px, 2.7vw, 45px);
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.look-story p {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.55;
}

.look-story a {
  margin-top: auto;
  padding-top: 24px;
}

.look-story .look-story__source {
  margin-top: 6px;
  padding-top: 6px;
}

.final-cta {
  min-height: 640px;
  grid-template-columns: minmax(0, 1.28fr) minmax(330px, 0.72fr);
}

.final-cta > img {
  align-self: center;
  justify-self: center;
  width: min(78%, 390px);
  height: auto;
  min-height: 0;
  max-height: 560px;
  padding: 10px;
  border: 1px solid rgba(23, 23, 21, 0.2);
  background: #f8f5ee;
  box-shadow: 0 24px 58px rgba(34, 28, 23, 0.18);
  object-fit: contain;
  object-position: center;
  transform: rotate(0.55deg);
}

@media (max-width: 1180px) {
  .look-stories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__collage {
    grid-template-columns: minmax(0, 1fr) 92px;
  }
}

@media (max-width: 900px) {
  .hero__collage {
    inset: 0 0 44px;
  }

  .final-cta {
    padding-top: 56px;
  }

  .final-cta > img {
    order: 1;
    width: min(calc(100% - (2 * var(--gutter))), 390px);
    height: auto;
    min-height: 0;
    max-height: 540px;
  }
}

@media (max-width: 680px) {
  .wardrobe__layout {
    width: 100%;
    padding: 0;
  }

  .look-stories {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 0 var(--gutter) 18px;
    overflow-x: auto;
    scroll-padding-left: var(--gutter);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .look-stories::-webkit-scrollbar {
    display: none;
  }

  .look-story,
  .look-story:nth-child(4n + 1),
  .look-story:nth-child(4n + 2),
  .look-story:nth-child(4n + 3),
  .look-story:nth-child(4n + 4) {
    display: flex;
    width: min(84vw, 340px);
    height: auto;
    align-self: flex-start;
    flex: 0 0 min(84vw, 340px);
    flex-direction: column;
    grid-template-rows: none;
    scroll-snap-align: start;
  }

  .look-story__media-frame {
    width: 100%;
    height: min(105vw, 425px);
    min-height: min(105vw, 425px);
    flex: 0 0 min(105vw, 425px);
    aspect-ratio: auto;
  }

  .look-story__media {
    width: auto;
    height: auto;
    max-width: calc(100% - 46px);
    max-height: calc(100% - 46px);
    flex: none;
  }

  .look-story__copy {
    flex: 0 0 auto;
  }

  .look-story a {
    margin-top: 24px;
    padding-top: 0;
  }

  .look-story h3 {
    font-size: clamp(31px, 9.5vw, 40px);
  }
}

@media (max-width: 560px) {
  .hero__media {
    height: 560px;
  }

  .hero__collage {
    grid-template-columns: minmax(0, 1fr) 62px;
    gap: 10px;
    padding: 14px;
  }

  .hero__frame--main {
    padding: 10px;
  }

  .hero__frame figcaption {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .hero__folio {
    padding: 10px 0 8px 10px;
  }

  .hero__folio strong {
    font-size: 32px;
  }

  .look-story__media {
    height: auto;
    min-height: 0;
  }

  .final-cta > img {
    width: min(calc(100% - (2 * var(--gutter))), 330px);
    height: auto;
    min-height: 0;
  }
}
