/* ============================================
   KURIUM FASHION WEAR — Styles
   Palette: Noir Editorial + Gold Accents
   Fonts: Cormorant Garamond + Outfit
============================================ */

:root {
  --black:      #0A0A0A;
  --dark:       #141414;
  --dark-2:     #1E1E1E;
  --dark-3:     #2A2A2A;
  --cream:      #E8E4DF;
  --warm:       #C8B8A0;
  --gold:       #B8860B;
  --gold-light: #D4A843;
  --white:      #FAFAFA;
  --text-muted: #888;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', sans-serif;

  --nav-h: 72px;
  --ease:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { background: none; border: none; cursor: none; font-family: inherit; }

/* ── CUSTOM CURSOR ── */
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s var(--ease), background 0.2s;
}
.cursor-follower {
  width: 32px; height: 32px;
  border: 1px solid rgba(184,134,11,0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease), width 0.3s, height 0.3s, border-color 0.3s;
}
body:hover .cursor-follower { border-color: rgba(184,134,11,0.8); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 36px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.4s var(--ease);
}
.btn:hover::after { width: 100%; }

.btn--primary {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}
.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(232,228,223,0.4);
}
.btn--ghost:hover {
  border-color: var(--cream);
  background: rgba(232,228,223,0.05);
}
.btn--white {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--white);
}
.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--warm);
}
.btn--outline:hover {
  background: var(--warm);
  color: var(--black);
}

/* ── SECTION LABELS ── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  z-index: 1000;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,134,11,0.15);
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--cream);
}
.nav__logo-k { color: var(--gold); }
.nav__links {
  display: flex; gap: 40px;
}
.nav__links a {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm);
  transition: color 0.3s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { width: 100%; }
.nav__actions {
  display: flex; align-items: center; gap: 20px;
}
.nav__search, .nav__bag {
  color: var(--warm);
  transition: color 0.3s;
  display: flex; align-items: center;
  position: relative;
}
.nav__search:hover, .nav__bag:hover { color: var(--cream); }
.nav__bag-count {
  position: absolute; top: -6px; right: -8px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.6rem;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 500;
}
.nav__hamburger {
  display: none;
  flex-direction: column; gap: 6px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 1px;
  background: var(--cream);
  transition: all 0.3s;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 2000;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { text-align: center; }
.mobile-menu ul li { margin-bottom: 24px; }
.mobile-menu ul a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.mobile-menu ul a:hover { color: var(--gold); }
.mobile-menu__close {
  position: absolute; top: 28px; right: 32px;
  font-size: 1.2rem;
  color: var(--warm);
  transition: color 0.3s;
}
.mobile-menu__close:hover { color: var(--gold); }
.mobile-menu__tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh; min-height: 600px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.92) 0%,
    rgba(10,10,10,0.5) 40%,
    rgba(10,10,10,0.2) 100%
  );
}
.hero__content {
  position: relative; z-index: 2;
  padding: 0 64px 80px;
  max-width: 900px;
}
.hero__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  animation: fadeUp 1s 0.3s both;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 24px;
  display: flex; flex-direction: column;
}
.hero__title-line {
  display: block;
  animation: fadeUp 1s both;
}
.hero__title-line:nth-child(1) { animation-delay: 0.4s; }
.hero__title-line:nth-child(2) { animation-delay: 0.55s; }
.hero__title-line:nth-child(3) { animation-delay: 0.7s; }
.hero__title .italic { font-style: italic; color: var(--gold); }
.hero__sub {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: var(--warm);
  margin-bottom: 36px;
  animation: fadeUp 1s 0.85s both;
}
.hero__cta {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeUp 1s 1s both;
}
.hero__scroll {
  position: absolute; right: 48px; bottom: 80px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  z-index: 2;
}
.hero__scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--warm);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}
.hero__brand-stamp {
  position: absolute; right: -60px; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(184,134,11,0.3);
  z-index: 2;
}

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

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--gold);
  overflow: hidden;
  padding: 14px 0;
}
.marquee {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 500;
  padding-right: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── COLLECTIONS ── */
