/* ===================================================
   DRIP HOUSE — Complete Stylesheet
   Maximalist Luxury × Gen-Z Brainrot
   =================================================== */

/* ---- CSS VARIABLES ---- */
:root {
  --black: #080808;
  --black-2: #0f0f0f;
  --black-3: #161616;
  --black-4: #1e1e1e;
  --bone: #f0ebe3;
  --bone-dim: #c8c2b8;
  --gold: #d4a017;
  --gold-light: #f0c040;
  --gold-dim: #8a6500;
  --crimson: #c41230;
  --crimson-light: #ff1f46;
  --white: #ffffff;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --nav-h: 72px;
  --section-pad: clamp(60px, 8vw, 120px);
  --trans-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --trans-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--black);
  color: var(--bone);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

body.loading {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover { color: var(--gold); }

ul { list-style: none; }

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

button {
  cursor: none;
  border: none;
  background: none;
  font-family: var(--font-body);
}

input, textarea, select {
  font-family: var(--font-body);
}

/* ---- CUSTOM CURSOR ---- */
#customCursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}

.cursor-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.15s ease, height 0.15s ease;
}

.cursor-ring {
  position: absolute;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--trans-smooth),
              height 0.3s var(--trans-smooth),
              opacity 0.3s ease;
}

body.cursor-hover .cursor-dot {
  width: 12px;
  height: 12px;
}

body.cursor-hover .cursor-ring {
  width: 56px;
  height: 56px;
  opacity: 0.5;
}

/* ---- PRELOADER ---- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 80px);
  color: var(--bone);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  animation: preloaderPulse 1.5s ease infinite;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.preloader-bar-wrap {
  width: 240px;
  height: 2px;
  background: var(--black-4);
  border-radius: 2px;
  margin: 0 auto 12px;
  overflow: hidden;
}

.preloader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--crimson));
  border-radius: 2px;
  transition: width 0.1s linear;
}

.preloader-percent {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--bone-dim);
  letter-spacing: 0.15em;
}

/* ---- CONTAINERS ---- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container { padding: 0 40px; }
}

/* ---- NAVIGATION ---- */
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  z-index: 1000;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

#mainNav.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(212, 160, 23, 0.2);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.05em;
  color: var(--bone);
  cursor: none;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-dim);
  cursor: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--trans-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: var(--bone);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

.nav-icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bone-dim);
  cursor: none;
  border-radius: 50%;
  position: relative;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-icon-btn:hover {
  color: var(--bone);
  background: var(--black-4);
}

.nav-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 16px;
  height: 16px;
  background: var(--crimson);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--bone);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---- PAGES / SPA ---- */
.page {
  display: none;
  min-height: 100vh;
}

.page.active {
  display: block;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, background 0.3s ease, transform 0.2s ease;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.05);
  transform: translateX(-100%);
  transition: transform 0.4s var(--trans-smooth);
}

.btn:hover::before {
  transform: translateX(0);
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 160, 23, 0.3);
}

.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--bone);
  border: 1px solid rgba(240, 235, 227, 0.3);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 11px;
}

.btn-full {
  width: 100%;
}

