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

:root {
  --black:   #080808;
  --card:    #101010;
  --surface: #161616;
  --border:  #222;
  --pink:    #F0208C;
  --teal:    #1FE8C8;
  --purple:  #A020E0;
  --grad:    linear-gradient(120deg, #A020E0 0%, #F0208C 50%, #1FE8C8 100%);
  --text:    #F0F0F0;
  --muted:   #888;
  --r:       10px;
}

html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--text); font-family: 'Inter', sans-serif; line-height: 1.65; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── SCROLL PROGRESS ── */
#progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: var(--grad);
  z-index: 300;
}

/* ── TYPOGRAPHY ── */
.display { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.02em; line-height: 0.92; }
.eyebrow { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.72rem; color: var(--pink); }
.grad-text { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 1rem; text-transform: uppercase; letter-spacing: 0.14em;
  padding: 0.9rem 2.2rem; border-radius: var(--r); border: none;
  cursor: pointer; transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.btn-primary { background: var(--grad); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(240,32,140,0.4); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--pink); color: var(--pink); transform: translateY(-2px); }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 70px;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled { background: rgba(8,8,8,0.95); backdrop-filter: blur(16px); border-color: var(--border); }

.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 42px; width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-links .merch-link { color: var(--pink) !important; }
.nav-links .merch-link:hover { color: var(--teal) !important; }

.nav-right { display: flex; align-items: center; gap: 1.1rem; }
.nav-cta { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.08em; color: var(--pink); border: 1.5px solid var(--pink); padding: 0.4rem 1.1rem; border-radius: var(--r); transition: background 0.2s, color 0.2s; }
.nav-cta:hover { background: var(--pink); color: #fff; }

.cart-btn { position: relative; display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: var(--r); border: 1.5px solid var(--border); background: transparent; color: var(--text); cursor: pointer; transition: border-color 0.2s, color 0.2s; }
.cart-btn:hover { border-color: var(--pink); color: var(--pink); }
.cart-badge { position: absolute; top: -7px; right: -7px; min-width: 18px; height: 18px; padding: 0 4px; border-radius: 9px; background: var(--grad); color: #fff; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.65rem; display: flex; align-items: center; justify-content: center; }
.cart-badge.hidden { display: none; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; z-index: 201; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: none; position: fixed; top: 70px; right: 0; bottom: 0; left: 0; background: var(--black); z-index: 199; flex-direction: column; align-items: center; justify-content: flex-start; gap: 0.6rem; overflow-y: auto; padding: 2.5rem 0 1.5rem; touch-action: none; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.5rem, 8vw, 2.3rem); line-height: 1.15; color: var(--text); transition: color 0.2s; white-space: nowrap; }
.mobile-menu a:hover { color: var(--pink); }
.mobile-menu .mob-phone { font-family: 'Barlow Condensed', sans-serif !important; font-size: 1.05rem !important; color: var(--pink) !important; border: 1.5px solid var(--pink); padding: 0.47rem 1.4rem; border-radius: var(--r); margin-top: 0.45rem; }

.float-cta { display: none; position: fixed; bottom: 1.2rem; left: 50%; transform: translateX(-50%); z-index: 150; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.25s ease; }
.float-cta.show { opacity: 1; pointer-events: auto; }

/* ── CHECKER STRIP (divider) ── */
.checker-strip {
  height: 8px;
  background-image: linear-gradient(45deg,#fff 25%,#000 25%), linear-gradient(-45deg,#fff 25%,#000 25%), linear-gradient(45deg,#000 75%,#fff 75%), linear-gradient(-45deg,#000 75%,#fff 75%);
  background-size: 16px 16px;
  background-position: 0 0,0 8px,8px -8px,-8px 0;
  background-color: #000;
  opacity: 0.1;
}

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 130px 2.5rem 6rem; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background-image: linear-gradient(45deg,rgba(240,32,140,0.02) 25%,transparent 25%), linear-gradient(-45deg,rgba(240,32,140,0.02) 25%,transparent 25%), linear-gradient(45deg,transparent 75%,rgba(240,32,140,0.02) 75%), linear-gradient(-45deg,transparent 75%,rgba(240,32,140,0.02) 75%);
  background-size: 60px 60px;
  background-position: 0 0,0 30px,30px -30px,-30px 0;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -100px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(240,32,140,0.1) 0%, rgba(160,32,224,0.05) 50%, transparent 70%);
  pointer-events: none;
}
.hero-logo-wm { position: absolute; top: 50%; right: 9%; transform: translateY(-50%); width: clamp(280px, 38vw, 620px); opacity: 0.08; pointer-events: none; z-index: 0; }

