﻿/* Curated organic fashion theme */

:root {
  --bg: #f5f0e6;
  --bg-soft: #f8f4ec;
  --bg-muted: #ebe4d6;
  --ink: #2a2c2b;
  --muted: #6e675c;
  --line: rgba(42, 44, 43, 0.12);
  --accent: #c5b49f;
  --accent-ink: #f5f0e6;
  --accent-deep: #a8977f;
  --danger: #e11d48;
  --success: #16a34a;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --space: clamp(1.25rem, 4vw, 3rem);
  --header: 4.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-pill: 999px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(17, 17, 17, 0.04);
  --shadow-md: 0 12px 40px rgba(17, 17, 17, 0.08);
  --focus: 0 0 0 3px rgba(197, 180, 159, 0.55);
  --cream: #f5f0e6;
  --tan: #c5b49f;
  --charcoal: #2a2c2b;
}

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

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

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

html {
  height: 100%;
  overflow-x: clip;
  overflow-y: scroll;
}

body.cu {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

:focus { outline: none; }
:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.cu-skip {
  position: absolute;
  left: var(--space);
  top: -100px;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
}
.cu-skip:focus {
  top: 0.75rem;
  box-shadow: var(--focus);
}

/* Header */
.cu-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 var(--space);
  transition: background 0.35s var(--ease), color 0.35s, box-shadow 0.35s, backdrop-filter 0.35s;
  color: #fff;
}

/* Persistent curated header — overlay, same fold scale as home (1024×625) */
.cu-site-header {
  --cu-hdr-art: 176;
  --cu-art-h: 625;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  width: 100%;
  height: calc(100svh * var(--cu-hdr-art) / var(--cu-art-h));
  background: transparent;
  pointer-events: none;
  overflow: visible;
}

.cu-site-header__stage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  pointer-events: none;
}

.cu-site-header__shapes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  z-index: 1;
}

.cu-site-header .cu-orbits {
  pointer-events: auto;
  left: 3.2227%;
  top: calc(100% * 27 / 176);
  width: 26.367%;
  height: calc(100% * 30 / 176);
  z-index: 2;
}

@media (max-width: 720px) {
  .cu-site-header {
    height: calc(100svh * 110 / 625);
    min-height: 4.5rem;
  }
  .cu-site-header .cu-orbits {
    left: 4.5%;
    top: calc(100% * 22 / 110);
    width: min(72%, 17rem);
    height: calc(100% * 34 / 110);
    min-height: 1.55rem;
    gap: 0.28rem;
  }
  .cu-site-header .cu-orbit {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
  }
}

/* Back to top */
.cu-top {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1.15rem, env(safe-area-inset-bottom));
  z-index: 90;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  background: #2a2c2b;
  color: #f3efe7;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  cursor: pointer;
}
.cu-top.is-on {
  display: inline-flex;
}
.cu-top:hover {
  background: #3a3c3b;
}
.cu-top svg {
  width: 1.1rem;
  height: 1.1rem;
}

.cu-header.is-solid,
body:not(.is-home) .cu-header {
  background: rgba(245, 240, 230, 0.92);
  backdrop-filter: blur(16px) saturate(1.1);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
}

.cu-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  transition: opacity 0.2s;
}
.cu-logo:hover { opacity: 0.72; }

.cu-nav {
  display: flex;
  gap: 1.85rem;
}

.cu-nav a {
  position: relative;
  font-size: 0.82rem;
  font-weight: 550;
  letter-spacing: 0.02em;
  opacity: 0.82;
  padding: 0.25rem 0;
  transition: opacity 0.2s;
}
.cu-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.cu-nav a:hover,
.cu-nav a[aria-current="page"] { opacity: 1; }
.cu-nav a:hover::after,
.cu-nav a[aria-current="page"]::after { transform: scaleX(1); }

.cu-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cu-bag {
  font-size: 0.8rem;
  font-weight: 650;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.7rem;
  border-radius: var(--radius-pill);
  transition: background 0.2s, color 0.2s;
}
.cu-header.is-solid .cu-bag:hover,
body:not(.is-home) .cu-bag:hover {
  background: var(--bg-soft);
}
.cu-bag svg { flex-shrink: 0; }

.cart-count {
  min-width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 0.65rem;
  display: none;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.cu-burger {
  display: none;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0;
  border-radius: var(--radius-sm);
}
.cu-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.cu-burger[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}
.cu-burger[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.language-switcher { position: relative; }
.language-btn {
  border: 1px solid color-mix(in srgb, currentColor 35%, transparent);
  background: transparent;
  color: inherit;
  padding: 0.4rem 0.65rem;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  transition: background 0.2s, border-color 0.2s;
}
.language-btn:hover {
  border-color: currentColor;
}
.language-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  min-width: 9rem;
  padding: 0.4rem;
  z-index: 20;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.language-switcher.active .language-dropdown { display: block; }
.language-dropdown form { margin: 0; }
.lang-option {
  width: 100%;
  border: 0;
  background: none;
  text-align: left;
  padding: 0.6rem 0.7rem;
  cursor: pointer;
  color: var(--muted);
  border-radius: var(--radius-sm);
  font-weight: 500;
}
.lang-option:hover,
.lang-option.active {
  color: var(--ink);
  background: var(--bg-soft);
}

body.is-home {
  /* Allow scroll through hero bleed (paths past artboard fold) */
  overflow-x: clip;
  overflow-y: auto;
  height: auto;
  min-height: 100svh;
  background: #2a2c2b; /* matches bleed; no cream flash under lobes */
}
body.is-home #main {
  margin: 0;
  padding: 0;
  min-height: 0;
}
body.is-home .cu-footer {
  display: block;
  background: #f3efe7;
}

/* ===== HERO — full-bleed, round nav, photo-safe =====
   Artboard fold: 1024×625 → first viewport (desktop full-bleed stretch).
   Scroll bleed: Figma bottom lobes past y=625.
   Photos: HTML cover + SVG mask (real Figma paths).
   ≤1023px: same board, height 100svh, width = AR lock, centered crop.
*/
.cu-hero {
  --cu-art-w: 1024;
  --cu-art-h: 625;
  --cu-vb-h: 828; /* keep in sync with organic_layouts _meta.viewBox[3] */
  --cu-ar: calc(var(--cu-art-w) / var(--cu-art-h));
  --cu-cream: #f3efe7;
  /* Artboard-fold height used as % reference for nav/copy (desktop) */
  --cu-fold-h: calc(100svh);
  /* M-nav artboard box — ratios of fold (1024×625) */
  --cu-nav-x: 3.2227%;
  --cu-nav-y-ratio: 0.0432;   /* 27/625 */
  --cu-nav-w: 26.367%;
  --cu-nav-h-ratio: 0.048;    /* 30/625 */
  position: relative;
  width: 100%;
  /* First paint = artboard; section taller so bleed is scrollable */
  height: calc(100svh * var(--cu-vb-h) / var(--cu-art-h));
  min-height: 0;
  overflow: visible;
  background: #2a2c2b;
  color: #2a2c2b;
}
body.is-home .cu-hero {
  position: relative;
  z-index: 1;
}

.cu-hero__board {
  /* Artboard fold — shapes/photos extend below into bleed */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--cu-fold-h); /* = 100svh on desktop */
  overflow: visible;
}