.collections {
  padding: 120px 64px;
  background: var(--dark);
}
.section-header {
  margin-bottom: 64px;
}
.collections__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.collection-card { }
.collection-card__img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.collection-card__img-wrap img {
  transition: transform 0.7s var(--ease);
}
.collection-card:hover .collection-card__img-wrap img {
  transform: scale(1.06);
}
.collection-card__hover {
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.collection-card:hover .collection-card__hover { opacity: 1; }
.collection-card__info {
  padding: 20px 0 0;
}
.collection-card__info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 4px;
}
.collection-card__info p {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}
.collection-card__count {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 8px;
}

/* ── FEATURED ── */
.featured {
  padding: 120px 64px;
  background: var(--black);
}
.featured__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.featured__img-col {
  position: relative;
}
.featured__img-frame {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.featured__img-frame img {
  transition: transform 0.8s var(--ease);
}
.featured__img-frame:hover img { transform: scale(1.04); }
.featured__img-accent {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 60%; height: 60%;
  border: 1px solid rgba(184,134,11,0.3);
  z-index: 0;
}
.featured__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin: 16px 0 24px;
}
.featured__title em { font-style: italic; color: var(--gold); }
.featured__desc {
  font-size: 0.9rem;
  color: var(--warm);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 420px;
}
.featured__details {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--dark-3);
  border-bottom: 1px solid var(--dark-3);
}
.featured__detail {
  display: flex; justify-content: space-between;
  font-size: 0.8rem;
}
.detail-label {
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.68rem;
}
.detail-val { color: var(--cream); }
.featured__sizes {
  display: flex; gap: 10px;
  margin-bottom: 32px;
}
.size-btn {
  width: 40px; height: 40px;
  border: 1px solid var(--dark-3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--warm);
  cursor: none;
  transition: all 0.3s;
}
.size-btn:hover, .size-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184,134,11,0.08);
}

