/* ==========================================================================
   AVENUE METRO STREETWEAR COLLECTIVE — EDITORIAL LOOKBOOK STYLESHEET
   High-contrast, luxury dark streetwear aesthetic, responsive layout,
   precision image placeholder containers, and accessible form styling.
   ========================================================================== */

/* Impact Font Definition */
@font-face {
    font-family: 'ImpactCustom';
    src: url('/Fonts/impact.ttf') format('truetype'),
         url('/fonts/impact.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --street-bg: #080808;
    --street-surface: #121212;
    --street-surface-hover: #1a1a1a;
    --street-surface-elevated: #1e1e1e;
    --street-border: #262626;
    --street-border-highlight: #444444;
    --street-text: #f5f5f7;
    --street-text-muted: #8e8e93;
    --street-text-dim: #636366;
    --street-accent: #ffffff;
    --street-accent-glow: rgba(255, 255, 255, 0.12);
    --street-danger: #ff453a;
    --street-success: #32d74b;
    --street-warning: #ffd60a;
    --font-heading: 'ImpactCustom', 'Impact', 'Haettenschweiler', 'Arial Black', sans-serif;
    --font-marquee: 'Balls on the Rampage', 'Arial Black', sans-serif;
    --font-sans: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-mono: 'SF Mono', 'Courier New', monospace;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Page Scaffolding */
body.page-streetwear-collective {
    background-color: var(--street-bg);
    color: var(--street-text);
    font-family: var(--font-sans);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.street-main {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

/* Typography & Display Headings */
.street-title-hero {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6.5vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 20px 0;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
}

.street-section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    line-height: 1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 16px 0;
}

.street-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--street-text-muted);
    margin-bottom: 16px;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--street-border);
    border-radius: 100px;
}

.street-lead {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 300;
    color: #d1d1d6;
    max-width: 720px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

/* Layout Utilities */
.street-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.street-container-narrow {
    max-width: 900px;
}

.street-section {
    padding: clamp(60px, 10vw, 120px) 0;
    position: relative;
    border-bottom: 1px solid var(--street-border);
}

.street-section-dark {
    background-color: #0d0d0d;
}

.street-section-black {
    background-color: #040404;
}

.text-center {
    text-align: center;
}

/* Marquee / Street Ticker */
.street-ticker {
    background: #ffffff;
    color: #000000;
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    position: relative;
    z-index: 10;
}

.street-ticker-track {
    display: inline-flex;
    animation: marqueeTicker 24s linear infinite;
}

.street-ticker-item {
    font-family: var(--font-marquee);
    font-size: 1.15rem;
    letter-spacing: 0.15em;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.street-ticker-dot {
    width: 6px;
    height: 6px;
    background: #000;
    border-radius: 50%;
    display: inline-block;
}

@keyframes marqueeTicker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   IMAGE PLACEHOLDER SYSTEM (10 DEDICATED SLOTS)
   Aspect-ratio locked, responsive, accessible, with fallback aesthetic badges.
   ========================================================================== */

.street-placeholder-container {
    position: relative;
    width: 100%;
    background: linear-gradient(145deg, #161616 0%, #0d0d0d 100%);
    border: 1px solid var(--street-border);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    transition: border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.street-placeholder-container:hover {
    border-color: var(--street-border-highlight);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6);
}

/* Aspect Ratio Modifiers */
.ratio-16-9 { aspect-ratio: 16 / 9; }
.ratio-3-2 { aspect-ratio: 3 / 2; }
.ratio-4-5 { aspect-ratio: 4 / 5; }
.ratio-2-1 { aspect-ratio: 2 / 1; }
.ratio-1-1 { aspect-ratio: 1 / 1; }

.street-placeholder-content {
    position: absolute;
    inset: 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    background-image: 
        radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, transparent 70%),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 32px 32px, 32px 32px;
}

.street-placeholder-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.street-placeholder-badge {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #a1a1aa;
    background: rgba(0, 0, 0, 0.6);
    padding: 4px 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    backdrop-filter: blur(8px);
}

.street-placeholder-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.street-placeholder-icon {
    width: 48px;
    height: 48px;
    stroke: rgba(255, 255, 255, 0.3);
    stroke-width: 1.5;
    fill: none;
    transition: stroke 0.3s ease, transform 0.3s ease;
}

.street-placeholder-container:hover .street-placeholder-icon {
    stroke: rgba(255, 255, 255, 0.7);
    transform: scale(1.08);
}

.street-placeholder-label {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
}

.street-placeholder-desc {
    font-size: 0.85rem;
    color: var(--street-text-muted);
    max-width: 280px;
    margin: 0;
    line-height: 1.4;
}

.street-placeholder-bottom {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.street-placeholder-dimensions {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--street-text-dim);
}

/* Image Swap Overrides (When real images replace placeholders) */
.street-placeholder-container picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 2;
}

.street-placeholder-container img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    z-index: 2;
    transition: transform 0.6s var(--ease-out);
}

