/* ============================================
   HANI ARTS — Minimal luxury, gold-accented
   Inspired by reference: pure black, thin display,
   centered nav, gold CTA, slider hero.
   ============================================ */

:root {
  --bg: #000000;
  --bg-2: #0a0a0a;
  --bg-3: #141414;
  --ink: #ffffff;
  --ink-dim: #b9b9b9;
  --ink-muted: #7a7a7a;
  --ink-faint: #444444;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.28);
  --gold: #f4c542;
  --gold-soft: #e8b94c;
  --max: 1640px;
  --gutter: clamp(20px, 3.2vw, 56px);
  --display: 'Italiana', 'Cormorant Garamond', Georgia, serif;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --ease-strong: cubic-bezier(.7, 0, .3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
body.menu-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

::selection { background: var(--gold); color: var(--bg); }

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  z-index: 200;
  transition: width 0.1s linear;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px var(--gutter);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  transition: padding 0.35s var(--ease);
}
.site-header.scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.header-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 32px;
  max-width: var(--max);
  margin: 0 auto;
}
.header-row > * { min-width: 0; }

.brand {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.3em;
  color: var(--ink);
  white-space: nowrap;
  justify-self: start;
  /* compensate for trailing letter-spacing */
  margin-right: -0.3em;
  overflow: hidden;
  text-overflow: clip;
}

.nav-primary {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(14px, 2vw, 36px);
  flex-wrap: nowrap;
  min-width: 0;
}
.nav-primary a {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(10px, 0.78vw, 11px);
  letter-spacing: 0.2em;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  transition: color 0.3s var(--ease);
}
.nav-primary a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right 0.4s var(--ease);
}
.nav-primary a:hover { color: var(--gold); }
.nav-primary a:hover::after { right: 0; }
.nav-primary .nav-privacy { color: var(--gold); }

.lookbook-link {
  justify-self: end;
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(10px, 0.85vw, 12px);
  letter-spacing: 0.24em;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  transition: gap 0.3s var(--ease);
  /* compensate for trailing letter-spacing */
  margin-right: -0.24em;
  overflow: hidden;
}
.lookbook-link span { transition: transform 0.4s var(--ease); }
.lookbook-link:hover { gap: 22px; }
.lookbook-link:hover span { transform: translateX(6px); }

.menu-toggle {
  display: none;
  width: 32px;
  height: 28px;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  justify-self: end;
}
.menu-toggle span {
  height: 1px;
  background: var(--ink);
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}
.menu-toggle span:first-child { width: 100%; }
.menu-toggle span:last-child { width: 60%; align-self: flex-end; }
.menu-toggle.open span:first-child { transform: translateY(4px) rotate(45deg); width: 100%; }
.menu-toggle.open span:last-child { transform: translateY(-4px) rotate(-45deg); width: 100%; }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  z-index: 120; /* above header (100) */
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform 0.5s var(--ease), visibility 0s linear 0.5s;
  overflow: hidden;
}
.mobile-menu.open {
  transform: translateY(0);
  visibility: visible;
  transition: transform 0.5s var(--ease), visibility 0s linear 0s;
}

