/*
  NOIR Atelier Landing Page
  Color de acento configurable:
  cambia --accent y --accent-rgb para dorado, verde esmeralda, azul eléctrico, rojo profundo, etc.
*/
:root {
  --bg: #ffffff;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-solid: #ffffff;
  --text: #0b0b0b;
  --muted: #6d6d6d;
  --line: rgba(11, 11, 11, 0.12);
  --line-strong: rgba(11, 11, 11, 0.2);
  --accent: #d8b86a;
  --accent-rgb: 216, 184, 106;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 40px));
  --ease: cubic-bezier(.22, 1, .36, 1);
}

html[data-theme="dark"] {
  --bg: #0b0b0b;
  --surface: rgba(17, 17, 17, 0.68);
  --surface-solid: #101010;
  --text: #ffffff;
  --muted: #a4a4a4;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  transition: background 700ms var(--ease), color 700ms var(--ease);
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

button,
a,
input {
  font: inherit;
}

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

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

button {
  border: 0;
  cursor: pointer;
}

::selection {
  background: rgba(var(--accent-rgb), 0.32);
  color: var(--text);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 16px;
  left: 16px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  transform: translateY(-140%);
  transition: transform 250ms ease;
}

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

.site-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.055;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.35), transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.22), transparent 1px);
  background-size: 4px 4px, 6px 6px;
  mix-blend-mode: difference;
}

.ambient {
  position: fixed;
  z-index: -2;
  width: 44vw;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.20), transparent 65%);
  filter: blur(20px);
  opacity: 0.7;
  animation: floatBlob 18s var(--ease) infinite alternate;
  pointer-events: none;
}

.ambient--one {
  top: -16vw;
  right: -14vw;
}

.ambient--two {
  bottom: 10vh;
  left: -24vw;
  animation-delay: -8s;
  opacity: 0.38;
}

@keyframes floatBlob {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(8vw, 6vh, 0) scale(1.18); }
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background: #0b0b0b;
  color: #ffffff;
  transition: opacity 700ms var(--ease), visibility 700ms var(--ease);
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader__mark {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-family: Outfit, sans-serif;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.06em;
  box-shadow: 0 0 60px rgba(var(--accent-rgb), 0.26);
}

.loader__bar {
  position: absolute;
  bottom: 11vh;
  width: min(260px, 70vw);
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.loader__bar span {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--accent);
  transform-origin: left;
  animation: loadingBar 1.3s var(--ease) infinite;
}

@keyframes loadingBar {
  0% { transform: translateX(-100%) scaleX(.45); }
  50% { transform: translateX(20%) scaleX(.85); }
  100% { transform: translateX(115%) scaleX(.32); }
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.cursor-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.cursor-ring {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(var(--accent-rgb), 0.55);
  border-radius: 50%;
  transition: width 250ms var(--ease), height 250ms var(--ease), border-color 250ms var(--ease), background 250ms var(--ease);
  backdrop-filter: blur(2px);
}

.cursor-ring.is-active {
  width: 68px;
  height: 68px;
  background: rgba(var(--accent-rgb), 0.08);
  border-color: rgba(var(--accent-rgb), 0.18);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: 18px 0;
  transition: padding 420ms var(--ease), background 420ms var(--ease), border 420ms var(--ease), backdrop-filter 420ms var(--ease);
}

.navbar.is-scrolled {
  padding: 10px 0;
  background: rgba(11, 11, 11, 0.42);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

html[data-theme="light"] .navbar.is-scrolled {
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(11, 11, 11, 0.1);
}

.nav-shell {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Outfit, sans-serif;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.brand__mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.12);
  color: var(--accent);
  box-shadow: inset 0 0 18px rgba(var(--accent-rgb), 0.08);
}

.brand__text {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 8px;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
}

html[data-theme="light"] .nav-links {
  border-color: rgba(11, 11, 11, 0.1);
  background: rgba(255, 255, 255, 0.72);
}

.nav-link {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

html[data-theme="light"] .nav-link {
  color: rgba(11, 11, 11, 0.82);
}

.nav-link:hover,
.nav-link:focus-visible {
  background: rgba(var(--accent-rgb), 0.13);
  color: var(--accent);
  transform: translateY(-1px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cta,
.theme-toggle,
.menu-toggle {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  backdrop-filter: blur(14px);
}

.nav-cta {
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  transition: transform 220ms var(--ease), border-color 220ms ease, background 220ms ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--accent-rgb), 0.55);
  background: rgba(var(--accent-rgb), 0.12);
}

.theme-toggle {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  overflow: hidden;
}

.theme-toggle__sun,
.theme-toggle__moon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transition: transform 380ms var(--ease), opacity 380ms var(--ease);
}

.theme-toggle__sun::before,
.theme-toggle__moon::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.theme-toggle__sun::before {
  background: var(--accent);
  box-shadow: 0 0 22px rgba(var(--accent-rgb), .55);
}

.theme-toggle__moon::before {
  border: 2px solid var(--text);
  box-shadow: -6px 0 0 var(--surface-solid);
}

html[data-theme="dark"] .theme-toggle__sun {
  transform: translateY(110%);
  opacity: 0;
}

html[data-theme="light"] .theme-toggle__moon {
  transform: translateY(-110%);
  opacity: 0;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 300ms var(--ease), opacity 300ms var(--ease);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

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

.mobile-menu {
  position: fixed;
  top: 82px;
  left: 20px;
  right: 20px;
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  backdrop-filter: blur(24px);
  transform: translateY(-18px) scale(.98);
  opacity: 0;
  pointer-events: none;
  transition: transform 360ms var(--ease), opacity 360ms var(--ease);
}

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

.mobile-menu a {
  padding: 16px;
  border-radius: 18px;
  font-weight: 800;
  background: rgba(var(--accent-rgb), 0.08);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero__media,
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-fit: cover;
  transform: scale(1.08);
  filter: saturate(0.86) contrast(1.05);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(255,255,255,0.04), transparent 34%),
    linear-gradient(90deg, rgba(0,0,0,0.86), rgba(0,0,0,0.32) 52%, rgba(0,0,0,0.76)),
    linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.86));
  z-index: 1;
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.18;
  background-image: linear-gradient(115deg, transparent 0 48%, rgba(255,255,255,.08) 50%, transparent 52% 100%);
  background-size: 220px 220px;
  animation: grainMove 10s linear infinite;
}

