* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
:root { --black: #000; --white: #fff; --grey-dark: #1a1a1a; --grey-mid: #555; --grey-light: #888; --grey-faint: #e0e0e0; --red: #ff0000; }

html { scroll-behavior: smooth; }
body { font-family: 'Space Mono', monospace; background: var(--white); color: var(--black); min-height: 100vh; min-height: 100dvh; overflow-x: hidden; }

.dot-grid { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background-image: radial-gradient(circle, rgba(0,0,0,0.06) 1px, transparent 1px); background-size: 20px 20px; pointer-events: none; z-index: 0; }

.app { position: relative; z-index: 1; }
.red { color: var(--red); }

/* ============================================
   HEADER
   ============================================ */
.header { position: fixed; top: 0; left: 0; right: 0; padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; z-index: 100; background: rgba(255,255,255,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: border-color 0.3s; }
.header.scrolled { border-color: var(--grey-faint); }
.header-left { display: flex; align-items: baseline; gap: 8px; flex-shrink: 0; }
.logo { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: -0.02em; cursor: pointer; white-space: nowrap; }
.logo span { color: var(--red); }
.header-byline { font-size: 10px; color: var(--grey-light); white-space: nowrap; }
.nav-controls { display: flex; align-items: center; gap: 8px; }

.header-all-brands { padding: 8px 14px; background: none; border: 1px solid var(--grey-faint); font-family: 'Space Mono', monospace; font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; color: var(--grey-mid); transition: all 0.3s; }
.header-all-brands:hover { border-color: var(--black); color: var(--black); }

.search-toggle { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: none; border: 1px solid var(--grey-faint); border-radius: 50%; cursor: pointer; color: var(--grey-mid); transition: all 0.3s; }
.search-toggle:hover { border-color: var(--black); color: var(--black); }

@media (max-width: 500px) {
    .header { padding: 12px 16px; }
    .header-left { gap: 6px; }
    .header-byline { font-size: 9px; }
}

/* ============================================
   HOMEPAGE
   ============================================ */
.homepage { padding-top: 64px; }

/* Hero */
.hp-hero { padding: 60px 20px 40px; text-align: center; max-width: 640px; margin: 0 auto; }
.hp-hero-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(36px, 10vw, 72px); font-weight: 500; line-height: 0.95; letter-spacing: -0.03em; margin-bottom: 20px; opacity: 0; animation: heroIn 0.7s 0.1s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
.hp-hero-sub { font-family: 'Space Grotesk', sans-serif; font-size: clamp(13px, 2.5vw, 16px); line-height: 1.65; color: var(--grey-mid); max-width: 480px; margin: 0 auto 28px; opacity: 0; animation: heroIn 0.6s 0.25s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
.hp-hero-btn { padding: 16px 28px; background: var(--black); color: var(--white); border: none; font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 0.06em; cursor: pointer; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); opacity: 0; animation: heroIn 0.5s 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
.hp-hero-btn:hover { background: var(--red); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,0,0,0.2); }
.hp-hero-btn-secondary { display: inline-block; padding: 14px 28px; background: none; border: 1px solid var(--grey-faint); color: var(--grey-mid); font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 0.06em; text-decoration: none; cursor: pointer; transition: all 0.3s; opacity: 0; animation: heroIn 0.5s 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
.hp-hero-btn-secondary:hover { border-color: var(--black); color: var(--black); }
.hp-hero-stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 24px; font-size: 11px; color: var(--grey-mid); letter-spacing: 0.04em; opacity: 0; animation: heroIn 0.5s 0.55s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
.hp-stat-sep { color: var(--red); }

@keyframes heroIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* Sections */
.hp-section { padding: 40px 20px; max-width: 1100px; margin: 0 auto; }
.hp-label { font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--grey-light); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.hp-label::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--red); display: inline-block; }

/* Our Pick */
.hp-pick { border-left: 3px solid var(--red); padding: 20px 24px; background: rgba(255, 0, 0, 0.015); cursor: pointer; transition: all 0.3s; }
.hp-pick:hover { background: rgba(255, 0, 0, 0.04); }
.hp-pick-name { font-family: 'Space Grotesk', sans-serif; font-size: clamp(22px, 5vw, 32px); font-weight: 500; margin-bottom: 8px; }
.hp-pick-story { font-family: 'Space Grotesk', sans-serif; font-size: 14px; line-height: 1.7; color: var(--grey-mid); margin-bottom: 12px; }
.hp-pick-meta { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey-light); display: flex; gap: 16px; flex-wrap: wrap; }

