/* ═══════════════════════════════════════════════════
   ASW CLOTHING — styles.css
   Premium minimalist fashion demo
═══════════════════════════════════════════════════ */

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

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --off-white: #f7f7f6;
  --grey-light: #ececec;
  --grey-mid: #b0b0b0;
  --grey-dark: #6a6a6a;

  --font: 'DM Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --nav-h: 68px;
  --container: 1280px;
  --container-narrow: 800px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

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

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

/* ─── CONTAINERS ─── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 1px solid currentColor;
  cursor: pointer;
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out), transform 0.2s var(--ease-out);
  white-space: nowrap;
}

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

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

.btn--black:hover {
  background: #222;
  border-color: #222;
}

.btn--white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}

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

/* ─── SECTION HEADERS ─── */
.section-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.section-header {
  margin-bottom: clamp(48px, 6vw, 80px);
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* ═══════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  border-bottom-color: var(--grey-light);
  box-shadow: 0 1px 24px rgba(0,0,0,0.04);
}

.navbar__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo-img {
  height: 28px;
  width: auto;
}

.navbar__nav {
  display: flex;
  gap: 40px;
}

.navbar__nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  position: relative;
  padding-bottom: 2px;
}

.navbar__nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-out);
}

.navbar__nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Burger */
.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar__burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--black);
  transition: transform 0.3s, opacity 0.3s;
}

.navbar__burger.open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.navbar__burger.open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

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

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.45) 60%,
    rgba(0,0,0,0.55) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding-inline: 24px;
}

.hero__eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(52px, 10vw, 130px);
  font-weight: 200;
  letter-spacing: -0.03em;
  line-height: 0.92;
  margin-bottom: 24px;
}

.hero__sub {
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 44px;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════════════ */
.marquee-wrap {
  overflow: hidden;
  background: var(--black);
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.marquee-track span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}

.marquee-track .dot {
  color: rgba(255,255,255,0.35);
  font-size: 8px;
  letter-spacing: 0;
}

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

/* ═══════════════════════════════════════════════════
   PRODUCTS
═══════════════════════════════════════════════════ */
.products {
  padding-block: clamp(80px, 10vw, 140px);
  background: var(--white);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 3vw, 48px);
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-card__img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--off-white);
  aspect-ratio: 4 / 5;
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.product-card:hover .product-card__img {
  transform: scale(1.03);
}

.product-card__hover-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  padding: 8px 14px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}

.product-card:hover .product-card__hover-label {
  opacity: 1;
  transform: translateY(0);
}

.product-card__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  gap: 16px;
}

.product-card__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-card__name {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.product-card__price {
  font-size: 13px;
  font-weight: 300;
  color: var(--grey-dark);
}

/* ═══════════════════════════════════════════════════
   BRAND STATEMENT
═══════════════════════════════════════════════════ */
.statement {
  padding-block: clamp(80px, 12vw, 160px);
  background: var(--off-white);
}

.statement__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.statement__rule {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--grey-mid);
}

.statement__quote {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.2;
  font-style: italic;
  color: var(--black);
}

.statement__body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--grey-dark);
  letter-spacing: 0.01em;
}

/* ═══════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════ */
.faq {
  padding-block: clamp(80px, 10vw, 140px);
  background: var(--white);
}

.faq__list {
  display: flex;
  flex-direction: column;
}

.faq__item {
  border-top: 1px solid var(--grey-light);
}

.faq__item:last-child {
  border-bottom: 1px solid var(--grey-light);
}

.faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 400;
  color: var(--black);
  text-align: left;
  padding: 26px 0;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.faq__trigger:hover {
  color: var(--grey-dark);
}

.faq__icon {
  font-size: 20px;
  font-weight: 200;
  color: var(--grey-dark);
  transition: transform 0.35s var(--ease-out), color 0.2s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq__trigger[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
  color: var(--black);
}

.faq__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out);
}

.faq__body p {
  padding-bottom: 26px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--grey-dark);
  max-width: 580px;
}

/* ═══════════════════════════════════════════════════
   CONTACT STRIP
═══════════════════════════════════════════════════ */
.contact-strip {
  padding-block: clamp(80px, 10vw, 140px);
  background: var(--black);
  color: var(--white);
}

.contact-strip__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.contact-strip__title {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 200;
  letter-spacing: -0.03em;
}

.contact-strip__sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

.contact-strip .btn--black {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}

.contact-strip .btn--black:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.footer {
  background: var(--white);
  border-top: 1px solid var(--grey-light);
  padding-block: 48px 32px;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__logo {
  height: 22px;
  width: auto;
}

.footer__nav {
  display: flex;
  gap: 32px;
}

.footer__nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-dark);
  transition: color 0.2s;
}

.footer__nav a:hover {
  color: var(--black);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--grey-light);
}

.footer__bottom p {
  font-size: 11px;
  font-weight: 300;
  color: var(--grey-mid);
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .navbar__nav {
    display: none;
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    z-index: 99;
  }

  .navbar__nav.open {
    display: flex;
  }

  .navbar__nav a {
    font-size: 13px;
    letter-spacing: 0.16em;
  }

  .navbar__burger {
    display: flex;
  }

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

  .product-card__info {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 52px;
  }

  .statement__body br {
    display: none;
  }
}
