:root {
  --black: #050505;
  --white: #ffffff;
  --soft: #f4f4f4;
  --muted: #bdbdbd;
  --gray: #171717;
  --line: rgba(255, 255, 255, 0.14);
  --dark-line: rgba(0, 0, 0, 0.12);
  --font-main: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

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

button,
input {
  font-family: inherit;
}

.loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  color: var(--white);
  display: grid;
  place-items: center;
  z-index: 9999;
  transition: 0.8s ease;
}

.loader span {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 7rem);
  letter-spacing: 0.2em;
}

.loader.hide {
  opacity: 0;
  visibility: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--white);
  mix-blend-mode: difference;
  z-index: 999;
}

.cursor {
  width: 22px;
  height: 22px;
  border: 1px solid var(--white);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 998;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease;
}

.cursor.big {
  width: 55px;
  height: 55px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  padding: 0 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  color: var(--white);
  transition: 0.35s ease;
}

.site-header.scrolled {
  height: 68px;
  background: rgba(5, 5, 5, 0.76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.desktop-nav {
  display: flex;
  gap: 2rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.82);
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  content: "";
  width: 0;
  height: 1px;
  background: var(--white);
  position: absolute;
  left: 0;
  bottom: -8px;
  transition: 0.3s ease;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.icon-btn,
.menu-btn {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  padding: 0.72rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.cart-btn span {
  background: var(--white);
  color: var(--black);
  border-radius: 50%;
  padding: 0.1rem 0.38rem;
  margin-left: 0.4rem;
  font-size: 0.72rem;
}

.menu-btn {
  display: none;
}

.mobile-menu {
  position: fixed;
  right: -100%;
  top: 0;
  width: min(330px, 80vw);
  height: 100vh;
  background: var(--black);
  color: var(--white);
  z-index: 1000;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  transition: 0.4s ease;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu button {
  align-self: flex-end;
  background: none;
  color: var(--white);
  border: none;
  font-size: 2.5rem;
}

.mobile-menu a {
  font-size: 1.4rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}

.hero {
  min-height: 100vh;
  background: var(--black);
  color: var(--white);
  position: relative;
  display: flex;
  align-items: center;
  padding: 10rem 6vw 7rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 35%, rgba(255,255,255,0.22), transparent 24%),
    linear-gradient(90deg, rgba(0,0,0,0.95), rgba(0,0,0,0.55)),
    url("https://images.unsplash.com/photo-1529139574466-a303027c1d8b?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.1);
  transform: scale(1.05);
}

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image: repeating-radial-gradient(circle at 0 0, transparent 0, rgba(255,255,255,0.12) 1px, transparent 2px);
  background-size: 18px 18px;
}

.hero-content {
  position: relative;
  max-width: 850px;
  z-index: 2;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--muted);
  margin-bottom: 1rem;
}

.hero h1,
.section-heading h2,
.split-content h2,
.newsletter h2,
.contact-card h2 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero h1 {
  font-size: clamp(4rem, 11vw, 10.5rem);
}

.hero-subtitle {
  max-width: 620px;
  margin-top: 1.5rem;
  font-size: clamp(1rem, 1.8vw, 1.28rem);
  color: rgba(255,255,255,0.76);
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2.2rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.45rem;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.3s ease;
  border: 1px solid transparent;
}

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

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

.secondary {
  border-color: var(--line);
  color: var(--white);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}

.dark-btn {
  background: var(--black);
  color: var(--white);
}

.light-btn {
  color: var(--black);
  border-color: var(--dark-line);
  background: var(--white);
}

.hero-card {
  position: absolute;
  right: 6vw;
  bottom: 8rem;
  width: 310px;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  z-index: 2;
}

.hero-card span {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.hero-card h3 {
  margin: 0.8rem 0;
}

.hero-card p {
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  z-index: 2;
}

.marquee div {
  display: flex;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.marquee span {
  padding: 1.1rem 2.5rem;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.72);
}

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

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--black);
  color: var(--white);
  border-top: 1px solid var(--line);
}

.stat {
  padding: 2.2rem 6vw;
  border-right: 1px solid var(--line);
}

.stat strong {
  font-family: var(--font-display);
  font-size: 2.6rem;
}

.stat span {
  display: block;
  color: var(--muted);
  margin-top: 0.3rem;
}

.section {
  padding: 8rem 6vw;
}

.section.dark {
  background: var(--black);
  color: var(--white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 3.5rem;
}

.section-heading h2 {
  font-size: clamp(2.7rem, 7vw, 6rem);
}

.section-heading p:last-child {
  color: #666;
  line-height: 1.8;
  margin-top: 1rem;
}

.dark .section-heading p:last-child {
  color: rgba(255,255,255,0.64);
}

.collection-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 1.2rem;
}

.collection-card {
  min-height: 480px;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  background: var(--soft);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}

.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.78));
  z-index: -1;
}