.mobile-menu-top {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.mm-brand {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.3em;
  color: var(--ink);
  white-space: nowrap;
  margin-right: -0.3em;
  overflow: hidden;
}
.mm-close {
  width: 36px;
  height: 30px;
  position: relative;
  flex: 0 0 auto;
}
.mm-close span {
  position: absolute;
  left: 4px; right: 4px;
  top: 50%;
  height: 1px;
  background: var(--ink);
}
.mm-close span:first-child { transform: rotate(45deg); }
.mm-close span:last-child { transform: rotate(-45deg); }

.mobile-menu-nav {
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: clamp(20px, 5vw, 36px) var(--gutter);
  display: flex;
  flex-direction: column;
}
.mobile-menu-nav a {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(13px, 3.4vw, 15px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  /* compensate for trailing letter-spacing so border looks aligned */
  position: relative;
}
.mobile-menu-nav a::after {
  content: "\2192";
  float: right;
  color: var(--ink-faint);
  letter-spacing: 0;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.mobile-menu-nav a:hover::after,
.mobile-menu-nav a:active::after {
  color: var(--gold);
  transform: translateX(4px);
}
.mobile-menu-nav .mm-privacy { color: var(--gold); }

.mobile-menu-foot {
  flex: 0 0 auto;
  padding: 20px var(--gutter) 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero {
  position: relative;
  padding-top: 74px;
  height: 100vh;
  min-height: 720px;
  background: var(--bg);
  overflow: hidden;
}

.hero-slides {
  position: relative;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr) 230px;
  gap: clamp(20px, 3vw, 60px);
  align-items: center;
  padding: clamp(28px, 4vw, 60px) var(--gutter) clamp(60px, 7vw, 100px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s var(--ease);
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-text {
  position: relative;
  z-index: 3;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-self: start;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--ink);
}

.hero-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(56px, 8.5vw, 148px);
  line-height: 0.96;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-transform: uppercase;
}

.is-active .hero-title,
.is-active .hero-eyebrow,
.is-active .hero-edit,
.is-active .hero-copy,
.is-active .hero-cta {
  animation: rise 0.9s var(--ease) backwards;
}
.is-active .hero-eyebrow { animation-delay: 0.1s; }
.is-active .hero-title { animation-delay: 0.2s; }
.is-active .hero-edit { animation-delay: 0.35s; }
.is-active .hero-copy { animation-delay: 0.45s; }
.is-active .hero-cta { animation-delay: 0.55s; }

@keyframes rise {
  from { transform: translateY(28px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.hero-edit {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.32em;
  color: var(--ink);
}
.hero-edit em {
  font-style: normal;
  color: var(--gold);
}

.hero-copy {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-dim);
  letter-spacing: 0.02em;
  max-width: 460px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.btn-outline {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 18px 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), gap 0.35s var(--ease);
  background: transparent;
  cursor: pointer;
}
.btn-outline span { transition: transform 0.4s var(--ease); }
.btn-outline:hover {
  background: var(--ink);
  color: var(--bg);
  gap: 22px;
}
.btn-outline:hover span { transform: translateX(6px); }

.btn-text {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--ink);
  padding: 4px 0;
  border-bottom: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s var(--ease), letter-spacing 0.3s var(--ease);
}
.btn-text:hover { color: var(--gold); letter-spacing: 0.32em; }
.btn-text span { transition: transform 0.3s var(--ease); }
.btn-text:hover span { transform: translateX(4px); }

.hero-image {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transform: scale(1.04);
  transition: transform 8s linear;
}
.is-active .hero-image img {
  transform: scale(1);
}

.hero-tagline {
  align-self: start;
  margin-top: 60px;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.85;
  color: var(--ink-dim);
  letter-spacing: 0.02em;
}

/* Slider UI */
.slider-ui {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(30px, 4vw, 56px);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 26px;
}

.slider-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--ink);
}
.slider-counter #slideCurrent { color: var(--gold); }
.counter-sep { color: var(--ink-faint); margin: 0 2px; }
.counter-bar {
  display: inline-block;
  width: 92px;
  height: 1px;
  background: var(--line-strong);
  margin-left: 10px;
  position: relative;
  overflow: hidden;
}
.counter-bar i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 20%;
  background: var(--gold);
  transition: width 0.6s var(--ease);
}

.slider-arrows {
  display: flex;
  gap: 10px;
}
.arrow {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.arrow:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.arrow-next {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.arrow-next:hover {
  background: var(--gold);
  border-color: var(--gold);
}

/* ============================================
   SECTIONS — common
   ============================================ */
.section {
  position: relative;
  padding: clamp(80px, 10vw, 150px) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 4vw, 80px);
  align-items: end;
  margin-bottom: clamp(50px, 6vw, 90px);
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-bottom: 22px;
}

.section-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 6.5vw, 110px);
  line-height: 0.98;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}