.street-placeholder-container:hover img {
    transform: scale(1.03);
}

/* ==========================================================================
   BUTTONS & CTAS
   ========================================================================== */

.street-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #ffffff;
    color: #000000;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 18px 36px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

.street-btn-primary:hover {
    background: #e5e5ea;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.25);
}

.street-btn-primary:active {
    transform: translateY(0);
}

.street-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: transparent;
    color: #ffffff;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 18px 36px;
    border-radius: 4px;
    border: 1px solid var(--street-border-highlight);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.street-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.street-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

/* ==========================================================================
   HERO TOP BANNER (BETWEEN MARQUEE & HERO HEADLINE)
   ========================================================================== */

.street-hero-banner-section {
    padding: clamp(30px, 4vw, 50px) 0 0 0;
    position: relative;
    background: #080808;
}

/* ==========================================================================
   SECTION 1 — HERO
   ========================================================================== */

.street-hero-section {
    padding: clamp(40px, 6vw, 70px) 0 clamp(40px, 6vw, 80px);
    position: relative;
    background: radial-gradient(circle at 50% 0%, #1c1c1e 0%, #080808 70%);
}

.street-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.street-hero-content {
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
}

.street-hero-sub {
    font-family: var(--font-sans);
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #ffffff;
    margin: 0 0 16px 0;
}

.street-hero-tagline {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--street-text-muted);
    margin-top: 24px;
}

.street-hero-media {
    margin-top: 30px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   SECTION 2 — WHAT WE'RE LOOKING FOR (4 CATEGORY CARDS)
   ========================================================================== */

.street-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 48px 0;
}

.street-category-card {
    background: var(--street-surface);
    border: 1px solid var(--street-border);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s var(--ease-out), border-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.street-category-card:hover {
    transform: translateY(-6px);
    border-color: var(--street-border-highlight);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
}

.street-category-body {
    padding: 24px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.street-category-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 12px 0;
}

.street-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.street-category-list li {
    font-size: 0.9rem;
    color: var(--street-text-muted);
    position: relative;
    padding-left: 16px;
}

.street-category-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--street-text-dim);
}

/* ==========================================================================
   SECTION 3 — WHY AVENUE METRO
   ========================================================================== */

.street-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 48px 0;
}

.street-feature-box {
    background: var(--street-surface);
    border: 1px solid var(--street-border);
    border-radius: 8px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.street-feature-box:hover {
    background: var(--street-surface-hover);
    border-color: var(--street-border-highlight);
    transform: translateY(-4px);
}

.street-feature-num {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--street-text-dim);
    letter-spacing: 0.15em;
}

.street-feature-title {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
}

.street-feature-desc {
    font-size: 0.95rem;
    color: var(--street-text-muted);
    margin: 0;
    line-height: 1.6;
}

.street-feature-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.street-feature-list li {
    font-size: 0.85rem;
    color: #a1a1aa;
    display: flex;
    align-items: center;
    gap: 8px;
}

.street-feature-list li svg {
    width: 14px;
    height: 14px;
    stroke: var(--street-success);
    flex-shrink: 0;
}

.street-banner-break {
    margin: 64px 0 0 0;
}

/* ==========================================================================
   SECTION 4 — WHAT IS AVENUE METRO (FOUR FLOORS)
   ========================================================================== */

.street-floors-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: center;
    margin: 48px 0;
}

.street-floors-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.street-floor-card {
    background: var(--street-surface);
    border: 1px solid var(--street-border);
    border-radius: 8px;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.street-floor-card.floor-active {
    background: linear-gradient(90deg, #1c1c1e 0%, var(--street-surface) 100%);
    border-color: #ffffff;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.08);
}

.street-floor-card:hover {
    border-color: var(--street-border-highlight);
    transform: translateX(6px);
}

.street-floor-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.street-floor-badge {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 4px;
}

.street-floor-name {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
}

.street-floor-detail {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--street-text-muted);
    letter-spacing: 0.1em;
}

.street-floors-closing {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--street-border);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    margin-top: 32px;
}

.street-floors-closing p {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
}

/* ==========================================================================
   SECTION 5 — HOW IT WORKS (TIMELINE)
   ========================================================================== */

.street-timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 56px 0;
    position: relative;
}

.street-timeline-grid::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--street-border-highlight) 20%, var(--street-border-highlight) 80%, transparent);
    z-index: 1;
}

.street-timeline-step {
    position: relative;
    z-index: 2;
    background: var(--street-surface);
    border: 1px solid var(--street-border);
    border-radius: 8px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.street-timeline-step:hover {
    transform: translateY(-6px);
    border-color: var(--street-border-highlight);
}

.street-step-circle {
    width: 44px;
    height: 44px;
    background: #000000;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 8px;
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.2);
}

