/* ============================================
   LEEBAAZ – Premium Streetwear
   CSS Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Inter:wght@300;400;500;600&family=Space+Grotesk:wght@300;400;500;600;700&family=Libre+Baskerville:wght@700&family=Bevan&display=swap');

/* ============================================
   TOKENS
   ============================================ */
:root {
  --black: #000000;
  --white: #FFFFFF;
  --grey-light: #D8D8D8;
  --grey-mid: #888888;
  --grey-dark: #1a1a1a;
  --grey-surface: #111111;
  --brown: #3d2218;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', sans-serif;
  --font-ui: 'Space Grotesk', sans-serif;

  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4rem;
  --spacing-xxl: 7rem;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
}

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

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

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 9rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.heading {
  font-family: var(--font-ui);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.subheading {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey-mid);
}

.body-lg {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--grey-light);
}

.body-sm {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--grey-mid);
  line-height: 1.6;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover {
  background: var(--grey-light);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

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

.btn-ghost {
  background: transparent;
  color: var(--white);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--white);
  letter-spacing: 0.2em;
  font-size: 0.7rem;
}

.btn-ghost:hover {
  color: var(--grey-light);
  border-color: var(--grey-light);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.4rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  padding: 1rem 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 56px;
  width: auto;
  display: block;
}


.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-light);
  transition: var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: var(--transition-fast);
}

.nav-links a:hover {
  color: var(--white);
}

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

.nav-links a.active {
  color: var(--white);
}

/* Mobile nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: #0a0a0a;
  z-index: 999;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  overflow: hidden;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav-mobile-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--white);
}

.nav-mobile-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  background: none;
  color: var(--white);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nav-mobile-close:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  padding: 3rem 2rem;
  gap: 0;
  flex: 1;
  justify-content: center;
}

.nav-mobile-links a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 10vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  opacity: 0.15;
  text-decoration: none;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: opacity 0.25s ease;
}

.nav-mobile-links a:last-child {
  border-bottom: none;
}

.nav-mobile-links a:hover {
  opacity: 1;
}

.nav-mobile-num {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--grey-mid);
  margin-bottom: 0.2rem;
}

.nav-mobile-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.nav-mobile-social {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--grey-mid);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-mobile-social:hover {
  color: var(--white);
}

.nav-mobile-tagline {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.2);
  text-transform: uppercase;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.45;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-bg img.loaded {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.2) 50%,
    rgba(0,0,0,0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 3rem 6rem;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
}

.hero-title em {
  font-style: italic;
  opacity: 0.7;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 300;
  color: var(--grey-light);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.hero-scroll span {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey-mid);
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--white), transparent);
  animation: scrollLine 2s ease infinite;
}

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

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: var(--spacing-xl) 3rem;
}

.section-sm {
  padding: var(--spacing-lg) 3rem;
}

.section-header {
  margin-bottom: var(--spacing-lg);
}

.section-header-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--spacing-lg);
}

.divider {
  width: 40px;
  height: 1px;
  background: var(--grey-mid);
  margin: 1.5rem 0;
}

/* ============================================
   BRAND INTRO
   ============================================ */
.brand-intro {
  background: var(--grey-surface);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.brand-intro-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--spacing-lg);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.brand-intro-label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--grey-mid);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-section {
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1.6rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-inner {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey-mid);
  white-space: nowrap;
}

.marquee-sep {
  font-size: 0.7rem;
  color: var(--grey-mid);
  opacity: 0.4;
  white-space: nowrap;
  flex-shrink: 0;
}

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

/* ============================================
   PRODUCT GRID
   ============================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1400px;
  margin: 0 auto;
}

.product-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  background: #ffffff;
}

.product-card-img {
  position: relative;
  width: 100%;
  height: 100%;
  background: #ffffff;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card-img-alt {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.product-card:hover .product-card-img img:first-child {
  opacity: 0;
}

.product-card:hover .product-card-img-alt {
  opacity: 1;
}

.product-card:hover .product-card-img > img:first-child {
  transform: scale(1.05);
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  gap: 0.75rem;
}

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

.product-card-info {
  padding: 1.5rem 0;
}

.product-card-name {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.product-card-price {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--grey-mid);
}

.product-card-color {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--grey-mid);
  margin-bottom: 0.5rem;
}

/* ============================================
   VALUES SECTION
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  background: var(--grey-surface);
  padding: var(--spacing-lg) var(--spacing-md);
  border: 1px solid rgba(255,255,255,0.04);
  transition: var(--transition);
}

.value-card:hover {
  border-color: rgba(255,255,255,0.12);
}

.value-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.value-title {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.value-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--grey-mid);
  line-height: 1.7;
}

/* ============================================
   ABOUT PREVIEW
   ============================================ */