/* ---- GLITCH TEXT ---- */
.glitch-text {
  position: relative;
  display: inline-block;
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.glitch-text:hover::before {
  animation: glitch1 0.3s var(--trans-smooth) forwards;
  color: var(--crimson);
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
  opacity: 1;
}

.glitch-text:hover::after {
  animation: glitch2 0.3s var(--trans-smooth) forwards;
  color: var(--gold);
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
  opacity: 1;
}

@keyframes glitch1 {
  0% { transform: translate(0,0); }
  20% { transform: translate(-4px, 2px); }
  40% { transform: translate(4px, -2px); }
  60% { transform: translate(-2px, 0); }
  80% { transform: translate(2px, 1px); }
  100% { transform: translate(0, 0); }
}

@keyframes glitch2 {
  0% { transform: translate(0,0); }
  20% { transform: translate(4px, -2px); }
  40% { transform: translate(-4px, 2px); }
  60% { transform: translate(2px, 0); }
  80% { transform: translate(-2px, -1px); }
  100% { transform: translate(0, 0); }
}

.gold-text { color: var(--gold); }

/* ---- REVEAL ANIMATIONS ---- */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--trans-smooth), transform 0.8s var(--trans-smooth);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--trans-smooth), transform 0.8s var(--trans-smooth);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--trans-smooth), transform 0.8s var(--trans-smooth);
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.reveal-up:nth-child(2),
.reveal-up:nth-child(2).visible { transition-delay: 0.1s; }
.reveal-up:nth-child(3),
.reveal-up:nth-child(3).visible { transition-delay: 0.2s; }
.reveal-up:nth-child(4),
.reveal-up:nth-child(4).visible { transition-delay: 0.3s; }
.reveal-up:nth-child(5),
.reveal-up:nth-child(5).visible { transition-delay: 0.4s; }

/* ---- SECTION BASICS ---- */
.section {
  padding: var(--section-pad) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.05;
  color: var(--bone);
  letter-spacing: 0.02em;
}

/* ===================================================
   HOME PAGE
   =================================================== */

/* ---- HERO ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center top;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8,8,8,0.7) 0%,
    rgba(8,8,8,0.4) 40%,
    rgba(8,8,8,0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(80px, 16vw, 200px);
  line-height: 0.9;
  color: var(--bone);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.hero-title .gold { color: var(--gold); }

.hero-sub {
  font-size: clamp(14px, 1.5vw, 18px);
  color: var(--bone-dim);
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll-hint span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--bone-dim);
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--bone-dim), transparent);
  animation: scrollDrop 2s ease infinite;
}

@keyframes scrollDrop {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---- MARQUEE ---- */
.marquee-section {
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid var(--black-4);
  border-bottom: 1px solid var(--black-4);
  background: var(--black-2);
}

.marquee-section--dark {
  background: var(--black-3);
}

.marquee-track {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.marquee-inner {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  will-change: transform;
}

.marquee-inner--reverse {
  animation: marqueeScrollReverse 28s linear infinite;
}

.marquee-inner span {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 28px);
  letter-spacing: 0.08em;
  color: var(--bone);
  padding: 0 24px;
}

.marquee-sep {
  color: var(--gold) !important;
  padding: 0 8px !important;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeScrollReverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ---- CATEGORIES GRID ---- */
.categories-section {
  background: var(--black);
}

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

.cat-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: none;
  aspect-ratio: 3/4;
}

.cat-card--wide {
  grid-column: span 1;
  aspect-ratio: 3/4;
}

@media (min-width: 768px) {
  .cat-card:nth-child(1) { grid-row: 1 / 3; }
  .cat-card:nth-child(2) { aspect-ratio: 4/3; }
  .cat-card:nth-child(3) { aspect-ratio: 4/3; }
  .cat-card:nth-child(4) { aspect-ratio: 4/3; }
  .cat-card:nth-child(5) { aspect-ratio: 4/3; grid-column: span 2; }
}

.cat-img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

.cat-card:hover .cat-img-wrap img {
  transform: scale(1.08);
}

.cat-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(8,8,8,0.9) 0%, transparent 100%);
  transform: translateY(8px);
  transition: transform 0.3s ease;
}

.cat-card:hover .cat-info {
  transform: translateY(0);
}

.cat-info h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  color: var(--bone);
  letter-spacing: 0.05em;
}

.cat-info span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.3s ease 0.1s;
}

.cat-card:hover .cat-info span {
  opacity: 1;
}

/* ---- STATS BANNER ---- */
.stats-banner {
  padding: 80px 0;
  background: var(--black-2);
  border-top: 1px solid var(--black-4);
  border-bottom: 1px solid var(--black-4);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.02em;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-top: 8px;
}