/* Row titles */
.hp-row-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(20px, 4vw, 28px); font-weight: 500; margin-bottom: 4px; }
.hp-row-sub { font-family: 'Space Grotesk', sans-serif; font-size: 13px; color: var(--grey-mid); margin-bottom: 20px; }

/* Horizontal scroll rows */
.hp-scroll { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.hp-scroll::-webkit-scrollbar { display: none; }

.hp-card { flex: 0 0 240px; scroll-snap-align: start; padding: 20px; border: 1px solid var(--grey-faint); cursor: pointer; transition: all 0.3s; background: var(--white); position: relative; display: flex; flex-direction: column; }
.hp-card:hover { border-color: var(--red); background: rgba(255,0,0,0.02); }
.hp-card:last-child { margin-right: 20px; }
.hp-card-name { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 600; margin-bottom: 8px; line-height: 1.2; }
.hp-card-hook { font-family: 'Space Grotesk', sans-serif; font-size: 12px; line-height: 1.55; color: var(--grey-mid); flex: 1; margin-bottom: 12px; }
.hp-card-foot { font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey-light); display: flex; justify-content: space-between; }

/* ============================================
   DOT MATRIX MAP (Leaflet)
   ============================================ */
.hp-map-section { padding-bottom: 20px; }
.hp-map-container { position: relative; width: 100%; max-width: 1060px; margin: 0 auto; overflow: hidden; }
#dotMap { width: 100%; height: 420px; background: transparent; z-index: 1; }
#dotMap .leaflet-control-attribution { font-size: 8px; opacity: 0.4; }
#dotMap .leaflet-control-zoom { display: none; }

/* Custom marker pulse */
@keyframes markerPulse {
    0% { box-shadow: 0 0 0 0 rgba(255,0,0,0.35); }
    70% { box-shadow: 0 0 0 8px rgba(255,0,0,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,0,0,0); }
}
.iwa-marker {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--red); border: 1.5px solid rgba(255,255,255,0.8);
    box-shadow: 0 0 6px rgba(255,0,0,0.4);
    transition: transform 0.2s;
}
.iwa-marker:hover {
    transform: scale(1.6);
    animation: markerPulse 1s infinite;
    z-index: 1000 !important;
}
.iwa-tooltip {
    font-family: 'Space Mono', monospace !important;
    font-size: 10px !important;
    letter-spacing: 0.04em;
    padding: 5px 10px !important;
    background: var(--black) !important;
    color: var(--white) !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2) !important;
}
.iwa-tooltip::before { display: none !important; }

@media (max-width: 600px) {
    #dotMap { height: 280px; }
}

/* ============================================
   STORY SECTION
   ============================================ */
.hp-story-section { border-top: 1px solid var(--grey-faint); padding-top: 48px; }
.hp-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.hp-story-h { font-family: 'Space Grotesk', sans-serif; font-size: clamp(18px, 3vw, 24px); font-weight: 500; margin-bottom: 16px; line-height: 1.3; }
.hp-story-p { font-family: 'Space Grotesk', sans-serif; font-size: 13px; line-height: 1.7; color: var(--grey-mid); margin-bottom: 12px; }
.hp-story-p strong { color: var(--black); }
.hp-pullquote { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 500; line-height: 1.5; padding: 16px 0 16px 16px; border-left: 3px solid var(--red); margin-top: 16px; }