.section-title em {
  font-style: normal;
  color: var(--gold);
}

.section-sub {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-dim);
  max-width: 460px;
  justify-self: end;
  letter-spacing: 0.02em;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   ABOUT STRIP
   ============================================ */
.about-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: none;
  background: var(--bg-2);
}
.strip-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.strip-text .section-title {
  font-size: clamp(36px, 4.6vw, 76px);
  margin-bottom: 26px;
}
.strip-text p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-dim);
  max-width: 560px;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.strip-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 24px;
  padding-left: clamp(0px, 4vw, 60px);
  border-left: 1px solid var(--line);
}
.strip-stats > div { display: flex; flex-direction: column; gap: 6px; }
.strip-stats strong {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 4vw, 64px);
  line-height: 1;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.strip-stats em {
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--ink-muted);
  text-transform: uppercase;
}

/* ============================================
   COLLECTIONS
   ============================================ */
.coll-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: clamp(16px, 1.8vw, 26px);
}

.coll-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--bg-2);
  border: 1px solid var(--line);
  transition: border-color 0.5s var(--ease), transform 0.5s var(--ease);
}
.coll-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.coll-img {
  position: relative;
  overflow: hidden;
  flex: 1;
  min-height: 360px;
}
.coll-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.coll-card:hover .coll-img img { transform: scale(1.06); }
.coll-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.85));
}
.coll-meta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 24px 26px 28px;
  z-index: 2;
}
.coll-num {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--gold);
}
.coll-meta h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 12px 0 10px;
}
.coll-meta p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-dim);
  margin-bottom: 14px;
  max-width: 420px;
}
.coll-tag {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--ink-muted);
  border-top: 1px solid var(--line);
  padding-top: 12px;
  display: inline-block;
  width: 100%;
}

.coll-lg { grid-column: span 7; grid-row: span 2; }
.coll-lg .coll-img { min-height: 580px; }
.coll-card:nth-child(2) { grid-column: span 5; }
.coll-card:nth-child(3) { grid-column: span 6; }
.coll-card:nth-child(4) { grid-column: span 6; }
.coll-wide { grid-column: span 12; }
.coll-wide .coll-img { min-height: 460px; }

/* ============================================
   LOOKS
   ============================================ */
.looks-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 4vw, 80px);
  align-items: end;
  margin-bottom: clamp(50px, 6vw, 90px);
}

.looks-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(20px, 2.4vw, 36px);
  align-items: start;
}

.look { position: relative; }
.look-img {
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-2);
}
.look-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease);
}
.look:hover .look-img img { transform: scale(1.06); }

.look figcaption {
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.look-no {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--gold);
}
.look figcaption h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 1.9vw, 28px);
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.look figcaption p {
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.55;
}

.look-01 { grid-column: 1 / span 4; }
.look-quote { grid-column: 6 / span 7; padding: 30px 0; }
.look-02 { grid-column: 1 / span 4; margin-top: 40px; }
.look-03 { grid-column: 5 / span 4; }
.look-04 { grid-column: 9 / span 4; margin-top: 40px; }
.look-05 { grid-column: 1 / span 4; }
.look-06 { grid-column: 6 / span 5; margin-top: 60px; }

.look-quote {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
}
.block-eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--gold);
}
.look-quote blockquote {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.2;
  letter-spacing: 0.005em;
  color: var(--ink);
}
.block-attr {
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--ink-muted);
  text-transform: uppercase;
}

/* ============================================
   FESTIVE
   ============================================ */
.festive {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: none;
}
.festive-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 90px);
  align-items: start;
}
.festive-left .section-title {
  margin-bottom: 26px;
}
.festive-lede {
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-dim);
  margin-bottom: 32px;
  max-width: 540px;
}
.festive-meta {
  list-style: none;
  margin-bottom: 36px;
  border-top: 1px solid var(--line);
}
.festive-meta li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.festive-meta span {
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--ink-muted);
}
.festive-meta em {
  font-family: var(--display);
  font-style: normal;
  font-size: 17px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
}