/* ---- EDITORIAL SECTION ---- */
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .editorial-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.editorial-text .section-title {
  text-align: left;
  margin-bottom: 24px;
}

.editorial-body {
  color: var(--bone-dim);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.editorial-img-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.editorial-img-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  transition: transform 0.7s var(--trans-smooth);
}

.editorial-img-wrap:hover img {
  transform: scale(1.04);
}

.editorial-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--black);
  background: var(--gold);
  padding: 6px 12px;
  border-radius: 2px;
}

/* ---- TESTIMONIALS ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: var(--black-2);
  border: 1px solid var(--black-4);
  border-radius: 4px;
  padding: 32px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.star { color: var(--gold); }

.testimonial-quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--bone-dim);
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold-dim);
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  color: var(--bone);
}

.testimonial-author span {
  font-size: 12px;
  color: var(--bone-dim);
}

/* ===================================================
   COLLECTIONS PAGE
   =================================================== */

.page-hero {
  position: relative;
  height: 50vh;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero-content p {
  color: var(--bone-dim);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-top: 12px;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 120px);
  color: var(--bone);
  letter-spacing: 0.04em;
  line-height: 1;
}

/* ---- FILTER TABS ---- */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--black-4);
}

.filter-tab {
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-dim);
  background: var(--black-3);
  border: 1px solid var(--black-4);
  border-radius: 2px;
  cursor: none;
  transition: all 0.25s ease;
}

.filter-tab:hover {
  color: var(--bone);
  border-color: rgba(212, 160, 23, 0.4);
}

.filter-tab.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* ---- PRODUCTS GRID ---- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (min-width: 640px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .products-grid { grid-template-columns: repeat(4, 1fr); }
}

.product-card {
  cursor: none;
}

.product-card.hidden {
  display: none;
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3/4;
  background: var(--black-3);
  margin-bottom: 14px;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--trans-smooth);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.5);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--crimson);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 2px;
}

.product-badge.new-badge {
  background: var(--gold);
  color: var(--black);
}

.product-category {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}

.product-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--bone);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-current {
  font-size: 15px;
  font-weight: 700;
  color: var(--bone);
}

.price-old {
  font-size: 12px;
  color: var(--bone-dim);
  text-decoration: line-through;
}

/* ===================================================
   AI STYLIST PAGE
   =================================================== */

.ai-page {
  position: relative;
  min-height: 100vh;
  padding-top: var(--nav-h);
  background: var(--black);
  overflow: hidden;
}

.ai-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 160, 23, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 160, 23, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: 0;
}

.ai-container {
  position: relative;
  z-index: 1;
  padding-top: 64px;
  padding-bottom: 80px;
}

.ai-header {
  text-align: center;
  margin-bottom: 56px;
}

.ai-eyebrow {
  background: rgba(196, 18, 48, 0.15);
  border: 1px solid var(--crimson);
  color: var(--crimson-light);
  padding: 4px 12px;
  border-radius: 20px;
}

.ai-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.05;
  color: var(--bone);
  margin: 16px 0 12px;
}

.ai-subtitle {
  font-size: 16px;
  color: var(--bone-dim);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- AI TERMINAL ---- */
.ai-interface {
  max-width: 760px;
  margin: 0 auto 56px;
}

.ai-terminal {
  background: rgba(15, 15, 15, 0.95);
  border: 1px solid rgba(212, 160, 23, 0.25);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(212, 160, 23, 0.08), 0 0 0 1px rgba(0,0,0,0.5);
}

.ai-terminal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--black-3);
  border-bottom: 1px solid rgba(212, 160, 23, 0.15);
}

.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.red-dot { background: #ff5f56; }
.yellow-dot { background: #ffbd2e; }
.green-dot { background: #27c93f; }

.terminal-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--bone-dim);
  margin-left: 8px;
}

.ai-terminal-body {
  padding: 24px;
}

.ai-chat-log {
  min-height: 200px;
  max-height: 320px;
  overflow-y: auto;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dim) transparent;
}

