:root {
  --ink: #070707;
  --paper: #f6f5f1;
  --white: #fffefa;
  --muted: rgba(7, 7, 7, 0.48);
  --line: rgba(7, 7, 7, 0.12);
  --panel: rgba(255, 254, 250, 0.9);
  --active-bg: url("assets/tatar-bazar-cover.jpg");
  --bg-position: center;
  --display-font: "Druk Site", "Druk Wide Cyr", "Druk Wide", "Eurostyle Site", Inter, "Helvetica Neue", Arial, sans-serif;
  --display-tracking: 0.045em;
  --display-tracking-tight: 0.026em;
  --display-tracking-wide: 0.075em;
}

@font-face {
  font-family: "Druk Site";
  src:
    url("assets/fonts/druk-wide-cyr.ttf") format("truetype"),
    local("Druk Wide Cyr"),
    local("Druk Wide");
  font-weight: 500 900;
  font-display: swap;
}

@font-face {
  font-family: "Eurostyle Site";
  src:
    url("assets/fonts/eurostylenormal.ttf") format("truetype"),
    local("Eurostyle"),
    local("Eurostyle Normal"),
    local("Eurostile"),
    local("Eurostile Extended"),
    local("Eurostile Bold Extended"),
    local("Microgramma D Extended Bold");
  font-weight: 500 900;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--display-font);
}

body.is-about-open {
  overflow: hidden;
}

button,
a {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

a {
  text-decoration: none;
}

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

.site {
  min-height: 100svh;
  transition:
    filter 360ms ease,
    transform 360ms ease;
}

body.is-about-open .site {
  filter: blur(10px);
  transform: scale(0.992);
  pointer-events: none;
}

.hero-picker {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--white);
  isolation: isolate;
}

.hero-picker::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(7, 7, 7, 0.026) 1px, transparent 1px);
  background-size: 8.2vw 8.2vw;
  opacity: 0;
  transition: opacity 420ms ease;
}

.hero-picker.is-location-open::before {
  opacity: 0.18;
}

.topbar,
.screen-footer {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px clamp(18px, 3vw, 46px);
}

.topbar {
  top: 0;
  justify-content: flex-start;
  border-bottom: 1px solid var(--line);
}

.topbar-dot {
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: var(--ink);
}

.text-button,
.screen-footer,
.collection-kicker,
.collection-instruction,
.style-note,
.look-meta span,
.look-meta p,
.outfit-card span,
.outfit-card p {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.28;
  text-transform: uppercase;
  letter-spacing: var(--display-tracking-wide);
}

.text-button {
  padding: 0;
  color: var(--muted);
}

.text-button:hover {
  color: var(--ink);
}

