/* ==========================================================================
   GUMNAAM — SHARED STOREFRONT STYLES
   Strict monochrome system. All corners intentionally remain sharp.
   ========================================================================== */

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --off-white: #f2f2f2;
  --gray: #888888;
  --hairline: rgba(10, 10, 10, 0.18);
  --page-pad: clamp(20px, 3.3vw, 56px);
  --header-height: 86px;
  --display: "Anton", "Arial Narrow", sans-serif;
  --body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --display-leading: 0.9;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  border-radius: 0 !important;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--white);
  color: var(--black);
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.5;
  opacity: 0;
  transition: opacity 0.38s ease;
}

body.page-ready {
  opacity: 1;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  border: 0;
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

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

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

.page-curtain {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  background: var(--black);
  transform: translateY(-100%);
}

.page-leaving .page-curtain {
  animation: curtain-in 0.34s cubic-bezier(0.77, 0, 0.18, 1) forwards;
}

@keyframes curtain-in {
  to { transform: translateY(0); }
}

/* Shared type and controls ------------------------------------------------ */

.eyebrow {
  margin: 0 0 24px;
  color: #595959;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #a9a9a9;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 210px;
  padding: 12px 0;
  border-bottom: 1px solid var(--black);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: padding 0.25s ease;
}

.text-link:hover {
  padding-left: 8px;
}

.text-link span {
  font-size: 16px;
}

.text-link--light {
  border-color: var(--white);
  color: var(--white);
}

.button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 58px;
  padding: 0 20px;
  border: 1px solid var(--black);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}

.button--dark {
  background: var(--black);
  color: var(--white);
}

.button--dark:hover,
.button--dark.is-added {
  background: var(--white);
  color: var(--black);
}

.button--light {
  background: var(--white);
  color: var(--black);
}

.button--light:hover {
  background: var(--black);
  color: var(--white);
}

.section-pad {
  padding-inline: var(--page-pad);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(54px, 8vw, 126px);
}

.section-heading h2,
.lookbook__heading h2,
.newsletter h2,
.related h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(74px, 10vw, 158px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: var(--display-leading);
  text-transform: uppercase;
}

.section-heading__aside {
  margin: 0 0 2px;
  max-width: 270px;
  color: #5d5d5d;
  font-size: 13px;
  line-height: 1.7;
}

/* Navigation ------------------------------------------------------------- */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-height);
  padding: 0 var(--page-pad);
  border-bottom: 1px solid var(--hairline);
  background: rgba(255, 255, 255, 0.96);
  transition: height 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.site-header--overlay {
  border-color: var(--hairline);
  background: rgba(255, 255, 255, 0.96);
}

.site-header.is-scrolled {
  height: 72px;
  border-color: var(--hairline);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.site-brand {
  display: flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.site-brand img {
  width: 68px;
  height: 58px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 52px);
}

.desktop-nav a,
.cart-link {
  position: relative;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.cart-link {
  display: flex;
  gap: 11px;
}

.menu-toggle {
  display: none;
  width: 34px;
  height: 34px;
  padding: 8px 2px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 0.3s ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: calc(var(--header-height) + 28px) var(--page-pad) 28px;
  background: var(--black);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  transition: opacity 0.4s ease, transform 0.55s cubic-bezier(0.77, 0, 0.18, 1);
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-open .site-header {
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--black);
  color: var(--white);
}

.menu-open .site-brand img {
  filter: invert(1);
}

.mobile-menu__meta,
.mobile-menu__footer {
  display: flex;
  justify-content: space-between;
  color: #a9a9a9;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  padding: 6px 0;
  font-family: var(--display);
  font-size: clamp(58px, 15vw, 96px);
  letter-spacing: -0.02em;
  line-height: 0.98;
  text-transform: uppercase;
  transition: padding 0.25s ease, color 0.25s ease;
}

.mobile-menu nav a span {
  width: 46px;
  color: var(--gray);
  font-family: var(--body);
  font-size: 9px;
  letter-spacing: 0;
}

.mobile-menu nav a:hover {
  padding-left: 12px;
  color: #bdbdbd;
}

/* Homepage hero ---------------------------------------------------------- */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(0, 42%);
  min-height: 100svh;
  background: var(--white);
  overflow: hidden;
}

.hero__copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100svh;
  padding: calc(var(--header-height) + 66px) var(--page-pad) 44px;
  overflow: hidden;
}