.ai-chat-log::-webkit-scrollbar { width: 4px; }
.ai-chat-log::-webkit-scrollbar-track { background: transparent; }
.ai-chat-log::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 4px; }

.ai-msg {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ai-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  font-weight: 700;
}

.ai-msg--system .ai-label { color: var(--gold); }
.ai-msg--user .ai-label { color: var(--crimson-light); }

.ai-msg p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--bone-dim);
}

.ai-msg em { color: var(--bone); font-style: italic; }

.ai-msg--user p { color: var(--bone); }

.ai-input-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--black-4);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.ai-input-row:focus-within {
  border-color: var(--gold);
}

.ai-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--bone);
  cursor: none;
}

.ai-input::placeholder {
  color: var(--bone-dim);
  opacity: 0.5;
}

.ai-send-btn {
  padding: 12px 16px;
  color: var(--gold);
  cursor: none;
  transition: background 0.2s ease, color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-send-btn:hover {
  background: var(--gold);
  color: var(--black);
}

/* ---- AI SUGGESTIONS ---- */
.ai-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.suggestion-chip {
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--bone-dim);
  background: var(--black-3);
  border: 1px solid var(--black-4);
  border-radius: 20px;
  cursor: none;
  transition: all 0.25s ease;
}

.suggestion-chip:hover {
  color: var(--gold);
  border-color: var(--gold-dim);
  background: rgba(212, 160, 23, 0.08);
}

/* ---- AI FEATURES ---- */
.ai-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 760px;
  margin: 0 auto 48px;
}

@media (min-width: 640px) {
  .ai-features-grid { grid-template-columns: repeat(3, 1fr); }
}

.ai-feature-card {
  background: var(--black-2);
  border: 1px solid var(--black-4);
  border-radius: 4px;
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.ai-feature-card:hover {
  border-color: rgba(212, 160, 23, 0.3);
  transform: translateY(-4px);
}

.ai-feature-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--gold);
}

.ai-feature-card h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 8px;
}

.ai-feature-card p {
  font-size: 13px;
  color: var(--bone-dim);
  line-height: 1.6;
}

/* ---- AI WAITLIST ---- */
.ai-waitlist {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}

.ai-waitlist > p {
  margin-bottom: 16px;
  color: var(--bone-dim);
}

.ai-waitlist-form {
  display: flex;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 4px;
}

.ai-waitlist-input {
  flex: 1;
  background: var(--black-3);
  border: none;
  outline: none;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--bone);
  cursor: none;
}

.ai-waitlist-input::placeholder { color: var(--bone-dim); opacity: 0.6; }

.ai-waitlist-form .btn {
  border-radius: 0;
  border-left: 1px solid rgba(212, 160, 23, 0.3);
}

/* ---- TYPING ANIMATION ---- */
.ai-typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 8px 0;
}

.ai-typing-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: typingBounce 1.2s ease infinite;
}

.ai-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.ai-typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-8px); }
}

/* ===================================================
   LOOKBOOK PAGE
   =================================================== */

.lookbook-masonry {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 768px) {
  .lookbook-masonry {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lb-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: none;
}

.lb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--trans-smooth);
  display: block;
}

.lb-item:not(.lb-item--tall):not(.lb-item--wide) {
  aspect-ratio: 3/4;
}

.lb-item--tall {
  aspect-ratio: 3/5;
  grid-row: span 2;
}

.lb-item--wide {
  aspect-ratio: 16/9;
  grid-column: span 2;
}

.lb-item:hover img {
  transform: scale(1.06);
}

.lb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.88) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lb-item:hover .lb-overlay {
  opacity: 1;
}

.lb-season {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.lb-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 32px);
  color: var(--bone);
  letter-spacing: 0.04em;
}

/* ===================================================
   CONTACT PAGE
   =================================================== */

.contact-page {
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: var(--section-pad);
  min-height: 100vh;
}