@keyframes grainMove {
  to { background-position: 220px 440px; }
}

.hero__content {
  position: relative;
  z-index: 3;
  width: var(--container);
  padding-top: 80px;
  color: #ffffff;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: .7;
}

.hero__title {
  margin: 0;
  max-width: 1120px;
  font-family: Outfit, sans-serif;
  font-size: clamp(4.8rem, 15vw, 14.5rem);
  line-height: .78;
  letter-spacing: -.095em;
  text-transform: uppercase;
}

.split-title .char {
  display: inline-block;
  transform-origin: 50% 100%;
  will-change: transform, opacity, filter;
}

.hero__subtitle {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  overflow: hidden;
  border-radius: 999px;
  font-weight: 900;
  isolation: isolate;
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms ease, background 260ms ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: auto auto 0 50%;
  width: 120%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, .28);
  transform: translate(-50%, 100%) scale(.2);
  transition: transform 450ms var(--ease);
  z-index: -1;
}

.btn:hover::after {
  transform: translate(-50%, 40%) scale(1);
}

.btn--primary {
  background: var(--accent);
  color: #0b0b0b;
  box-shadow: 0 18px 54px rgba(var(--accent-rgb), .26);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 80px rgba(var(--accent-rgb), .36);
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .06);
  color: #ffffff;
  backdrop-filter: blur(16px);
}

.btn--huge {
  min-height: 68px;
  padding: 0 34px;
  font-size: 1.02rem;
}

.ripple-wave {
  position: absolute;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  background: rgba(255, 255, 255, 0.36);
  animation: ripple 650ms ease-out;
}

@keyframes ripple {
  to { transform: translate(-50%, -50%) scale(3.2); opacity: 0; }
}

.hero__floating {
  position: absolute;
  z-index: 3;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .68);
  backdrop-filter: blur(18px);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero__floating--left {
  left: 6vw;
  bottom: 23vh;
}

.hero__floating--right {
  right: 5vw;
  top: 32vh;
}

.scroll-indicator {
  position: absolute;
  z-index: 3;
  right: 5vw;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-indicator span {
  width: 1px;
  height: 58px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  animation: scrollPulse 1.7s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(.45); opacity: .35; }
  50% { transform: scaleY(1); opacity: 1; }
}

.section {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  padding: clamp(82px, 12vw, 150px) 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 44px;
}

.section-head--stack {
  align-items: flex-start;
}

.section-head--center {
  justify-content: center;
  text-align: center;
}

.section-title {
  margin: 0;
  max-width: 920px;
  font-family: Outfit, sans-serif;
  font-size: clamp(2.45rem, 6vw, 6rem);
  line-height: .93;
  letter-spacing: -.065em;
}