.hero__edition {
  margin: 0;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  position: relative;
  z-index: 1;
  margin: auto 0;
  padding: 5vh 0;
  font-family: var(--display);
  font-size: clamp(90px, 11.2vw, 214px);
  font-weight: 400;
  letter-spacing: -0.038em;
  line-height: var(--display-leading);
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  clip-path: inset(0 100% 0 0);
  animation: word-reveal 0.95s cubic-bezier(0.77, 0, 0.18, 1) forwards;
}

.hero h1 span:last-child {
  animation-delay: 0.16s;
}

@keyframes word-reveal {
  to { clip-path: inset(0); }
}

.hero__bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.hero__bottom p {
  margin: 0;
  color: #525252;
  font-size: 12px;
  line-height: 1.65;
}

.hero__calligraphy {
  position: absolute;
  top: 11%;
  right: -6%;
  width: min(44vw, 680px);
  opacity: 0.035;
  pointer-events: none;
  transform: rotate(-8deg);
}

.hero__identity {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100svh;
  padding: calc(var(--header-height) + 40px) 28px 28px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero__identity::before {
  position: absolute;
  right: -5%;
  bottom: -13%;
  color: #111111;
  content: "001";
  font-family: var(--display);
  font-size: clamp(240px, 28vw, 530px);
  letter-spacing: -0.06em;
  line-height: 0.8;
  pointer-events: none;
}

.hero__identity > img {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(76%, 470px);
  margin-block: auto;
  filter: invert(1);
}

.hero__identity-meta,
.hero__identity-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero__identity-meta {
  color: #8c8c8c;
}

.hero__identity-bottom {
  align-items: flex-end;
}

.hero__identity-bottom p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 58px);
  letter-spacing: -0.01em;
  line-height: var(--display-leading);
}

.hero__identity-bottom > span {
  color: #8c8c8c;
}

/* Marquee ---------------------------------------------------------------- */

.marquee {
  width: 100%;
  padding: 17px 0 16px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.marquee__track {
  display: flex;
  width: max-content;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.03em;
  line-height: 1;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
}

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

.marquee--outline {
  border-top: 1px solid rgba(255,255,255,0.28);
  border-bottom: 1px solid rgba(255,255,255,0.28);
}

/* Product cards and collection ------------------------------------------ */

.collection {
  padding-top: clamp(96px, 12vw, 190px);
  padding-bottom: clamp(96px, 12vw, 180px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(52px, 8vw, 126px) clamp(18px, 3.4vw, 58px);
}

.product-grid--featured {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(54px, 6vw, 90px) clamp(14px, 1.5vw, 24px);
}

.product-grid--featured .product-card:nth-child(even) {
  margin-top: 0;
}

.product-grid--featured .product-card__meta {
  display: block;
  padding-top: 13px;
}

.product-grid--featured .product-card__meta h3 {
  min-height: 31px;
  font-size: 9px;
}

.product-grid--featured .product-card__meta p {
  margin-top: 4px;
  font-size: 9px;
}

.product-grid--featured .product-card__index {
  top: 9px;
  left: 9px;
  font-size: 7px;
}

.product-grid--featured .product-card__view {
  top: 9px;
  right: 9px;
  font-size: 7px;
}

.product-card__link {
  display: block;
}

.product-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--off-white);
}

.product-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.48s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-card__image--alternate {
  opacity: 0;
}

.product-card:hover .product-card__image--primary {
  opacity: 0;
  transform: scale(1.025);
}