.collection-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  filter: grayscale(1);
  transition: 0.6s ease;
}

.collection-card:hover .collection-image {
  transform: scale(1.08);
  filter: grayscale(0);
}

.image-1 { background-image: url("https://images.unsplash.com/photo-1503342217505-b0a15ec3261c?auto=format&fit=crop&w=1000&q=80"); }
.image-2 { background-image: url("https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?auto=format&fit=crop&w=1000&q=80"); }
.image-3 { background-image: url("https://images.unsplash.com/photo-1523398002811-999ca8dec234?auto=format&fit=crop&w=1000&q=80"); }

.collection-card div:last-child {
  color: var(--white);
  padding: 2rem;
}

.collection-card h3 {
  font-family: var(--font-display);
  font-size: 2.4rem;
}

.collection-card p {
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-top: 0.7rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.product-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: #0d0d0d;
  transition: 0.35s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255,255,255,0.4);
}

.product-img {
  min-height: 360px;
  background-size: cover;
  background-position: center;
  filter: grayscale(1);
  position: relative;
  transition: 0.5s ease;
}

.product-card:hover .product-img {
  filter: grayscale(0);
}

.product-img span {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--white);
  color: var(--black);
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
}

.p1 { background-image: url("https://images.unsplash.com/photo-1521572163474-6864f9cf17ab?auto=format&fit=crop&w=900&q=80"); }
.p2 { background-image: url("https://images.unsplash.com/photo-1539109136881-3be0616acf4b?auto=format&fit=crop&w=900&q=80"); }
.p3 { background-image: url("https://images.unsplash.com/photo-1506629905607-d9c297d6fb36?auto=format&fit=crop&w=900&q=80"); }
.p4 { background-image: url("https://images.unsplash.com/photo-1556821840-3a63f95609a7?auto=format&fit=crop&w=900&q=80"); }

.product-info {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem;
}

.product-info h3 {
  font-size: 1rem;
}

.product-info p {
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 0.4rem;
}

.product-card button {
  width: calc(100% - 2.4rem);
  margin: 0 1.2rem 1.2rem;
  padding: 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--black);
  font-weight: 900;
  cursor: pointer;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 850px;
  background: var(--soft);
}

.split-image {
  background:
    linear-gradient(rgba(0,0,0,0.05), rgba(0,0,0,0.15)),
    url("https://images.unsplash.com/photo-1496747611176-843222e1e57c?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  filter: grayscale(1);
}

.split-content {
  padding: 8rem 6vw;
  align-self: center;
}

.split-content h2 {
  font-size: clamp(2.6rem, 6vw, 5.6rem);
}

.split-content p {
  margin-top: 1.4rem;
  color: #555;
  line-height: 1.9;
}

.split-content ul {
  list-style: none;
  margin: 1.6rem 0 2rem;
}

.split-content li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--dark-line);
  font-weight: 800;
}

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 1rem;
}

.lookbook-item {
  border-radius: 28px;
  background-size: cover;
  background-position: center;
  filter: grayscale(1);
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
}

