/* ═══════════════════════════════════════════════════════════
   MOBILE MINNOW — PRODUCTION STYLESHEET
   Palette: Off-black #0C1117, Slate #1A2332, Orange #E8720C, Blue #3B82F6
   Font: Outfit (display + body), JetBrains Mono (data)
   ═══════════════════════════════════════════════════════════ */

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

:root {
    --bg-deep: #0C1117;
    --bg-surface: #131B27;
    --bg-card: #1A2332;
    --bg-elevated: #222F40;
    --accent: #E8720C;
    --accent-hover: #D4650A;
    --accent-glow: rgba(232, 114, 12, 0.08);
    --blue: #3B82F6;
    --blue-muted: rgba(59, 130, 246, 0.12);
    --text-primary: #F1F5F9;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    --border: rgba(148, 163, 184, 0.08);
    --border-active: rgba(232, 114, 12, 0.3);
    --radius: 6px;
    --radius-lg: 12px;
    --max-w: 1320px;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Outfit', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem);
}

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(12, 17, 23, 0.85);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    min-height: 90px;
    gap: 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0.5rem 0;
}

.nav-brand-logo {
    height: 75px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 0.25rem;
    justify-content: center;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius);
    transition: color 0.2s var(--ease-out), background 0.2s var(--ease-out);
    letter-spacing: 0.01em;
}

.nav-links a:hover {
    color: var(--text-primary);
    background: rgba(255,255,255,0.04);
}

.nav-links a.active {
    color: var(--accent);
    background: var(--accent-glow);
}

.nav-cta {
    background: var(--accent);
    color: white;
    border: none;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius);
    font-family: inherit;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: transform 0.2s var(--spring), background 0.2s var(--ease-out);
    letter-spacing: 0.01em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.nav-cta:active {
    transform: scale(0.98);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius);
    cursor: pointer;
    transition: transform 0.2s var(--spring), background 0.2s var(--ease-out), border-color 0.2s;
    letter-spacing: 0.01em;
    text-decoration: none;
    line-height: 1;
}

.btn:active {
    transform: scale(0.98) translateY(1px);
}

.btn-primary {
    background: var(--accent);
    color: white;
    border: 1px solid transparent;
    padding: 0.875rem 1.75rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.08),
        rgba(255, 200, 120, 0.15),
        rgba(255, 255, 255, 0.08),
        transparent
    );
    transform: skewX(-20deg);
    transition: none;
    z-index: -1;
    pointer-events: none;
}

.btn-primary:hover::before {
    animation: neonSweep 0.6s var(--ease-out) forwards;
}

@keyframes neonSweep {
    from { left: -75%; }
    to   { left: 125%; }
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow:
        0 0 12px rgba(232, 114, 12, 0.4),
        0 0 32px rgba(232, 114, 12, 0.15),
        0 4px 16px rgba(0, 0, 0, 0.3);
}

.btn-primary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s var(--ease-out);
}

.btn-primary:hover svg {
    transform: translateX(2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    padding: 0.875rem 1.75rem;
    position: relative;
    overflow: hidden;
}

.btn-ghost::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(148, 163, 184, 0.06),
        rgba(148, 163, 184, 0.1),
        rgba(148, 163, 184, 0.06),
        transparent
    );
    transform: skewX(-20deg);
    pointer-events: none;
}

.btn-ghost:hover::before {
    animation: neonSweep 0.6s var(--ease-out) forwards;
}

.btn-ghost:hover {
    color: var(--text-primary);
    border-color: rgba(148, 163, 184, 0.25);
    background: rgba(255,255,255,0.03);
    box-shadow: 0 0 8px rgba(148, 163, 184, 0.08);
}

.nav-cta:hover {
    box-shadow:
        0 0 10px rgba(232, 114, 12, 0.35),
        0 0 24px rgba(232, 114, 12, 0.12);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-submit {
    margin-top: 0.5rem;
}

/* ═══════════════════════════════════════
   SECTION PATTERNS
   ═══════════════════════════════════════ */
.section {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.section--surface {
    background: var(--bg-surface);
}

.section--card {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-label::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: var(--accent);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    max-width: 700px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin-top: 1rem;
    line-height: 1.7;
}

/* ═══════════════════════════════════════
   HERO (Asymmetric Split)
   ═══════════════════════════════════════ */
.hero {
    min-height: 100dvh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2rem, 6vw, 6rem);
    padding-left: clamp(2rem, 8vw, 8rem);
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-glow);
    border: 1px solid var(--border-active);
    border-radius: 100px;
    padding: 0.375rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    width: fit-content;
    margin-bottom: 2rem;
    letter-spacing: 0.03em;
}