/* ── EDITORIAL ── */
.editorial {
  padding: 120px 64px;
  background: var(--dark);
}
.editorial__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}
.editorial__quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 20px;
}
.editorial__quote cite {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.editorial__images {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  align-items: end;
}
.editorial__img {
  overflow: hidden;
  aspect-ratio: 2/3;
}
.editorial__img--tall {
  aspect-ratio: 1/1.8;
  margin-top: -40px;
}
.editorial__img img {
  transition: transform 0.7s var(--ease);
}
.editorial__img:hover img { transform: scale(1.06); }

/* ── PRODUCTS ── */
.products {
  padding: 120px 64px;
  background: var(--black);
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 0;
}
.product-card { }
.product-card__img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--dark-2);
}
.product-card__img img {
  transition: transform 0.7s var(--ease);
}
.product-card:hover .product-card__img img { transform: scale(1.06); }
.product-card__wish {
  position: absolute; top: 14px; right: 14px;
  font-size: 1.1rem;
  color: var(--warm);
  transition: color 0.3s, transform 0.3s;
  z-index: 2;
}
.product-card__wish:hover {
  color: var(--gold);
  transform: scale(1.2);
}
.product-card__tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  font-weight: 500;
}
.product-card__info {
  padding: 16px 0 0;
}
.product-card__info h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 4px;
}
.product-card__info p {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.product-card__info span {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.products__cta {
  text-align: center;
  margin-top: 64px;
}

/* ── ABOUT ── */
.about {
  padding: 120px 64px;
  background: var(--dark);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin: 16px 0 28px;
}
.about__title em { font-style: italic; color: var(--gold); }
.about__text p {
  font-size: 0.9rem;
  color: var(--warm);
  line-height: 1.9;
  margin-bottom: 20px;
  max-width: 440px;
}
.about__text .btn { margin-top: 12px; }
.about__img-col {
  position: relative;
}
.about__img-main {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.about__img-main img {
  transition: transform 0.8s var(--ease);
}
.about__img-main:hover img { transform: scale(1.04); }
.about__stat-card {
  position: absolute;
  background: var(--dark-2);
  border: 1px solid rgba(184,134,11,0.25);
  padding: 20px 28px;
  display: flex; flex-direction: column; gap: 4px;
  bottom: -24px; left: -32px;
}
.about__stat-card--2 {
  bottom: auto; top: 40px;
  left: auto; right: -32px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── NEWSLETTER ── */
.newsletter {
  padding: 120px 64px;
  background: var(--dark-2);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: 'K';
  position: absolute;
  font-family: var(--font-display);
  font-size: 40vw;
  font-weight: 300;
  color: rgba(184,134,11,0.03);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  line-height: 1;
}
.newsletter__inner {
  position: relative; z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}
.newsletter h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  margin: 12px 0 16px;
}
.newsletter p {
  font-size: 0.85rem;
  color: var(--warm);
  margin-bottom: 36px;
}
.newsletter__form {
  display: flex; gap: 0;
  max-width: 480px;
  margin: 0 auto 16px;
}
.newsletter__form input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--dark-3);
  border-right: none;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 14px 20px;
  outline: none;
  transition: border-color 0.3s;
}
.newsletter__form input::placeholder { color: var(--text-muted); }
.newsletter__form input:focus { border-color: var(--gold); }
.newsletter__form .btn {
  border-left: none;
  white-space: nowrap;
}
.newsletter__note {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 0 !important;
}

/* ── FOOTER ── */
.footer {
  background: var(--black);
  border-top: 1px solid var(--dark-3);
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 80px 64px 64px;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--cream);
  margin-bottom: 8px;
}
.footer__logo span { color: var(--gold); }
.footer__brand > p {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.footer__socials {
  display: flex; gap: 16px;
}
.footer__socials a {
  color: var(--warm);
  transition: color 0.3s, transform 0.3s;
  display: flex;
}
.footer__socials a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}
.footer__col h5 {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 24px;
  font-weight: 400;
}
.footer__col ul li {
  margin-bottom: 12px;
}
.footer__col ul a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.3s;
  letter-spacing: 0.04em;
}
.footer__col ul a:hover { color: var(--gold); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 64px;
  border-top: 1px solid var(--dark-3);
}
.footer__bottom p {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}
.footer__legal {
  display: flex; gap: 24px;
}
.footer__legal a {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  transition: color 0.3s;
}
.footer__legal a:hover { color: var(--warm); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav { padding: 0 28px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .hero__content { padding: 0 28px 64px; }
  .hero__scroll { display: none; }
  .hero__brand-stamp { display: none; }
  .collections { padding: 80px 28px; }
  .collections__grid { grid-template-columns: 1fr; gap: 40px; }
  .featured { padding: 80px 28px; }
  .featured__inner { grid-template-columns: 1fr; gap: 48px; }
  .featured__img-accent { display: none; }
  .editorial { padding: 80px 28px; }
  .editorial__inner { grid-template-columns: 1fr; gap: 48px; }
  .products { padding: 80px 28px; }
  .about { padding: 80px 28px; }
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__stat-card { display: none; }
  .newsletter { padding: 80px 28px; }
  .footer__top { padding: 60px 28px 48px; grid-template-columns: 1fr 1fr; }
  .footer__bottom { padding: 20px 28px; flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 600px) {
  .hero__title { font-size: clamp(3rem, 14vw, 5rem); }
  .hero__cta { flex-direction: column; }
  .products__grid { grid-template-columns: 1fr; }
  .newsletter__form { flex-direction: column; }
  .newsletter__form input { border-right: 1px solid var(--dark-3); border-bottom: none; }
  .footer__top { grid-template-columns: 1fr; }
  .editorial__images { grid-template-columns: 1fr 1fr; }
  .editorial__img:last-child { display: none; }
}