@media (max-width: 700px) {
    .hp-story-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Suggest & Footer */
.hp-suggest-section { text-align: center; padding: 32px 20px 16px; }
.hp-suggest-btn { font-family: 'Space Mono', monospace; font-size: 11px; color: var(--grey-light); background: none; border: 1px solid var(--grey-faint); padding: 14px 24px; cursor: pointer; letter-spacing: 0.05em; transition: all 0.3s; }
.hp-suggest-btn:hover { color: var(--black); border-color: var(--black); }

.hp-footer { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 24px 20px 48px; }
.hp-footer-label { font-size: 10px; color: var(--grey-light); letter-spacing: 0.05em; }
.hp-footer-links { display: flex; gap: 12px; }
.hp-footer-links a { color: var(--grey-light); display: flex; align-items: center; transition: color 0.2s; }
.hp-footer-links a:hover { color: var(--black); }
.hp-footer-links svg { fill: currentColor; width: 16px; height: 16px; }

/* ============================================
   SURPRISE ME OVERLAY
   ============================================ */
.surprise-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 500; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: all 0.3s; }
.surprise-overlay.active { opacity: 1; visibility: visible; }
.surprise-card { background: var(--white); width: 100%; max-width: 440px; padding: 32px; position: relative; transform: scale(0.95) translateY(20px); transition: transform 0.3s; }
.surprise-overlay.active .surprise-card { transform: scale(1) translateY(0); }
.surprise-card-label { font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--grey-light); margin-bottom: 12px; }
.surprise-card-name { font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 500; margin-bottom: 8px; }
.surprise-card-story { font-family: 'Space Grotesk', sans-serif; font-size: 14px; line-height: 1.7; color: var(--grey-mid); margin-bottom: 16px; }
.surprise-card-price { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey-light); margin-bottom: 24px; }
.surprise-card-actions { display: flex; gap: 12px; }
.surprise-card-btn { padding: 14px 24px; font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: all 0.3s; }
.surprise-btn-another { background: none; border: 1px solid var(--grey-faint); color: var(--grey-mid); }
.surprise-btn-another:hover { border-color: var(--black); color: var(--black); }
.surprise-btn-more { background: var(--black); border: none; color: var(--white); }
.surprise-btn-more:hover { background: var(--red); }
.surprise-close { position: absolute; top: 12px; right: 16px; background: none; border: none; font-size: 24px; color: var(--grey-light); cursor: pointer; line-height: 1; }
.surprise-close:hover { color: var(--black); }

/* ============================================
   BRAND DETAIL PANEL (slide-in right)
   ============================================ */
.panel-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 200; opacity: 0; visibility: hidden; transition: all 0.3s; }
.panel-backdrop.active { opacity: 1; visibility: visible; }

.brand-panel { position: fixed; top: 0; right: 0; bottom: 0; width: 100%; max-width: 520px; background: var(--white); z-index: 210; transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1); overflow-y: auto; border-left: 1px solid var(--grey-faint); }
.brand-panel.active { transform: translateX(0); }
.brand-panel-nav { position: sticky; top: 0; display: flex; justify-content: space-between; padding: 16px 20px; background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); border-bottom: 1px solid var(--grey-faint); z-index: 5; }
.panel-nav-btn { font-family: 'Space Mono', monospace; font-size: 11px; background: none; border: none; color: var(--grey-mid); cursor: pointer; padding: 4px 0; transition: color 0.2s; }
.panel-nav-btn:hover { color: var(--black); }