.cu-hero__shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* Taller than artboard board → maps viewBox bleed below the fold */
  height: calc(100% * var(--cu-vb-h) / var(--cu-art-h));
  z-index: 1;
  pointer-events: none;
  display: block;
  overflow: visible;
}

/* Photos — HTML cover crop, masked to organic paths (never SVG-stretched) */
.cu-hero__photos {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% * var(--cu-vb-h) / var(--cu-art-h));
  z-index: 2;
  pointer-events: none;
}

.cu-photo {
  position: absolute;
  margin: 0;
  padding: 0;
  overflow: hidden;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.cu-hero__board--desk .cu-photo,
.cu-hero__board--desk .cu-magnet,
.cu-hero__board--desk .cu-hero-shop--desk,
.cu-hero__board--desk .cu-orbits {
  will-change: transform;
}

.cu-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--cu-pos, 50% 50%);
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* Nav — artboard % of fold; diameter = strip height → always a circle */
.cu-orbits {
  position: absolute;
  z-index: 60;
  left: var(--cu-nav-x);
  top: calc(var(--cu-fold-h) * var(--cu-nav-y-ratio));
  width: var(--cu-nav-w);
  height: calc(var(--cu-fold-h) * var(--cu-nav-h-ratio));
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.2rem, 0.55vw, 0.65rem);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  pointer-events: auto;
}

.cu-orbit {
  position: relative;
  flex: 0 0 auto;
  height: 100%;
  width: auto;
  aspect-ratio: 1 / 1;
  max-width: 100%;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2a2c2b;
  background: linear-gradient(145deg, #d8c9b4 0%, #c5b49f 50%, #a8977f 100%);
  border: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: transform 0.25s var(--ease), filter 0.25s;
  box-sizing: border-box;
  padding: 0;
  text-decoration: none;
}

.cu-hero__copy {
  /* Cover artboard fold only (not scroll bleed) */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--cu-fold-h);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
  padding: 0 1rem;
  box-sizing: border-box;
}