.contact-header {
  text-align: center;
  margin-bottom: 64px;
}

.contact-sub {
  font-size: 15px;
  color: var(--bone-dim);
  max-width: 520px;
  margin: 12px auto 0;
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1.2fr 1fr; gap: 64px; }
}

/* ---- CONTACT FORM ---- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--black-2);
  border: 1px solid var(--black-4);
  border-radius: 4px;
  padding: 13px 16px;
  font-size: 14px;
  color: var(--bone);
  outline: none;
  cursor: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--bone-dim); opacity: 0.5; }

.form-group select { appearance: none; cursor: none; }

.form-group textarea { resize: vertical; line-height: 1.6; }

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(39, 201, 63, 0.1);
  border: 1px solid rgba(39, 201, 63, 0.3);
  border-radius: 4px;
  color: #4ade80;
  font-size: 14px;
  font-weight: 500;
}

.form-success.visible { display: flex; }

/* ---- CONTACT INFO ---- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black-2);
  border: 1px solid var(--black-4);
  border-radius: 4px;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-info-block h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 4px;
}

.contact-info-block p {
  font-size: 14px;
  color: var(--bone-dim);
  line-height: 1.6;
}

.contact-info-block a {
  color: var(--bone-dim);
  transition: color 0.2s ease;
}

.contact-info-block a:hover { color: var(--gold); }

/* ---- MAP PLACEHOLDER ---- */
.map-placeholder {
  position: relative;
  height: 200px;
  border: 1px solid var(--black-4);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

.map-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 160, 23, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 160, 23, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}

.map-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.map-content svg { color: var(--gold); }

.map-content p {
  font-size: 13px;
  color: var(--bone-dim);
  line-height: 1.5;
}

/* ===================================================
   FOOTER
   =================================================== */

.site-footer {
  background: var(--black-2);
  border-top: 1px solid var(--black-4);
}

.footer-marquee {
  overflow: hidden;
  padding: 12px 0;
  border-bottom: 1px solid var(--black-4);
  background: var(--black-3);
}

.footer-main {
  padding: 64px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--bone);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.footer-logo span { color: var(--gold); }

.footer-brand p {
  font-size: 14px;
  color: var(--bone-dim);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bone-dim);
  background: var(--black-3);
  border: 1px solid var(--black-4);
  border-radius: 4px;
  transition: all 0.25s ease;
}

.social-link:hover {
  color: var(--gold);
  border-color: var(--gold-dim);
  background: rgba(212, 160, 23, 0.08);
}

.footer-links-group h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 20px;
}

.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-group li a {
  font-size: 14px;
  color: var(--bone-dim);
  transition: color 0.2s ease, padding-left 0.2s ease;
  cursor: none;
}

.footer-links-group li a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--black-4);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--bone-dim);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 12px;
  color: var(--bone-dim);
  cursor: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover { color: var(--gold); }

/* ===================================================
   RESPONSIVE — MOBILE MENU
   =================================================== */

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 0;
    top: var(--nav-h);
    background: rgba(8, 8, 8, 0.97);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.4s var(--trans-smooth);
    z-index: 999;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 16px;
    letter-spacing: 0.15em;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

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

  .cat-card:nth-child(1) { grid-row: auto; }
  .cat-card:nth-child(5) { grid-column: span 2; }
}

@media (max-width: 480px) {
  :root { --nav-h: 60px; }
  #mainNav { padding: 0 20px; }
  .categories-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .filter-tabs { gap: 6px; }
  .filter-tab { padding: 6px 12px; font-size: 10px; }
  .lookbook-masonry { grid-template-columns: 1fr; }
  .lb-item--wide, .lb-item--tall { grid-column: span 1; grid-row: span 1; aspect-ratio: 4/3; }
}

/* ===================================================
   FOCUS STYLES (ACCESSIBILITY)
   =================================================== */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ===================================================
   SCROLL LOCK UTILITY
   =================================================== */
body.nav-open { overflow: hidden; }