.collection-intro {
  position: absolute;
  left: clamp(18px, 3vw, 46px);
  top: clamp(82px, 10vh, 118px);
  z-index: 18;
  width: min(1280px, calc(100vw - 36px));
  transition:
    opacity 260ms ease,
    transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.collection-kicker {
  margin: 0 0 16px;
}

.collection-intro h1 {
  max-width: min(980px, 92vw);
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(28px, 3.55vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: var(--display-tracking-tight);
  text-transform: uppercase;
}

.collection-instruction {
  width: min(460px, 88vw);
  margin: clamp(24px, 4vh, 48px) 0 0;
  color: var(--muted);
  line-height: 1.42;
}

.hero-picker.is-location-open .collection-intro {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-24px);
}

.style-note {
  position: absolute;
  left: clamp(18px, 3vw, 46px);
  bottom: clamp(18px, 3vh, 34px);
  z-index: 34;
  display: inline-flex;
  min-width: min(360px, calc(100vw - 36px));
  align-items: center;
  justify-content: flex-start;
  padding: 18px 22px;
  background: #f1f0ec;
  border-radius: 4px;
  color: var(--ink);
  box-shadow: 0 18px 54px rgba(7, 7, 7, 0.08);
  transition:
    opacity 260ms ease,
    transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-picker.is-location-open .style-note {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

.about-trigger {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 120;
  min-height: 132px;
  padding: 18px 12px;
  color: var(--white);
  background: var(--ink);
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: var(--display-tracking-wide);
  text-transform: uppercase;
  transition:
    background 200ms ease,
    transform 240ms ease,
    color 200ms ease;
}

.about-trigger:hover {
  transform: translateY(-50%) rotate(180deg) translateY(-4px);
}

body.is-about-open .about-trigger {
  color: var(--ink);
  background: var(--white);
}

.about-overlay {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
  background: rgba(7, 7, 7, 0.34);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.about-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.about-modal {
  position: relative;
  width: min(820px, calc(100vw - 72px));
  min-height: min(440px, calc(100svh - 48px));
  display: grid;
  align-content: start;
  gap: clamp(18px, 3vw, 34px);
  padding: clamp(24px, 4vw, 56px);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 28px 90px rgba(7, 7, 7, 0.28);
  transform: translateY(18px) scale(0.98);
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.about-overlay.is-open .about-modal {
  transform: translateY(0) scale(1);
}

.about-kicker,
.about-close,
.about-modal p {
  font-size: 13px;
  font-weight: 900;
  line-height: 1.32;
  letter-spacing: var(--display-tracking-wide);
  text-transform: uppercase;
}

.about-kicker {
  margin: 0;
  color: var(--muted);
}

.about-modal h2 {
  margin: 0;
  padding: 0.04em 0 0.02em;
  font-size: clamp(42px, 4.7vw, 64px);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: var(--display-tracking-tight);
  text-transform: uppercase;
}

.about-copy {
  max-width: 680px;
  display: grid;
  gap: clamp(12px, 1.2vw, 18px);
}

.about-modal p:not(.about-kicker) {
  max-width: 680px;
  margin: 0;
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(15px, 1.18vw, 18px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
  text-transform: none;
  text-wrap: pretty;
  hyphens: auto;
}

.about-modal a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.16em;
}

.about-close {
  position: absolute;
  right: clamp(16px, 2vw, 24px);
  top: clamp(16px, 2vw, 24px);
  color: var(--muted);
}

.about-close:hover {
  color: var(--ink);
}

.location-drop {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: var(--active-bg);
  background-position: var(--bg-position);
  background-size: cover;
  opacity: 0;
  pointer-events: none;
  filter: saturate(0.84) contrast(1.02) brightness(0.96);
  clip-path: inset(52% 38% 34% 38%);
  transform: translateY(22%) scale(0.74);
  transform-origin: 50% 58%;
  transition:
    opacity 260ms ease,
    clip-path 860ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 860ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 520ms ease,
    background-image 200ms ease;
}

.location-drop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.38), rgba(7, 7, 7, 0.08) 48%, rgba(7, 7, 7, 0.34)),
    linear-gradient(180deg, rgba(7, 7, 7, 0.18), rgba(7, 7, 7, 0.42));
}

.hero-picker.is-location-open .location-drop {
  opacity: 1;
  filter: saturate(0.9) contrast(1.04) brightness(0.98);
  clip-path: inset(0);
  transform: translateY(0) scale(1);
}

.look-meta {
  position: absolute;
  left: clamp(18px, 3vw, 46px);
  top: clamp(96px, 14vh, 150px);
  z-index: 22;
  width: min(560px, 62vw);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(28px);
  transition:
    opacity 320ms ease 120ms,
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1) 120ms;
}

.hero-picker.is-location-open .look-meta {
  opacity: 1;
  transform: translateY(0);
}

.look-meta span {
  display: inline-block;
  margin-bottom: 20px;
  color: rgba(255, 254, 250, 0.72);
}

.look-meta h2 {
  margin: 0;
  padding: 0.04em 0 0.02em;
  font-family: var(--display-font);
  font-size: clamp(34px, 5.8vw, 82px);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: var(--display-tracking-tight);
  text-transform: uppercase;
}

.look-meta p {
  display: inline-block;
  margin: 22px 10px 0 0;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
}

.runway-wrap {
  position: absolute;
  inset: 0;
  z-index: 16;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: end;
  gap: 12px;
  padding: 0 clamp(18px, 3vw, 46px) clamp(22px, 4vh, 54px);
}

.runway {
  min-height: min(68vh, 700px);
  display: flex;
  align-items: flex-end;
  gap: clamp(28px, 4.4vw, 82px);
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: min(26vw, 360px);
  padding: clamp(28px, 4vw, 54px) min(28vw, 390px) 0;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.runway::-webkit-scrollbar {
  display: none;
}

.hero-card {
  position: relative;
  flex: 0 0 clamp(138px, 15vw, 230px);
  height: min(64vh, 660px);
  display: grid;
  place-items: end center;
  padding: 0;
  opacity: 0.6;
  scroll-snap-align: center;
  transform: scale(0.86);
  transform-origin: center bottom;
  transition:
    opacity 320ms ease,
    transform 680ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 360ms ease;
  outline: none;
}

.hero-card:hover {
  opacity: 0.9;
  transform: scale(0.94) translateY(-10px);
}

.hero-card:focus-visible img {
  filter:
    drop-shadow(3px 0 0 rgba(7, 7, 7, 0.2))
    drop-shadow(-3px 0 0 rgba(7, 7, 7, 0.2))
    drop-shadow(0 3px 0 rgba(7, 7, 7, 0.2))
    drop-shadow(0 -3px 0 rgba(7, 7, 7, 0.2))
    drop-shadow(0 38px 34px rgba(7, 7, 7, 0.2));
}

.hero-card.is-active {
  z-index: 12;
  opacity: 1;
  transform: scale(1.1);
}

.hero-picker.is-location-open .hero-card {
  opacity: 0.14;
  filter: blur(1px) saturate(0.7);
}

.hero-picker.is-location-open .hero-card.is-active {
  opacity: 1;
  filter: none;
  transform: scale(1.28) translateY(-18px);
}

.hero-picker.is-location-open .runway-wrap {
  padding-bottom: clamp(44px, 6vh, 76px);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 28px 28px rgba(7, 7, 7, 0.16));
}

.hero-card.is-active img {
  filter: drop-shadow(0 38px 34px rgba(7, 7, 7, 0.2));
}

.hero-picker.is-location-open .hero-card img {
  filter: drop-shadow(0 24px 26px rgba(7, 7, 7, 0.18));
}

.hero-picker.is-location-open .hero-card.is-active img {
  filter:
    drop-shadow(3px 0 0 rgba(255, 254, 250, 0.72))
    drop-shadow(-3px 0 0 rgba(255, 254, 250, 0.72))
    drop-shadow(0 3px 0 rgba(255, 254, 250, 0.72))
    drop-shadow(0 -3px 0 rgba(255, 254, 250, 0.72))
    drop-shadow(0 42px 34px rgba(7, 7, 7, 0.3));
}

.arrow {
  position: relative;
  z-index: 18;
  width: clamp(42px, 5vw, 72px);
  height: clamp(42px, 5vw, 72px);
  display: grid;
  place-items: center;
  font-size: clamp(38px, 5.4vw, 78px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: var(--display-tracking-wide);
  transition:
    opacity 200ms ease,
    transform 200ms ease,
    color 200ms ease;
}

.arrow:hover {
  transform: translateX(var(--arrow-shift, 0));
}

.arrow-left {
  --arrow-shift: -8px;
}

.arrow-right {
  --arrow-shift: 8px;
}

.hero-picker.is-location-open .arrow {
  color: var(--white);
}

.outfit-drawer {
  position: absolute;
  right: clamp(18px, 3vw, 46px);
  top: 50%;
  z-index: 24;
  width: min(290px, 24vw);
  display: grid;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translate(50px, -50%);
  transition:
    opacity 320ms ease 120ms,
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1) 120ms;
}

.hero-picker.is-location-open .outfit-drawer {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%);
}

