/* ─── Fonts ─────────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@700;800;900&family=Outfit:wght@300;400;500;600&family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap');

/* ─── CSS Variables ─────────────────────────────────────────────────────────── */
:root {
  --font-display: 'Big Shoulders Display', sans-serif;
  --font-sans: 'Outfit', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --bg-primary: #080808;
  --bg-secondary: #0b0b0b;
  --bg-card: #111111;
  --bg-dark: #060606;
  --bg-elevated: #0e0e0e;
  --text-primary: #f0ebe2;
  --text-secondary: #c8bfb2;
  --text-muted: rgba(200,191,178,0.45);
  --border-light: rgba(255,255,255,0.07);
  --border-medium: rgba(255,255,255,0.1);
  --border-strong: rgba(255,255,255,0.2);
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; outline: none; }
ul, ol { list-style: none; }

/* ─── Typography ────────────────────────────────────────────────────────────── */
.font-display { font-family: var(--font-display); }
.font-sans { font-family: var(--font-sans); }
.font-mono { font-family: var(--font-mono); }
.font-black { font-weight: 900; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.font-light { font-weight: 300; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.1; }
.leading-relaxed { line-height: 1.625; }

/* ─── Colors ────────────────────────────────────────────────────────────────── */
.bg-primary { background-color: var(--bg-primary); }
.bg-secondary { background-color: var(--bg-secondary); }
.bg-card { background-color: var(--bg-card); }
.bg-dark { background-color: var(--bg-dark); }
.bg-elevated { background-color: var(--bg-elevated); }
.bg-cream { background-color: var(--text-primary); }
.bg-whatsapp { background-color: #25D366; }
.bg-transparent { background-color: transparent; }
.bg-white-05 { background-color: rgba(255,255,255,0.05); }
.bg-white-08 { background-color: rgba(255,255,255,0.08); }
.bg-white-10 { background-color: rgba(255,255,255,0.1); }
.bg-black-60 { background-color: rgba(0,0,0,0.6); }

.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-white { color: #fff; }
.text-black { color: #080808; }
.text-muted { color: var(--text-muted); }
.text-muted-60 { color: rgba(200,191,178,0.6); }
.text-muted-50 { color: rgba(200,191,178,0.5); }
.text-muted-45 { color: rgba(200,191,178,0.45); }
.text-muted-40 { color: rgba(200,191,178,0.4); }
.text-muted-35 { color: rgba(200,191,178,0.35); }
.text-muted-30 { color: rgba(200,191,178,0.3); }
.text-muted-25 { color: rgba(200,191,178,0.25); }
.text-cream { color: var(--text-primary); }
.text-green { color: #4ade80; }

.border-light { border-color: var(--border-light); }
.border-medium { border-color: var(--border-medium); }
.border-strong { border-color: var(--border-strong); }
.border-white-05 { border-color: rgba(255,255,255,0.05); }
.border-white-07 { border-color: rgba(255,255,255,0.07); }
.border-white-10 { border-color: rgba(255,255,255,0.1); }
.border-white-15 { border-color: rgba(255,255,255,0.15); }
.border-white-20 { border-color: rgba(255,255,255,0.2); }
.border-white-25 { border-color: rgba(255,255,255,0.25); }
.border-white-30 { border-color: rgba(255,255,255,0.3); }

/* ─── Spacing ───────────────────────────────────────────────────────────────── */
.container { max-width: 1440px; margin-left: auto; margin-right: auto; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-7 { padding-top: 1.75rem; padding-bottom: 1.75rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-24-5 { padding-top: 6rem; padding-bottom: 6rem; }
.pt-5 { padding-top: 1.25rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-7 { padding-top: 1.75rem; }
.pt-8 { padding-top: 2rem; }
.pt-10 { padding-top: 2.5rem; }
.pt-16 { padding-top: 4rem; }
.pt-36 { padding-top: 9rem; }
.pb-5 { padding-bottom: 1.25rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-10 { padding-bottom: 2.5rem; }
.pb-20 { padding-bottom: 5rem; }
.pb-24 { padding-bottom: 6rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-7 { padding: 1.75rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-7 { margin-bottom: 1.75rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.mt-24 { margin-top: 6rem; }

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }

/* ─── Layout ────────────────────────────────────────────────────────────────── */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.block { display: block; }
.hidden { display: none; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.flex-1 { flex: 1; }
.shrink-0 { flex-shrink: 0; }
.grow { flex-grow: 1; }
.self-start { align-self: flex-start; }

.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid-cols-6 { grid-template-columns: repeat(6, 1fr); }

.w-full { width: 100%; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }
.min-h-70vh { min-height: 70vh; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-xs { max-width: 20rem; }

/* ─── Position ──────────────────────────────────────────────────────────────── */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-10 { z-index: 10; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* ─── Overflow ──────────────────────────────────────────────────────────────── */
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-y-auto { overflow-y: auto; }

/* ─── Borders ───────────────────────────────────────────────────────────────── */
.border { border: 1px solid; }
.border-t { border-top: 1px solid; }
.border-b { border-bottom: 1px solid; }
.border-l { border-left: 1px solid; }
.border-r { border-right: 1px solid; }
.border-0 { border: none; }
.border-white-05 { border-color: rgba(255,255,255,0.05); }
.border-white-07 { border-color: rgba(255,255,255,0.07); }
.border-white-10 { border-color: rgba(255,255,255,0.1); }
.border-white-15 { border-color: rgba(255,255,255,0.15); }
.border-white-20 { border-color: rgba(255,255,255,0.2); }
.border-white-25 { border-color: rgba(255,255,255,0.25); }
.border-white-30 { border-color: rgba(255,255,255,0.3); }
.border-cream { border-color: var(--text-primary); }

/* ─── Text Styles ───────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }

.whitespace-nowrap { white-space: nowrap; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.select-none { user-select: none; }
.appearance-none { appearance: none; }
.resize-none { resize: none; }
.cursor-pointer { cursor: pointer; }

/* ─── Object Fit ────────────────────────────────────────────────────────────── */
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.object-center { object-position: center; }
.object-top { object-position: top; }

/* ─── Transitions ───────────────────────────────────────────────────────────── */
.transition-colors { transition: color 0.2s, background-color 0.2s, border-color 0.2s; }
.transition-transform { transition: transform 0.3s; }
.transition-opacity { transition: opacity 0.3s; }
.transition-all { transition: all 0.3s; }
.duration-200 { transition-duration: 0.2s; }
.duration-300 { transition-duration: 0.3s; }
.duration-500 { transition-duration: 0.5s; }
.duration-700 { transition-duration: 0.7s; }
.ease-out { transition-timing-function: ease-out; }

/* ─── Opacity ────────────────────────────────────────────────────────────────── */
.opacity-0 { opacity: 0; }
.opacity-30 { opacity: 0.3; }
.opacity-60 { opacity: 0.6; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }

/* ─── Aspect Ratio ──────────────────────────────────────────────────────────── */
.aspect-3-4 { aspect-ratio: 3/4; }
.aspect-4-5 { aspect-ratio: 4/5; }
.aspect-square { aspect-ratio: 1; }

/* ─── Animations ────────────────────────────────────────────────────────────── */
@keyframes nmsd-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.nmsd-marquee {
  animation: nmsd-marquee 30s linear infinite;
}
.nmsd-marquee:hover {
  animation-play-state: paused;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.45); }
  50% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
}
.wa-pulse {
  animation: wa-pulse 2.2s ease-in-out infinite;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.animate-fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}
.animate-fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}
.animate-scale-in {
  opacity: 0;
  animation: scaleIn 0.6s ease-out forwards;
}
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-700 { animation-delay: 0.7s; }
.delay-800 { animation-delay: 0.8s; }
.delay-1000 { animation-delay: 1s; }
.delay-1500 { animation-delay: 1.5s; }
.delay-2000 { animation-delay: 2s; }

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ─── Scroll Animation ──────────────────────────────────────────────────────── */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease-out, transform 0.65s ease-out;
}
.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Gradient Overlays ─────────────────────────────────────────────────────── */
.gradient-to-t {
  background: linear-gradient(to top, rgba(8,8,8,0.9), rgba(8,8,8,0.2), transparent);
}
.gradient-hero {
  background: linear-gradient(to top, #080808 0%, rgba(8,8,8,0.55) 50%, rgba(8,8,8,0.15) 100%),
              linear-gradient(to right, rgba(8,8,8,0.75) 0%, rgba(8,8,8,0.2) 50%, transparent 100%);
}
.gradient-dark {
  background: linear-gradient(to top, #080808, rgba(8,8,8,0.6), transparent);
}
.gradient-card {
  background: linear-gradient(to top, rgba(8,8,8,0.9), rgba(8,8,8,0.2), transparent);
}

/* ─── Glass ──────────────────────────────────────────────────────────────────── */
.glass {
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.glass-light {
  background: rgba(8,8,8,0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* ─── Product Cards ──────────────────────────────────────────────────────────── */
.product-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(4px);
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease-out;
}
.product-card:hover .product-card-overlay {
  transform: translateY(0);
}
.product-card:hover .product-card-img {
  transform: scale(1.05);
}
.product-card-img {
  transition: transform 0.7s ease-out;
}

.collection-card:hover .collection-card-img,
.drop-card:hover .drop-card-img {
  transform: scale(1.05);
}
.collection-card-img,
.drop-card-img {
  transition: transform 0.7s ease-out;
}

.social-grid-item:hover img {
  transform: scale(1.08);
}
.social-grid-item img {
  transition: transform 0.5s ease-out;
}

/* ─── Buttons ────────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--text-primary);
  color: var(--bg-primary);
  padding: 1rem 2.25rem;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.35em;
  font-weight: 700;
  transition: background-color 0.2s;
}
.btn-primary:hover { background-color: #fff; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--text-primary);
  padding: 1rem 2.25rem;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.35em;
  transition: all 0.2s;
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,0.5);
  background-color: rgba(255,255,255,0.05);
}

/* ─── Size Selector ──────────────────────────────────────────────────────────── */
.size-btn {
  font-family: var(--font-mono);
  font-size: 8px;
  padding: 0.375rem 0.625rem;
  letter-spacing: 0.2em;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(200,191,178,0.7);
  transition: all 0.15s;
}
.size-btn:hover { border-color: rgba(255,255,255,0.4); }
.size-btn.active {
  border-color: var(--text-primary);
  background-color: var(--text-primary);
  color: var(--bg-primary);
}

/* ─── Tag Badge ──────────────────────────────────────────────────────────────── */
.tag-badge {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.3em;
  background-color: var(--text-primary);
  color: var(--bg-primary);
  padding: 0.25rem 0.625rem;
}

/* ─── Cart Qty ───────────────────────────────────────────────────────────────── */
.qty-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(200,191,178,0.6);
  transition: all 0.15s;
}
.qty-btn:hover {
  color: #fff;
  background-color: rgba(255,255,255,0.05);
}
.qty-value {
  width: 36px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 14px;
  color: #fff;
  user-select: none;
}

/* ─── Accordion ──────────────────────────────────────────────────────────────── */
.accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  text-align: left;
  transition: color 0.2s;
}
.accordion-btn:hover span { color: #fff; }
.accordion-content {
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.accordion-content-inner { padding-bottom: 1.5rem; }

/* ─── Forms ──────────────────────────────────────────────────────────────────── */
.form-input {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-primary);
  padding: 1rem 1.25rem;
  font-size: 14px;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: rgba(255,255,255,0.3); }
.form-input::placeholder { color: rgba(200,191,178,0.25); }

.form-select {
  width: 100%;
  background-color: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-primary);
  padding: 1rem 1.25rem;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  appearance: none;
  cursor: pointer;
}
.form-select:focus { border-color: rgba(255,255,255,0.3); }

/* ─── Mobile Menu ────────────────────────────────────────────────────────────── */
.mobile-menu {
  background-color: #0d0d0d;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 0.5rem 1.5rem 1.5rem;
}
.mobile-menu a, .mobile-menu button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: var(--font-mono);
  font-size: 14px;
  color: rgba(200,191,178,0.7);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  letter-spacing: 0.25em;
  transition: color 0.2s;
}
.mobile-menu a:hover, .mobile-menu button:hover { color: #fff; }

/* ─── WhatsApp Widget ────────────────────────────────────────────────────────── */
.wa-widget-btn {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 50;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: background-color 0.2s;
}
.wa-widget-btn:hover { background-color: #20c05c; }

.wa-bubble {
  position: fixed;
  bottom: 6rem;
  right: 1.25rem;
  z-index: 50;
  width: 16rem;
  background-color: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

/* ─── Writing Mode ───────────────────────────────────────────────────────────── */
.writing-mode-vertical {
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* ─── Hover Effects ──────────────────────────────────────────────────────────── */
.hover-scale-108:hover { transform: scale(1.08); }
.hover-scale-105:hover { transform: scale(1.05); }
.hover-brightness:hover { filter: brightness(1.1); }

/* ─── Line Clamp ─────────────────────────────────────────────────────────────── */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ─── Responsive ────────────────────────────────────────────────────────────── */
@media (min-width: 640px) {
  .sm-block { display: block; }
  .sm-hidden { display: none; }
  .sm-flex { display: flex; }
  .sm-grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .sm-grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .sm-flex-row { flex-direction: row; }
  .sm-items-center { align-items: center; }
  .sm-text-left { text-align: left; }
}

@media (min-width: 1024px) {
  .lg-block { display: block; }
  .lg-hidden { display: none; }
  .lg-flex { display: flex; }
  .lg-inline-flex { display: inline-flex; }
  .lg-grid { display: grid; }
  .lg-grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .lg-grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg-grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .lg-grid-cols-6 { grid-template-columns: repeat(6, 1fr); }
  .lg-grid-cols-1fr-380px { grid-template-columns: 1fr 380px; }
  .lg-grid-cols-320px-1fr { grid-template-columns: 320px 1fr; }
  .lg-grid-cols-1fr-1_5fr { grid-template-columns: 1fr 1.5fr; }
  .lg-gap-4 { gap: 1rem; }
  .lg-gap-8 { gap: 2rem; }
  .lg-gap-12 { gap: 3rem; }
  .lg-gap-16 { gap: 4rem; }
  .lg-gap-20 { gap: 5rem; }
  .lg-gap-24 { gap: 6rem; }
  .lg-px-14 { padding-left: 3.5rem; padding-right: 3.5rem; }
  .lg-py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .lg-py-28 { padding-top: 7rem; padding-bottom: 7rem; }
  .lg-py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .lg-py-36 { padding-top: 9rem; padding-bottom: 9rem; }
  .lg-pb-32 { padding-bottom: 8rem; }
  .lg-pt-36 { padding-top: 9rem; }
  .lg-mb-0 { margin-bottom: 0; }
  .lg-mb-20 { margin-bottom: 5rem; }
  .lg-mt-0 { margin-top: 0; }
  .lg-items-start { align-items: flex-start; }
  .lg-sticky { position: sticky; }
  .lg-top-88px { top: 88px; }
  .lg-h-72 { height: 18rem; }
  .lg-h-90vh { height: 90vh; }
  .lg-w-24 { width: 6rem; }
  .lg-w-28 { width: 7rem; }
  .lg-h-28 { height: 7rem; }
  .lg-min-h-500px { min-height: 500px; }
  .lg-text-lg { font-size: 1.125rem; }
  .lg-text-3xl { font-size: 1.875rem; }
  .lg-text-4xl { font-size: 2.25rem; }
  .lg-text-5xl { font-size: 3rem; }
}

@media (max-width: 1023px) {
  .max-lg-hidden { display: none; }
}

/* ─── Min height helpers ─────────────────────────────────────────────────────── */
.min-h-400px { min-height: 400px; }
.min-h-480px { min-height: 480px; }
.h-48 { height: 12rem; }
.h-64 { height: 16rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-72 { width: 18rem; }
.w-80 { width: 20rem; }
.w-sm-80 { max-width: 20rem; }

/* ─── Scrollbar ─────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.2); }

/* ─── Additional Sizing Classes ────────────────────────────────────────────── */
.text-\[8px\] { font-size: 8px; }
.text-\[9px\] { font-size: 9px; }
.text-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }
.text-\[12px\] { font-size: 12px; }
.text-\[13px\] { font-size: 13px; }
.text-\[14px\] { font-size: 14px; }
.text-\[28px\] { font-size: 28px; }
.text-\[clamp\(3\.8rem\,\s*12vw\,\s*11rem\)\] { font-size: clamp(3.8rem, 12vw, 11rem); }

.py-\[2\.5\] { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-7 { padding-left: 1.75rem; padding-right: 1.75rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.px-14 { padding-left: 3.5rem; padding-right: 3.5rem; }
.pr-6 { padding-right: 1.5rem; }
.pr-8 { padding-right: 2rem; }
.pl-4 { padding-left: 1rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-3 { padding-top: 0.75rem; }
.pt-4 { padding-top: 1rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-24 { padding-bottom: 6rem; }

.top-2 { top: 0.5rem; }
.top-3 { top: 0.75rem; }
.top-6 { top: 1.5rem; }
.top-\[72px\] { top: 72px; }
.bottom-6 { bottom: 1.5rem; }
.bottom-10 { bottom: 2.5rem; }
.bottom-24 { bottom: 6rem; }
.left-6 { left: 1.5rem; }
.right-3 { right: 0.75rem; }
.right-5 { right: 1.25rem; }
.right-6 { right: 1.5rem; }
.right-14 { right: 3.5rem; }

.h-\[72px\] { height: 72px; }
.h-\[500px\] { height: 500px; }
.h-4 { height: 1rem; }
.h-8 { height: 2rem; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.w-3 { width: 0.75rem; }
.w-4 { width: 1rem; }
.w-7 { width: 1.75rem; }
.w-8 { width: 2rem; }
.w-9 { width: 2.25rem; }
.w-10 { width: 2.5rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-28 { width: 7rem; }
.w-32 { width: 8rem; }
.w-\[220px\] { width: 220px; }
.w-px { width: 1px; }
.max-w-\[220px\] { max-width: 220px; }
.max-w-xs { max-width: 20rem; }

.min-h-\[400px\] { min-height: 400px; }
.min-h-\[480px\] { min-height: 480px; }
.min-h-\[70vh\] { min-height: 70vh; }

.mx-auto { margin-left: auto; margin-right: auto; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.mr-2 { margin-right: 0.5rem; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-20 { margin-top: 5rem; }
.mt-24 { margin-top: 6rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-7 { margin-bottom: 1.75rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mb-16 { margin-bottom: 4rem; }

.-top-2 { top: -0.5rem; }
.-right-2 { right: -0.5rem; }

.rounded-full { border-radius: 9999px; }

/* ─── Color utilities with opacity ─────────────────────────────────────────── */
.text-\[\#f0ebe2\] { color: #f0ebe2; }
.text-\[\#080808\] { color: #080808; }
.text-\[\#c8bfb2\] { color: #c8bfb2; }
.text-\[\#c8bfb2\]\/70 { color: rgba(200,191,178,0.7); }
.text-\[\#c8bfb2\]\/60 { color: rgba(200,191,178,0.6); }
.text-\[\#c8bfb2\]\/50 { color: rgba(200,191,178,0.5); }
.text-\[\#c8bfb2\]\/45 { color: rgba(200,191,178,0.45); }
.text-\[\#c8bfb2\]\/40 { color: rgba(200,191,178,0.4); }
.text-\[\#c8bfb2\]\/35 { color: rgba(200,191,178,0.35); }
.text-\[\#c8bfb2\]\/30 { color: rgba(200,191,178,0.3); }
.text-\[\#c8bfb2\]\/25 { color: rgba(200,191,178,0.25); }
.text-\[\#c8bfb2\]\/20 { color: rgba(200,191,178,0.2); }
.text-\[\#25D366\] { color: #25D366; }
.text-\[\#f0ebe2\]\/70 { color: rgba(240,235,226,0.7); }
.text-\[\#f0ebe2\]\/80 { color: rgba(240,235,226,0.8); }
.text-\[\#f0ebe2\]\/85 { color: rgba(240,235,226,0.85); }
.text-\[\#f0ebe2\]\/90 { color: rgba(240,235,226,0.9); }
.text-\[\#080808\]\/50 { color: rgba(8,8,8,0.5); }
.text-green-400 { color: #4ade80; }

.bg-\[\#080808\] { background-color: #080808; }
.bg-\[\#0b0b0b\] { background-color: #0b0b0b; }
.bg-\[\#0e0e0e\] { background-color: #0e0e0e; }
.bg-\[\#111111\] { background-color: #111111; }
.bg-\[\#060606\] { background-color: #060606; }
.bg-\[\#f0ebe2\] { background-color: #f0ebe2; }
.bg-\[\#25D366\] { background-color: #25D366; }
.bg-\[\#1a1a1a\] { background-color: #1a1a1a; }
.bg-\[\#f0ebe2\]\/5 { background-color: rgba(240,235,226,0.05); }
.bg-\[\#080808\]\/60 { background-color: rgba(8,8,8,0.6); }
.bg-\[\#080808\]\/70 { background-color: rgba(8,8,8,0.7); }
.bg-\[\#080808\]\/80 { background-color: rgba(8,8,8,0.8); }
.bg-\[\#080808\]\/96 { background-color: rgba(8,8,8,0.96); }
.bg-\[\#080808\]\/0 { background-color: rgba(8,8,8,0); }
.bg-white\/5 { background-color: rgba(255,255,255,0.05); }
.bg-white\/8 { background-color: rgba(255,255,255,0.08); }
.bg-white\/10 { background-color: rgba(255,255,255,0.1); }
.bg-white\/20 { background-color: rgba(255,255,255,0.2); }

.border-\[\#f0ebe2\] { border-color: #f0ebe2; }
.border-\[\#080808\]\/30 { border-color: rgba(8,8,8,0.3); }
.border-white\/5 { border-color: rgba(255,255,255,0.05); }
.border-white\/7 { border-color: rgba(255,255,255,0.07); }
.border-white\/10 { border-color: rgba(255,255,255,0.1); }
.border-white\/15 { border-color: rgba(255,255,255,0.15); }
.border-white\/20 { border-color: rgba(255,255,255,0.2); }
.border-white\/25 { border-color: rgba(255,255,255,0.25); }
.border-white\/30 { border-color: rgba(255,255,255,0.3); }

.hover\:bg-\[\#080808\]\/80:hover { background-color: rgba(8,8,8,0.8); }
.hover\:bg-\[\#080808\]\/15:hover { background-color: rgba(8,8,8,0.15); }
.hover\:bg-white:hover { background-color: #fff; }
.hover\:bg-white\/5:hover { background-color: rgba(255,255,255,0.05); }
.hover\:bg-white\/15:hover { background-color: rgba(255,255,255,0.15); }
.hover\:bg-\[\#20c05c\]:hover { background-color: #20c05c; }
.hover\:bg-\[\#1a1a1a\]:hover { background-color: #1a1a1a; }

.hover\:text-white:hover { color: #fff; }
.hover\:text-\[\#f0ebe2\]\/60:hover { color: rgba(240,235,226,0.6); }
.hover\:text-\[\#f0ebe2\]\/70:hover { color: rgba(240,235,226,0.7); }
.hover\:text-\[\#c8bfb2\]\/50:hover { color: rgba(200,191,178,0.5); }

.hover\:border-white\/30:hover { border-color: rgba(255,255,255,0.3); }
.hover\:border-white\/40:hover { border-color: rgba(255,255,255,0.4); }
.hover\:border-white\/50:hover { border-color: rgba(255,255,255,0.5); }
.hover\:border-\[\#080808\]:hover { border-color: #080808; }
.hover\:border-\[\#f0ebe2\]\/50:hover { border-color: rgba(240,235,226,0.5); }

.hover\:scale-108:hover { transform: scale(1.08); }
.group:hover .group-hover\:translate-x-1 { transform: translateX(0.25rem); }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:bg-\[\#080808\]\/40 { background-color: rgba(8,8,8,0.4); }

/* ─── Grid columns with arbitrary values ───────────────────────────────────── */
.grid-cols-\[1fr_auto_auto\] { grid-template-columns: 1fr auto auto; }
.grid-cols-\[auto_1fr\] { grid-template-columns: auto 1fr; }
.grid-cols-\[auto_1fr_auto_auto\] { grid-template-columns: auto 1fr auto auto; }

@media (min-width: 1024px) {
  .lg\:grid-cols-\[1fr_380px\] { grid-template-columns: 1fr 380px; }
  .lg\:grid-cols-\[320px_1fr\] { grid-template-columns: 320px 1fr; }
  .lg\:grid-cols-\[1fr_1\.5fr\] { grid-template-columns: 1fr 1.5fr; }
  .lg\:grid-cols-\[auto_1fr_auto_auto\] { grid-template-columns: auto 1fr auto auto; }
  .lg\:h-\[500px\] { height: 500px; }
  .lg\:h-\[90vh\] { height: 90vh; }
  .lg\:top-\[88px\] { top: 88px; }
  .lg\:block { display: block; }
  .lg\:hidden { display: none; }
  .lg\:flex { display: flex; }
  .lg\:inline-flex { display: inline-flex; }
  .lg\:grid { display: grid; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .lg\:grid-cols-6 { grid-template-columns: repeat(6, 1fr); }
  .lg\:gap-4 { gap: 1rem; }
  .lg\:gap-6 { gap: 1.5rem; }
  .lg\:gap-8 { gap: 2rem; }
  .lg\:gap-12 { gap: 3rem; }
  .lg\:gap-16 { gap: 4rem; }
  .lg\:gap-20 { gap: 5rem; }
  .lg\:gap-24 { gap: 6rem; }
  .lg\:px-14 { padding-left: 3.5rem; padding-right: 3.5rem; }
  .lg\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .lg\:py-28 { padding-top: 7rem; padding-bottom: 7rem; }
  .lg\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .lg\:py-36 { padding-top: 9rem; padding-bottom: 9rem; }
  .lg\:pb-32 { padding-bottom: 8rem; }
  .lg\:pt-36 { padding-top: 9rem; }
  .lg\:mb-0 { margin-bottom: 0; }
  .lg\:mb-20 { margin-bottom: 5rem; }
  .lg\:mt-0 { margin-top: 0; }
  .lg\:items-start { align-items: flex-start; }
  .lg\:sticky { position: sticky; }
  .lg\:w-24 { width: 6rem; }
  .lg\:w-28 { width: 7rem; }
  .lg\:h-28 { height: 7rem; }
  .lg\:h-72 { height: 18rem; }
  .lg\:text-lg { font-size: 1.125rem; }
  .lg\:text-xl { font-size: 1.25rem; }
  .lg\:text-3xl { font-size: 1.875rem; }
  .lg\:text-4xl { font-size: 2.25rem; }
  .lg\:text-5xl { font-size: 3rem; }
  .lg\:flex-col { flex-direction: column; }
}

@media (min-width: 640px) {
  .sm\:block { display: block; }
  .sm\:hidden { display: none; }
  .sm\:flex { display: flex; }
  .sm\:grid { display: grid; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .sm\:flex-row { flex-direction: row; }
  .sm\:items-center { align-items: center; }
  .sm\:text-left { text-align: left; }
  .sm\:w-80 { width: 20rem; }
}

/* ─── Clamp font-size ──────────────────────────────────────────────────────── */
.text-hero { font-size: clamp(3.8rem, 12vw, 11rem); }
.text-section { font-size: clamp(2.5rem, 7vw, 6rem); }
.text-section-lg { font-size: clamp(2.8rem, 8vw, 7rem); }
.text-section-sm { font-size: clamp(2rem, 5vw, 4rem); }
.text-section-xs { font-size: clamp(2rem, 5vw, 4.5rem); }
.text-big { font-size: clamp(3rem, 8vw, 7rem); }
.text-medium { font-size: clamp(2.8rem, 8vw, 7rem); }

/* ─── Gradient: text overlay with backdrop ─────────────────────────────────── */
.backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }

.bg-gradient-to-t { background: linear-gradient(to top, rgba(8,8,8,0.9), rgba(8,8,8,0.2), transparent); }
.bg-gradient-to-t-from-\[\\#080808\]\/90 { 
  background: linear-gradient(to top, rgba(8,8,8,0.9), rgba(8,8,8,0.2), transparent); 
}
.bg-gradient-hero {
  background: linear-gradient(to top, #080808 0%, rgba(8,8,8,0.55) 50%, rgba(8,8,8,0.15) 100%),
              linear-gradient(to right, rgba(8,8,8,0.75) 0%, rgba(8,8,8,0.2) 50%, transparent 100%);
}

/* ─── Tracking overrides ───────────────────────────────────────────────────── */
.tracking-\[0\.05em\] { letter-spacing: 0.05em; }
.tracking-\[0\.1em\] { letter-spacing: 0.1em; }
.tracking-\[0\.15em\] { letter-spacing: 0.15em; }
.tracking-\[0\.18em\] { letter-spacing: 0.18em; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.tracking-\[0\.25em\] { letter-spacing: 0.25em; }
.tracking-\[0\.3em\] { letter-spacing: 0.3em; }
.tracking-\[0\.35em\] { letter-spacing: 0.35em; }
.tracking-\[0\.45em\] { letter-spacing: 0.45em; }
.tracking-\[0\.5em\] { letter-spacing: 0.5em; }
.tracking-\[0\.55em\] { letter-spacing: 0.55em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-tight { letter-spacing: -0.025em; }

/* ─── Gap with arbitrary values ────────────────────────────────────────────── */
.gap-\[2px\] { gap: 2px; }
.gap-1\.5 { gap: 0.375rem; }
.gap-2\.5 { gap: 0.625rem; }

/* ─── Aspect ratio ─────────────────────────────────────────────────────────── */
.aspect-\[3\/4\] { aspect-ratio: 3/4; }
.aspect-\[4\/5\] { aspect-ratio: 4/5; }
.aspect-square { aspect-ratio: 1; }

/* ─── Shadow ────────────────────────────────────────────────────────────────── */
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.4); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.3); }

/* ─── Space (vertical stack) ───────────────────────────────────────────────── */
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

/* ─── Grid template helpers ────────────────────────────────────────────────── */
.grid-cols-\[auto_1fr\] { grid-template-columns: auto 1fr; }
.grid-cols-\[1fr_auto_auto\] { grid-template-columns: 1fr auto auto; }
.grid-cols-\[auto_1fr_auto_auto\] { grid-template-columns: auto 1fr auto auto; }

/* ─── Line clamp ────────────────────────────────────────────────────────────── */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ─── Transform utilities ──────────────────────────────────────────────────── */
.rotate-180 { transform: rotate(180deg); }

/* ─── Flex gap overrides for pseudo-space ──────────────────────────────────── */
.\!gap-1 { gap: 0.25rem !important; }

/* ─── Additional border radius ─────────────────────────────────────────────── */
.rounded-sm { border-radius: 2px; }
.rounded { border-radius: 4px; }
.rounded-lg { border-radius: 8px; }
.rounded-xl { border-radius: 12px; }
.rounded-\[4px\] { border-radius: 4px; }

/* ─── Additional font sizes ────────────────────────────────────────────────── */
.text-\[20px\] { font-size: 20px; }
.text-\[22px\] { font-size: 22px; }
.text-\[24px\] { font-size: 24px; }
.text-\[26px\] { font-size: 26px; }
.text-\[clamp\(2\.5rem\,\s*7vw\,\s*6rem\)\] { font-size: clamp(2.5rem, 7vw, 6rem); }
.text-\[clamp\(2\.8rem\,\s*8vw\,\s*7rem\)\] { font-size: clamp(2.8rem, 8vw, 7rem); }
.text-\[clamp\(3rem\,\s*8vw\,\s*7rem\)\] { font-size: clamp(3rem, 8vw, 7rem); }
.text-\[clamp\(2rem\,\s*5vw\,\s*4rem\)\] { font-size: clamp(2rem, 5vw, 4rem); }
.text-\[clamp\(2rem\,\s*5vw\,\s*4\.5rem\)\] { font-size: clamp(2rem, 5vw, 4.5rem); }

/* ─── Additional gap values ────────────────────────────────────────────────── */
.gap-\[2px\] { gap: 2px; }
.gap-1\.5 { gap: 0.375rem; }
.gap-2\.5 { gap: 0.625rem; }

/* ─── Button reset for inline forms ────────────────────────────────────────── */
.btn-subscribe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #f0ebe2;
  color: #080808;
  padding: 1rem 2rem;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  font-weight: 700;
  white-space: nowrap;
  transition: background-color 0.2s;
}
.btn-subscribe:hover { background-color: #fff; }