.hero-eyebrow { margin-bottom: 1rem; }
.hero-headline { font-size: clamp(4rem, 13vw, 11.5rem); position: relative; z-index: 1; max-width: 960px; }
.hero-headline .accent { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: clamp(0.9rem, 1.6vw, 1.1rem); color: var(--muted); max-width: 500px; margin: 1.2rem 0 2.2rem; position: relative; z-index: 1; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; position: relative; z-index: 1; }

/* ── STATS ── */
.stats-bar { display: grid; grid-template-columns: repeat(4,1fr); background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center; padding: 2.5rem 1rem; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.4rem,5vw,3.8rem); line-height: 1; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; transform: translateY(0.2em); }
.stat-lbl { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-top: 0.3rem; }
.stat-div { border-right: 1px solid var(--border); }
.stat-div:last-child { border-right: none; }

/* ── SECTION ── */
.section { max-width: 1220px; margin: 0 auto; padding: 6rem 2.5rem; }
.sec-hd { margin-bottom: 3.5rem; }
.sec-title { font-size: clamp(2.6rem,6vw,5rem); margin-top: 0.3rem; }

/* ── SERVICES ── */
.services-bg { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.svc-list { display: flex; flex-direction: column; }
.svc-row { display: grid; grid-template-columns: 72px 1fr auto; align-items: center; gap: 2rem; padding: 1.8rem 0; border-bottom: 1px solid var(--border); transition: background 0.2s; border-radius: var(--r); cursor: pointer; }
.svc-row:focus-visible { outline: none; background: rgba(240,32,140,0.05); }
.svc-row:focus-visible .svc-name { color: var(--pink); }
.svc-row:focus-visible .svc-arrow { color: var(--pink); transform: translateX(4px); }
.svc-row:first-child { border-top: 1px solid var(--border); }
.svc-row:hover { background: rgba(240,32,140,0.025); }
.svc-num { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; opacity: 0.5; }
.svc-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.3rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.3rem; transition: color 0.2s; }
.svc-row:hover .svc-name { color: var(--pink); }
.svc-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.6; max-width: 600px; }
.svc-arrow { color: var(--border); font-size: 1.2rem; transition: color 0.2s, transform 0.2s; flex-shrink: 0; }
.svc-row:hover .svc-arrow { color: var(--pink); transform: translateX(4px); }