.brand-panel-body { padding: 24px 20px 60px; }
.bp-label { font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--grey-light); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.bp-label::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--red); }
.bp-name { font-family: 'Space Grotesk', sans-serif; font-size: clamp(28px, 7vw, 40px); font-weight: 500; line-height: 1.05; margin-bottom: 6px; }
.bp-founder { font-family: 'Space Grotesk', sans-serif; font-size: 14px; color: var(--grey-mid); margin-bottom: 24px; }
.bp-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 18px 0; border-top: 1px solid var(--grey-faint); border-bottom: 1px solid var(--grey-faint); margin-bottom: 24px; }
.bp-meta-label { font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey-light); margin-bottom: 4px; }
.bp-meta-value { font-weight: 700; font-size: 13px; }
.bp-ownership { font-size: 12px; padding: 14px 16px; background: #f7f7f7; margin-bottom: 24px; line-height: 1.5; }
.bp-ownership-label { font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 9px; color: var(--grey-mid); margin-bottom: 4px; }
.bp-section { margin-bottom: 24px; }
.bp-section-title { font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey-light); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.bp-section-title::after { content: ''; flex: 1; height: 1px; background: var(--grey-faint); }
.bp-section-body { font-family: 'Space Grotesk', sans-serif; font-size: 15px; line-height: 1.7; color: var(--grey-dark); }
.bp-note { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-style: italic; color: var(--grey-mid); padding: 16px; background: #fafafa; border-left: 3px solid var(--red); margin-top: 24px; line-height: 1.6; }
.bp-visit { display: inline-block; margin-top: 24px; padding: 12px 24px; background: var(--black); color: white; text-decoration: none; font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 500; transition: background 0.2s; }
.bp-visit:hover { background: var(--red); }
.bp-keypieces { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--grey-faint); }
.bp-keypieces-title { font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey-light); margin-bottom: 12px; }
.bp-keypiece { font-family: 'Space Grotesk', sans-serif; font-size: 14px; color: var(--grey-dark); padding: 10px 0; border-bottom: 1px solid var(--grey-faint); }
.bp-keypiece:last-child { border-bottom: none; }
.bp-keypiece strong { font-weight: 600; }
.bp-keypiece span { color: var(--grey-mid); }
.bp-related { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--grey-faint); }
.bp-related-title { font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey-light); margin-bottom: 16px; }
.bp-related-list { display: flex; flex-wrap: wrap; gap: 8px; }
.bp-related-item { padding: 8px 14px; background: #f7f7f7; font-family: 'Space Grotesk', sans-serif; font-size: 13px; color: var(--grey-mid); cursor: pointer; border: none; transition: all 0.2s; }
.bp-related-item:hover { background: var(--black); color: var(--white); }

/* ============================================
   ALL BRANDS PANEL
   ============================================ */
.allbrands-panel { position: fixed; top: 0; right: 0; bottom: 0; width: 100%; max-width: 520px; background: var(--white); z-index: 210; transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1); overflow-y: auto; border-left: 1px solid var(--grey-faint); }
.allbrands-panel.active { transform: translateX(0); }
.allbrands-panel-nav { position: sticky; top: 0; display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); border-bottom: 1px solid var(--grey-faint); z-index: 5; }
.allbrands-lens { display: flex; gap: 4px; }
.ab-lens-btn { padding: 6px 10px; background: none; border: none; font-family: 'Space Mono', monospace; font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; color: var(--grey-light); transition: color 0.2s; }
.ab-lens-btn:hover { color: var(--grey-mid); }
.ab-lens-btn.active { color: var(--black); }
.ab-lens-btn.active::after { content: ' \25CF'; color: var(--red); font-size: 6px; }
.allbrands-panel-body { padding: 8px 20px 60px; }
.ab-group { margin-bottom: 24px; }
.ab-group-header { padding: 12px 0 8px; border-bottom: 1px solid var(--grey-faint); margin-bottom: 4px; }
.ab-group-name { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 600; margin-bottom: 2px; }
.ab-group-desc { font-family: 'Space Grotesk', sans-serif; font-size: 11px; color: var(--grey-mid); line-height: 1.5; }
.ab-brand-row { display: flex; align-items: baseline; gap: 8px; padding: 10px 0; cursor: pointer; border-bottom: 1px solid rgba(0,0,0,0.04); transition: all 0.2s; }
.ab-brand-row:hover { padding-left: 8px; }
.ab-brand-row:hover .ab-brand-name { color: var(--red); }
.ab-brand-name { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 500; flex-shrink: 0; }
.ab-brand-hook { font-family: 'Space Grotesk', sans-serif; font-size: 11px; color: var(--grey-light); flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ab-brand-price { font-size: 10px; color: var(--grey-light); letter-spacing: 0.04em; flex-shrink: 0; white-space: nowrap; }

/* ============================================
   SEARCH (from original)
   ============================================ */
.search-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(255,255,255,0.98); z-index: 300; display: flex; flex-direction: column; align-items: center; padding: 80px 20px 40px; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.search-overlay.active { opacity: 1; visibility: visible; }
.search-container { width: 100%; max-width: 600px; }
.search-input-wrap { display: flex; align-items: center; gap: 12px; padding: 16px 20px; background: var(--white); border: 2px solid var(--black); margin-bottom: 24px; }
.search-input-wrap svg { flex-shrink: 0; color: var(--grey-mid); }
.search-input { flex: 1; border: none; outline: none; font-family: 'Space Grotesk', sans-serif; font-size: 18px; background: transparent; }
.search-input::placeholder { color: var(--grey-light); }
.search-close { background: none; border: none; font-size: 28px; color: var(--grey-mid); cursor: pointer; padding: 0; line-height: 1; transition: color 0.2s; }
.search-close:hover { color: var(--black); }
.search-results { max-height: calc(100vh - 200px); overflow-y: auto; }
.search-result { display: flex; align-items: center; gap: 16px; padding: 16px 20px; cursor: pointer; transition: all 0.2s; border-bottom: 1px solid var(--grey-faint); }
.search-result:hover { background: #f8f8f8; transform: translateX(8px); }
.search-result-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grey-faint); flex-shrink: 0; transition: all 0.3s; }
.search-result:hover .search-result-dot { background: var(--red); transform: scale(1.5); }
.search-result-content { flex: 1; min-width: 0; }
.search-result-name { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 500; margin-bottom: 2px; }
.search-result-meta { font-size: 12px; color: var(--grey-light); display: flex; gap: 8px; flex-wrap: wrap; }
.search-result-meta span { display: flex; align-items: center; gap: 4px; }
.search-no-results { text-align: center; padding: 40px 20px; color: var(--grey-mid); font-family: 'Space Grotesk', sans-serif; }
.search-no-results strong { display: block; font-size: 18px; color: var(--black); margin-bottom: 8px; }
.search-hint { font-size: 11px; color: var(--grey-light); text-align: center; margin-top: 16px; letter-spacing: 0.05em; }