.cu-hero__title {
  margin: 0 0 0.85rem;
  max-width: min(92vw, 42rem);
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(1.55rem, 3.8vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1e1f1e;
  white-space: nowrap;
}
.cu-hero__title-line {
  display: block;
  white-space: nowrap;
}
.cu-hero__mission {
  margin: 0 0 1.35rem;
  max-width: min(34rem, 88vw);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: clamp(0.82rem, 1.35vw, 1.05rem);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: #3a3b3a;
}

.cu-hero__cta {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  background: linear-gradient(160deg, #d7c7b1 0%, #b9a58b 45%, #9e8b72 100%);
  color: #fff;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow:
    0 12px 30px rgba(42, 44, 43, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform 0.3s var(--ease), filter 0.3s;
}
.cu-hero__cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* Shop overlay — 3 product tiles + catalog CTA on C-dark-bottom */
.cu-hero-shop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 25;
  pointer-events: none;
}
.cu-hero__board--desk .cu-hero-shop--desk {
  display: block;
  /* Same vertical map as shapes/photos (viewBox bleed 828) */
  height: calc(100% * var(--cu-vb-h) / var(--cu-art-h));
}
.cu-hero__board--desk .cu-hero-shop--mob { display: none; }
.cu-hero__board--mob .cu-hero-shop--desk { display: none; }
.cu-hero__board--mob .cu-hero-shop--mob {
  display: block;
  /* 100% = art 844; tiles/CTA may sit in C bleed below the frame */
  height: 100%;
  overflow: visible;
}

.cu-hero-shop__tile,
.cu-hero-shop__cta {
  position: absolute;
  pointer-events: auto;
  box-sizing: border-box;
}

.cu-hero-shop__tile {
  display: block;
  overflow: hidden;
  background: var(--bg-soft, #f8f4ec);
  border: 2px solid #c5b39d; /* same tan as C-dark-upper line */
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.cu-hero__board--desk .cu-hero-shop__tile {
  border-width: 3px;
}
.cu-hero-shop__tile img,
.cu-hero-shop__ph {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cu-hero-shop__ph {
  background: linear-gradient(145deg, #d7c7b1, #9e8b72);
}
.cu-hero-shop__tile:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.cu-hero-shop__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(160deg, #d7c7b1 0%, #b9a58b 45%, #9e8b72 100%);
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(0.45rem, 0.9vw, 0.62rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  padding: 0 0.5rem;
  box-shadow:
    0 10px 24px rgba(42, 44, 43, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform 0.3s var(--ease), filter 0.3s;
  white-space: nowrap;
  overflow: hidden;
}
.cu-hero-shop__cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.cu-hero__thumbs {
  position: absolute;
  left: 50%;
  bottom: 1.4%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.7rem;
  z-index: 5;
}
.cu-hero__thumb {
  display: block;
  width: clamp(64px, 6.2vw, 88px);
  height: clamp(78px, 7.5vw, 104px);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(42, 44, 43, 0.18);
  background: #ebe3d4;
}
.cu-hero__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cu-orbit svg { width: 46%; height: 46%; }
.cu-orbit:hover,
.cu-orbit[aria-current="page"] {
  background: linear-gradient(145deg, #e2d5c2 0%, #c5b49f 55%, #9a8870 100%);
  color: #1a1a1a;
  transform: translateY(-1px) scale(1.04);
}

.cu-orbit--cart .cu-orbit-count {
  position: absolute;
  top: -0.15rem;
  right: -0.15rem;
  min-width: 0.95rem;
  height: 0.95rem;
  padding: 0 0.2rem;
  border-radius: 999px;
  background: #2a2c2b;
  color: #f3efe7;
  font-size: 0.55rem;
  font-weight: 700;
  line-height: 1;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.cu-orbit--lang .language-btn {
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.cu-orbit--lang .language-dropdown {
  top: calc(100% + 8px);
  left: 0;
}

.cu-kicker {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Below fold — About + New Arrivals (organic figures, artboard 1200×1100) */
.cu-below {
  --cu-below-w: 1200;
  --cu-below-h: 1100;
  position: relative;
  z-index: 2;
  background: #f3efe7;
  color: #2a2c2b;
  overflow: hidden;
}

.cu-below__stage {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  aspect-ratio: 1200 / 1100;
}

.cu-below__shapes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

.cu-below__shapes--back {
  z-index: 1;
}

.cu-below__shapes--waist {
  z-index: 3;
}

.cu-below__photos {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.cu-below__photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.cu-below__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  pointer-events: none;
}

.cu-below__photo--about img {
  object-position: 48% 12%;
}

.cu-below__photo--na-1 img {
  object-position: 50% 15%;
}

.cu-below__photo--na-2 img {
  object-position: 52% 18%;
}

.cu-below__photo--na-3 img {
  object-position: 45% 20%;
}

.cu-below__photo--na-4 img {
  object-position: 55% 25%;
}

.cu-below__hits {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.cu-below__hit {
  position: absolute;
  display: block;
  pointer-events: auto;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  cursor: pointer;
}

.cu-below__about {
  position: absolute;
  left: 54%;
  top: 8%;
  width: 42%;
  max-width: none;
  z-index: 5;
  transform: scale(1.12);
  transform-origin: left top;
}

.cu-below__about-title {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3.2rem, 6.8vw, 5.75rem);
  letter-spacing: -0.035em;
  line-height: 0.95;
  color: #2a2c2b;
}

.cu-below__about-copy {
  margin: 0 0 1.05rem;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.95rem, 1.35vw, 1.15rem);
  line-height: 1.65;
  color: #6a6560;
  max-width: 36ch;
}

.cu-below__about-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.15rem;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  background: #c5b39d;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(42, 44, 43, 0.08);
}

.cu-below__about-cta:hover {
  filter: brightness(0.97);
}

.cu-below__arrivals-title {
  position: absolute;
  left: 50%;
  top: 49%;
  transform: translateX(-50%);
  margin: 0;
  z-index: 5;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #2a2c2b;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
}

.cu-below__cards {
  position: absolute;
  inset: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 5;
  pointer-events: none;
}

.cu-below__card {
  position: absolute;
  /* horizontal center; vertical sits in visual mass of cloud (not bbox mid) */
  transform: translate(-50%, -35%);
  width: min(18%, 11rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  text-align: center;
  color: #2a2c2b;
  pointer-events: none;
}

.cu-below__card-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1rem, 1.55vw, 1.35rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  text-align: center;
}

.cu-below__card-cta {
  font-family: var(--font-body);
  font-size: clamp(0.62rem, 0.85vw, 0.72rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7a756c;
  text-align: center;
}

.cu-below__mobile {
  display: none;
}

@media (max-width: 1100px) {
  .cu-below__about {
    left: 52%;
    transform: scale(1.06);
  }

  .cu-below__about-title {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  }

  .cu-below__about-copy {
    font-size: clamp(0.88rem, 1.2vw, 1.05rem);
  }

  .cu-below__arrivals-title {
    font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  }

  .cu-below__card-name {
    font-size: clamp(0.88rem, 1.3vw, 1.15rem);
  }
}

@media (max-width: 900px) {
  .cu-below__stage {
    aspect-ratio: 1200 / 1180;
  }

  .cu-below__about {
    left: 50%;
    top: 7%;
    width: 46%;
    transform: scale(1);
  }

  .cu-below__about-title {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    margin-bottom: 1rem;
  }

  .cu-below__about-copy {
    font-size: 0.82rem;
    max-width: 34ch;
  }

  .cu-below__about-cta {
    padding: 0.72rem 1.5rem;
    font-size: 0.68rem;
  }

  .cu-below__arrivals-title {
    top: 48.5%;
    font-size: clamp(1.65rem, 4vw, 2.4rem);
  }

  .cu-below__card {
    width: min(20%, 9rem);
  }
}

/* Mobile: stacked about + horizontal NA rail (2 large cards visible) */
@media (max-width: 720px) {
  .cu-below {
    overflow: visible;
  }

  .cu-below__stage {
    display: none;
  }

  .cu-below__mobile {
    display: block;
    padding: 2.25rem 0 2.75rem;
  }

  .cu-below__m-about {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.35rem;
    padding: 0 1.15rem;
  }

  .cu-below__m-about-fig,
  .cu-below__m-card-fig {
    position: relative;
    width: 100%;
    margin: 0;
  }

  .cu-below__m-about-fig {
    width: min(82%, 19rem);
    justify-self: center;
  }

  .cu-below__m-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
  }

  .cu-below__m-svg--back {
    z-index: 1;
  }

  .cu-below__m-svg--waist {
    z-index: 3;
  }

  .cu-below__m-photo {
    position: absolute;
    margin: 0;
    overflow: hidden;
    z-index: 2;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    pointer-events: none;
  }

  .cu-below__m-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    display: block;
  }

  .cu-below__m-about-copy {
    text-align: left;
  }

  .cu-below__m-about-copy .cu-below__about-title {
    font-size: clamp(2.6rem, 11vw, 3.4rem);
    margin: 0 0 0.9rem;
    transform: none;
  }

  .cu-below__m-about-copy .cu-below__about-copy {
    font-size: 0.92rem;
    max-width: none;
    margin-bottom: 0.75rem;
  }

  .cu-below__m-about-copy .cu-below__about-cta {
    margin-top: 0.65rem;
  }

  .cu-below__m-arrivals {
    margin: 2.4rem 1.15rem 1.1rem;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.85rem, 8vw, 2.5rem);
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: #2a2c2b;
    text-align: center;
  }

  .cu-below__m-rail {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    padding: 0.25rem 0 0.5rem;
    scrollbar-width: none;
  }

  .cu-below__m-rail::-webkit-scrollbar {
    display: none;
  }

  .cu-below__m-track {
    display: flex;
    gap: 0.75rem;
    width: max-content;
    padding: 0 1.15rem 0.85rem;
  }

  .cu-below__m-card {
    flex: 0 0 calc(50vw - 1.45rem);
    max-width: 13rem;
    scroll-snap-align: start;
    text-decoration: none;
    color: inherit;
  }

  .cu-below__m-cloud {
    position: absolute;
    z-index: 4;
    transform: translate(-50%, -35%);
    width: 72%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.18rem;
    text-align: center;
    pointer-events: none;
    color: #2a2c2b;
  }

  .cu-below__m-cloud .cu-below__card-name {
    font-size: clamp(0.92rem, 3.6vw, 1.12rem);
  }

  .cu-below__m-cloud .cu-below__card-cta {
    font-size: 0.6rem;
  }
}

@media (max-width: 420px) {
  .cu-below__m-card {
    flex-basis: calc(52vw - 1.15rem);
  }

  .cu-below__m-about-fig {
    width: min(90%, 17rem);
  }
}

/* Below fold — bridge / selected / category index (no hero shape edits) */
.cu-bridge,
.cu-select,
.cu-index,
.cu-edit,
.cu-depts,
.cu-cats,
.cu-shop,
.cu-story {
  padding: 4.5rem var(--space);
  position: relative;
  z-index: 2;
  background: var(--bg);
  color: var(--ink);
}

.cu-edit .cu-section-head,
.cu-depts .cu-section-head {
  padding-left: 0;
  padding-right: 0;
}

.cu-bridge {
  padding-top: 5.5rem;
  padding-bottom: 3.25rem;
  text-align: center;
  max-width: none;
}

.cu-bridge__kicker {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.cu-bridge__line {
  margin: 0 auto;
  max-width: 18ch;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
}

.cu-select {
  padding-top: 2.5rem;
  padding-bottom: 5rem;
  max-width: 72rem;
  margin: 0 auto;
}

.cu-select__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.cu-select__kicker {
  margin: 0 0 0.45rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.cu-select__head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.cu-select__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.35rem 1.1rem;
}

.cu-select__card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  color: inherit;
  text-decoration: none;
}

.cu-select__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--bg-soft, #f8f4ec);
}

.cu-select__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}

.cu-select__card:hover .cu-select__media img {
  transform: scale(1.03);
}

.cu-select__meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.cu-select__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.cu-select__price {
  font-size: 0.85rem;
  color: var(--muted);
}

.cu-index {
  padding-top: 0;
  padding-bottom: 5rem;
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
}

.cu-index__label {
  margin: 0 0 1.25rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.cu-index__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 1.35rem;
}

.cu-index__list a {
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), opacity 0.25s var(--ease);
}

.cu-index__list a:hover {
  border-bottom-color: currentColor;
  opacity: 0.72;
}

.cu-edit-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem 1.25rem;
  padding: 0;
}

.cu-edit-item--lead {
  grid-row: 1 / span 2;
}

.cu-edit-item {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.cu-edit-media {
  display: block;
  overflow: hidden;
  background: var(--bg-soft);
  aspect-ratio: 3 / 4;
}

.cu-edit-item--lead .cu-edit-media {
  aspect-ratio: auto;
  flex: 1;
  min-height: 28rem;
}

.cu-edit-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}

.cu-edit-item:hover .cu-edit-media img {
  transform: scale(1.03);
}

.cu-edit-meta h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.cu-edit-meta h3 a {
  color: inherit;
  text-decoration: none;
}

.cu-edit-price {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.cu-edit-meta .btn-add-cart {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.cu-depts-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.cu-dept {
  display: grid;
  grid-template-columns: 3rem 4.5rem 1fr;
  align-items: center;
  gap: 1.25rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  transition: background 0.25s var(--ease);
}

.cu-dept:hover {
  background: rgba(42, 44, 43, 0.03);
}

.cu-dept__num {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.cu-dept__thumb {
  display: block;
  width: 4.5rem;
  height: 3.4rem;
  overflow: hidden;
  background: var(--bg-muted);
}

.cu-dept__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cu-dept__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  letter-spacing: -0.02em;
}

.cu-cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.cu-cat {
  display: block;
  border-radius: 28px;
  overflow: hidden;
  background: var(--bg-soft);
  transition: transform 0.4s var(--ease);
}

.cu-cat:hover { transform: translateY(-4px); }

.cu-cat-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 28px 28px 40% 40% / 28px 28px 18% 18%;
}

.cu-cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.cu-cat:hover .cu-cat-img img { transform: scale(1.05); }

.cu-cat-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 0.35rem 0.25rem;
}

.cu-cat-meta span {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.cu-cat-meta h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
}

@media (max-width: 980px) {
  .cu-cats-grid { grid-template-columns: 1fr 1fr; }
  .cu-select__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cu-edit-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cu-edit-item--lead {
    grid-row: auto;
    grid-column: 1 / -1;
  }
  .cu-edit-item--lead .cu-edit-media {
    min-height: 20rem;
  }
}

@media (max-width: 640px) {
  .cu-edit-grid { grid-template-columns: 1fr; }
  .cu-select__grid { grid-template-columns: 1fr 1fr; gap: 1rem 0.75rem; }
  .cu-select__head { align-items: flex-start; flex-direction: column; gap: 0.75rem; }
  .cu-dept {
    grid-template-columns: 2.5rem 3.5rem 1fr;
    gap: 0.85rem;
  }
}

/* —— Responsive breakpoints ——
   Portrait phone/tablet: calibrated mobile frame (width-fit, scroll).
   Landscape short AR (iPad landscape): desktop art width-fit — NEVER cover
   (cover crops left/right lobes; same issue as 1017×925 / «хреново на айпадах»).
   Wide landscape / desktop: full-bleed none stretch.
*/
.cu-hero__board--mob { display: none; }

.cu-hero__stage--desk {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Landscape tablets / short wide viewports — desktop composition, width-fit */
@media (min-width: 768px) and (orientation: landscape) and (max-aspect-ratio: 8 / 5) {
  body.is-home {
    overflow-x: hidden;
    overflow-y: auto;
  }

  .cu-hero {
    --cu-fold-h: calc(var(--cu-art-h) * 1px);
    /* Width-fit: full artboard width visible; short height scrolls for bleed */
    --cu-desk-scale: calc(100vw / (var(--cu-art-w) * 1px));
    --cu-desk-stage-h: calc(var(--cu-art-h) * 1px * var(--cu-desk-scale));
    --cu-desk-bleed-h: calc(
      (var(--cu-vb-h) - var(--cu-art-h)) * 1px * var(--cu-desk-scale)
    );
    height: max(100svh, calc(var(--cu-desk-stage-h) + var(--cu-desk-bleed-h)));
    min-height: 100svh;
    overflow: visible;
    background: var(--cu-cream);
  }

  .cu-hero__board--desk {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(var(--cu-desk-stage-h) + var(--cu-desk-bleed-h));
    overflow: hidden;
  }

  .cu-hero__stage--desk {
    inset: auto;
    left: 50%;
    top: 0;
    width: calc(var(--cu-art-w) * 1px);
    height: calc(var(--cu-art-h) * 1px);
    transform: translateX(-50%) scale(var(--cu-desk-scale));
    transform-origin: top center;
  }

  .cu-hero__board--desk .cu-hero__shapes,
  .cu-hero__board--desk .cu-hero__photos,
  .cu-hero__board--desk .cu-hero-shop--desk {
    height: calc(100% * var(--cu-vb-h) / var(--cu-art-h));
  }

  .cu-hero__board--desk .cu-orbits {
    top: calc(var(--cu-fold-h) * var(--cu-nav-y-ratio));
    height: calc(var(--cu-fold-h) * var(--cu-nav-h-ratio));
  }

  .cu-hero__board--desk .cu-hero__copy {
    height: var(--cu-fold-h);
  }

  .cu-hero__board--desk .cu-hero__title {
    font-size: clamp(1.45rem, 3.2vw, 2.75rem);
    white-space: nowrap;
  }
}

/* Portrait phones + iPads — mobile frame pack (width-fit; short height → scroll)
   1180 catches larger iPad Pro CSS widths that sit just above 1024. */
@media (max-width: 767px), ((max-width: 1180px) and (orientation: portrait)) {
  body.is-home {
    overflow-x: hidden;
    overflow-y: auto;
  }

  .cu-hero {
    --cu-fold-h: 100%;
    --cu-mob-w: 390;
    --cu-mob-h: 844;
    /* Width-fit: short viewports scroll instead of cropping the bottom */
    --cu-mob-scale: calc(100vw / (var(--cu-mob-w) * 1px));
    --cu-mob-stage-h: calc(var(--cu-mob-h) * 1px * var(--cu-mob-scale));
    /* C-dark-bottom rounded lobe bleeds past phone frame (~170 phone units) */
    --cu-mob-bleed-u: 170;
    --cu-mob-bleed-h: calc(var(--cu-mob-bleed-u) * 1px * var(--cu-mob-scale));
    height: max(100svh, calc(var(--cu-mob-stage-h) + var(--cu-mob-bleed-h)));
    min-height: 100svh;
    overflow: visible;
    background: var(--cu-cream);
    padding: 0;
    box-sizing: border-box;
  }

  .cu-hero__board--desk { display: none !important; }

  .cu-hero__board--mob {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(var(--cu-mob-stage-h) + var(--cu-mob-bleed-h));
    overflow: hidden;
    background: var(--cu-cream);
  }

  .cu-hero__stage--mob {
    position: absolute;
    left: 50%;
    top: 0;
    width: calc(var(--cu-mob-w) * 1px);
    height: calc(var(--cu-mob-h) * 1px);
    transform: translateX(-50%) scale(var(--cu-mob-scale));
    transform-origin: top center;
    overflow: visible;
  }

  .cu-hero__layers {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
  }

  .cu-hero__cream {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--cu-cream);
  }

  .cu-layer--solid {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
    pointer-events: none;
  }

  .cu-hero__board--mob .cu-photo {
    position: absolute;
    margin: 0;
    padding: 0;
    overflow: hidden;
    pointer-events: none;
  }

  .cu-hero__board--mob .cu-orbits {
    left: 5.5%;
    top: 3.6%;
    width: 46%;
    height: 2.85%;
    min-height: 1.55rem;
    transform: none;
    gap: 0.28rem;
    z-index: 40;
  }
  .cu-hero__board--mob .cu-orbit {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
  }

  .cu-hero__board--mob .cu-hero__copy {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0 11%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
    z-index: 30;
    box-sizing: border-box;
  }
  .cu-hero__board--mob .cu-hero__title {
    margin: 0 0 0.55rem;
    max-width: 92vw;
    font-size: clamp(1.15rem, 5.2vw, 1.55rem);
    letter-spacing: 0.06em;
    line-height: 1.08;
    white-space: nowrap;
  }
  .cu-hero__board--mob .cu-hero__mission {
    margin: 0 0 1rem;
    max-width: 28ch;
    font-size: 0.78rem;
    line-height: 1.4;
  }
  .cu-hero__board--mob .cu-hero__cta {
    pointer-events: auto;
    min-height: 2.5rem;
    padding: 0.6rem 1.25rem;
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    white-space: nowrap;
  }

  .cu-hero__thumbs { display: none; }
  .cu-cats-grid { grid-template-columns: 1fr; }
}

/* Larger portrait tablets — slightly tighter type (stage already scales up) */
@media (min-width: 700px) and (max-width: 1180px) and (orientation: portrait) {
  .cu-hero__board--mob .cu-hero__title {
    font-size: 1.35rem;
  }
  .cu-hero__board--mob .cu-hero__cta {
    min-height: 2.25rem;
    font-size: 0.55rem;
  }
  .cu-hero__board--mob .cu-orbits {
    min-height: 1.35rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.85rem;
  padding: 0.85rem 1.55rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.22s var(--ease),
    background 0.22s,
    color 0.22s,
    border-color 0.22s,
    box-shadow 0.22s;
  background: transparent;
  color: var(--ink);
}
.btn:active { transform: translateY(1px) scale(0.98); }

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
  box-shadow: 0 8px 22px rgba(42, 44, 43, 0.12);
}
.btn-primary:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  transform: translateY(-2px);
}

.btn-ghost,
.btn-secondary {
  border-color: var(--ink);
  background: transparent;
}
.btn-ghost:hover,
.btn-secondary:hover {
  background: var(--ink);
  color: #fff;
}

.btn-add-cart,
.btn-small,
.btn-large {
  width: 100%;
  border-radius: var(--radius-sm);
}
.btn:disabled {
  opacity: 0.45;
  pointer-events: none;
}

/* Marquee */
.cu-marquee {
  border-block: 1px solid var(--line);
  background: var(--bg);
  overflow: hidden;
  padding: 1.05rem 0;
}
.cu-marquee:hover .cu-marquee-track {
  animation-play-state: paused;
}

.cu-marquee-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  animation: marquee 32s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.cu-marquee-track span {
  color: var(--accent-deep);
  font-size: 0.7em;
}
.cu-marquee-track a {
  transition: color 0.2s;
}
.cu-marquee-track a:hover { color: #000; }

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

/* Sections */
.cu-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 var(--space);
  margin-bottom: 1.85rem;
}

.cu-section-head h2,
.cu-story h2,
.page-header h1,
.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.4vw, 3.25rem);
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.cu-section-note,
.cu-link {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 650;
}
.cu-link {
  position: relative;
  padding-bottom: 0.15rem;
}
.cu-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.3s var(--ease), color 0.2s;
}
.cu-link:hover { color: var(--ink); }
.cu-link:hover::after { transform: scaleX(1); }

/* Looks */
.cu-looks { padding: 4.75rem 0 2.25rem; }

.cu-looks-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 0.85rem;
  padding: 0 var(--space);
}