.street-step-title {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
    margin: 0;
}

.street-step-desc {
    font-size: 0.9rem;
    color: var(--street-text-muted);
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   SECTION 6 — PRODUCT SAMPLE PROGRAM
   ========================================================================== */

.street-sample-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
    margin: 48px 0;
}

.street-sample-criteria-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 24px 0;
}

.street-criteria-pill {
    background: var(--street-surface);
    border: 1px solid var(--street-border);
    padding: 10px 14px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #e5e5ea;
    display: flex;
    align-items: center;
    gap: 8px;
}

.street-criteria-dot {
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
}

/* Callout Box: WANT TO STAND OUT? */
.street-callout-box {
    background: linear-gradient(135deg, #18181b 0%, #111113 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 4px solid #ffffff;
    border-radius: 8px;
    padding: 28px 32px;
    margin: 36px 0;
    position: relative;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.street-callout-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.street-callout-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
}

.street-callout-text {
    font-size: 0.95rem;
    color: #d1d1d6;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.street-sample-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #000000;
    background: #ffffff;
    border: 1px solid #ffffff;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}

.street-sample-link:hover {
    background: #e5e5ea;
    border-color: #e5e5ea;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.35);
}

.street-callout-warning {
    background: rgba(255, 69, 58, 0.1);
    border: 1px solid rgba(255, 69, 58, 0.3);
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 0.85rem;
    color: #ff9f9a;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.street-callout-warning strong {
    color: #ffffff;
}

/* ==========================================================================
   SECTION 7 & 8 — TERMS & FULFILLMENT
   ========================================================================== */

.street-terms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 48px 0;
}

.street-term-card {
    background: var(--street-surface);
    border: 1px solid var(--street-border);
    border-radius: 8px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.street-term-title {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
}

.street-term-text {
    font-size: 0.9rem;
    color: var(--street-text-muted);
    line-height: 1.6;
    margin: 0;
}

.street-fulfill-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 48px 0;
}

.street-fulfill-card {
    background: var(--street-surface);
    border: 1px solid var(--street-border);
    border-radius: 8px;
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ==========================================================================
   SECTION 9 — APPLICATION FORM & UPLOAD
   ========================================================================== */

.street-form-wrapper {
    background: #111111;
    border: 1px solid var(--street-border);
    border-radius: 12px;
    padding: clamp(28px, 5vw, 60px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8);
    position: relative;
}

.street-form-group {
    margin-bottom: 28px;
}

.street-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.street-form-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.street-form-section-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--street-border);
    margin: 36px 0 24px 0;
}

.street-form-section-title:first-of-type {
    margin-top: 0;
}

.street-label {
    display: block;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    color: #e5e5ea;
    margin-bottom: 8px;
}

.street-label-sub {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--street-text-muted);
    display: block;
    margin-top: 4px;
    margin-bottom: 8px;
}

.street-input,
.street-select,
.street-textarea {
    width: 100%;
    background: #000000;
    border: 1px solid var(--street-border-highlight);
    border-radius: 6px;
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: #ffffff;
    box-sizing: border-box;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.street-input:focus,
.street-select:focus,
.street-textarea:focus {
    outline: none;
    border-color: #ffffff;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.street-input::placeholder,
.street-textarea::placeholder {
    color: var(--street-text-dim);
}

.street-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%238e8e93' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 42px;
}

/* Category Checkbox Pills Grid */
.street-pill-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
}

.street-pill-checkbox {
    position: relative;
    cursor: pointer;
    user-select: none;
}

.street-pill-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.street-pill-box {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #080808;
    border: 1px solid var(--street-border);
    border-radius: 6px;
    padding: 12px 14px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #a1a1aa;
    transition: all 0.2s ease;
}

.street-pill-checkbox:hover .street-pill-box {
    border-color: var(--street-border-highlight);
    color: #ffffff;
}

.street-pill-checkbox input:checked ~ .street-pill-box {
    background: #ffffff;
    color: #000000;
    font-weight: 700;
    border-color: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.street-pill-checkbox input:focus-visible ~ .street-pill-box {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

/* Dropzone & File Uploaders */
.street-dropzone {
    border: 2px dashed var(--street-border-highlight);
    border-radius: 8px;
    padding: 32px 20px;
    text-align: center;
    background: #080808;
    cursor: pointer;
    transition: border-color 0.25s ease, background-color 0.25s ease;
    position: relative;
}

.street-dropzone:hover,
.street-dropzone.dragover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.03);
}

.street-dropzone input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.street-dropzone-icon {
    width: 36px;
    height: 36px;
    stroke: var(--street-text-muted);
    margin-bottom: 12px;
}

.street-dropzone-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
    margin: 0 0 4px 0;
}