.hero-tag-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero h1 .accent {
    color: var(--accent);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    overflow: hidden;
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--bg-deep) 0%, transparent 30%);
    z-index: 1;
}

.hero-visual::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to top, var(--bg-deep), transparent);
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.hero-stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    font-family: 'JetBrains Mono', monospace;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════ */
.marquee-band {
    overflow: hidden;
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}

.marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-item {
    white-space: nowrap;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.marquee-dot {
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════
   ZIG-ZAG FEATURES
   ═══════════════════════════════════════ */
.zigzag {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 4rem;
}

.zigzag:last-child {
    margin-bottom: 0;
}

.zigzag.reversed {
    direction: rtl;
}

.zigzag.reversed > * {
    direction: ltr;
}

.zigzag-content {
    padding: clamp(1.5rem, 3vw, 3rem);
}

.zigzag-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-glow);
    border: 1px solid var(--border-active);
    border-radius: var(--radius);
    display: grid;
    place-items: center;
    margin-bottom: 1.5rem;
}

.zigzag-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.5;
}

.zigzag-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.zigzag-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 480px;
}

.zigzag-visual {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    height: 320px;
    overflow: hidden;
    position: relative;
}

.zigzag-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.zigzag-visual:hover img {
    transform: scale(1.03);
}

.zigzag-stat {
    display: grid;
    place-items: center;
    height: 100%;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
}

.zigzag-stat-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
}

.zigzag-stat-value--blue {
    color: var(--blue);
}

.zigzag-stat-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* ═══════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════ */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.25rem;
}

.testimonial {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: border-color 0.3s var(--ease-out);
}

.testimonial:hover {
    border-color: rgba(59, 130, 246, 0.2);
}

.testimonial-quote {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-quote::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--blue);
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-elevated);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--accent);
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════ */
.cta-band {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 4rem 0;
}

.cta-band-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2rem;
}

.cta-band h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.cta-band p {
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* ═══════════════════════════════════════
   PAGE HEADER (About, Order, Area, Contact)
   ═══════════════════════════════════════ */
.page-hero {
    padding-top: 0;
    padding-bottom: 3rem;
}

.page-hero--split {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 3rem;
    align-items: end;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.page-hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.7;
}

/* ═══════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════ */
.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-stat {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.about-stat-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.about-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.about-story {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-photo {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    aspect-ratio: 3/4;
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text h2 {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    margin-top: 2.5rem;
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    max-width: 65ch;
}

/* ═══════════════════════════════════════
   ORDER PAGE
   ═══════════════════════════════════════ */
.order-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 4rem;
}

.order-step {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: border-color 0.3s;
}

.order-step:hover {
    border-color: var(--border-active);
}

.order-step-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.order-step h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.order-step p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.order-layout {
    display: grid;
    grid-template-columns: 1fr 0.4fr;
    gap: 3rem;
    align-items: start;
}

/* ─── FORMS ─── */
.form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 3vw, 2.5rem);
}

.form-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-deep);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2364748B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* ─── Custom Select Dropdown ─── */
.custom-select {
    position: relative;
}