.cu-look {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--bg-soft);
  min-height: 360px;
  border-radius: 4px;
}
.cu-look:first-child {
  grid-row: span 2;
  min-height: 100%;
}

.cu-look-img { position: absolute; inset: 0; }
.cu-look-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.cu-look:hover .cu-look-img img { transform: scale(1.05); }

.cu-look-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.35rem;
  color: #fff;
  background: linear-gradient(transparent, rgba(0,0,0,0.58));
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.cu-look-meta span {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  opacity: 0.8;
  font-weight: 650;
}
.cu-look-meta h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.95rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

/* Products */
.cu-shop,
.products {
  padding: 4.25rem 0 5.25rem;
  background: var(--bg-soft);
}

.cu-products,
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.75rem 1.2rem;
  padding: 0 var(--space);
}

.product-card { background: transparent; }

.product-media {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
}

.product-image {
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.product-card:hover .product-image img { transform: scale(1.04); }

.product-quick-add {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  width: auto;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
  box-shadow: var(--shadow-md);
}
.product-card:hover .product-quick-add,
.product-card:focus-within .product-quick-add {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.product-overlay { display: none; }

.product-info { padding: 0.9rem 0.1rem 0; }
.product-info-top { display: grid; gap: 0.3rem; }

.product-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.product-name a {
  transition: opacity 0.2s;
}
.product-name a:hover { opacity: 0.65; }

.product-price {
  margin: 0;
  color: var(--muted);
  font-weight: 550;
  font-size: 0.92rem;
}
.old-price {
  text-decoration: line-through;
  margin-left: 0.4rem;
  opacity: 0.7;
}

.product-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 180px;
  background:
    linear-gradient(145deg, #eceff3, #d9dee5),
    repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(0,0,0,0.02) 10px, rgba(0,0,0,0.02) 11px);
}
.product-image-placeholder-lg { min-height: 420px; }

/* Story */
.cu-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: 5.5rem var(--space);
  align-items: center;
}
.cu-story-copy .cu-kicker { color: var(--muted); }
.cu-story-copy p {
  color: var(--muted);
  max-width: 40ch;
  margin: 1rem 0 1.85rem;
  font-size: 1.05rem;
  line-height: 1.65;
}
.cu-story-visual {
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4 / 5;
  background: var(--bg-soft);
}
.cu-story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.cu-story:hover .cu-story-visual img { transform: scale(1.03); }