.about-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.about-preview-img {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.about-preview-img img {
  height: 90px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}


.about-preview-content {
  background: var(--grey-surface);
  padding: var(--spacing-lg) var(--spacing-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ============================================
   INSTAGRAM SECTION
   ============================================ */
.instagram-section {
  background: var(--grey-surface);
  text-align: center;
  padding: var(--spacing-lg) 3rem;
  position: relative;
  overflow: hidden;
  clear: both;
}

.instagram-handle {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 1rem 0;
  opacity: 0.8;
  display: block;
  position: relative;
  z-index: 1;
}

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

.instagram-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: var(--grey-dark);
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: grayscale(20%);
}

.instagram-item:hover img {
  transform: scale(1.06);
  filter: grayscale(0%);
}

.instagram-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  padding: 0;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form {
  display: flex;
  gap: 0;
  margin-top: 2rem;
}

.newsletter-input {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-right: none;
  color: var(--white);
  padding: 1rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition-fast);
}

.newsletter-input::placeholder {
  color: var(--grey-mid);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.newsletter-input:focus {
  border-color: rgba(255,255,255,0.5);
}

.newsletter-btn {
  background: var(--white);
  color: var(--black);
  border: none;
  padding: 1rem 1.5rem;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: var(--grey-light);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--grey-surface);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--spacing-lg) 3rem var(--spacing-md);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: var(--spacing-md);
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--grey-mid);
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h4 {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 1.2rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col ul a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--grey-light);
  transition: var(--transition-fast);
}

.footer-col ul a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--grey-mid);
}

/* ============================================
   SHOP PAGE
   ============================================ */
.page-header {
  padding: 8rem 3rem 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.shop-card {
  background: var(--grey-surface);
  cursor: pointer;
}

.shop-card-img {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #ffffff;
}

.shop-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.shop-card-img img.alt-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.shop-card:hover .shop-card-img img:not(.alt-img) {
  transform: scale(1.03);
  opacity: 0;
}

.shop-card:hover .shop-card-img .alt-img {
  opacity: 1;
}

.card-main-img {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.card-main-img.fade-out {
  opacity: 0;
  transform: scale(1.03);
}


.shop-card-body {
  padding: 1.5rem;
}

.shop-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1rem;
}

.shop-card-name {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.shop-card-price {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--grey-mid);
}

.shop-card-color {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--grey-mid);
  margin-bottom: 1.2rem;
}

.size-selector {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.size-btn {
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--grey-light);
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.shop-card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* ============================================
   PRODUCT PAGE
   ============================================ */
.product-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 5rem;
}

.product-gallery {
  position: sticky;
  top: 5rem;
  height: calc(100vh - 5rem);
  overflow: hidden;
  background: #ffffff;
}

.product-gallery-main {
  width: 100%;
  height: calc(100% - 100px);
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
  transition: transform 0.6s ease;
}

.product-gallery-main:hover img {
  transform: scale(1.08);
}

.zoom-hint {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.75);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.zoom-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.zoom-lightbox.active {
  display: flex;
}

.zoom-lightbox-scroll {
  width: 100%;
  height: 100%;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: pinch-zoom;
}

.zoom-lightbox-scroll img {
  max-width: 100%;
  max-height: 100%;
  cursor: zoom-in;
  transition: transform 0.3s ease;
  transform: scale(1);
}

.zoom-lightbox-scroll img.zoomed {
  max-width: none;
  max-height: none;
  width: 180%;
  cursor: zoom-out;
}

.zoom-lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2001;
}

.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  height: 98px;
  overflow: hidden;
}

.product-gallery-thumb {
  cursor: pointer;
  overflow: hidden;
  opacity: 0.5;
  transition: opacity 0.2s ease;
  background: #ffffff;
  width: 100%;
  height: 98px;
}

.product-gallery-thumb.active,
.product-gallery-thumb:hover {
  opacity: 1;
}

.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.product-details {
  padding: 4rem 3rem;
  overflow-y: auto;
}

.product-details-inner {
  max-width: 480px;
}

.product-badge {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 1rem;
}

.product-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.product-price {
  font-family: var(--font-ui);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.product-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 1.5rem 0;
}

.product-label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 0.75rem;
}

.product-size-selector {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.product-size-btn {
  padding: 0.6rem 1.2rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--grey-light);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: var(--transition-fast);
}

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

.product-cta {
  margin: 2rem 0;
}

.product-cta .btn {
  width: 100%;
  text-align: center;
  padding: 1.1rem;
  margin-bottom: 0.5rem;
}

.product-description {
  margin-top: 2rem;
}

.product-description p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--grey-mid);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.product-specs {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.product-spec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.product-spec-label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-mid);
}

.product-spec-value {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--grey-light);
}

/* Accordion */
.accordion {
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.size-guide-static {
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.accordion-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--white);
  width: 100%;
  text-align: left;
  transition: var(--transition-fast);
}