.product-card:hover .product-card__image--alternate {
  opacity: 1;
  transform: scale(1.025);
}

.product-card__index,
.product-card__view {
  position: absolute;
  z-index: 2;
  top: 14px;
  padding: 6px 8px;
  background: var(--white);
  color: var(--black);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card__index {
  left: 14px;
}

.product-card__view {
  right: 14px;
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.product-card:hover .product-card__view {
  opacity: 1;
  transform: translateY(0);
}

.product-card__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0 0;
  border-top: 1px solid transparent;
}

.product-card__meta h3,
.product-card__meta p {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-transform: uppercase;
}

.product-card__meta p {
  color: #555;
  font-size: 10px;
  white-space: nowrap;
}

.product-card__sizes {
  display: none;
  margin: 8px 0 0;
  color: #777;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collection__footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: var(--page-pad);
  margin-top: clamp(80px, 13vw, 190px);
  padding-top: 26px;
  border-top: 1px solid var(--black);
}

.collection__footer > p {
  margin: 0;
  color: #555;
  font-size: 11px;
}

/* Brand statement -------------------------------------------------------- */

.statement {
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: 92svh;
  background: var(--black);
  color: var(--white);
}

.statement__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(74px, 10vw, 150px) var(--page-pad);
}

.statement__copy h2 {
  max-width: 750px;
  margin: 0 0 clamp(42px, 6vw, 84px);
  font-family: var(--display);
  font-size: clamp(64px, 7.2vw, 120px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: var(--display-leading);
  text-transform: uppercase;
}

.statement__copy > p:not(.eyebrow) {
  max-width: 460px;
  margin: 0 0 42px;
  color: #bcbcbc;
  font-size: 13px;
  line-height: 1.8;
}

.statement__image {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
}

.statement__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.statement__image:hover img {
  transform: scale(1.025);
}

.statement__image--cutout {
  background: var(--off-white);
}

.statement__image--cutout img {
  object-fit: contain;
  object-position: center bottom;
  padding: 7% 5% 0;
}

.statement__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.48), transparent 44%);
  content: "";
}

.statement__image span {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 28px;
  left: 28px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 70px);
  letter-spacing: -0.01em;
  line-height: var(--display-leading);
  text-transform: uppercase;
}

.statement__image--cutout span {
  top: 28px;
  bottom: auto;
  color: var(--black);
}

/* Lookbook --------------------------------------------------------------- */

.lookbook {
  padding-top: clamp(100px, 13vw, 190px);
  padding-bottom: clamp(100px, 13vw, 190px);
}

.lookbook__heading {
  display: grid;
  grid-template-columns: 1fr 1.1fr 0.7fr;
  align-items: end;
  gap: var(--page-pad);
  margin-bottom: clamp(70px, 10vw, 150px);
}

.lookbook__heading .eyebrow {
  align-self: start;
}

.lookbook__heading p:last-child {
  margin: 0 0 4px;
  color: #555;
  font-size: 11px;
  line-height: 1.7;
}

.lookbook__aside {
  position: relative;
  align-self: stretch;
  min-height: 330px;
  overflow: hidden;
  background: var(--off-white);
}

.lookbook__aside img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.lookbook__aside p {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 12px;
  background: rgba(255, 255, 255, 0.9);
}

.lookbook__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 24px);
  padding: 0 var(--page-pad);
}

.lookbook__item {
  margin: 0;
}

.lookbook__item:nth-child(2),
.lookbook__item:nth-child(3) {
  grid-column: auto;
}

.lookbook__item:nth-child(2) {
  grid-column-start: auto;
  margin-top: 0;
}

.lookbook__item:nth-child(3) {
  grid-column-start: auto;
}

.lookbook__item:nth-child(4) {
  grid-column-start: auto;
}

.lookbook__item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.lookbook__item--wide img {
  aspect-ratio: 4 / 5;
}

.lookbook__item figcaption {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--black);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Newsletter ------------------------------------------------------------- */