/* Inner pages */
.container {
  width: min(1120px, calc(100% - 2 * var(--space)));
  margin: 0 auto;
}

.page-header {
  padding: 1.25rem 0 1.6rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2.1rem;
}

body:not(.is-home) .page-header {
  padding-top: calc(100svh * 95 / 625 + 0.75rem);
}

@media (max-width: 720px) {
  body:not(.is-home) .page-header {
    padding-top: calc(100svh * 70 / 625 + 0.5rem);
  }
}

.breadcrumbs {
  color: var(--muted);
  font-size: 0.85rem;
}
.breadcrumbs a:hover { color: var(--ink); }

.categories,
.catalog-section,
.product-details,
.cart-section,
.about-section,
.contact-section,
.faq-section,
.delivery-section,
.features {
  padding-bottom: 4.5rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.category-card {
  background: var(--bg-soft);
  overflow: hidden;
  border-radius: 4px;
  transition: transform 0.3s var(--ease);
}
.category-card:hover { transform: translateY(-2px); }
.category-image { aspect-ratio: 4/5; overflow: hidden; }
.category-image img { width: 100%; height: 100%; object-fit: cover; }
.category-card h3 {
  margin: 0;
  padding: 0.95rem 1rem 1.15rem;
  font-family: var(--font-display);
  font-weight: 500;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 2rem;
}

.filters-sidebar {
  border: 1px solid var(--line);
  background: #fff;
  padding: 1.25rem;
  border-radius: var(--radius);
  height: fit-content;
  position: sticky;
  top: calc(var(--header) + 1rem);
  box-shadow: var(--shadow-sm);
}
.filters-sidebar h3,
.filters-sidebar h4 {
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0 0 0.75rem;
}

.filter-group {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.filter-checkbox {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: 0.5rem;
  color: var(--muted);
  cursor: pointer;
}
.filter-checkbox:hover { color: var(--ink); }

.price-buttons { display: grid; gap: 0.4rem; }
.price-btn {
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.6rem 0.7rem;
  text-align: left;
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 0.78rem;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.price-btn:hover,
.price-btn.active {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--bg-soft);
}

.color-options { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.color-option,
.color-option-large {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-block;
  cursor: pointer;
  transition: transform 0.15s;
}
.color-option:hover,
.color-option-large:hover { transform: scale(1.08); }
.color-option-large { width: 1.75rem; height: 1.75rem; }
.color-option[data-active="true"],
.color-option.active,
.color-option-large.active {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.15rem;
  color: var(--muted);
}

select,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: 0.8rem 0.9rem;
  border-radius: var(--radius-sm);
  font: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
select:hover,
input:hover,
textarea:hover { border-color: #c9ced6; }
select:focus-visible,
input:focus-visible,
textarea:focus-visible {
  border-color: var(--ink);
  box-shadow: var(--focus);
}
textarea { min-height: 140px; resize: vertical; }

.product-detail-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.75rem;
}

.main-image {
  background: var(--bg-soft);
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
}
.main-image img { width: 100%; height: 100%; object-fit: cover; }

.thumbnail-images { display: flex; gap: 0.55rem; margin-top: 0.75rem; flex-wrap: wrap; }
.thumbnail {
  width: 72px;
  height: 90px;
  object-fit: cover;
  opacity: 0.55;
  border: 1px solid transparent;
  cursor: pointer;
  border-radius: 4px;
  transition: opacity 0.2s, border-color 0.2s;
}
.thumbnail.active,
.thumbnail:hover {
  opacity: 1;
  border-color: var(--ink);
}

.product-info-detail h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 0.8rem;
}

.product-rating {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  margin-bottom: 1rem;
  color: #ca8a04;
}
.rating-text { color: var(--muted); font-size: 0.85rem; }
.product-price-large {
  display: flex;
  gap: 0.7rem;
  align-items: baseline;
  margin-bottom: 1.15rem;
}
.current-price { font-size: 1.5rem; font-weight: 700; }
.discount { color: var(--danger); font-size: 0.85rem; font-weight: 650; }
.product-description { color: var(--muted); margin-bottom: 1.45rem; line-height: 1.65; }
.product-options { margin-bottom: 1.15rem; }
.product-options h3 {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.size-selector { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.size-option {
  min-width: 2.55rem;
  height: 2.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, background 0.2s;
}
.size-option.active,
.size-option:hover {
  border-color: var(--ink);
  background: var(--bg-soft);
}

.quantity-selector {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  margin-bottom: 1.15rem;
}
.qty-btn {
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.qty-btn:hover { background: var(--bg-soft); }
.qty-input { width: 3.3rem; text-align: center; }

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 2rem;
}
.cart-item {
  display: grid;
  grid-template-columns: 96px 1fr auto auto;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}
.cart-item-image {
  width: 96px;
  height: 120px;
  overflow: hidden;
  background: var(--bg-soft);
  border-radius: 4px;
}
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info h3 {
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
  font-weight: 500;
}
.cart-item-details,
.cart-item-price {
  margin: 0.2rem 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.cart-summary {
  border: 1px solid var(--line);
  background: #fff;
  padding: 1.4rem;
  border-radius: var(--radius);
  height: fit-content;
  position: sticky;
  top: calc(var(--header) + 1rem);
  box-shadow: var(--shadow-sm);
}
.cart-summary h3 {
  font-family: var(--font-display);
  margin: 0 0 1rem;
  font-weight: 600;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.55rem;
  color: var(--muted);
}
.summary-row.total {
  color: var(--ink);
  font-size: 1.1rem;
  border-top: 1px solid var(--line);
  padding-top: 0.85rem;
  margin-top: 0.85rem;
  font-weight: 700;
}
.empty-cart {
  text-align: center;
  padding: 3.5rem 1rem;
  color: var(--muted);
}

.about-text,
.faq-item,
.delivery-block,
.feature-card {
  border: 1px solid var(--line);
  background: #fff;
  padding: 1.35rem;
  border-radius: var(--radius);
}
.about-intro h2,
.contact-info h2,
.faq-item h3,
.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.about-image img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 4px;
}

/* Contact — eshop layout, curated tokens */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.contact-info > p {
  color: var(--muted);
  margin: 0 0 1.25rem;
  line-height: 1.65;
  max-width: 42ch;
}
.contact-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.1rem;
  margin-bottom: 0.75rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.contact-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--bg-muted);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--ink);
}
.contact-details h3 {
  margin: 0 0 0.25rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.contact-details p {
  margin: 0;
}
.contact-details a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact-hours {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.social-links-large {
  margin-top: 1.5rem;
}
.social-links-large h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}
.cu-social a {
  background: var(--ink);
  color: #f3efe7;
  border-color: var(--ink);
}
.cu-social a:hover {
  background: #3a3c3b;
  color: #f3efe7;
  border-color: #3a3c3b;
}
.contact-form-container {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
}
.contact-form-container h2 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0 0 1.15rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.map-section { margin-top: 2.5rem; }
.map-section h2 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0 0 1rem;
}
.map-placeholder {
  text-align: center;
  padding: 3rem 1.5rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
}
.map-placeholder i {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}
.map-address { margin-top: 0.5rem; color: var(--ink); }
.yandex-map-container {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.contact-form .btn-large { width: 100%; }

/* Product page — national layout, curated tokens */
.cu-product-page {
  padding-bottom: 4.5rem;
}
.product-crumbs {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.85rem;
  padding: calc(100svh * 95 / 625 + 0.5rem) 0 0;
  flex-wrap: wrap;
}
.product-crumbs a {
  color: var(--muted);
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.product-crumbs a:hover {
  color: var(--ink);
  border-bottom-color: var(--line);
}
.product-layout {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 22rem);
  gap: 1.25rem;
  margin-top: 1rem;
}
.product-main { min-width: 0; }
.product-gallery {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.75rem;
}
.product-media-large {
  height: min(62vh, 28rem);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--bg-soft);
  overflow: hidden;
  position: relative;
}
.product-media-large .product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-bg-fallback {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, var(--bg-muted), var(--bg-soft));
}
.product-thumbs {
  display: flex;
  gap: 0.55rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}