.street-dropzone-hint {
    font-size: 0.8rem;
    color: var(--street-text-muted);
    margin: 0;
}

.street-file-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.street-file-preview-card {
    position: relative;
    aspect-ratio: 1;
    background: #1c1c1e;
    border: 1px solid var(--street-border);
    border-radius: 6px;
    overflow: hidden;
}

.street-file-preview-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.street-file-preview-remove {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 22px;
    height: 22px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Legal & Compliance Checkboxes */
.street-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
    cursor: pointer;
}

.street-checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: #ffffff;
    cursor: pointer;
    flex-shrink: 0;
}

.street-checkbox-text {
    font-size: 0.88rem;
    color: #d1d1d6;
    line-height: 1.5;
}

.street-checkbox-text a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Post-Submit Confirmation Modal/Card */
.street-confirmation-card {
    display: none;
    text-align: center;
    padding: clamp(40px, 8vw, 80px) 24px;
    background: radial-gradient(circle at center, #1c1c1e 0%, #0d0d0d 100%);
    border: 1px solid var(--street-border-highlight);
    border-radius: 12px;
    animation: fadeIn 0.5s var(--ease-out);
}

.street-confirmation-icon {
    width: 72px;
    height: 72px;
    background: #ffffff;
    color: #000000;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

.street-confirmation-icon svg {
    width: 38px;
    height: 38px;
    stroke: #000000;
    stroke-width: 2.5;
}

.street-confirmation-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 16px 0;
}

.street-confirmation-body {
    font-size: 1.1rem;
    color: #d1d1d6;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.street-confirmation-footer {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
}

/* ==========================================================================
   SECTION 10 — WHAT HAPPENS NEXT
   ========================================================================== */

.street-stages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 48px 0;
}

.street-stage-card {
    background: var(--street-surface);
    border: 1px solid var(--street-border);
    border-radius: 8px;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.street-stage-badge {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    width: fit-content;
}

.street-stage-title {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #ffffff;
    margin: 0;
}

.street-stage-text {
    font-size: 0.88rem;
    color: var(--street-text-muted);
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   SECTION 11 — FAQ ACCORDION
   ========================================================================== */

.street-faq-container {
    max-width: 880px;
    margin: 48px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.street-faq-item {
    background: var(--street-surface);
    border: 1px solid var(--street-border);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.25s ease;
}

.street-faq-item:hover {
    border-color: var(--street-border-highlight);
}

.street-faq-item.active {
    border-color: rgba(255, 255, 255, 0.3);
    background: var(--street-surface-hover);
}

.street-faq-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 28px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
}

.street-faq-chevron {
    width: 20px;
    height: 20px;
    stroke: var(--street-text-muted);
    transition: transform 0.3s ease, stroke 0.3s ease;
    flex-shrink: 0;
}

.street-faq-item.active .street-faq-chevron {
    transform: rotate(180deg);
    stroke: #ffffff;
}

.street-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
    background: #0d0d0d;
}

.street-faq-content p {
    padding: 0 28px 24px;
    margin: 0;
    font-size: 0.95rem;
    color: var(--street-text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   SECTION 12 & FINAL CTA — CONTACT & CLOSING
   ========================================================================== */

.street-contact-box {
    background: var(--street-surface);
    border: 1px solid var(--street-border);
    border-radius: 12px;
    padding: clamp(36px, 6vw, 64px);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.street-contact-email-link {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3.5vw, 2.4rem);
    letter-spacing: 0.05em;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    margin: 20px 0;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 4px;
    transition: opacity 0.2s ease;
}

.street-contact-email-link:hover {
    opacity: 0.8;
}

.street-final-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 32px;
    align-items: center;
    margin-top: 48px;
}

/* ==========================================================================
   ANIMATIONS & RESPONSIVE BREAKPOINTS
   ========================================================================== */

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

@media (max-width: 1024px) {
    .street-category-grid,
    .street-timeline-grid,
    .street-stages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .street-why-grid,
    .street-terms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .street-floors-container,
    .street-sample-container {
        grid-template-columns: 1fr;
    }

    .street-final-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .street-final-grid > div:first-child,
    .street-final-grid > div:last-child {
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .street-category-grid,
    .street-why-grid,
    .street-terms-grid,
    .street-timeline-grid,
    .street-stages-grid,
    .street-fulfill-grid,
    .street-form-row,
    .street-form-row-3 {
        grid-template-columns: 1fr;
    }

    .street-timeline-grid::before {
        display: none;
    }

    .street-sample-criteria-grid {
        grid-template-columns: 1fr;
    }

    .street-btn-primary,
    .street-btn-secondary {
        width: 100%;
    }

    .street-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .street-hero-media .street-placeholder-container.ratio-16-9 {
        aspect-ratio: 4 / 5;
    }
}