/* ── BRANDS ── */
.brands-wrap { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; position: relative; }
.brands-wrap::before, .brands-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
.brands-wrap::before { left: 0; background: linear-gradient(90deg, var(--black), transparent); }
.brands-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--black), transparent); }
.marquee { display: flex; width: max-content; animation: marquee 24s linear infinite; }
.marquee:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.brand-item { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 0.18em; color: #2a2a2a; padding: 1.4rem 2.5rem; border-right: 1px solid var(--border); transition: color 0.2s, background 0.2s; cursor: default; }
.brand-item:hover { color: var(--pink); background: rgba(240,32,140,0.03); }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-photo-wrap { position: relative; }
.about-photo { width: 100%; aspect-ratio: 3/4; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; position: relative; }
.about-photo::before { content: ''; display: block; padding-top: 133.333%; }
.photo-lbl { position: relative; z-index: 1; text-align: center; color: #2a2a2a; font-family: 'Barlow Condensed', sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; line-height: 1.8; }
.about-img { position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 1; width: 100%; height: 100%; background-size: cover; background-position: center; background-repeat: no-repeat; }
.photo-accent { position: absolute; bottom: -16px; right: -16px; width: 120px; height: 120px; background: var(--grad); border-radius: 12px; z-index: -1; }
.about-text .sec-title { margin: 0.3rem 0 1.5rem; }
.about-text p { font-size: 0.92rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.75; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.about-stat { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 1.1rem; transition: border-color 0.2s; }
.about-stat:hover { border-color: rgba(240,32,140,0.35); }
.about-stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.about-stat-lbl { font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-top: 0.2rem; }

/* ── GALLERY ── */
.gallery-bg { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.gallery-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 1rem; }
.g-card { border-radius: 12px; overflow: hidden; border: 1px solid var(--border); cursor: pointer; position: relative; transition: transform 0.3s, border-color 0.3s; }
.g-card:first-child { grid-row: span 3; }
.g-card:hover { transform: translateY(-4px); border-color: rgba(240,32,140,0.4); }
.g-inner { width: 100%; height: 100%; min-height: 200px; display: flex; align-items: flex-end; padding: 1.2rem; position: relative; }
.g-card:first-child .g-inner { min-height: 640px; }
.g-card:nth-child(1) .g-inner { background: linear-gradient(145deg,#1a0015,#0d0010); }
.g-card:nth-child(2) .g-inner { background: linear-gradient(145deg,#1a0008,#0d0004); }
.g-card:nth-child(3) .g-inner { background: linear-gradient(145deg,#100018,#060010); }
.g-card:nth-child(4) .g-inner { background: linear-gradient(145deg,#1a0a00,#0d0500); }
.g-card:nth-child(5) .g-inner { background: linear-gradient(145deg,#0a0015,#04000a); }
.g-overlay { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 55%); }
.g-photo { position: absolute; top: 0; right: 0; bottom: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; background-repeat: no-repeat; z-index: 0; }
.g-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-60%); font-size: 2.8rem; opacity: 0.1; }
.g-card:first-child .g-icon { font-size: 5rem; }
.g-tag { position: absolute; top: 1rem; left: 1rem; background: var(--grad); color: #fff; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.2rem 0.6rem; border-radius: 4px; z-index: 2; opacity: 0; transform: translateY(-4px); transition: opacity 0.2s, transform 0.2s; }
.g-card:hover .g-tag { opacity: 1; transform: none; }
.g-card.coming-soon .g-tag { opacity: 1; transform: none; background: var(--surface); border: 1px solid var(--border); color: var(--muted); }
.g-info { position: relative; z-index: 1; }
.g-label { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.07em; }
.g-sub { font-size: 0.76rem; color: var(--muted); margin-top: 0.2rem; }
.glb { display: none; position: fixed; top: 0; right: 0; bottom: 0; left: 0; background: rgba(0,0,0,0.95); z-index: 400; align-items: center; justify-content: center; padding: 1.5rem; }
.glb.open { display: flex; }
.glb-box { background: var(--card); border: 1px solid var(--border); border-radius: 14px; text-align: center; max-width: 440px; width: 100%; max-height: 90vh; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.glb-close { position: absolute; top: 0.7rem; right: 0.7rem; width: 32px; height: 32px; border-radius: 50%; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: #fff; cursor: pointer; z-index: 6; transition: background 0.2s, color 0.2s; }
.glb-close:hover { background: rgba(0,0,0,0.75); color: var(--pink); }
.glb-photo-wrap { display: none; position: relative; width: 100%; aspect-ratio: 4/5; background: #000; flex-shrink: 0; }
.glb-photo-wrap.show { display: block; }
.glb-photo { position: absolute; top: 0; right: 0; bottom: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; background-repeat: no-repeat; }
.glb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.5); color: #fff; border: none; width: 34px; height: 34px; border-radius: 50%; font-size: 1.3rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.glb-nav:hover { background: var(--pink); }
.glb-prev { left: 0.6rem; }
.glb-next { right: 0.6rem; }
.glb-dots { position: absolute; bottom: 0.7rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.4rem; transition: bottom 0.2s; }
.glb-photo-wrap.video-active .glb-dots { bottom: 2.6rem; }
.glb-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: background 0.2s, transform 0.2s; border: none; padding: 0; }
.glb-dot.active { background: #fff; transform: scale(1.3); }
.glb-content { padding: 2rem 2.2rem 2.2rem; overflow-y: auto; }

/* ── MERCH ── */
.merch-bg { border-top: 1px solid var(--border); }
.merch-hd-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.merch-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 1.4rem; }
.merch-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s; position: relative; }
.merch-card:hover { transform: translateY(-6px); border-color: rgba(240,32,140,0.4); box-shadow: 0 20px 50px rgba(240,32,140,0.12); }
.merch-img { aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.merch-card:nth-child(1) .merch-img { background: linear-gradient(145deg,#100010,#1a0018); }
.merch-card:nth-child(2) .merch-img { background: linear-gradient(145deg,#150010,#1a0008); }
.merch-card:nth-child(3) .merch-img { background: linear-gradient(145deg,#0d0015,#100010); }
.merch-card:nth-child(4) .merch-img { background: linear-gradient(145deg,#180010,#150008); }
.merch-img::before {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  z-index: 0;
  background-image: linear-gradient(45deg,rgba(255,255,255,0.018) 25%,transparent 25%), linear-gradient(-45deg,rgba(255,255,255,0.018) 25%,transparent 25%), linear-gradient(45deg,transparent 75%,rgba(255,255,255,0.018) 75%), linear-gradient(-45deg,transparent 75%,rgba(255,255,255,0.018) 75%);
  background-size: 28px 28px;
  background-position: 0 0,0 14px,14px -14px,-14px 0;
}
.merch-placeholder { position: relative; z-index: 1; font-size: 4rem; opacity: 0.15; }
.merch-photo { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; padding: 0.75rem; box-sizing: border-box; }
.merch-badge { position: absolute; top: 1rem; left: 1rem; background: var(--grad); color: #fff; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.2rem 0.65rem; border-radius: 4px; z-index: 2; }
.merch-body { padding: 1.3rem 1.4rem 1.4rem; }
.merch-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.15rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.3rem; }
.merch-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.55; margin-bottom: 1rem; }
.merch-footer { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
.merch-price { font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.merch-btn { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; background: var(--grad); color: #fff; border: none; border-radius: 8px; padding: 0.5rem 1.2rem; cursor: pointer; transition: opacity 0.2s, transform 0.2s; }
.merch-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.merch-note { text-align: center; margin-top: 2.5rem; padding: 1.5rem 2rem; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; font-size: 0.88rem; color: var(--muted); }
.merch-note strong { color: var(--text); }

/* ── SHOP PAGE ── */
.shop-hero { position: relative; padding: 150px 2.5rem 4rem; text-align: center; overflow: hidden; }
.shop-hero::before {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background-image: linear-gradient(45deg,rgba(240,32,140,0.02) 25%,transparent 25%), linear-gradient(-45deg,rgba(240,32,140,0.02) 25%,transparent 25%), linear-gradient(45deg,transparent 75%,rgba(240,32,140,0.02) 75%), linear-gradient(-45deg,transparent 75%,rgba(240,32,140,0.02) 75%);
  background-size: 60px 60px;
  background-position: 0 0,0 30px,30px -30px,-30px 0;
  pointer-events: none;
}
.shop-back { display: inline-flex; align-items: center; gap: 0.4rem; font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 1.5rem; position: relative; transition: color 0.2s; }
.shop-back:hover { color: var(--pink); }
.shop-hero h1 { position: relative; font-size: clamp(3rem,9vw,6.5rem); }
.shop-hero p { position: relative; color: var(--muted); max-width: 520px; margin: 1rem auto 0; font-size: 0.95rem; }

.size-pills { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.9rem; }
.size-pill { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 0.75rem; letter-spacing: 0.04em; padding: 0.32rem 0.7rem; border-radius: 6px; border: 1.5px solid var(--border); background: transparent; color: var(--muted); cursor: pointer; transition: all 0.15s; }
.size-pill:hover { border-color: var(--pink); color: var(--text); }
.size-pill.active { border-color: var(--pink); background: var(--grad); color: #fff; }

.qty-stepper { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: 8px; overflow: hidden; }
.qty-btn { background: var(--surface); border: none; color: var(--text); width: 30px; height: 30px; font-size: 1rem; cursor: pointer; transition: background 0.15s, color 0.15s; }
.qty-btn:hover { background: var(--pink); color: #fff; }
.qty-val { width: 32px; text-align: center; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.92rem; }
.merch-footer.shop-footer { flex-direction: column; align-items: stretch; gap: 0.8rem; }
.shop-footer-row { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
.shop-add-btn { width: 100%; justify-content: center; }

/* ── CART DRAWER ── */
.cart-overlay { display: none; position: fixed; top: 0; right: 0; bottom: 0; left: 0; background: rgba(0,0,0,0.6); z-index: 410; }
.cart-overlay.open { display: block; }
.cart-drawer { position: fixed; top: 0; right: -420px; width: 100%; max-width: 420px; height: 100%; background: var(--card); border-left: 1px solid var(--border); z-index: 411; display: flex; flex-direction: column; transition: right 0.3s ease; }
.cart-drawer.open { right: 0; }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; border-bottom: 1px solid var(--border); }
.cart-head h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; }
.cart-close { font-size: 1.6rem; color: var(--muted); cursor: pointer; transition: color 0.2s; background: none; border: none; }
.cart-close:hover { color: var(--text); }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.cart-item { display: grid; grid-template-columns: 56px 1fr auto; gap: 0.9rem; align-items: center; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.cart-item-thumb { width: 56px; height: 56px; border-radius: 8px; background: var(--surface); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; overflow: hidden; flex-shrink: 0; }
.cart-item-thumb:empty, .cart-item-thumb:not(:has(img)) { opacity: 0.4; }
.cart-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.04em; }
.cart-item-meta { font-size: 0.76rem; color: var(--muted); margin-top: 0.15rem; }
.cart-item-price { font-family: 'Bebas Neue', sans-serif; font-size: 1.15rem; margin-top: 0.3rem; }
.cart-item-remove { background: none; border: none; color: var(--muted); font-size: 1.1rem; cursor: pointer; justify-self: end; transition: color 0.2s; }
.cart-item-remove:hover { color: var(--pink); }
.cart-empty { text-align: center; color: var(--muted); font-size: 0.88rem; padding: 3rem 1rem; }
.cart-foot { padding: 1.5rem; border-top: 1px solid var(--border); }
.cart-subtotal-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.cart-subtotal-lbl { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
.cart-subtotal-val { font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cart-checkout-btn { width: 100%; justify-content: center; }
.cart-note { font-size: 0.72rem; color: #444; text-align: center; margin-top: 0.8rem; }

/* ── TESTIMONIALS ── */
.testi-bg { background: var(--surface); border-top: 1px solid var(--border); }
.testi-list { display: flex; flex-direction: column; }
.testi-row { display: grid; grid-template-columns: 1fr 280px; gap: 4rem; align-items: center; padding: 2.5rem 0; border-bottom: 1px solid var(--border); }
.testi-row:first-child { border-top: 1px solid var(--border); }
.testi-stars { font-size: 0.9rem; letter-spacing: 3px; margin-bottom: 0.75rem; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.testi-quote { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.3rem,2.5vw,1.8rem); line-height: 1.25; }
.testi-meta { text-align: right; }
.testi-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; color: #fff; margin: 0 auto 0.75rem; }
.testi-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.06em; }
.testi-bike { font-size: 0.76rem; color: var(--muted); margin-top: 0.2rem; }

/* ── LOCATION ── */
.loc-bg { background: var(--black); border-top: 1px solid var(--border); }
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.map-box { border-radius: 14px; overflow: hidden; border: 1px solid var(--border); aspect-ratio: 4/3; }
.map-box iframe { width: 100%; height: 100%; display: block; filter: invert(88%) hue-rotate(180deg) saturate(0.5); }
.hours-head { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted); margin-bottom: 1.1rem; }
.avail-badge { display: flex; align-items: flex-start; gap: 0.9rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 1.3rem 1.4rem; }
.avail-dot { position: relative; flex-shrink: 0; width: 12px; height: 12px; margin-top: 0.3rem; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 0 rgba(31,232,200,0.6); animation: avail-pulse 2s infinite; }
@keyframes avail-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(31,232,200,0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(31,232,200,0); }
  100% { box-shadow: 0 0 0 0 rgba(31,232,200,0); }
}
.avail-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 0.03em; margin-bottom: 0.3rem; }
.avail-sub { font-size: 0.86rem; color: var(--muted); line-height: 1.6; }
@media (prefers-reduced-motion: reduce) {
  .avail-dot { animation: none; }
}
.ci-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.ci { display: flex; align-items: center; gap: 1rem; padding: 0.9rem 1rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); transition: border-color 0.2s; }
.ci:hover { border-color: rgba(240,32,140,0.3); }
.ci-icon { width: 36px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--muted); }
.ci-lbl { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); }
.ci-val { font-size: 0.9rem; }
.ci-val a { color: var(--pink); transition: opacity 0.2s; }
.ci-val a:hover { opacity: 0.8; }

/* ── CTA BAND ── */
.cta-band { position: relative; background: var(--grad); padding: 5rem 2.5rem; text-align: center; overflow: hidden; }
.cta-band::before {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background-image: linear-gradient(45deg,rgba(0,0,0,0.08) 25%,transparent 25%), linear-gradient(-45deg,rgba(0,0,0,0.08) 25%,transparent 25%), linear-gradient(45deg,transparent 75%,rgba(0,0,0,0.08) 75%), linear-gradient(-45deg,transparent 75%,rgba(0,0,0,0.08) 75%);
  background-size: 28px 28px;
  background-position: 0 0,0 14px,14px -14px,-14px 0;
}
.cta-band h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem,6vw,5rem); color: #fff; line-height: 0.95; margin-bottom: 1.5rem; position: relative; }
.cta-band h2 span { opacity: 0.45; }
.cta-dark { position: relative; background: #000; color: #fff; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.14em; padding: 1rem 2.5rem; border-radius: var(--r); border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 0.5rem; transition: opacity 0.2s, transform 0.2s; }
.cta-dark:hover { opacity: 0.85; transform: translateY(-2px); }

/* ── FORM ── */
.form-section { background: var(--surface); border-top: 1px solid var(--border); padding: 6rem 2.5rem; }
.form-wrap { max-width: 820px; margin: 0 auto; }
.form-card { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 3.5rem; }
.form-intro { margin-bottom: 2.5rem; }
.form-intro p { font-size: 0.9rem; color: var(--muted); margin-top: 0.7rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: 0.4rem; }
.fg.full { grid-column: 1 / -1; }
.fg label { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); }
.fg input, .fg select, .fg textarea { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 0.78rem 1rem; color: var(--text); font-family: 'Inter', sans-serif; font-size: 0.9rem; outline: none; transition: border-color 0.2s, box-shadow 0.2s; -webkit-appearance: none; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(240,32,140,0.1); }
.fg textarea { resize: vertical; min-height: 100px; }
.fg textarea[readonly] { color: var(--muted); background: #121212; }
.fg select option { background: var(--surface); }
.form-foot { margin-top: 1.8rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.form-note { font-size: 0.78rem; color: #444; }
.form-success { display: none; text-align: center; padding: 3rem; }
.form-success .s-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.form-success h3 { font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem; margin-bottom: 0.5rem; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.form-success p { color: var(--muted); font-size: 0.9rem; max-width: 380px; margin: 0 auto 1.8rem; }

/* ── FOOTER ── */
.footer { background: var(--card); border-top: 1px solid var(--border); padding: 3.5rem 2.5rem 2rem; }
.footer-inner { max-width: 1220px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border); }
.f-logo { margin-bottom: 0.9rem; }
.f-logo img { height: 46px; width: auto; }
.f-brand p { font-size: 0.86rem; color: var(--muted); max-width: 260px; line-height: 1.7; }
.f-soc { display: flex; gap: 0.6rem; margin-top: 1.4rem; }
.f-soc-btn { width: 36px; height: 36px; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; color: var(--muted); cursor: pointer; transition: all 0.2s; }
.f-soc-btn:hover { background: var(--grad); color: #fff; border-color: transparent; }
.f-col h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted); margin-bottom: 1.1rem; }
.f-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.f-col a { font-size: 0.86rem; color: #444; transition: color 0.2s; }
.f-col a:hover { color: var(--pink); }
.footer-bot { max-width: 1220px; margin: 0 auto; padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.76rem; color: #333; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.in { opacity: 1; transform: none; }
.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.stagger.in > *:nth-child(1) { opacity:1; transform:none; transition-delay:.06s; }
.stagger.in > *:nth-child(2) { opacity:1; transform:none; transition-delay:.14s; }
.stagger.in > *:nth-child(3) { opacity:1; transform:none; transition-delay:.22s; }
.stagger.in > *:nth-child(4) { opacity:1; transform:none; transition-delay:.30s; }
.stagger.in > *:nth-child(5) { opacity:1; transform:none; transition-delay:.38s; }
.stagger.in > *:nth-child(6) { opacity:1; transform:none; transition-delay:.46s; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .float-cta { display: inline-flex; }
  .about-grid { display: block; }
  .about-grid > * + * { margin-top: 3.5rem; }
  .about-photo-wrap { width: 100%; max-width: 400px; margin: 0 auto; }
  .loc-grid { grid-template-columns: 1fr; }
  .testi-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .testi-meta { text-align: left; display: flex; align-items: center; gap: 1rem; }
  .testi-avatar { margin: 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-logo-wm { display: none; }
  .hero { min-height: 0; padding: 110px 1.5rem 3rem; }
  .section { padding: 3.5rem 1.5rem; }
  .cta-band { display: none; }
  .form-section { padding: 3.5rem 1.5rem; }
  .shop-hero { padding: 110px 1.5rem 2.5rem; }
}
@media (max-width: 620px) {
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .fg.full { grid-column: 1; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bot { flex-direction: column; gap: 0.5rem; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .g-card:first-child { grid-row: span 1; }
  .g-card:first-child .g-inner { min-height: 200px; }
  .form-card { padding: 2rem 1.5rem; }
  .svc-row { grid-template-columns: 48px 1fr auto; gap: 1rem; }
  .cart-drawer { max-width: 100%; }
  .section { padding: 2.75rem 1.25rem; }
  .form-section { padding: 2.75rem 1.25rem; }
}
@media (prefers-reduced-motion: reduce) {
  .marquee { animation: none; }
  .reveal, .stagger > * { opacity:1; transform:none; transition:none; }
}