.thumb {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
}
.thumb.is-active {
  border-color: var(--ink);
  box-shadow: 0 0 0 2px rgba(42, 44, 43, 0.12);
}
.thumb .product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-info {
  margin-top: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  padding: 1.15rem 1.2rem;
}
.product-page-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}
.product-page-sub {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.65rem;
}
.product-page-sold {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}
.cu-product-page .product-rating {
  margin-bottom: 0;
  color: var(--accent-deep);
}
.stars {
  position: relative;
  width: 6.5rem;
  height: 1.1rem;
}
.stars::before {
  content: "★★★★★";
  position: absolute;
  inset: 0;
  color: rgba(42, 44, 43, 0.16);
  letter-spacing: 0.12em;
  font-size: 1rem;
}
.stars-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: var(--fill, 100%);
  overflow: hidden;
}
.stars-fill::before {
  content: "★★★★★";
  position: absolute;
  inset: 0;
  color: var(--accent-deep);
  letter-spacing: 0.12em;
  font-size: 1rem;
}
.product-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.9rem;
}
.badge {
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
}
.badge-accent {
  background: rgba(197, 180, 159, 0.28);
  color: var(--ink);
  border-color: rgba(197, 180, 159, 0.55);
}
.product-tabs {
  margin-top: 1rem;
  display: grid;
  gap: 0.55rem;
}
.tab {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 0.75rem 0.85rem;
}
.tab-summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 0.88rem;
  list-style: none;
}
.tab-summary::-webkit-details-marker { display: none; }
.tab-body {
  margin-top: 0.55rem;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.92rem;
}
.product-buy {
  position: sticky;
  top: 1.25rem;
  align-self: start;
  z-index: 2;
}
.buy-card,
.buy-service {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  padding: 1.15rem;
}
.buy-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.45rem;
  font-weight: 700;
}
.buy-price .price {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
}
.buy-price .currency {
  color: var(--muted);
  font-size: 0.9rem;
}
.buy-price .old-price {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 0.9rem;
  font-weight: 500;
}
.buy-row { margin-top: 1rem; }
.buy-label {
  font-weight: 700;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}
