:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --fg-primary: #f5f0eb;
  --fg-secondary: #a89f95;
  --fg-muted: #5a544d;
  --accent: #c9a96e;
  --accent-dim: #8a7345;
  --accent-glow: rgba(201, 169, 110, 0.15);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

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

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary);
  overflow: hidden;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, var(--accent-glow) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 30%, rgba(201, 169, 110, 0.05) 0%, transparent 40%);
  animation: heroGlow 12s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes heroGlow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-3%, 2%) scale(1.05); }
}

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

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--accent);
  margin-bottom: 2.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--fg-primary);
  margin-bottom: 0;
}

.hero-title-accent {
  display: block;
  color: var(--accent);
  font-size: 0.45em;
  letter-spacing: 0.3em;
  font-weight: 600;
  margin-top: 0.5rem;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 2.5rem auto;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  font-weight: 300;
  color: var(--fg-secondary);
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ========== ETHOS ========== */
.ethos {
  padding: 8rem 2rem;
  background: var(--bg-secondary);
  position: relative;
}

.ethos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent-dim), transparent);
}

.ethos-container {
  max-width: 900px;
  margin: 0 auto;
}

.ethos-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 2rem;
}

.ethos-statement {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg-primary);
  margin-bottom: 3.5rem;
}

.ethos-statement em {
  font-style: italic;
  color: var(--accent);
}

.ethos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.ethos-block p {
  font-size: 1rem;
  color: var(--fg-secondary);
  line-height: 1.8;
}

/* ========== PILLARS ========== */
.pillars {
  padding: 8rem 2rem;
  background: var(--bg-primary);
}

.pillars-container {
  max-width: 1100px;
  margin: 0 auto;
}

.pillars-header {
  margin-bottom: 4rem;
}

.pillars-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.pillars-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--fg-primary);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--bg-tertiary);
  border: 1px solid var(--bg-tertiary);
}

.pillar {
  background: var(--bg-primary);
  padding: 2.5rem;
  transition: background 0.4s var(--ease-out);
}

.pillar:hover {
  background: var(--bg-secondary);
}

.pillar-number {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-dim);
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--fg-primary);
  margin-bottom: 0.8rem;
}

.pillar p {
  font-size: 0.9rem;
  color: var(--fg-secondary);
  line-height: 1.7;
}

/* ========== COLLECTION ========== */
.collection {
  padding: 8rem 2rem;
  background: var(--bg-secondary);
  position: relative;
}

.collection::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent-dim), transparent);
}

.collection-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.collection-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.collection-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg-primary);
  margin-bottom: 1.5rem;
}

.collection-desc {
  font-size: 1rem;
  color: var(--fg-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.collection-categories {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.category-tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  padding: 0.6rem 1.2rem;
  transition: all 0.3s var(--ease-out);
}

.category-tag:hover {
  background: var(--accent-glow);
  border-color: var(--accent);
}

.collection-visual {
  display: flex;
  justify-content: center;
}

.visual-block {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 3/4;
  background: var(--bg-tertiary);
  border: 1px solid var(--bg-tertiary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.visual-pattern {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(201, 169, 110, 0.03) 20px,
      rgba(201, 169, 110, 0.03) 21px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 20px,
      rgba(201, 169, 110, 0.03) 20px,
      rgba(201, 169, 110, 0.03) 21px
    );
}

.visual-text {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg-muted);
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

.visual-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--accent-dim);
  margin-top: 0.5rem;
}

/* ========== CLOSING ========== */
.closing {
  padding: 10rem 2rem;
  background: var(--bg-primary);
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent-dim), transparent);
}

.closing-container {
  max-width: 700px;
  margin: 0 auto;
}

.closing-quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--fg-primary);
  margin-bottom: 4rem;
}

.closing-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.closing-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--fg-primary);
}

.closing-tagline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--accent);
}

/* ========== FOOTER ========== */
.site-footer {
  padding: 2.5rem 2rem;
  background: var(--bg-primary);
  border-top: 1px solid var(--bg-tertiary);
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--fg-primary);
  letter-spacing: 0.05em;
}