.outfit-card {
  min-height: 132px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 16px;
  background: var(--panel);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 70px rgba(7, 7, 7, 0.18);
  overflow: hidden;
}

.outfit-card.has-image {
  min-height: 172px;
  gap: 8px;
  padding: 10px 12px 12px;
}

.outfit-card img {
  width: 100%;
  height: 86px;
  object-fit: contain;
  object-position: center;
  background: rgba(255, 254, 250, 0.78);
}

.outfit-card span,
.outfit-card p {
  margin: 0;
  color: var(--muted);
}

.outfit-card strong {
  font-size: clamp(18px, 1.8vw, 28px);
  font-weight: 900;
  line-height: 1.24;
  text-transform: uppercase;
  letter-spacing: var(--display-tracking);
}

.outfit-card.has-image span,
.outfit-card.has-image p {
  font-size: 10px;
  line-height: 1.18;
}

.outfit-card.has-image strong {
  font-size: clamp(13px, 1vw, 17px);
  line-height: 1.16;
}

.manifesto-section {
  --manifest-y: 0px;
  --manifest-side-y: 0px;
  --manifest-scale: 1;
  --manifest-opacity: 1;
  --manifest-accent-y: 0px;
  --manifest-accent-opacity: 0.12;
  position: relative;
  min-height: 48svh;
  display: grid;
  place-items: start center;
  overflow: hidden;
  padding: clamp(18px, 3vw, 42px) clamp(20px, 4vw, 64px);
  background: #f2f2f0;
  color: var(--ink);
}