.newsletter {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
  min-height: 70svh;
  padding: clamp(80px, 10vw, 150px) var(--page-pad);
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.newsletter__visual {
  position: relative;
  align-self: stretch;
  min-height: 470px;
  overflow: hidden;
}

.newsletter__index {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #171717;
  font-family: var(--display);
  font-size: clamp(110px, 16vw, 280px);
  letter-spacing: -0.04em;
  line-height: var(--display-leading);
  text-transform: uppercase;
  user-select: none;
}

.newsletter__cutout {
  position: absolute;
  z-index: 1;
  bottom: -1px;
  left: 8%;
  width: min(68%, 430px);
  max-height: 94%;
  object-fit: contain;
  object-position: center bottom;
}

.newsletter__content {
  align-self: center;
  max-width: 720px;
}

.newsletter h2 {
  margin-bottom: 35px;
}

.newsletter__content > p:not(.eyebrow) {
  max-width: 470px;
  margin: 0 0 64px;
  color: #a9a9a9;
  font-size: 12px;
  line-height: 1.75;
}

.newsletter-form__row {
  display: grid;
  grid-template-columns: 1fr auto;
  border-bottom: 1px solid var(--white);
}

.newsletter-form input {
  min-width: 0;
  padding: 18px 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.newsletter-form input::placeholder {
  color: #777;
}

.newsletter-form button {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 0 0 24px;
  background: transparent;
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.newsletter-form button span {
  font-size: 16px;
}

.newsletter-form__response {
  min-height: 22px;
  margin: 12px 0 0;
  color: #d0d0d0;
  font-size: 10px;
}

.newsletter-form__response.has-error {
  color: var(--white);
}

.contact-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.3);
}

.contact-links a {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  padding: 18px 16px 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  transition: background 0.2s ease, padding 0.2s ease;
}

.contact-links a + a {
  padding-left: 16px;
  border-left: 1px solid rgba(255,255,255,0.3);
}

.contact-links a:hover {
  padding-left: 10px;
  background: rgba(255,255,255,0.06);
}

.contact-links a + a:hover {
  padding-left: 26px;
}

.contact-links span {
  color: #777;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-links strong {
  overflow: hidden;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Footer ----------------------------------------------------------------- */

.site-footer {
  padding: 52px var(--page-pad) 22px;
  border-top: 1px solid rgba(255,255,255,0.22);
  background: var(--black);
  color: var(--white);
}

.site-footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 260px;
}

.footer-mark img {
  width: clamp(130px, 16vw, 260px);
  height: clamp(130px, 16vw, 260px);
  object-fit: contain;
  filter: invert(1);
}

.site-footer__top > p {
  margin: 12px 0 0;
  color: #a4a4a4;
  font-size: 10px;
  letter-spacing: 0.08em;
  line-height: 1.7;
  text-align: right;
  text-transform: uppercase;
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  max-width: 720px;
  margin: 0 0 90px auto;
  gap: 40px;
}

.site-footer__links div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer__links p {
  margin: 0 0 24px;
  color: #777;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer__links a {
  margin: 0 0 9px;
  color: #c9c9c9;
  font-size: 11px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer__links a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.2);
  color: #777;
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer__bottom span:nth-child(2) { text-align: center; }
.site-footer__bottom span:last-child { text-align: right; }

/* Shop page -------------------------------------------------------------- */

.inner-page main {
  padding-top: var(--header-height);
}

.shop-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 60svh;
  padding: 84px var(--page-pad) 42px;
  border-bottom: 1px solid var(--black);
  overflow: hidden;
}

.shop-hero::after {
  position: absolute;
  top: 6%;
  right: 1%;
  color: #f0f0f0;
  content: "001";
  font-family: var(--display);
  font-size: min(29vw, 560px);
  line-height: 0.8;
  z-index: 0;
}

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