.custom-select-trigger {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    background: var(--bg-deep);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.custom-select-trigger:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.custom-select-trigger .custom-select-value {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.custom-select-trigger.placeholder .custom-select-value {
    color: var(--text-muted);
}

.custom-select-trigger svg {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.custom-select.open .custom-select-trigger svg {
    transform: rotate(180deg);
}

.custom-select-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-active);
    border-radius: var(--radius);
    max-height: 280px;
    overflow-y: auto;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.custom-select.open .custom-select-dropdown {
    display: block;
}

.custom-select-header {
    padding: 0.6rem 1rem 0.35rem;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    pointer-events: none;
    border-top: 1px solid var(--border);
}

.custom-select-header:first-child {
    border-top: none;
}

.custom-select-option {
    padding: 0.5rem 1rem 0.5rem 1.25rem;
    color: var(--text-primary);
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.12s;
}

.custom-select-option:hover {
    background: var(--bg-elevated);
}

.custom-select-option.selected {
    color: var(--accent);
    background: var(--accent-glow);
}

.custom-select-dropdown::-webkit-scrollbar {
    width: 6px;
}

.custom-select-dropdown::-webkit-scrollbar-track {
    background: transparent;
}

.custom-select-dropdown::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: 3px;
}

.form-helper {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.375rem;
}

/* ─── Add to Order Button & Items List ─── */
.btn-add-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: transparent;
    color: var(--accent);
    border: 1px dashed var(--accent);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    margin-top: 0.25rem;
    margin-bottom: 0.75rem;
}

.btn-add-item:hover {
    background: var(--accent);
    color: white;
}

.order-items-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
}

.order-items-list:empty {
    display: none;
}

.order-item-tag {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 1rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: var(--text-primary);
}

.order-item-tag span {
    font-weight: 600;
    color: var(--accent);
    margin-right: 0.5rem;
}

.order-item-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.2rem;
    line-height: 1;
    font-size: 1.1rem;
    transition: color 0.15s;
}

.order-item-remove:hover {
    color: #DC2626;
}

.form-error {
    font-size: 0.75rem;
    color: #EF4444;
    margin-top: 0.375rem;
    display: none;
}

.form-success {
    display: none;
    text-align: center;
    padding: 3rem 1rem;
}

.form-success.visible {
    display: block;
}

.form-success h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.form-success p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ─── SIDEBAR ─── */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    margin-bottom: 1.25rem;
}

.sidebar-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.sidebar-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.sidebar-phone {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--accent);
    margin-top: 0.75rem;
    display: block;
    text-decoration: none;
}

.sidebar-phone:hover {
    text-decoration: underline;
}

/* ═══════════════════════════════════════
   SERVICE AREA PAGE
   ═══════════════════════════════════════ */
.area-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.area-map {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}

.area-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: brightness(0.8) contrast(1.1) saturate(0.3);
}

.area-map-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.area-states {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.area-state {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: border-color 0.3s, transform 0.3s var(--spring);
}

.area-state:hover {
    border-color: var(--border-active);
    transform: translateY(-2px);
}

.area-state h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
}

.area-state p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ═══════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.contact-info-desc {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 400px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--accent-glow);
    border: 1px solid var(--border-active);
    border-radius: var(--radius);
    display: grid;
    place-items: center;
}

.contact-detail-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.5;
}

.contact-detail-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.contact-detail-value {
    font-weight: 500;
    color: var(--text-primary);
}

.contact-detail-value a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-detail-value a:hover {
    color: var(--accent);
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
    border-top: 1px solid var(--border);
    padding: 2rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2rem;
}

.footer-inner > :first-child {
    align-self: center;
}

.footer-brand {
    margin-bottom: 0.75rem;
}

.footer-brand-logo {
    height: 80px;
    width: auto;
    display: block;
}