.footer-year {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.footer-origin {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
}

/* ========== NAVIGATION ========== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--fg-primary);
  text-decoration: none;
}

.nav-brand-accent {
  color: var(--accent);
  margin-left: 0.15em;
}

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

.nav-link {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--fg-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--bg-primary);
  background: var(--accent);
  padding: 0.55rem 1.3rem;
  text-decoration: none;
  transition: background 0.2s var(--ease-out), opacity 0.2s;
}

.nav-cta:hover {
  background: var(--accent-dim);
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--fg-primary);
  transition: all 0.3s var(--ease-out);
}

/* Push hero down to clear fixed nav */
.hero {
  padding-top: 64px;
}

.page-hero,
.story-hero {
  padding-top: 64px;
}

/* ========== PAGE HERO ========== */
.page-hero {
  background: var(--bg-primary);
  padding: 6rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 20% 60%, var(--accent-glow) 0%, transparent 50%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.page-hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 0.9;
  color: var(--fg-primary);
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.page-hero-sub {
  font-size: 1rem;
  color: var(--fg-secondary);
  font-weight: 300;
  letter-spacing: 0.05em;
}

/* ========== GALLERY FILTERS ========== */
.gallery-filters {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--bg-tertiary);
  padding: 1.2rem 2rem;
  position: sticky;
  top: 64px;
  z-index: 90;
}

.gallery-filters-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--fg-muted);
  background: none;
  border: 1px solid var(--bg-tertiary);
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
}

.filter-btn:hover {
  color: var(--fg-secondary);
  border-color: var(--fg-muted);
}

.filter-btn.active {
  color: var(--accent);
  border-color: var(--accent-dim);
  background: var(--accent-glow);
}

/* ========== GALLERY ========== */
.gallery {
  background: var(--bg-primary);
  padding: 4rem 2rem 8rem;
}

.gallery-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.gallery-item {
  display: flex;
  flex-direction: column;
  transition: opacity 0.3s var(--ease-out);
}

.gallery-item-visual {
  aspect-ratio: 3/4;
  background: var(--bg-tertiary);
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.gallery-item-visual--gold {
  background: #0f0d08;
}

/* Abstract pattern fills for product placeholders */
.gallery-item-pattern {
  position: absolute;
  inset: 0;
}

.pattern-kente {
  background:
    repeating-linear-gradient(90deg, rgba(201,169,110,0.06) 0px, rgba(201,169,110,0.06) 2px, transparent 2px, transparent 24px),
    repeating-linear-gradient(0deg, rgba(201,169,110,0.06) 0px, rgba(201,169,110,0.06) 2px, transparent 2px, transparent 24px),
    repeating-linear-gradient(45deg, rgba(201,169,110,0.03) 0px, rgba(201,169,110,0.03) 1px, transparent 1px, transparent 12px);
}

.pattern-mud {
  background:
    radial-gradient(circle at 30% 30%, rgba(201,169,110,0.08) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(201,169,110,0.05) 0%, transparent 30%),
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.01) 10px, rgba(255,255,255,0.01) 11px);
}

.pattern-bogolan {
  background:
    repeating-linear-gradient(90deg, transparent, transparent 8px, rgba(201,169,110,0.04) 8px, rgba(201,169,110,0.04) 9px),
    repeating-linear-gradient(0deg, transparent, transparent 16px, rgba(201,169,110,0.03) 16px, rgba(201,169,110,0.03) 17px);
}

.pattern-ankara {
  background:
    repeating-conic-gradient(rgba(201,169,110,0.04) 0deg 15deg, transparent 15deg 30deg) 0 0 / 40px 40px,
    repeating-linear-gradient(135deg, rgba(201,169,110,0.02) 0px, rgba(201,169,110,0.02) 1px, transparent 1px, transparent 20px);
}

.pattern-stripe {
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 14px,
      rgba(201,169,110,0.05) 14px,
      rgba(201,169,110,0.05) 15px
    );
}

.pattern-gold {
  background:
    radial-gradient(ellipse at 50% 40%, rgba(201,169,110,0.18) 0%, transparent 60%),
    repeating-linear-gradient(45deg, rgba(201,169,110,0.04) 0px, rgba(201,169,110,0.04) 1px, transparent 1px, transparent 12px);
}

.gallery-item-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.item-category {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--accent);
  background: rgba(10,10,10,0.8);
  padding: 0.3rem 0.6rem;
  display: inline-block;
}

.item-drop {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--fg-muted);
  background: rgba(10,10,10,0.8);
  padding: 0.25rem 0.6rem;
  display: inline-block;
}