.festive-right {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 60px;
  gap: 16px;
}
.ff {
  position: relative;
  overflow: hidden;
}
.ff img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.ff:hover img { transform: scale(1.05); }
.ff figcaption {
  position: absolute;
  bottom: 10px; left: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--ink);
  background: rgba(0,0,0,0.6);
  padding: 6px 10px;
  backdrop-filter: blur(4px);
}

.ff-a { grid-column: 1 / span 4; grid-row: 1 / span 8; }
.ff-b { grid-column: 4 / span 3; grid-row: 5 / span 6; margin-top: -30px; z-index: 2; }
.ff-c { grid-column: 2 / span 3; grid-row: 10 / span 6; margin-top: 20px; }

/* ============================================
   FABRICS
   ============================================ */
.fabric-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(14px, 1.4vw, 22px);
}
.fabric-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.fabric-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.fabric-card:nth-child(odd) { transform: translateY(18px); }
.fabric-card:nth-child(odd):hover { transform: translateY(14px); }
.fabric-card:nth-child(3n) { transform: translateY(-10px); }
.fabric-card:nth-child(3n):hover { transform: translateY(-16px); }
.fabric-img {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.fabric-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.fabric-card:hover .fabric-img img { transform: scale(1.08); }
.fabric-info { padding: 18px 18px 22px; }
.fab-num {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
}
.fabric-info h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.15;
  margin: 10px 0 8px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.fabric-info p {
  font-size: 12px;
  color: var(--ink-dim);
  line-height: 1.5;
}

/* ============================================
   ARRIVALS
   ============================================ */
.arrivals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.4vw, 36px);
}
.arrival { position: relative; }
.arrival-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-2);
}
.arrival-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.arrival:hover .arrival-img img { transform: scale(1.08); }
.arrival-tag {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--bg);
  background: var(--gold);
  padding: 6px 10px;
}
.arrival-meta {
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.arrival-meta > span {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--ink-muted);
}
.arrival-meta h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

/* ============================================
   STUDIO
   ============================================ */
.studio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.studio-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-2);
}
.studio-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.studio-stamp {
  position: absolute;
  bottom: 20px; left: 20px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--ink);
  background: rgba(0,0,0,0.6);
  padding: 8px 14px;
  backdrop-filter: blur(4px);
}
.studio-text .section-title {
  margin-bottom: 28px;
}
.studio-text p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-dim);
  margin-bottom: 18px;
  max-width: 560px;
}
.signature {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.signature span {
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.signature em {
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--ink-muted);
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 32px;
  padding-top: 0;
}
.contact-item .ci-label {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-bottom: 12px;
}
.contact-item .ci-value {
  font-family: var(--display);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.4;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
}
.contact-item .ci-value a {
  border-bottom: 1px solid var(--line-strong);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.contact-item .ci-value a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 28px;
  padding: 36px;
  border: 1px solid var(--line);
  background: var(--bg-2);
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-form label.full { grid-column: 1 / -1; }
.contact-form label > span {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--ink-muted);
}
.contact-form input,
.contact-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  padding: 10px 0;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s var(--ease);
  width: 100%;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.form-submit {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 8px;
}
.form-msg {
  grid-column: 1 / -1;
  display: none;
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--gold);
  padding: 16px 18px;
  border: 1px solid var(--gold);
}
.form-msg.show { display: block; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 80px var(--gutter) 30px;
  background: var(--bg);
}
.footer-mark {
  max-width: var(--max);
  margin: 0 auto;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(60px, 12vw, 220px);
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}