.section-description {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.manifesto__grid {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: clamp(30px, 7vw, 90px);
  align-items: start;
}

.manifesto__copy {
  display: grid;
  gap: 22px;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.85;
}

.manifesto__copy p {
  margin: 0;
  padding-left: 24px;
  border-left: 1px solid var(--line-strong);
}

.stats {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-card {
  position: relative;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.stat-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 120px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), .14);
  filter: blur(6px);
}

.stat-number {
  display: block;
  font-family: Outfit, sans-serif;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -.06em;
}

.stat-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.swiper-controls {
  display: flex;
  gap: 10px;
}

.swiper-controls button {
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
  font-size: 20px;
  transition: transform 220ms var(--ease), background 220ms ease, border-color 220ms ease;
}

.swiper-controls button:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--accent-rgb), .45);
  background: rgba(var(--accent-rgb), .13);
}

.featured-swiper {
  overflow: visible;
}

.featured-card {
  position: relative;
  min-height: 560px;
  display: grid;
  align-content: end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #111;
  box-shadow: var(--shadow);
}

.featured-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease), filter 900ms var(--ease);
}

.featured-card:hover img {
  transform: scale(1.07);
  filter: saturate(1.08) contrast(1.08);
}

.featured-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 22%, rgba(0,0,0,.25) 55%, rgba(0,0,0,.88));
}

.featured-card__content {
  position: relative;
  z-index: 2;
  padding: 28px;
  color: #fff;
}

.featured-card__content h3 {
  margin: 0 0 8px;
  font-family: Outfit, sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -.045em;
}

.featured-card__content p {
  margin: 0 0 20px;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}

.catalog-tools {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

.search-box {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  backdrop-filter: blur(18px);
}

.search-box span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.search-box input {
  width: 100%;
  min-height: 48px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 1rem;
}

.search-box input::placeholder {
  color: var(--muted);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 850;
  transition: transform 220ms var(--ease), color 220ms ease, background 220ms ease, border-color 220ms ease;
}

.filter-btn:hover,
.filter-btn.is-active {
  transform: translateY(-2px);
  color: var(--text);
  border-color: rgba(var(--accent-rgb), .45);
  background: rgba(var(--accent-rgb), .12);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 52px rgba(0,0,0,.08);
  transform-style: preserve-3d;
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease), border-color 280ms ease;
  will-change: transform;
}

.product-card:hover {
  border-color: rgba(var(--accent-rgb), .45);
  box-shadow: 0 32px 90px rgba(0,0,0,.16), 0 0 44px rgba(var(--accent-rgb), .11);
}

.product-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 1px) calc(var(--radius-lg) - 1px) 0 0;
  background: rgba(var(--accent-rgb), .08);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 850ms var(--ease), filter 850ms var(--ease);
}

.product-card:hover .product-card__media img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.06);
}

.product-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(11, 11, 11, .68);
  color: #fff;
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.product-card__body {
  padding: 22px;
}

.product-card__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.product-card h3 {
  margin: 0;
  font-family: Outfit, sans-serif;
  font-size: 1.46rem;
  line-height: 1.05;
  letter-spacing: -.045em;
}

.product-card__price {
  color: var(--accent);
  font-weight: 950;
  white-space: nowrap;
}

.product-card__desc {
  margin: 12px 0 18px;
  color: var(--muted);
  line-height: 1.7;
  font-size: .95rem;
}

.product-meta {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.product-meta__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.size-list,
.color-list {
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.size-pill {
  min-width: 28px;
  padding: 5px 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  text-align: center;
  font-size: 11px;
  letter-spacing: 0;
}

.color-dot {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(0,0,0,.08);
}

.product-card .btn {
  width: 100%;
}

.empty-state {
  margin: 38px 0 0;
  padding: 28px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-md);
  color: var(--muted);
  text-align: center;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #111;
  color: #fff;
  text-align: left;
  isolation: isolate;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease), filter 800ms var(--ease);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 18%, rgba(0,0,0,.18) 50%, rgba(0,0,0,.84));
  opacity: .8;
  transition: opacity 350ms ease;
}

.gallery-item span {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 2px;
  transform: translateY(14px);
  opacity: 0;
  transition: transform 360ms var(--ease), opacity 360ms var(--ease);
}

.gallery-item strong {
  font-family: Outfit, sans-serif;
  font-size: 1.35rem;
  letter-spacing: -.035em;
}

.gallery-item small {
  color: var(--accent);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.08);
  filter: blur(2px) brightness(.78) saturate(1.08);
}

.gallery-item:hover span,
.gallery-item:focus-visible span {
  transform: translateY(0);
  opacity: 1;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.testimonial-card img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line-strong);
}

.stars {
  color: var(--accent);
  letter-spacing: .12em;
}