.item-coming-soon {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--fg-muted);
  background: rgba(10,10,10,0.9);
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--bg-tertiary);
}

.gallery-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.item-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg-primary);
  margin-bottom: 0.6rem;
  letter-spacing: 0.01em;
}

.item-desc {
  font-size: 0.85rem;
  color: var(--fg-secondary);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1rem;
}

.item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--bg-tertiary);
}

.item-status {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.item-status.available {
  color: var(--accent);
  cursor: pointer;
}

.item-status.available:hover {
  text-decoration: underline;
}

.item-status.exclusive {
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid var(--accent-dim);
  padding: 0.3rem 0.7rem;
}

.item-limit {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
}

/* ========== DROP NOTIFY ========== */
.drop-notify {
  padding: 8rem 2rem;
  background: var(--bg-secondary);
  position: relative;
  text-align: center;
}

.drop-notify::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent-dim), transparent);
}

.drop-notify-container {
  max-width: 580px;
  margin: 0 auto;
}

.drop-notify-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.drop-notify-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--fg-primary);
  margin-bottom: 1.5rem;
}

.drop-notify-desc {
  font-size: 0.95rem;
  color: var(--fg-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.drop-notify-form {
  width: 100%;
}

.form-row {
  display: flex;
  gap: 0;
  width: 100%;
  max-width: 440px;
  margin: 0 auto 1rem;
}

.notify-input {
  flex: 1;
  padding: 1rem 1.2rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--bg-tertiary);
  border-right: none;
  color: var(--fg-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
}

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

.notify-input:focus {
  border-color: var(--accent-dim);
}

.notify-btn {
  padding: 1rem 1.6rem;
  background: var(--accent);
  border: none;
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: background 0.2s var(--ease-out);
  white-space: nowrap;
}

.notify-btn:hover {
  background: #e0bc7a;
}

.form-message {
  font-size: 0.8rem;
  min-height: 1.4em;
  margin-top: 0.5rem;
}

.form-message--success {
  color: var(--accent);
}

.form-message--error {
  color: #e07070;
}

.drop-notify-meta {
  font-size: 0.7rem;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
  margin-top: 1rem;
}

/* ========== STORY PAGE ========== */
.story-hero {
  background: var(--bg-primary);
  padding: 7rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.story-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, var(--accent-glow) 0%, transparent 55%);
}

.story-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.story-hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.story-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg-primary);
  letter-spacing: -0.01em;
}

.story-hero-title em {
  font-style: italic;
  color: var(--accent);
}

.story-chapter {
  padding: 6rem 2rem;
  background: var(--bg-primary);
}

.story-chapter--alt {
  background: var(--bg-secondary);
  position: relative;
}

.story-chapter--alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--bg-tertiary), transparent);
}

.story-container {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 3rem;
  align-items: start;
}

.story-chapter-marker {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--bg-tertiary);
  line-height: 1;
  padding-top: 0.4rem;
  user-select: none;
}

.story-chapter-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--fg-primary);
  margin-bottom: 1.5rem;
}

.story-chapter-body p {
  font-size: 1rem;
  color: var(--fg-secondary);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.story-chapter-body p:last-child {
  margin-bottom: 0;
}

.story-pull-quote {
  padding: 6rem 2rem;
  background: var(--bg-primary);
  position: relative;
}

.story-pull-quote::before,
.story-pull-quote::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent-dim), transparent);
}

.story-pull-quote::before { top: 0; }
.story-pull-quote::after { bottom: 0; }

.pull-quote {
  max-width: 780px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--fg-primary);
  font-style: normal;
  padding-left: 3rem;
  border-left: 2px solid var(--accent-dim);
}

.pull-quote em {
  font-style: italic;
  color: var(--accent);
}

.story-values {
  padding: 7rem 2rem;
  background: var(--bg-secondary);
  position: relative;
}

.story-values::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent-dim), transparent);
}

.story-values-header {
  max-width: 780px;
  margin: 0 auto 4rem;
}

.story-values-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.story-values-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--fg-primary);
}

.story-values-grid {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
}

.story-value {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1rem;
  align-items: start;
}

.story-value-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-dim);
  padding-top: 0.15rem;
  letter-spacing: 0.05em;
}

.story-value-text {
  font-size: 0.9rem;
  color: var(--fg-secondary);
  line-height: 1.7;
}