.footer-cols {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--line);
}
.fc-label {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col p {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.8;
}
.footer-col a {
  transition: color 0.3s var(--ease);
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
}
.footer-privacy {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
}

/* ============================================
   PRIVACY POLICY PAGE
   ============================================ */
.privacy-shell {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(120px, 14vw, 180px) var(--gutter) 100px;
}
.privacy-eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--gold);
}
.privacy-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 22px 0 26px;
}
.privacy-title em { font-style: normal; color: var(--gold); }
.privacy-meta {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.privacy-body { padding-top: 40px; }
.privacy-body h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 48px 0 16px;
}
.privacy-body h2:first-child { margin-top: 0; }
.privacy-body h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 28px 0 10px;
}
.privacy-body p,
.privacy-body li {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-dim);
  margin-bottom: 14px;
}
.privacy-body ul, .privacy-body ol { padding-left: 22px; margin-bottom: 14px; }
.privacy-body a { color: var(--gold); border-bottom: 1px solid var(--gold); }
.privacy-body strong { color: var(--ink); font-weight: 600; }
.privacy-toc {
  margin: 30px 0 50px;
  padding: 28px;
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.privacy-toc h4 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-bottom: 16px;
}
.privacy-toc ol {
  list-style: none;
  padding-left: 0;
  columns: 2;
  column-gap: 32px;
}
.privacy-toc ol li {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  color: var(--ink-dim);
}
.privacy-toc a:hover { color: var(--gold); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1280px) {
  .nav-primary { gap: 18px; }
  .nav-primary a { font-size: 10px; }
  .hero-slide { grid-template-columns: 1fr 1fr 200px; }
  .hero-title { font-size: clamp(48px, 7vw, 110px); }
}

@media (max-width: 1100px) {
  .nav-primary { display: none; }
  .lookbook-link { display: none; }
  .menu-toggle { display: flex; }

  .hero { height: auto; min-height: 0; padding-top: 74px; }
  .hero-slide {
    position: relative;
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 40px var(--gutter) 100px;
  }
  .hero-slide:not(.is-active) { display: none; }
  .hero-image { aspect-ratio: 4/5; height: auto; }
  .hero-tagline { margin-top: 0; }
  .slider-ui { bottom: 30px; }

  .section-head { grid-template-columns: 1fr; }
  .section-sub { justify-self: start; }
  .looks-head { grid-template-columns: 1fr; gap: 20px; }

  .strip-grid { grid-template-columns: 1fr; }
  .strip-stats { padding-left: 0; border-left: none; padding-top: 30px; border-top: 1px solid var(--line); }

  .coll-lg, .coll-card, .coll-wide { grid-column: span 12 !important; grid-row: auto !important; }
  .coll-img { min-height: 380px; }

  .looks-grid > * { grid-column: 1 / -1 !important; margin-top: 0 !important; }

  .festive-grid { grid-template-columns: 1fr; }
  .festive-right { grid-auto-rows: 50px; }
  .ff-a { grid-column: 1 / span 6; grid-row: 1 / span 6; }
  .ff-b { grid-column: 1 / span 4; grid-row: 7 / span 5; margin-top: 0; }
  .ff-c { grid-column: 4 / span 3; grid-row: 12 / span 5; margin-top: -30px; }

  .fabric-strip { grid-template-columns: repeat(2, 1fr); }
  .fabric-card:nth-child(odd),
  .fabric-card:nth-child(3n) { transform: none !important; }

  .arrivals-grid { grid-template-columns: repeat(2, 1fr); }

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

  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { grid-template-columns: 1fr 1fr; }
  .contact-form { grid-template-columns: 1fr; padding: 24px; }

  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .privacy-toc ol { columns: 1; }
}

@media (max-width: 640px) {
  .header-row { grid-template-columns: 1fr auto; }
  .brand { font-size: 16px; letter-spacing: 0.26em; }
  .hero-title { font-size: clamp(44px, 13vw, 72px); }
  .section-title { font-size: clamp(36px, 12vw, 64px); }
  .strip-stats { grid-template-columns: 1fr 1fr; }
  .arrivals-grid { grid-template-columns: 1fr; }
  .contact-info { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .slider-ui {
    left: var(--gutter); right: var(--gutter); bottom: auto;
    top: clamp(100vw, 130vw, 740px);
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .arrow { width: 48px; height: 48px; }
  .hero-cta { gap: 18px; }
  .btn-outline { padding: 14px 20px; font-size: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
}
