:root {
  --black: #0a0907;
  --off-white: #f5f2ed;
  --warm-white: #faf8f5;
  --gold: #b89a6a;
  --gold-light: #d4b98a;
  --charcoal: #2a2520;
  --muted: #8a8078;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Raleway', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--warm-white);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 0.04em;
  overflow-x: hidden;
  cursor: default;
}

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

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px 48px;
  background: rgba(250, 248, 245, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,154,106,0.15);
}

.nav__left, .nav__right {
  display: flex;
  gap: 36px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav__right { justify-content: flex-end; }

.nav__left a, .nav__right a {
  color: var(--charcoal);
  transition: color 0.3s;
  position: relative;
}

.nav__left a::after, .nav__right a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav__left a:hover::after, .nav__right a:hover::after { width: 100%; }
.nav__left a:hover, .nav__right a:hover { color: var(--gold); }

.nav__logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  text-align: center;
  color: var(--black);
}

.bag-count {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 16px; height: 16px;
  background: var(--gold);
  color: white;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 500;
  margin-left: 4px;
  transition: transform 0.3s;
}

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

.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(184,154,106,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(42,37,32,0.06) 0%, transparent 60%),
    linear-gradient(160deg, #f0ece4 0%, #faf8f5 40%, #ede8df 100%);
}

.hero__grain {
  position: absolute; inset: -50%;
  width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  animation: grain 8s steps(10) infinite;
}

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

.hero__content {
  position: relative;
  text-align: center;
  z-index: 2;
  animation: heroFade 1.4s ease both;
}

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

.hero__season {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  animation: heroFade 1.4s 0.2s ease both;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(72px, 10vw, 140px);
  font-weight: 300;
  line-height: 0.95;
  color: var(--black);
  margin-bottom: 28px;
  animation: heroFade 1.4s 0.35s ease both;
}

.hero__title em { font-style: italic; color: var(--gold); }

.hero__sub {
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 52px;
  animation: heroFade 1.4s 0.5s ease both;
}

.hero__cta {
  display: inline-block;
  padding: 16px 52px;
  border: 1px solid var(--gold);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  animation: heroFade 1.4s 0.65s ease both;
}

.hero__cta::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.hero__cta:hover { color: white; }
.hero__cta:hover::before { transform: scaleX(1); }

.hero__scroll-label {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__scroll-label::after {
  content: '';
  display: block;
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 8px auto 0;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { opacity: 0.6; transform: translateY(0); }
  50%       { opacity: 1;   transform: translateY(8px); }
}

/* ── MARQUEE ── */
.marquee {
  background: var(--black);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee__track {
  display: inline-flex;
  gap: 32px;
  animation: marquee 28s linear infinite;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.marquee .dot { color: var(--gold); opacity: 0.5; }

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

/* ── COLLECTION ── */
.collection {
  padding: 120px 64px;
  max-width: 1400px;
  margin: 0 auto;
}

.collection__header {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 72px;
}

.collection__label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.collection__title {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  color: var(--black);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}

.product-card { animation: cardReveal 0.8s ease both; }
.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.2s; }
.product-card:nth-child(4) { animation-delay: 0.3s; }
.product-card:nth-child(5) { animation-delay: 0.4s; }
.product-card:nth-child(6) { animation-delay: 0.5s; }

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

.product-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--off-white);
  margin-bottom: 20px;
}

.product-card__img {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.2, 0, 0.1, 1);
}