.story-value-text strong {
  color: var(--fg-primary);
  font-weight: 500;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .ethos-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .collection-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .collection-visual {
    order: -1;
  }

  .visual-block {
    max-width: 300px;
    aspect-ratio: 1/1;
  }

  .hero-title {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .closing {
    padding: 6rem 2rem;
  }

  .footer-container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-left {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .pillars .pillar {
    padding: 2rem 1.5rem;
  }

  .collection-categories {
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.97);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--bg-tertiary);
  }

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

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

  .story-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .story-chapter-marker {
    font-size: 1.5rem;
    color: var(--accent-dim);
  }

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

  .pull-quote {
    padding-left: 1.5rem;
  }

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

  .notify-input {
    border-right: 1px solid var(--bg-tertiary);
    border-bottom: none;
  }

  .notify-btn {
    width: 100%;
    padding: 1rem;
  }
}

@media (max-width: 600px) {
  .gallery-container {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .page-hero {
    padding: 5rem 1.5rem 4rem;
  }

  .story-hero {
    padding: 5rem 1.5rem 4rem;
  }

  .story-chapter,
  .story-pull-quote,
  .story-values {
    padding: 4rem 1.5rem;
  }
}

/* ========== STREETWEAR TABS ========== */
.sw-tabs-nav {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--bg-tertiary);
  position: sticky;
  top: 64px;
  z-index: 90;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.sw-tabs-nav::-webkit-scrollbar {
  display: none;
}

.sw-tabs-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 0;
}

.sw-tab {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--fg-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  transition: color 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
  white-space: nowrap;
}

.sw-tab:hover {
  color: var(--fg-secondary);
}

.sw-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ========== STREETWEAR CONTENT ========== */
.sw-content {
  background: var(--bg-primary);
  min-height: 60vh;
}

.sw-panel {
  display: none;
}

.sw-panel.active {
  display: block;
}

/* ========== GENDER TOGGLE ========== */
.sw-gender-bar {
  background: var(--bg-primary);
  padding: 2rem 2rem 0;
  border-bottom: 1px solid var(--bg-tertiary);
}

.sw-gender-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.sw-gender-btn {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--fg-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.5rem 0;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.sw-gender-btn:hover {
  color: var(--fg-secondary);
}

.sw-gender-btn.active {
  color: var(--fg-primary);
  border-bottom-color: var(--accent-dim);
}

.sw-gender-divider {
  font-size: 0.65rem;
  color: var(--fg-muted);
  user-select: none;
}

/* ========== SECTION LABEL ========== */
.sw-section-label {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.sw-section-line {
  flex: 1;
  height: 1px;
  background: var(--bg-tertiary);
}

.sw-section-text {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--fg-muted);
  white-space: nowrap;
}

/* ========== STREETWEAR GRID ========== */
.sw-grid-wrap {
  padding: 3rem 2rem 6rem;
  max-width: 1100px;
  margin: 0 auto;
}

.sw-hidden {
  display: none;
}

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

/* Streetwear items reuse gallery-item patterns but with image support */
.sw-item {
  display: flex;
  flex-direction: column;
}

.sw-item-visual {
  aspect-ratio: 3/4;
  background: var(--bg-tertiary);
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.sw-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.sw-item-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  z-index: 2;
}

/* ========== COMING SOON PANELS ========== */
.sw-coming-panel {
  padding: 8rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.sw-coming-icon {
  font-size: 2rem;
  color: var(--accent-dim);
  line-height: 1;
}

.sw-coming-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--fg-primary);
  letter-spacing: -0.01em;
}

.sw-coming-sub {
  font-size: 0.95rem;
  color: var(--fg-secondary);
  font-weight: 300;
  max-width: 380px;
}

.sw-coming-cta {
  margin-top: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--bg-primary);
  background: var(--accent);
  padding: 0.75rem 1.8rem;
  text-decoration: none;
  transition: background 0.2s var(--ease-out);
}

.sw-coming-cta:hover {
  background: var(--accent-dim);
}

/* ========== STREETWEAR RESPONSIVE ========== */
@media (max-width: 900px) {
  .sw-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .sw-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .sw-grid-wrap {
    padding: 2rem 1.5rem 5rem;
  }

  .sw-tabs-container {
    padding: 0 1rem;
  }

  .sw-tab {
    padding: 1rem 1rem;
  }

  .sw-gender-bar {
    padding: 1.5rem 1.5rem 0;
  }
}