.accordion-header:hover {
  color: var(--grey-light);
}

.accordion-title {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.accordion-icon {
  font-size: 1rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-body.open {
  max-height: 600px;
}

.accordion-body-inner {
  padding-bottom: 1.5rem;
}

.accordion-body-inner p,
.accordion-body-inner li {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--grey-mid);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.size-chart {
  width: 100%;
  border-collapse: collapse;
  margin: 0.75rem 0 1rem;
}

.size-chart th,
.size-chart td {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--grey-mid);
  text-align: left;
  padding: 0.55rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.size-chart th {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 500;
}

.size-chart td:first-child,
.size-chart th:first-child {
  color: var(--white);
  font-weight: 500;
}

.size-tip {
  font-style: italic;
  color: var(--white) !important;
}

/* Related Products */
.related-products {
  padding: var(--spacing-lg) 3rem;
  background: var(--grey-surface);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
  height: 70vh;
  min-height: 500px;
  background: var(--grey-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

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

.about-section {
  padding: var(--spacing-xl) 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.about-section p {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 300;
  color: var(--grey-light);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.about-section p strong {
  color: var(--white);
  font-weight: 500;
}

.about-pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: -0.01em;
  border-left: 2px solid var(--white);
  padding-left: 2rem;
  margin: 3rem 0;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin: var(--spacing-lg) 0;
}

.about-stat {
  background: var(--grey-surface);
  padding: 2.5rem 2rem;
  text-align: center;
}

.about-stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 0.5rem;
}

.about-stat-label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey-mid);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 5rem);
  padding-top: 5rem;
}

.contact-info {
  background: var(--grey-surface);
  padding: var(--spacing-xl) 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-item {
  margin-bottom: 3rem;
}

.contact-info-label {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 0.5rem;
}

.contact-info-value {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.6;
}

.contact-form-section {
  padding: var(--spacing-xl) 3rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.9rem 1.2rem;
  outline: none;
  transition: border-color var(--transition-fast);
  -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: rgba(255,255,255,0.4);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-select option {
  background: var(--grey-dark);
}

/* ============================================
   POLICIES PAGE
   ============================================ */
.policies-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 8rem 3rem var(--spacing-xl);
}

.policy-section {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.policy-section:last-child {
  border-bottom: none;
}

.policy-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.policy-section h3 {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin: 2rem 0 0.75rem;
}

.policy-section p,
.policy-section li {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--grey-light);
  line-height: 1.9;
  margin-bottom: 0.75rem;
}

.policy-section ul {
  padding-left: 1.5rem;
}

.policy-section li {
  list-style: disc;
  color: var(--grey-mid);
}

/* ============================================
   UTILITY
   ============================================ */
.container {
  max-width: 1400px;
  margin: 0 auto;
}

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

.text-muted {
  color: var(--grey-mid);
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mt-8 { margin-top: 4rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
/* reveal: content always visible, no animation hiding */
.reveal { }
.reveal.visible { }
.reveal-delay-1 { }
.reveal-delay-2 { }
.reveal-delay-3 { }

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  :root {
    --spacing-xl: 4rem;
    --spacing-lg: 2.5rem;
  }

  .nav-logo-img {
    height: 42px;
  }

  .nav {
    padding: 0.4rem 1.5rem;
  }

  .nav.scrolled {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: flex;
    gap: 1.2rem;
  }

  .nav-hamburger {
    display: none;
  }

  .hero-content {
    padding: 0 1.5rem 5rem;
  }

  .hero-scroll {
    right: 1.5rem;
  }

  .section {
    padding: var(--spacing-xl) 1.5rem;
  }

  .section-sm {
    padding: var(--spacing-lg) 1.5rem;
  }

  .brand-intro-inner {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .brand-intro-label {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .about-preview {
    grid-template-columns: 1fr;
  }

  .about-preview-img {
    min-height: 140px;
    padding: 1.5rem 2rem;
  }

  .about-preview-img img {
    height: 70px;
    max-width: 160px;
  }



  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-input {
    border-right: 1px solid rgba(255,255,255,0.2);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

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

  .product-page {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    position: static;
    height: auto;
  }

  .product-gallery-main {
    height: 60vw;
    min-height: 300px;
  }

  .product-details {
    padding: 2rem 1.5rem;
  }

  .contact-page {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding: 3rem 1.5rem;
  }

  .contact-form-section {
    padding: 3rem 1.5rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .section-header-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 3rem 1.5rem 2rem;
  }

  .page-header {
    padding: 7rem 1.5rem 3rem;
  }

  .policies-page {
    padding: 7rem 1.5rem 3rem;
  }

  .about-section {
    padding: 3rem 1.5rem;
  }

  .related-products {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .nav-links {
    gap: 0.9rem;
  }

  .nav-links a {
    font-size: 0.6rem;
    letter-spacing: 0.12em;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