/* ============================================
   SUGGEST MODAL (from original)
   ============================================ */
.suggest-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); z-index: 300; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.suggest-overlay.active { opacity: 1; visibility: visible; }
.suggest-modal { background: var(--white); width: 100%; max-width: 480px; padding: 32px; position: relative; transform: translateY(20px); transition: transform 0.3s ease; }
.suggest-overlay.active .suggest-modal { transform: translateY(0); }
.suggest-close { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 24px; color: var(--grey-mid); cursor: pointer; line-height: 1; }
.suggest-close:hover { color: var(--black); }
.suggest-title { font-family: 'Space Grotesk', sans-serif; font-size: 24px; font-weight: 500; margin-bottom: 8px; }
.suggest-desc { font-family: 'Space Grotesk', sans-serif; font-size: 14px; color: var(--grey-mid); line-height: 1.6; margin-bottom: 24px; }
.suggest-form { display: flex; flex-direction: column; gap: 16px; }
.suggest-field { display: flex; flex-direction: column; gap: 4px; }
.suggest-label { font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey-light); }
.suggest-input { padding: 12px; border: 1px solid var(--grey-faint); font-family: 'Space Grotesk', sans-serif; font-size: 14px; transition: border-color 0.2s; }
.suggest-input:focus { outline: none; border-color: var(--black); }
.suggest-input::placeholder { color: var(--grey-light); }
.suggest-textarea { min-height: 80px; resize: vertical; }
.suggest-row { display: flex; gap: 16px; }
.suggest-row .suggest-field { flex: 1; }
.suggest-checkbox { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.suggest-checkbox input { width: 16px; height: 16px; accent-color: var(--black); }
.suggest-checkbox span { font-family: 'Space Grotesk', sans-serif; font-size: 13px; color: var(--grey-mid); }
.suggest-submit { padding: 14px 28px; background: var(--black); color: var(--white); border: none; font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: background 0.3s; margin-top: 8px; }
.suggest-submit:hover { background: var(--red); }
.suggest-submit:disabled { background: var(--grey-light); cursor: not-allowed; }
.suggest-success { text-align: center; padding: 40px 20px; }
.suggest-success-icon { font-size: 48px; margin-bottom: 16px; }
.suggest-success-title { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 500; margin-bottom: 8px; }
.suggest-success-text { font-family: 'Space Grotesk', sans-serif; font-size: 14px; color: var(--grey-mid); }

/* ============================================
   SCROLL REVEAL ANIMATION
   ============================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.5s cubic-bezier(0.4,0,0.2,1), transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   MOBILE
   ============================================ */
@media (max-width: 600px) {
    .hp-hero { padding: 40px 16px 32px; }
    .hp-section { padding: 32px 16px; }
    .hp-card { flex: 0 0 200px; padding: 16px; }
    .hp-card-name { font-size: 14px; }
    .hp-card-hook { font-size: 11px; }
    .search-overlay { padding: 70px 16px 32px; }
    .search-input { font-size: 16px; }
    .suggest-modal { padding: 24px; }
    .suggest-row { flex-direction: column; gap: 16px; }
    .hp-story-grid { grid-template-columns: 1fr; gap: 24px; }
}