.shop-hero__meta {
  position: absolute;
  top: 34px;
  right: var(--page-pad);
  left: var(--page-pad);
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.shop-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(82px, 9.5vw, 182px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: var(--display-leading);
  text-transform: uppercase;
}

.shop-hero h1 span {
  display: block;
}

.shop-hero h1 span:last-child {
  margin-left: clamp(48px, 12vw, 220px);
}

.shop-hero > p {
  align-self: flex-end;
  width: 25%;
  min-width: 250px;
  margin: 28px 0 0;
  color: #555;
  font-size: 11px;
  line-height: 1.75;
}

.shop-catalog {
  padding-top: 36px;
  padding-bottom: clamp(120px, 14vw, 220px);
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
  margin-bottom: clamp(60px, 8vw, 116px);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--black);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalog-toolbar p,
.catalog-toolbar label {
  margin: 0;
}

.catalog-toolbar p span {
  margin-left: 18px;
  color: var(--gray);
}

.catalog-toolbar label {
  color: var(--gray);
}

.catalog-toolbar select {
  padding: 4px 22px 4px 4px;
  outline: 0;
  background: var(--white);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-grid--shop {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(54px, 6vw, 90px) clamp(14px, 1.5vw, 24px);
}

.shop-catalog__body {
  display: grid;
  grid-template-columns: minmax(170px, 220px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(30px, 4vw, 68px);
}

.catalog-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  border-top: 1px solid var(--black);
}

.catalog-sidebar__group {
  padding: 18px 0 20px;
  border-bottom: 1px solid var(--hairline);
}

.catalog-sidebar__group > p {
  margin: 0 0 14px;
  color: #777;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.catalog-sidebar__group > a {
  display: flex;
  justify-content: space-between;
  margin-top: 9px;
  color: #666;
  font-size: 10px;
  transition: color 0.2s ease, padding 0.2s ease;
}

.catalog-sidebar__group > a:hover,
.catalog-sidebar__group > a.is-active {
  padding-left: 5px;
  color: var(--black);
}

.catalog-sidebar__group > a span {
  color: #999;
  font-size: 8px;
}

.catalog-sidebar__sizes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.catalog-sidebar__sizes span {
  display: grid;
  place-items: center;
  height: 34px;
  margin-right: -1px;
  border: 1px solid var(--hairline);
  font-size: 9px;
}

.catalog-sidebar__status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.catalog-sidebar__status i {
  width: 5px;
  height: 5px;
  background: var(--black);
}

.product-grid--shop .product-card__sizes {
  display: block;
}

.product-grid--shop .product-card__meta {
  display: block;
  padding-top: 13px;
}

.product-grid--shop .product-card__meta h3 {
  min-height: 31px;
  font-size: 9px;
}

.product-grid--shop .product-card__meta p {
  margin-top: 4px;
  font-size: 9px;
}

.product-grid--shop .product-card__index {
  top: 9px;
  left: 9px;
  font-size: 7px;
}

.product-grid--shop .product-card__view {
  top: 9px;
  right: 9px;
  font-size: 7px;
}

.catalog-note {
  padding: clamp(90px, 12vw, 180px) var(--page-pad) 38px;
  background: var(--black);
  color: var(--white);
}

.catalog-note__large {
  margin: 0 0 clamp(90px, 13vw, 190px);
  font-family: var(--display);
  font-size: clamp(64px, 9vw, 148px);
  letter-spacing: -0.025em;
  line-height: var(--display-leading);
  text-transform: uppercase;
}

.catalog-note__facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.3);
  color: #aaa;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Product detail --------------------------------------------------------- */

.product-main {
  border-bottom: 1px solid var(--black);
}

.breadcrumb {
  display: flex;
  gap: 10px;
  padding: 18px var(--page-pad);
  border-bottom: 1px solid var(--hairline);
  color: #666;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--black);
}

.product-view {
  display: grid;
  grid-template-columns: minmax(0, 55%) minmax(360px, 45%);
  align-items: start;
  gap: clamp(36px, 5vw, 78px);
  width: min(100%, 1380px);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 78px) var(--page-pad) clamp(76px, 8vw, 120px);
}