.qty {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.cu-product-page .qty-btn {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: var(--radius-sm);
}
.cu-product-page .qty-input {
  width: 3.75rem;
  text-align: center;
  padding: 0.55rem;
}
.buy-stock {
  margin: 0.45rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}
.btn-full { width: 100%; }
.buy-card .btn-full { margin-top: 1rem; }
.buy-note {
  margin-top: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.85rem;
}
.buy-service { margin-top: 0.85rem; }
.service-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.service-item + .service-item { margin-top: 0.9rem; }
.service-icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  font-weight: 700;
  color: var(--accent-deep);
  flex-shrink: 0;
}
.service-title { font-weight: 700; }
.service-sub {
  margin-top: 0.2rem;
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.82rem;
}
.product-related { margin-top: 2.5rem; }
.related-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.related-head .section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
}
.related-head .section-sub {
  color: var(--muted);
  font-size: 0.9rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding: 0 var(--space) 4rem;
}
.feature-card p { margin: 0; color: var(--muted); }

/* Footer */
.cu-footer {
  border-top: 1px solid var(--line);
  padding: 3.75rem var(--space) 2rem;
  background: var(--bg);
}
.cu-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.cu-footer-brand {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.cu-footer-desc {
  margin: 0;
  color: var(--muted);
  max-width: 34ch;
  line-height: 1.6;
}
.cu-footer h4 {
  margin: 0 0 0.85rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.cu-footer a,
.cu-footer p {
  display: block;
  margin: 0 0 0.5rem;
  color: var(--ink);
  font-size: 0.95rem;
}
.cu-footer a {
  width: fit-content;
  transition: opacity 0.2s;
}
.cu-footer a:hover { opacity: 0.55; }

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.9rem;
}
.social-links a {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--muted);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.social-links a:hover {
  color: var(--ink);
  border-color: var(--ink);
  background: var(--bg-soft);
}

.cu-footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.06em;
}