.footer-description {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.7;
    max-width: 340px;
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.625rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-primary);
}

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

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE COLLAPSE
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .nav-inner { grid-template-columns: auto 1fr auto; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(12, 17, 23, 0.98);
        backdrop-filter: blur(20px);
        padding: 1rem;
        border-bottom: 1px solid var(--border);
        gap: 0;
        z-index: 99;
    }

    .nav-links.open a {
        padding: 0.75rem 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-content {
        padding: 3rem 1.5rem;
        align-items: center;
        text-align: center;
    }

    .hero h1 {
        text-align: center;
    }

    .hero-tag {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        height: 300px;
    }

    .hero-visual::before {
        background: linear-gradient(to bottom, var(--bg-deep) 0%, transparent 40%);
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        text-align: center;
    }

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

    .section-title {
        margin-left: auto;
        margin-right: auto;
    }

    .section-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .section-label {
        justify-content: center;
    }

    .zigzag,
    .zigzag.reversed {
        grid-template-columns: 1fr;
        direction: ltr;
    }

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

    .zigzag-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .zigzag-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .zigzag-visual {
        height: 240px;
    }

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

    .testimonial {
        text-align: center;
    }

    .testimonial-quote::before {
        margin-left: auto;
        margin-right: auto;
    }

    .testimonial-author {
        justify-content: center;
    }

    .cta-band-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-band-inner .btn {
        justify-self: center;
    }

    .page-hero {
        padding-top: 1rem;
        text-align: center;
    }

    .page-hero .section-label {
        justify-content: center;
    }

    .page-hero .section-title {
        margin-left: auto;
        margin-right: auto;
    }

    .page-hero .section-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .page-hero--split {
        grid-template-columns: 1fr;
    }

    .page-hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .section:first-of-type {
        padding-top: 2rem;
    }

    .about-story {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-photo {
        position: static;
        max-width: 280px;
        order: -1;
        margin-left: auto;
        margin-right: auto;
    }

    .about-text p {
        margin-left: auto;
        margin-right: auto;
    }

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

    .order-steps {
        grid-template-columns: 1fr 1fr;
    }

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

    .order-layout {
        grid-template-columns: 1fr;
    }

    .form-card h2 {
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .area-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-info-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-detail {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-detail-icon {
        margin-bottom: 0.25rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .order-steps {
        grid-template-columns: 1fr;
    }

    .area-states {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════
   PAGE TRANSITIONS
   ═══════════════════════════════════════════════ */
body {
    animation: pageEnter 0.4s var(--ease-out) both;
}

body.page-leaving {
    animation: pageLeave 0.25s ease-in both;
}

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

@keyframes pageLeave {
    from { opacity: 1; transform: translateY(0); }
    to   { opacity: 0; transform: translateY(-6px); }
}

/* ═══════════════════════════════════════════════
   FLOATING CALL BUTTON (mobile only)
   ═══════════════════════════════════════════════ */
.fab-call {
    display: none;
}

@media (max-width: 768px) {
    .fab-call {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
        right: calc(1.25rem + env(safe-area-inset-right, 0px));
        z-index: 999;
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: var(--accent);
        color: white;
        box-shadow: 0 4px 20px rgba(232, 114, 12, 0.4), 0 2px 8px rgba(0,0,0,0.3);
        text-decoration: none;
        transition: transform 0.2s var(--spring), box-shadow 0.2s ease;
        /* min 44x44 touch target — already 56x56 */
    }

    .fab-call:hover,
    .fab-call:active {
        transform: scale(1.1);
        box-shadow: 0 6px 28px rgba(232, 114, 12, 0.5), 0 3px 12px rgba(0,0,0,0.4);
    }

    .fab-call svg {
        width: 24px;
        height: 24px;
        fill: none;
        stroke: white;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }
}

/* ═══════════════════════════════════════════════
   SKIP-TO-CONTENT LINK (Accessibility)
   ═══════════════════════════════════════════════ */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--accent);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    z-index: 200;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
}

.skip-link:focus {
    top: 1rem;
}

/* ═══════════════════════════════════════════════
   REDUCED MOTION (Accessibility)
   ═══════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .marquee-track {
        animation: none;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* ═══════════════════════════════════════════════
   INLINE FORM ERROR BANNER
   ═══════════════════════════════════════════════ */
.form-error-banner {
    margin: 0 0 1.25rem 0;
    padding: 0.85rem 1rem;
    border-radius: var(--radius, 8px);
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.35);
    color: #FCA5A5;
    font-size: 0.95rem;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.form-error-banner::before {
    content: "⚠";
    flex: 0 0 auto;
    font-size: 1.1rem;
    line-height: 1.2;
    color: #F87171;
}

.form-success-banner {
    margin: 0 0 1.25rem 0;
    padding: 0.85rem 1rem;
    border-radius: var(--radius, 8px);
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #86EFAC;
    font-size: 0.95rem;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.form-success-banner::before {
    content: "✓";
    flex: 0 0 auto;
    font-size: 1.1rem;
    line-height: 1.2;
    color: #4ADE80;
}

/* Form submitting state */
.form-card form[aria-busy="true"] button[type="submit"] {
    opacity: 0.6;
    cursor: progress;
    pointer-events: none;
}