.product-gallery {
  display: grid;
  grid-template-columns: 1fr;
  min-width: 0;
  max-width: 680px;
  border: 1px solid var(--hairline);
}

.product-gallery__stage {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 0;
  overflow: hidden;
  background: var(--off-white);
}

.product-gallery__stage > img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  padding: clamp(12px, 2vw, 28px);
  transition: opacity 0.18s ease, transform 0.75s ease;
}

.product-gallery__stage:hover > img {
  transform: scale(1.02);
}

.product-gallery__stage > img.is-changing {
  opacity: 0;
}

.product-gallery__count {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 7px 9px;
  background: var(--white);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  padding-top: 1px;
  background: var(--hairline);
}

.product-gallery__thumb {
  position: relative;
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  background: var(--off-white);
}

.product-gallery__thumb::after {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  content: "";
  pointer-events: none;
  transition: border-color 0.2s ease;
}

.product-gallery__thumb.is-active::after {
  border-color: var(--black);
}

.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: opacity 0.2s ease;
}

.product-gallery__thumb:hover img,
.product-gallery__thumb.is-active img {
  opacity: 1;
}

.product-info {
  position: sticky;
  top: var(--header-height);
  padding: clamp(8px, 1.5vw, 24px) 0 0;
}

.product-info h1 {
  max-width: 520px;
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(46px, 3.7vw, 68px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: var(--display-leading);
  text-transform: uppercase;
}

.product-info__price {
  margin: 0 0 46px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.product-info__description {
  max-width: 500px;
  margin: 0 0 46px;
  color: #555;
  font-size: 12px;
  line-height: 1.75;
}

.size-picker {
  margin: 0 0 22px;
  padding: 0;
  border: 0;
}

.size-picker legend {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 12px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.size-picker legend button {
  padding: 0 0 2px;
  border-bottom: 1px solid var(--black);
  background: transparent;
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.size-picker__options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.size-picker__options button {
  height: 54px;
  margin-right: -1px;
  border: 1px solid var(--black);
  background: var(--white);
  font-size: 11px;
  transition: background 0.2s ease, color 0.2s ease;
}

.size-picker__options button:hover,
.size-picker__options button.is-selected {
  background: var(--black);
  color: var(--white);
}

.size-picker__message {
  min-height: 18px;
  margin: 9px 0 0;
  color: #777;
  font-size: 9px;
}

.size-picker__message.has-error {
  color: var(--black);
  font-weight: 600;
}

.stock-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 13px 0 48px;
  color: #666;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stock-note__dot {
  width: 5px;
  height: 5px;
  background: var(--black);
  animation: stock-pulse 1.8s ease infinite;
}

@keyframes stock-pulse {
  50% { opacity: 0.25; }
}

.product-accordions {
  border-top: 1px solid var(--black);
}

.product-accordions details {
  border-bottom: 1px solid var(--hairline);
}

.product-accordions summary {
  display: flex;
  justify-content: space-between;
  padding: 17px 0;
  cursor: pointer;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.11em;
  list-style: none;
  text-transform: uppercase;
}

.product-accordions summary::-webkit-details-marker {
  display: none;
}

.product-accordions summary span {
  transition: transform 0.25s ease;
}

.product-accordions details[open] summary span {
  transform: rotate(45deg);
}

.product-accordions details p {
  max-width: 430px;
  margin: 0;
  padding: 0 0 19px;
  color: #666;
  font-size: 10px;
  line-height: 1.7;
}

.related {
  padding-top: clamp(110px, 13vw, 190px);
  padding-bottom: clamp(110px, 13vw, 190px);
}

.section-heading--related .text-link {
  margin-bottom: 2px;
}

.product-grid--related {
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 42px);
}

/* Motion, feedback and accessibility ------------------------------------ */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease var(--reveal-delay, 0ms), transform 0.75s cubic-bezier(0.2, 0.75, 0.2, 1) var(--reveal-delay, 0ms);
}

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

.site-toast {
  position: fixed;
  z-index: 120;
  right: 20px;
  bottom: 20px;
  max-width: calc(100vw - 40px);
  padding: 16px 20px;
  border: 1px solid var(--white);
  background: var(--black);
  color: var(--white);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  opacity: 0;
  pointer-events: none;
  text-transform: uppercase;
  transform: translateY(14px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.site-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Tablet ----------------------------------------------------------------- */

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 56% 44%;
  }

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

  .lookbook__heading {
    grid-template-columns: 0.7fr 1.4fr 0.8fr;
  }

  .product-view {
    grid-template-columns: minmax(0, 52%) minmax(350px, 48%);
  }

  .product-info {
    padding-inline: 0;
  }

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

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

@media (max-width: 900px) {
  :root { --header-height: 74px; }

  .desktop-nav {
    display: none;
  }

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

  .menu-toggle {
    display: block;
  }

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

  .hero__copy {
    min-height: 72svh;
    padding-top: calc(var(--header-height) + 52px);
  }

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

  .hero__identity {
    min-height: 74svh;
  }

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

  .statement__image {
    min-height: 70svh;
    grid-row: 1;
  }

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

  .newsletter__index {
    position: absolute;
    right: -1vw;
    left: auto;
    bottom: 0;
    opacity: 0.65;
  }

  .newsletter__visual {
    min-height: 430px;
    margin-bottom: 54px;
  }

  .newsletter__cutout {
    left: 14%;
    width: min(54%, 390px);
  }

  .newsletter__content {
    position: relative;
    z-index: 1;
  }

  .shop-hero > p {
    margin-top: 32px;
  }

  .product-view {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .product-gallery {
    width: min(100%, 680px);
    margin: 0 auto;
  }

  .product-info {
    position: static;
    width: min(100%, 680px);
    margin: 0 auto;
    padding: 0 0 40px;
  }

  .shop-catalog__body {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 26px;
  }

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

/* Mobile ----------------------------------------------------------------- */

@media (max-width: 680px) {
  :root {
    --page-pad: 18px;
    --header-height: 68px;
  }

  body {
    font-size: 13px;
  }

  .site-header.is-scrolled {
    height: 64px;
  }

  .site-brand {
    gap: 5px;
    font-size: 11px;
  }

  .site-brand img {
    width: 50px;
    height: 46px;
  }

  .header-actions {
    gap: 16px;
  }

  .cart-link {
    font-size: 9px;
  }

  .hero__copy {
    min-height: 66svh;
    padding-top: calc(var(--header-height) + 32px);
    padding-bottom: 25px;
  }

  .hero h1 {
    margin: auto 0;
    font-size: clamp(78px, 23vw, 128px);
    line-height: var(--display-leading);
  }

  .hero__bottom p {
    display: none;
  }

  .hero__bottom .text-link {
    width: 100%;
  }

  .hero__calligraphy {
    top: 14%;
    right: -25%;
    width: 92vw;
  }

  .hero__identity {
    min-height: 68svh;
    padding: calc(var(--header-height) + 24px) var(--page-pad) 24px;
  }

  .hero__identity::before {
    font-size: 70vw;
  }

  .hero__identity > img {
    width: min(70%, 320px);
  }

  .hero__identity-bottom p {
    font-size: clamp(32px, 10vw, 54px);
  }

  .marquee {
    padding-block: 13px 12px;
  }

  .marquee__track {
    font-size: 18px;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2,
  .lookbook__heading h2,
  .newsletter h2,
  .related h2 {
    font-size: clamp(68px, 22vw, 112px);
  }

  .section-heading__aside {
    margin-top: 30px;
  }

  .product-grid--featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px 10px;
  }

  .product-grid--featured .product-card:nth-child(even) {
    margin-top: 0;
  }

  .product-card__view {
    display: none;
  }

  .product-card__meta {
    gap: 8px;
  }

  .collection__footer {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .statement__image {
    min-height: 66svh;
  }

  .statement__copy {
    padding-block: 86px;
  }

  .statement__copy h2 {
    font-size: clamp(58px, 17vw, 92px);
  }

  .lookbook__heading {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .lookbook__heading .eyebrow {
    margin-bottom: 0;
  }

  .lookbook__aside {
    min-height: 390px;
  }

  .lookbook__grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px 10px;
  }

  .lookbook__item,
  .lookbook__item:nth-child(2),
  .lookbook__item:nth-child(3),
  .lookbook__item:nth-child(4) {
    grid-column: auto;
    margin-top: 0;
  }

  .lookbook__item:nth-child(even) {
    transform: none;
  }

  .lookbook__item--wide img {
    aspect-ratio: 4 / 5;
  }

  .lookbook__item figcaption {
    font-size: 7px;
  }

  .newsletter {
    min-height: 76svh;
    padding-block: 88px;
  }

  .newsletter__visual {
    min-height: 340px;
    margin-bottom: 42px;
  }

  .newsletter__cutout {
    left: 8%;
    width: min(64%, 320px);
  }

  .newsletter__content > p:not(.eyebrow) {
    margin-bottom: 44px;
  }

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

  .contact-links a + a {
    padding-left: 0;
    border-left: 0;
  }

  .contact-links a + a:hover {
    padding-left: 10px;
  }

  .site-footer__top {
    min-height: 190px;
  }

  .footer-mark img {
    width: 130px;
    height: 130px;
  }

  .site-footer__links {
    grid-template-columns: 1fr 1fr;
    gap: 46px 24px;
    margin-bottom: 66px;
  }

  .site-footer__links div:last-child {
    grid-column: 2;
  }

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

  .site-footer__bottom span:nth-child(2) {
    display: none;
  }

  .shop-hero {
    min-height: 58svh;
    padding-top: 72px;
    padding-bottom: 34px;
  }

  .shop-hero::after {
    top: 14%;
    font-size: 43vw;
  }

  .shop-hero h1 {
    font-size: clamp(68px, 18vw, 108px);
  }

  .shop-hero h1 span:last-child {
    margin-left: 0;
  }

  .shop-hero > p {
    align-self: flex-start;
    width: 100%;
    min-width: 0;
  }

  .catalog-toolbar {
    grid-template-columns: 1fr auto;
  }

  .catalog-toolbar label {
    display: none;
  }

  .product-grid--shop {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px 10px;
  }

  .shop-catalog__body {
    grid-template-columns: 1fr;
  }

  .catalog-sidebar {
    display: none;
  }

  .product-grid--shop .product-card__meta {
    display: block;
  }

  .product-grid--shop .product-card__meta h3 {
    min-height: 32px;
    font-size: 9px;
  }

  .product-grid--shop .product-card__meta p {
    margin-top: 4px;
    font-size: 8px;
  }

  .product-card__index {
    top: 8px;
    left: 8px;
  }

  .catalog-note__large {
    font-size: clamp(54px, 16vw, 88px);
  }

  .catalog-note__facts {
    grid-template-columns: 1fr 1fr;
    gap: 18px 10px;
  }

  .breadcrumb {
    padding-block: 14px;
  }

  .product-gallery__stage {
    aspect-ratio: 4 / 5;
    min-height: 0;
  }

  .product-gallery__thumbs {
    overflow-x: auto;
    grid-template-columns: repeat(5, minmax(74px, 1fr));
  }

  .product-info h1 {
    font-size: clamp(58px, 18vw, 94px);
  }

  .product-info__price,
  .product-info__description {
    margin-bottom: 34px;
  }

  .product-grid--related {
    display: flex;
    gap: 12px;
    margin-right: calc(var(--page-pad) * -1);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .product-grid--related .product-card {
    flex: 0 0 78vw;
    scroll-snap-align: start;
  }

  .section-heading--related .text-link {
    margin-top: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .hero h1 span { clip-path: inset(0); }
}
