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

:root {
  --bg: #0d0d0d;
  --bg-alt: #141414;
  --bg-card: #1a1a1a;
  --fg: #f5f0e8;
  --fg-muted: #8a8578;
  --accent: #c8a96e;
  --accent-dim: rgba(200,169,110,0.15);
  --border: rgba(245,240,232,0.08);
  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--fg); font-family: var(--font-body); font-weight: 300; line-height: 1.5; -webkit-font-smoothing: antialiased; }

::selection { background: var(--accent); color: var(--bg); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 40px;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1400px; margin: 0 auto; }
.nav-brand { font-family: var(--font-display); font-size: 18px; letter-spacing: 0.12em; }
.nav-tag {
  display: inline-block; margin-left: 10px; font-size: 10px; letter-spacing: 0.15em;
  background: var(--accent-dim); color: var(--accent); padding: 2px 8px; border-radius: 2px;
  vertical-align: middle; font-family: var(--font-body);
}
.nav-sub { font-size: 11px; letter-spacing: 0.2em; color: var(--fg-muted); }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-link { font-size: 11px; letter-spacing: 0.2em; color: var(--fg-muted); text-decoration: none; transition: color 0.2s; }
.nav-link:hover { color: var(--accent); }

/* ===== EVENTS PAGE ===== */
.events-page { padding-top: 80px; min-height: 100vh; }
.events-header { padding: 60px 40px 40px; max-width: 1400px; margin: 0 auto; }
.events-title { font-family: var(--font-display); font-size: 72px; letter-spacing: 0.05em; line-height: 1; margin-bottom: 8px; }
.events-subtitle { font-size: 13px; color: var(--fg-muted); letter-spacing: 0.2em; }
.events-layout { max-width: 1400px; margin: 0 auto; padding: 0 40px 80px; display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.events-list { display: flex; flex-direction: column; gap: 2px; }
.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  transition: border-color 0.2s;
}
.event-card:hover { border-color: rgba(200,169,110,0.3); }
.event-type-badge {
  font-size: 9px; letter-spacing: 0.2em; font-weight: 500;
  padding: 4px 10px; border-radius: 2px;
  white-space: nowrap;
}
.badge-pop-up { background: var(--accent-dim); color: var(--accent); }
.badge-smoke_session { background: rgba(100,180,100,0.12); color: #7ab87a; }
.badge-car_meet { background: rgba(80,130,200,0.12); color: #7ab0d4; }
.event-info { display: flex; flex-direction: column; gap: 4px; }
.event-name { font-size: 16px; font-weight: 500; color: var(--fg); }
.event-meta { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.event-meta span { font-size: 12px; color: var(--fg-muted); }
.event-rsvp { text-align: right; }
.rsvp-label { font-size: 9px; letter-spacing: 0.2em; color: var(--fg-muted); display: block; margin-bottom: 4px; }
.rsvp-count { font-family: var(--font-display); font-size: 28px; color: var(--accent); line-height: 1; }
.events-add-panel { position: sticky; top: 100px; }
.add-panel { background: var(--bg-card); border: 1px solid var(--border); padding: 28px; }
.add-panel-title { font-family: var(--font-display); font-size: 20px; letter-spacing: 0.08em; margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-label { font-size: 10px; letter-spacing: 0.2em; color: var(--fg-muted); display: block; margin-bottom: 6px; }
.form-input, .form-select, .form-datetime {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus, .form-select:focus, .form-datetime:focus { border-color: var(--accent); }
.form-select { cursor: pointer; }
.btn-add {
  width: 100%;
  background: var(--accent);
  color: var(--bg);
  border: none;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.12em;
  padding: 14px;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 8px;
}
.btn-add:hover { opacity: 0.85; }
.form-error { font-size: 11px; color: #e07070; margin-top: 4px; display: none; }
.form-success { font-size: 12px; color: #7ab87a; margin-top: 8px; display: none; }
.events-empty { text-align: center; padding: 60px; color: var(--fg-muted); font-size: 14px; letter-spacing: 0.15em; }

@media (max-width: 900px) {
  .events-layout { grid-template-columns: 1fr; }
  .events-add-panel { position: static; }
  .events-title { font-size: 48px; }
  .event-card { grid-template-columns: auto 1fr; }
  .event-rsvp { display: none; }
}
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end; padding: 0 40px 80px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245,240,232,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,240,232,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 30% 50%, black 0%, transparent 70%);
}
.hero-glow {
  position: absolute; top: 20%; left: -10%; width: 60%; height: 60%;
  background: radial-gradient(ellipse, rgba(200,169,110,0.08) 0%, transparent 70%);
  filter: blur(80px);
}
.hero-geo-1 {
  position: absolute; bottom: 15%; right: 8%; width: 320px; height: 320px;
  border: 1px solid rgba(200,169,110,0.12);
  transform: rotate(45deg);
}
.hero-geo-2 {
  position: absolute; bottom: 22%; right: 12%; width: 220px; height: 220px;
  border: 1px solid rgba(200,169,110,0.08);
  transform: rotate(45deg);
}
.hero-geo-3 {
  position: absolute; top: 30%; right: 15%; width: 80px; height: 80px;
  border: 1px solid rgba(200,169,110,0.2);
  background: rgba(200,169,110,0.04);
}
.hero-content { position: relative; z-index: 2; max-width: 1400px; margin: 0 auto; width: 100%; }
.hero-eyebrow {
  font-size: 11px; letter-spacing: 0.3em; color: var(--accent); margin-bottom: 24px;
  font-weight: 500; text-transform: uppercase;
}
.hero-headline {
  font-family: var(--font-display); font-size: clamp(100px, 18vw, 220px);
  line-height: 0.88; letter-spacing: -0.01em; color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 16px; color: var(--fg-muted); margin-bottom: 32px;
  line-height: 1.7; max-width: 340px;
}
.hero-tags { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-tags span {
  font-size: 10px; letter-spacing: 0.2em; color: var(--fg-muted);
  border: 1px solid var(--border); padding: 5px 12px; border-radius: 2px;
}
.hero-block {
  position: absolute; right: 60px; bottom: 80px; z-index: 2;
  display: flex; flex-direction: column; align-items: flex-end; gap: 6px;
}
.hero-block-label { font-size: 10px; letter-spacing: 0.3em; color: var(--accent); }
.hero-block-num { font-family: var(--font-display); font-size: 80px; line-height: 1; color: var(--fg); }
.hero-block-line { width: 40px; height: 1px; background: var(--accent); }
.hero-block-city { font-size: 11px; letter-spacing: 0.25em; color: var(--fg-muted); }

/* ===== MANIFESTO ===== */
.manifesto {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 40px;
}
.manifesto-inner { max-width: 1400px; margin: 0 auto; }
.manifesto-label {
  font-size: 10px; letter-spacing: 0.4em; color: var(--accent); margin-bottom: 40px;
  font-weight: 500;
}
.manifesto-quote {
  border-left: 2px solid var(--accent);
  padding-left: 32px;
  margin-bottom: 80px;
  max-width: 700px;
}
.manifesto-quote p {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.15;
  letter-spacing: 0.01em;
}
.manifesto-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.pillar {
  background: var(--bg-alt);
  padding: 40px 32px;
  display: flex; flex-direction: column; gap: 14px;
}
.pillar-icon { font-size: 10px; color: var(--accent); }
.pillar-title { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.08em; }
.pillar-text { font-size: 13px; color: var(--fg-muted); line-height: 1.6; }

/* ===== COLLECTION ===== */
.collection { padding: 100px 40px; }
.collection-header { max-width: 1400px; margin: 0 auto 60px; }
.collection-title { font-family: var(--font-display); font-size: 14px; letter-spacing: 0.4em; color: var(--accent); margin-bottom: 12px; }
.collection-sub { font-size: 15px; color: var(--fg-muted); }
.collection-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.2s;
}
.product-card:hover { border-color: var(--accent); }
.product-card--large { grid-column: span 2; }
.product-card-visual { height: 200px; position: relative; overflow: hidden; }
.product-card--large .product-card-visual { height: 280px; }
.product-card-colorway {
  width: 100%; height: 100%;
  position: relative;
}
.cwy-sage { background: linear-gradient(135deg, #7a8c6e 0%, #5a6b52 50%, #4a5942 100%); }
.cwy-ak47 {
  background:
    repeating-linear-gradient(90deg, rgba(0,0,0,0.3) 0px, rgba(0,0,0,0.3) 20px, transparent 20px, transparent 24px),
    linear-gradient(135deg, #1a1a1a 0%, #2a2a1a 100%);
}
.cwy-box-logo { background: linear-gradient(135deg, #1a1a1a 0%, #f5f0e8 100%); }
.cwy-banner { background: linear-gradient(135deg, #8a6a1a 0%, #c8a96e 50%, #8a6a1a 100%); }
.cwy-luxury-crew { background: linear-gradient(135deg, #3a3a3a 0%, #5a5a5a 100%); }
.cwy-united-mob { background: linear-gradient(135deg, #2a3a2a 0%, #4a5a4a 50%, #3a4a3a 100%); }
.product-card-body { padding: 20px 24px; display: flex; flex-direction: column; gap: 6px; }
.product-card-tag {
  font-size: 9px; letter-spacing: 0.25em; color: var(--accent); font-weight: 500;
}
.product-card-name { font-size: 15px; font-weight: 500; color: var(--fg); }
.product-card-price { font-size: 13px; color: var(--fg-muted); }

/* ===== CULTURE ===== */
.culture {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 40px;
}
.culture-inner { max-width: 1400px; margin: 0 auto; }
.culture-header { margin-bottom: 60px; }
.culture-title { font-family: var(--font-display); font-size: 14px; letter-spacing: 0.4em; color: var(--accent); }
.culture-blocks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  margin-bottom: 60px;
}
.culture-block {
  background: var(--bg-alt);
  padding: 40px 28px;
}
.culture-block-icon { font-size: 10px; color: var(--accent); margin-bottom: 16px; }
.culture-block-title { font-family: var(--font-display); font-size: 20px; letter-spacing: 0.06em; margin-bottom: 14px; }
.culture-block-text { font-size: 13px; color: var(--fg-muted); line-height: 1.6; }
.culture-inspirations { border-top: 1px solid var(--border); padding-top: 40px; }
.insp-label { font-size: 10px; letter-spacing: 0.35em; color: var(--fg-muted); margin-bottom: 20px; }
.insp-tags { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.insp-tags span { font-size: 12px; letter-spacing: 0.15em; color: var(--fg-muted); }
.insp-divider { color: var(--accent) !important; }

/* ===== DROPS ===== */
.drops { padding: 100px 40px; }
.drops-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.drops-label { font-size: 10px; letter-spacing: 0.4em; color: var(--accent); margin-bottom: 20px; }
.drops-title { font-family: var(--font-display); font-size: clamp(60px, 8vw, 100px); line-height: 0.9; letter-spacing: -0.01em; }
.drops-statement { display: flex; flex-direction: column; gap: 24px; }
.drops-statement p { font-size: 14px; color: var(--fg-muted); line-height: 1.7; }
.drops-statement p:first-child { color: var(--fg); }
.drops-qs { display: flex; flex-direction: column; gap: 8px; padding: 24px; border-left: 2px solid var(--accent); }
.drops-qs span { font-family: var(--font-display); font-size: 20px; letter-spacing: 0.05em; }
.drops-collections { display: flex; flex-direction: column; gap: 2px; }
.coll-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 20px 24px;
  display: flex; align-items: center; gap: 20px;
}
.coll-tag { font-family: var(--font-display); font-size: 14px; letter-spacing: 0.1em; color: var(--accent); min-width: 40px; }
.coll-name { font-size: 14px; color: var(--fg); font-weight: 400; }

/* ===== CLOSING ===== */
.closing {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 120px 40px;
}
.closing-inner { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 80px; }
.closing-text { flex: 1; }
.closing-quote {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  margin-bottom: 28px;
}
.closing-sub { font-size: 14px; color: var(--fg-muted); line-height: 1.8; }
.closing-stamp { flex-shrink: 0; }
.stamp-ring {
  width: 160px; height: 160px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.stamp-ring::before, .stamp-ring::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: 50%;
  top: -20px; bottom: -20px; left: -20px; right: -20px;
}
.stamp-ring::after { top: -36px; bottom: -36px; left: -36px; right: -36px; }
.stamp-inner { font-family: var(--font-display); font-size: 36px; letter-spacing: 0.1em; color: var(--accent); }

/* ===== FOOTER ===== */
.footer { padding: 40px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-brand { font-family: var(--font-display); font-size: 14px; letter-spacing: 0.2em; }
.footer-meta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.footer-meta span { font-size: 11px; letter-spacing: 0.15em; color: var(--fg-muted); }
.footer-sep { color: var(--accent) !important; }
.footer-ops { font-size: 11px; color: var(--fg-muted); }
.footer-ops strong { color: var(--accent); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .manifesto-pillars { grid-template-columns: repeat(2, 1fr); }
  .culture-blocks { grid-template-columns: repeat(2, 1fr); }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card--large { grid-column: span 1; }
  .drops-inner { grid-template-columns: 1fr; gap: 60px; }
}

@media (max-width: 640px) {
  .nav { padding: 16px 20px; }
  .hero { padding: 0 20px 60px; align-items: flex-end; }
  .hero-block { display: none; }
  .manifesto, .culture, .drops, .closing, .collection { padding: 60px 20px; }
  .manifesto-pillars, .culture-blocks { grid-template-columns: 1fr; }
  .collection-grid { grid-template-columns: 1fr; }
  .closing-inner { flex-direction: column; }
  .stamp-ring { width: 100px; height: 100px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}