.lookbook-item:nth-child(1) { background-image: url("https://images.unsplash.com/photo-1516826957135-700dedea698c?auto=format&fit=crop&w=900&q=80"); }
.lookbook-item:nth-child(2) { background-image: url("https://images.unsplash.com/photo-1517841905240-472988babdf9?auto=format&fit=crop&w=900&q=80"); }
.lookbook-item:nth-child(3) { background-image: url("https://images.unsplash.com/photo-1513379733131-47fc74b45fc7?auto=format&fit=crop&w=900&q=80"); }
.lookbook-item:nth-child(4) { background-image: url("https://images.unsplash.com/photo-1529139574466-a303027c1d8b?auto=format&fit=crop&w=1200&q=80"); }

.lookbook-item:hover {
  filter: grayscale(0);
  transform: scale(0.98);
}

.lookbook-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.lookbook-item span {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  color: var(--white);
  z-index: 2;
  font-family: var(--font-display);
  font-size: 1.8rem;
}

.tall {
  grid-row: span 2;
}

.wide {
  grid-column: span 2;
}

.testimonial-section {
  padding: 8rem 6vw;
  background: var(--black);
  color: var(--white);
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.review {
  border: 1px solid var(--line);
  padding: 2rem;
  border-radius: 26px;
  background: rgba(255,255,255,0.06);
}

.review p {
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
}

.review strong {
  display: block;
  margin-top: 1.4rem;
}

.newsletter {
  margin: 8rem 6vw;
  background: var(--soft);
  border-radius: 36px;
  padding: 5rem;
  text-align: center;
}

.newsletter h2 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
}

.newsletter form {
  margin: 2rem auto 0;
  display: flex;
  max-width: 620px;
  background: var(--white);
  border: 1px solid var(--dark-line);
  padding: 0.45rem;
  border-radius: 999px;
}

.newsletter input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0 1.2rem;
  font-size: 1rem;
}

.newsletter button {
  border: none;
  background: var(--black);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 999px;
  font-weight: 900;
}

.contact-section {
  padding: 2rem 6vw 8rem;
}

.contact-card {
  background: var(--black);
  color: var(--white);
  border-radius: 36px;
  padding: 5rem;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.95), rgba(0,0,0,0.68)),
    url("https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.contact-card h2 {
  font-size: clamp(2.5rem, 6vw, 5.6rem);
  max-width: 900px;
}

.contact-card p {
  max-width: 650px;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-top: 1rem;
}

.contact-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

footer {
  padding: 4rem 6vw;
  background: var(--black);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid var(--line);
}

footer h2 {
  font-family: var(--font-display);
  letter-spacing: 0.16em;
}

footer p {
  color: var(--muted);
  margin-top: 0.6rem;
}

.footer-links {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  color: var(--muted);
}

.whatsapp {
  position: fixed;
  right: 1.3rem;
  bottom: 1.3rem;
  background: var(--white);
  color: var(--black);
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  font-weight: 900;
  z-index: 80;
  box-shadow: 0 18px 50px rgba(0,0,0,0.24);
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .hero-card {
    display: none;
  }

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

  .collection-grid {
    grid-template-columns: 1fr;
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .split-image {
    min-height: 520px;
  }

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

@media (max-width: 650px) {
  .site-header {
    padding: 0 1rem;
  }

  .icon-btn {
    display: none;
  }

  .hero {
    padding: 8rem 1rem 6rem;
  }

  .hero h1 {
    font-size: 4.4rem;
  }

  .stats,
  .product-grid,
  .reviews,
  .lookbook-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .section,
  .testimonial-section {
    padding: 5rem 1rem;
  }

  .collection-card {
    min-height: 390px;
  }

  .newsletter {
    margin: 5rem 1rem;
    padding: 3rem 1.2rem;
  }

  .newsletter form {
    flex-direction: column;
    border-radius: 24px;
    gap: 0.5rem;
  }

  .newsletter input {
    padding: 1rem;
  }

  .contact-section {
    padding: 1rem 1rem 5rem;
  }

  .contact-card {
    padding: 3rem 1.3rem;
  }

  footer {
    flex-direction: column;
    padding: 3rem 1rem;
  }

  .cursor {
    display: none;
  }
}