.testimonial-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.accordion {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

.accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: transparent;
  color: var(--text);
  text-align: left;
  font-weight: 900;
}

.accordion-trigger span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), .12);
  color: var(--accent);
  font-size: 20px;
  transition: transform 260ms var(--ease);
}

.accordion-trigger[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 360ms var(--ease);
}

.accordion-panel p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 24px;
  color: var(--muted);
  line-height: 1.75;
}

.accordion-item.is-open .accordion-panel {
  grid-template-rows: 1fr;
}

.accordion-item.is-open .accordion-panel p {
  padding-bottom: 24px;
}

.cta-section {
  width: var(--container);
  margin: clamp(70px, 10vw, 120px) auto;
  border-radius: clamp(30px, 5vw, 58px);
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(var(--accent-rgb), .42), transparent 34%),
    linear-gradient(135deg, #111, #050505 62%, rgba(var(--accent-rgb), .28));
  color: #fff;
  box-shadow: 0 36px 120px rgba(var(--accent-rgb), .12), var(--shadow);
}

.cta-section__inner {
  min-height: 460px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 22px;
  padding: clamp(42px, 8vw, 90px);
  text-align: center;
}

.cta-section h2 {
  max-width: 940px;
  margin: 0;
  font-family: Outfit, sans-serif;
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: .85;
  letter-spacing: -.08em;
}

.cta-section p:not(.section-kicker) {
  max-width: 620px;
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
}

.footer {
  padding: 70px 0 34px;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.02);
}

.footer__grid,
.footer__bottom {
  width: var(--container);
  margin: 0 auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.25fr .6fr .9fr 1fr;
  gap: 32px;
}

.footer p {
  color: var(--muted);
  line-height: 1.7;
}

.footer h3 {
  margin: 0 0 14px;
  font-family: Outfit, sans-serif;
  letter-spacing: -.035em;
}

.footer a:not(.brand) {
  display: block;
  margin: 10px 0;
  color: var(--muted);
  transition: color 220ms ease, transform 220ms ease;
}

.footer a:hover {
  color: var(--accent);
  transform: translateX(3px);
}

.footer-map {
  min-height: 180px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(90deg, transparent 49%, var(--line) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, var(--line) 50%, transparent 51%),
    rgba(var(--accent-rgb), .06);
  background-size: 38px 38px;
  color: var(--muted);
  font-weight: 900;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 50px;
  height: 50px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(18px) scale(.92);
  pointer-events: none;
  transition: opacity 260ms ease, transform 260ms var(--ease);
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9997;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(18px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(960px, 92vw);
  max-height: 78vh;
  border-radius: 28px;
  object-fit: contain;
  box-shadow: 0 40px 120px rgba(0,0,0,.5);
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 32px;
  backdrop-filter: blur(16px);
}

.lightbox__caption {
  display: grid;
  gap: 4px;
  margin-top: 18px;
  color: #fff;
  text-align: center;
}

.lightbox__caption strong {
  font-family: Outfit, sans-serif;
  font-size: 1.5rem;
}

.lightbox__caption span {
  color: var(--accent);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.reveal-blur,
.reveal-up {
  will-change: transform, opacity, filter;
}

@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a,
  button,
  input { cursor: none; }
}

@media (max-width: 1100px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .masonry-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  :root { --container: min(100% - 28px, 1180px); }
  .nav-links,
  .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .hero__content { padding-top: 120px; }
  .hero__title { font-size: clamp(4rem, 22vw, 7rem); }
  .hero__floating { display: none; }
  .section-head,
  .manifesto__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .section-head { align-items: start; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 190px;
  }
  .gallery-item.wide { grid-column: span 2; }
}

@media (max-width: 640px) {
  .navbar { padding: 12px 0; }
  .brand__text { display: none; }
  .hero { min-height: 100svh; }
  .hero__subtitle { font-size: .98rem; }
  .hero__actions { align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .scroll-indicator { display: none; }
  .section { padding: 78px 0; }
  .stats,
  .catalog-grid,
  .footer__grid,
  .footer__bottom { grid-template-columns: 1fr; }
  .footer__bottom { display: grid; }
  .product-card__top { display: grid; }
  .product-card__price { white-space: normal; }
  .search-box { grid-template-columns: 1fr; border-radius: 24px; }
  .filters { gap: 8px; }
  .filter-btn { padding: 10px 12px; font-size: 13px; }
  .masonry-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }
  .gallery-item.tall,
  .gallery-item.wide { grid-column: auto; grid-row: auto; }
  .featured-card { min-height: 520px; }
  .cta-section__inner { min-height: 410px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .cursor-dot,
  .cursor-ring { display: none; }
}