/* Notifications */
.notification-container {
  position: fixed;
  top: calc(var(--header) + 0.75rem);
  right: 1rem;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  max-width: 340px;
}
.notification {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent-deep);
  box-shadow: var(--shadow-md);
  padding: 0.95rem 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  border-radius: var(--radius-sm);
  animation: slideIn 0.35s var(--ease);
}
.notification.error { border-left-color: var(--danger); }
.notification.success { border-left-color: var(--success); }
.notification-title { font-weight: 700; margin-bottom: 0.15rem; }
.notification-message { color: var(--muted); font-size: 0.9rem; }
.notification-close {
  margin-left: auto;
  border: 0;
  background: none;
  font-size: 1.2rem;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  border-radius: 4px;
}
.notification.hiding { animation: slideOut 0.28s ease forwards; }

@keyframes slideIn {
  from { transform: translateX(110%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes slideOut {
  to { transform: translateX(110%); opacity: 0; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
}

/* Responsive */
@media (max-width: 980px) {
  .cu-burger { display: flex; }
  .cu-bag-text { display: none; }

  .cu-nav {
    position: fixed;
    inset: var(--header) 0 0;
    background: rgba(255,255,255,0.98);
    color: var(--ink);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .cu-nav.active {
    opacity: 1;
    pointer-events: auto;
  }
  .cu-nav a {
    font-size: 1.35rem;
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--ink);
    opacity: 1;
  }

  .cu-looks-grid { grid-template-columns: 1fr 1fr; }
  .cu-look:first-child { grid-row: auto; min-height: 320px; }

  .product-quick-add {
    opacity: 1;
    transform: none;
    pointer-events: auto;
    position: static;
    margin-top: 0.65rem;
    width: 100%;
    box-shadow: none;
  }
  .product-media { overflow: visible; }

  .cu-story,
  .catalog-layout,
  .product-detail-layout,
  .product-layout,
  .cart-layout,
  .contact-layout,
  .cu-footer-grid { grid-template-columns: 1fr; }

  .product-buy {
    position: relative;
    top: auto;
  }
  .product-media-large { height: 22rem; }
  .product-crumbs {
    padding-top: calc(100svh * 70 / 625 + 0.35rem);
  }

  .filters-sidebar,
  .cart-summary { position: static; }

  .cart-item { grid-template-columns: 72px 1fr; }
  .cart-item-quantity,
  .cart-item-total { grid-column: 2; }
}

@media (max-width: 640px) {
  .cu-looks-grid { grid-template-columns: 1fr; }
  .cu-section-head { flex-direction: column; align-items: flex-start; }
  .cu-footer-bottom { flex-direction: column; gap: 0.5rem; }
  .cu-brand { font-size: clamp(3rem, 16vw, 4.5rem); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .cu-hero-media { transform: none; }
  .cu-marquee-track { animation: none; }
}