.product-card__img--1 { background: linear-gradient(145deg, #1a1614 0%, #2d2520 40%, #0e0c0b 100%); }
.product-card__img--2 { background: linear-gradient(145deg, #f0ece4 0%, #e8e0d4 40%, #f5f0e8 100%); }
.product-card__img--3 { background: linear-gradient(145deg, #111010 0%, #1c1a19 50%, #080707 100%); }
.product-card__img--4 { background: linear-gradient(145deg, #2d1f2d 0%, #1a0f1a 50%, #3d2840 100%); }
.product-card__img--5 { background: linear-gradient(145deg, #f2ede4 0%, #ddd4c4 40%, #ebe3d6 100%); }
.product-card__img--6 { background: linear-gradient(145deg, #181614 0%, #28221e 50%, #100e0c 100%); }

.product-card__overlay {
  position: absolute; inset: 0;
  background: rgba(10, 9, 7, 0.45);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 32px;
  opacity: 0;
  transition: opacity 0.4s;
}

.product-card__img-wrap:hover .product-card__overlay { opacity: 1; }
.product-card__img-wrap:hover .product-card__img { transform: scale(1.05); }

.product-card__add {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.8);
  color: white;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 12px 32px;
  cursor: pointer;
  transition: all 0.3s;
}

.product-card__add:hover { background: white; color: var(--black); }

.product-card__info h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 4px;
}

.product-card__info p {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 10px;
}

.product-card__price {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--gold);
}

/* ── EDITORIAL ── */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 75vh;
  background: var(--black);
  overflow: hidden;
}

.editorial__text {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.editorial__label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 28px;
}

.editorial__text h2 {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 300;
  color: var(--off-white);
  line-height: 1.05;
  margin-bottom: 28px;
}

.editorial__text h2 em { font-style: italic; color: var(--gold); }

.editorial__text p {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(245, 242, 237, 0.55);
  max-width: 360px;
  margin-bottom: 36px;
}

.editorial__link {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  transition: opacity 0.3s;
}

.editorial__link:hover { opacity: 0.65; }

.editorial__visual {
  display: grid;
  grid-template-rows: 55% 45%;
  overflow: hidden;
}

.editorial__panel {
  width: 100%; height: 100%;
  transition: transform 0.8s cubic-bezier(0.2, 0, 0.1, 1);
}

.editorial__panel:hover { transform: scale(1.04); }
.editorial__panel--1 { background: linear-gradient(135deg, #2d2018 0%, #1a140f 50%, #3d2d20 100%); }
.editorial__panel--2 { background: linear-gradient(135deg, #b89a6a20 0%, #1a1510 50%, #b89a6a10 100%); border-top: 1px solid rgba(184,154,106,0.12); }

/* ── LOOKBOOK ── */
.lookbook {
  padding: 100px 64px;
  max-width: 1400px;
  margin: 0 auto;
}

.lookbook__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 48px;
}

.lookbook__header h2 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
}

.lookbook__header h2 em { font-style: italic; color: var(--gold); }

.lookbook__header a {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  transition: opacity 0.3s;
}

.lookbook__header a:hover { opacity: 0.65; }

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

.lookbook__tile {
  background: var(--off-white);
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.2, 0, 0.1, 1);
}

.lookbook__tile:hover { transform: scale(0.98); }
.lookbook__tile--tall { grid-row: 1 / 3; background: linear-gradient(160deg, #1a1714 0%, #2a221c 50%, #111010 100%); }
.lookbook__tile:nth-child(2) { background: linear-gradient(160deg, #f0ebe0 0%, #e0d8c8 100%); }
.lookbook__tile:nth-child(3) { background: linear-gradient(160deg, #c8bfae 0%, #b0a590 100%); }
.lookbook__tile--wide { grid-column: 2 / 4; background: linear-gradient(160deg, #2a2018 0%, #1a1410 50%, #241c14 100%); }

/* ── SERVICES ── */
.services {
  background: var(--off-white);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(184,154,106,0.2);
  border-bottom: 1px solid rgba(184,154,106,0.2);
}

.service {
  padding: 64px 52px;
  text-align: center;
  border-right: 1px solid rgba(184,154,106,0.2);
  transition: background 0.4s;
}

.service:last-child { border-right: none; }
.service:hover { background: white; }

.service__icon { font-size: 24px; color: var(--gold); margin-bottom: 20px; display: block; }

.service h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 12px;
}

.service p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 240px;
  margin: 0 auto;
}

/* ── NEWSLETTER ── */
.newsletter {
  padding: 120px 64px;
  text-align: center;
  background: var(--warm-white);
}

.newsletter__label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.newsletter h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  margin-bottom: 48px;
}

.newsletter__form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  border: 1px solid rgba(184,154,106,0.4);
}

.newsletter__form input {
  flex: 1;
  padding: 16px 24px;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--black);
}

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

.newsletter__form button {
  padding: 16px 36px;
  background: var(--gold);
  border: none;
  color: white;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter__form button:hover { background: var(--charcoal); }

/* ── FOOTER ── */
.footer {
  background: var(--black);
  padding: 56px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: var(--off-white);
}

.footer__links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__links a {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,242,237,0.45);
  transition: color 0.3s;
}

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

.footer__copy {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(245,242,237,0.22);
}

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 40px; right: 40px;
  background: var(--black);
  color: var(--off-white);
  padding: 16px 28px;
  font-size: 12px;
  letter-spacing: 0.12em;
  border-left: 2px solid var(--gold);
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.2, 0, 0.1, 1);
  z-index: 999;
  max-width: 320px;
}

.toast.show { transform: translateX(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav { padding: 18px 24px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .collection { padding: 80px 24px; }
  .editorial { grid-template-columns: 1fr; }
  .editorial__visual { height: 40vh; }
  .editorial__text { padding: 64px 32px; }
  .services { grid-template-columns: 1fr; }
  .service { border-right: none; border-bottom: 1px solid rgba(184,154,106,0.2); }
  .lookbook { padding: 80px 24px; }
  .lookbook__grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 220px); }
  .lookbook__tile--tall { grid-row: 1; }
  .lookbook__tile--wide { grid-column: 1 / 3; }
  .newsletter { padding: 80px 24px; }
  .footer { padding: 40px 24px; }
  .footer__links { gap: 20px; }
}

@media (max-width: 560px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero__title { font-size: 56px; }
}

/* ── MOBILE PERFORMANCE ──
   Heavy effects off on mobile for smooth experience */
@media (max-width: 900px) {
  /* Grain animation band — sabse bada GPU drain */
  .hero__grain { animation: none; opacity: 0.02; }

  /* Scroll bounce off */
  .hero__scroll-label::after { animation: none; }

  /* Backdrop blur expensive hai — simple nav */
  .nav { backdrop-filter: none; background: rgba(250,248,245,0.97); }

  /* Touch devices hover nahi karte — product overlay always visible */
  .product-card__overlay {
    opacity: 1;
    background: rgba(10,9,7,0.22);
    padding-bottom: 16px;
  }
  .product-card__img-wrap:hover .product-card__img { transform: none; }

  /* Hover scale effects off on touch */
  .editorial__panel:hover { transform: none; }
  .lookbook__tile:hover { transform: none; }

  /* Card animations off — page load fast hoga */
  .product-card { animation: none; opacity: 1; transform: none; }

  /* Slightly faster marquee */
  .marquee__track { animation-duration: 38s; }
}