.manifesto-section::before {
  content: "";
  position: absolute;
  inset: 18% 10%;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(7, 7, 7, 0.045) 18% 18.8%, transparent 18.8% 100%),
    linear-gradient(180deg, transparent 0 54%, rgba(7, 7, 7, 0.04) 54% 55%, transparent 55% 100%);
  opacity: var(--manifest-accent-opacity);
  transform: translate3d(0, var(--manifest-accent-y), 0);
  transition: opacity 180ms ease-out;
  pointer-events: none;
}

.manifesto-section::after {
  content: "1588";
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(18px, 5vw, 72px);
  font-size: clamp(42px, 11vw, 168px);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: var(--display-tracking-tight);
  opacity: calc(var(--manifest-accent-opacity) * 0.55);
  transform: translate3d(0, var(--manifest-side-y), 0);
  pointer-events: none;
}

.manifesto-section p {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0;
  font-size: clamp(15px, 1.45vw, 23px);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: var(--display-tracking);
  color: #050505;
  text-align: center;
  text-wrap: balance;
  text-transform: uppercase;
  opacity: var(--manifest-opacity);
  transform: translate3d(0, var(--manifest-y), 0) scale(var(--manifest-scale));
  transform-origin: 50% 50%;
  will-change: transform, opacity;
}

.manifest-line {
  display: inline;
}

.manifesto-actions {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3vw, 42px);
  width: 100%;
  margin-top: clamp(24px, 4vw, 46px);
}

.manifesto-link {
  position: relative;
  padding: 8px 0;
  color: rgba(7, 7, 7, 0.58);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: var(--display-tracking-wide);
  text-transform: uppercase;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.manifesto-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.manifesto-link:hover,
.manifesto-link:focus-visible {
  color: var(--ink);
  transform: translateY(-1px);
}

.manifesto-link:hover::after,
.manifesto-link:focus-visible::after {
  transform: scaleX(1);
}

.screen-footer {
  top: clamp(18px, 2vw, 28px);
  right: clamp(18px, 3vw, 46px);
  bottom: auto;
  left: auto;
  z-index: 56;
  width: auto;
  padding: 0;
  justify-content: flex-end;
  border: 0;
  color: var(--ink);
  background: transparent;
  backdrop-filter: none;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 240ms ease,
    color 200ms ease;
}

.hero-picker.is-location-open .screen-footer {
  opacity: 1;
  pointer-events: auto;
}

.hero-picker.is-location-open .screen-footer {
  color: var(--ink);
  background: transparent;
  border-top-color: transparent;
}

.hero-picker.is-location-open .screen-footer .text-button {
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(255, 254, 250, 0.92);
  box-shadow: 0 16px 46px rgba(7, 7, 7, 0.22);
}

@media (max-width: 980px) {
  body {
    overflow: auto;
  }

  .hero-picker {
    min-height: 100svh;
  }

  .collection-intro {
    top: 86px;
  }

  .collection-intro h1 {
    font-size: clamp(24px, 4.3vw, 32px);
    line-height: 1.12;
  }

  .collection-instruction {
    margin-top: 24px;
  }

  .runway-wrap {
    padding-inline: 0;
  }

  .runway {
    min-height: 62vh;
    padding-inline: 30vw;
  }

  .look-meta {
    top: 90px;
    width: calc(100vw - 36px);
  }

  .look-meta h2 {
    font-size: clamp(30px, 8vw, 58px);
  }

  .outfit-drawer {
    left: 18px;
    right: 18px;
    top: auto;
    bottom: 86px;
    width: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    transform: translateY(28px);
  }

  .hero-picker.is-location-open .outfit-drawer {
    transform: translateY(0);
  }
}

@media (max-width: 680px) {
  body.is-about-open {
    overflow: hidden;
  }

  .about-trigger {
    display: inline-flex;
    right: 0;
    min-height: 92px;
    padding: 12px 7px;
    font-size: 8px;
    opacity: 0.92;
  }

  .topbar {
    padding: 16px;
  }

  .screen-footer {
    top: 12px;
    right: 12px;
    bottom: auto;
    left: auto;
    padding: 0;
  }

  .collection-kicker,
  .collection-instruction,
  .style-note,
  .text-button,
  .screen-footer,
  .look-meta span,
  .look-meta p {
    font-size: 11px;
  }

  .collection-intro {
    left: 16px;
    top: 70px;
    width: calc(100vw - 32px);
  }

  .collection-intro h1 {
    max-width: 86vw;
    font-size: clamp(22px, 7.4vw, 34px);
    line-height: 1.08;
  }

  .collection-instruction {
    max-width: 300px;
    margin-top: 20px;
    line-height: 1.34;
  }

  .style-note {
    left: 16px;
    bottom: 14px;
    min-width: auto;
    padding: 14px 16px;
  }

  .runway-wrap {
    grid-template-columns: 1fr;
    padding: 0 0 82px;
  }

  .arrow {
    position: absolute;
    top: 58%;
    z-index: 38;
    width: 54px;
    height: 54px;
    font-size: 52px;
  }

  .arrow-left {
    left: 10px;
  }

  .arrow-right {
    right: 10px;
  }

  .runway {
    min-height: 58vh;
    gap: 34px;
    padding-inline: 28vw;
  }

  .hero-card {
    flex-basis: 52vw;
    height: 53vh;
  }

  .hero-card.is-active {
    transform: scale(1.04);
  }

  .hero-picker.is-location-open .hero-card.is-active {
    transform: translateY(-146px) scale(0.94);
  }

  .look-meta {
    left: 16px;
    top: 76px;
    width: calc(100vw - 32px);
  }

  .look-meta h2 {
    max-width: 92vw;
    font-size: clamp(28px, 11vw, 46px);
    line-height: 1.02;
  }

  .look-meta span {
    margin-bottom: 12px;
  }

  .look-meta p {
    margin: 14px 7px 0 0;
    padding: 8px 9px;
    font-size: 9px;
  }

  .outfit-drawer {
    left: 0;
    right: 0;
    top: auto;
    bottom: 54px;
    z-index: 36;
    width: auto;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 0 16px 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    transform: translateY(24px);
  }

  .outfit-drawer::-webkit-scrollbar {
    display: none;
  }

  .hero-picker.is-location-open .outfit-drawer {
    transform: translateY(0);
  }

  .outfit-card,
  .outfit-card.has-image {
    flex: 0 0 154px;
    min-height: 118px;
    scroll-snap-align: start;
    gap: 7px;
    padding: 10px;
    box-shadow: 0 16px 44px rgba(7, 7, 7, 0.2);
  }

  .outfit-card img {
    height: 46px;
  }

  .outfit-card span,
  .outfit-card p,
  .outfit-card.has-image span,
  .outfit-card.has-image p {
    font-size: 8px;
    line-height: 1.12;
  }

  .outfit-card strong,
  .outfit-card.has-image strong {
    font-size: 12px;
    line-height: 1.12;
  }

  .manifesto-section p {
    max-width: min(86vw, 430px);
    font-size: clamp(12px, 3.15vw, 15px);
    line-height: 1.28;
    letter-spacing: 0.032em;
    text-align: center;
    text-wrap: balance;
  }

  .manifest-line {
    display: block;
  }

  .manifest-line + .manifest-line {
    margin-top: 0.22em;
  }

  .manifesto-actions {
    justify-content: flex-start;
    gap: 18px;
    margin-top: 24px;
  }

  .screen-footer {
    align-items: center;
    flex-direction: row;
    gap: 0;
  }

  .hero-picker.is-location-open .screen-footer {
    z-index: 70;
    background: transparent;
  }

  .hero-picker.is-location-open .text-button {
    color: var(--ink);
  }

  .hero-picker.is-location-open .screen-footer .text-button {
    padding: 9px 10px;
    font-size: 9px;
    background: rgba(255, 254, 250, 0.9);
  }

  .about-overlay {
    align-items: center;
    padding: 14px;
  }

  .about-modal {
    width: calc(100vw - 28px);
    min-height: auto;
    max-height: calc(100svh - 28px);
    gap: 28px;
    padding: 24px 18px 22px;
    overflow-y: auto;
  }

  .about-copy {
    gap: 10px;
  }

  .about-kicker,
  .about-close,
  .about-modal p {
    font-size: 9px;
    line-height: 1.24;
    letter-spacing: var(--display-tracking);
  }

  .about-modal p:not(.about-kicker) {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0;
  }

  .about-close {
    right: 12px;
    top: 12px;
  }

  .about-modal h2 {
    max-width: 100%;
    font-size: clamp(34px, 11.2vw, 42px);
    line-height: 1;
    letter-spacing: 0.02em;
    overflow-wrap: break-word;
    word-break: normal;
  }
}

@media (max-width: 760px) {
  .hero-picker.is-location-open {
    min-height: calc(100svh + var(--drawer-space, 620px));
    overflow: visible;
  }

  .hero-picker.is-location-open .location-drop,
  .hero-picker.is-location-open .runway-wrap {
    bottom: auto;
    height: 100svh;
  }

  .hero-picker.is-location-open .runway-wrap {
    padding-bottom: 30px;
  }

  .hero-picker.is-location-open .hero-card.is-active {
    transform: translateY(-58px) scale(0.9);
  }

  .look-meta h2 {
    max-width: calc(100vw - 32px);
    font-size: clamp(24px, 8.2vw, 34px);
    line-height: 1.14;
    letter-spacing: 0.018em;
  }

  .hero-picker.is-location-open .outfit-drawer {
    left: 0;
    right: 0;
    top: 100svh;
    bottom: auto;
    z-index: 32;
    width: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px 16px 34px;
    overflow: visible;
    background: #f2f2f0;
    scroll-snap-type: none;
    transform: translateY(0);
  }

  .hero-picker.is-location-open .outfit-card,
  .hero-picker.is-location-open .outfit-card.has-image {
    width: 100%;
    min-height: 132px;
    flex: none;
    scroll-snap-align: none;
    gap: 10px;
    padding: 14px;
  }

  .hero-picker.is-location-open .outfit-card.has-image {
    min-height: 174px;
  }

  .hero-picker.is-location-open .outfit-card img {
    height: 70px;
  }

  .hero-picker.is-location-open .outfit-card strong,
  .hero-picker.is-location-open .outfit-card.has-image strong {
    font-size: clamp(13px, 4.4vw, 18px);
    line-height: 1.16;
  }

  .hero-picker.is-location-open .screen-footer {
    top: 14px;
    right: 14px;
    bottom: auto;
    left: auto;
    z-index: 70;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .about-modal {
    width: min(520px, calc(100vw - 28px));
  }

  .about-modal h2 {
    max-width: 100%;
    font-size: clamp(30px, 10vw, 38px);
    line-height: 1.04;
    letter-spacing: 0.018em;
    overflow-wrap: normal;
  }
}

@media (min-width: 681px) {
  .hero-picker.is-location-open .hero-card.is-active {
    transform: scale(1.28) translateY(-18px);
  }
}
