/* Grimsvale Coden Ltd — Color Car Pickup Theme */

:root {
    --sky: #4BA3F5;
    --sky-deep: #2E86DE;
    --sun: #FFD54F;
    --sun-deep: #FFB300;
    --pink: #FF6B9D;
    --green: #7ED321;
    --green-deep: #5CB018;
    --orange: #FF9F43;
    --purple: #A855F7;
    --ink: #1E293B;
    --muted: #64748B;
    --paper: #FFFFFF;
    --mist: #F0F7FF;
    --lane: #E8F4FD;
    --shadow: 0 10px 30px rgba(46, 134, 222, 0.12);
    --radius: 18px;
    --frame: 1024px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Nunito', 'Segoe UI', sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, #EAF5FF 0%, #F8FBFF 40%, #FFF 100%);
    line-height: 1.65;
    min-height: 100vh;
}

a { color: inherit; text-decoration: none; transition: color .2s, opacity .2s; }
img { max-width: 100%; display: block; height: auto; }

.site-shell { min-height: 100vh; display: flex; flex-direction: column; }
.site-frame { width: 100%; max-width: var(--frame); margin: 0 auto; padding: 0 20px; }
.site-main { flex: 1; padding-top: 96px; }

/* Header */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--sun);
    box-shadow: 0 4px 20px rgba(75,163,245,.1);
}

.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    min-height: 86px; gap: 16px;
}

.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand-logo { height: 70px; width: auto; max-width: 280px; object-fit: contain; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.nav-link {
    padding: 8px 14px; border-radius: 999px; font-weight: 700; font-size: .92rem;
    color: var(--muted); transition: all .2s;
}
.nav-link:hover { color: var(--sky-deep); background: var(--lane); }
.nav-link.is-active { color: #fff; background: linear-gradient(135deg, var(--sky), var(--sky-deep)); box-shadow: 0 4px 12px rgba(46,134,222,.25); }
.nav-shop.is-active { background: linear-gradient(135deg, var(--sun), var(--orange)); color: var(--ink); }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px; background: none; border: none;
    cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 3px; background: var(--sky-deep); border-radius: 2px; }

/* Common blocks */
.section-block { padding: 56px 0; }
.section-block.alt { background: linear-gradient(180deg, rgba(255,255,255,.7), rgba(232,244,253,.5)); }
.section-head { text-align: center; margin-bottom: 36px; }
.section-tag {
    display: inline-block; padding: 4px 14px; border-radius: 999px;
    background: var(--lane); color: var(--sky-deep); font-size: .78rem; font-weight: 800;
    letter-spacing: .08em; text-transform: uppercase; margin-bottom: 10px;
}
.section-title {
    font-family: 'Fredoka', sans-serif; font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--ink); margin-bottom: 10px;
}
.section-lead { color: var(--muted); max-width: 640px; margin: 0 auto; font-size: 1.02rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; align-items: center; }
.btn-img { display: inline-block; transition: transform .2s, filter .2s; }
.btn-img:hover { transform: translateY(-3px); filter: brightness(1.05); }
.btn-img img { height: 52px; width: auto; }

.panel {
    background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow);
    border: 2px solid rgba(75,163,245,.12); padding: 28px;
}

/* HOME */
.page-home .site-header { border-bottom-color: var(--sky); }

.banner-section {
    position: relative; overflow: hidden; padding: 28px 0 48px;
}
.banner-wrap {
    display: grid; grid-template-columns: 1.05fr .95fr; gap: 28px; align-items: center;
}
.banner-copy { position: relative; z-index: 2; }
.banner-badge {
    display: inline-block; padding: 6px 16px; border-radius: 999px;
    background: linear-gradient(135deg, var(--pink), var(--purple)); color: #fff;
    font-size: .78rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
    margin-bottom: 14px;
}
.banner-title {
    font-family: 'Fredoka', sans-serif; font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.15; margin-bottom: 14px;
}
.banner-title em { font-style: normal; color: var(--sky-deep); }
.banner-desc { color: var(--muted); font-size: 1.05rem; margin-bottom: 22px; max-width: 480px; }
.banner-visual img { border-radius: 24px; box-shadow: var(--shadow); }

.preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.preview-card {
    background: #fff; border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); border: 2px solid transparent; transition: transform .2s, border-color .2s;
}
.preview-card:hover { transform: translateY(-4px); border-color: var(--sky); }
.preview-card img { width: 100%; height: 160px; object-fit: cover; }
.preview-card-body { padding: 18px; }
.preview-card-body h3 { font-family: 'Fredoka', sans-serif; font-size: 1.05rem; margin-bottom: 8px; color: var(--sky-deep); }
.preview-card-body p { font-size: .92rem; color: var(--muted); margin-bottom: 12px; }
.preview-link { font-weight: 800; color: var(--orange); font-size: .88rem; }

.feature-strip {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 28px;
}
.feature-chip {
    text-align: center; padding: 18px 12px; border-radius: 16px;
    background: #fff; box-shadow: var(--shadow);
}
.feature-chip i { font-size: 1.4rem; margin-bottom: 8px; display: block; }
.feature-chip:nth-child(1) i { color: var(--pink); }
.feature-chip:nth-child(2) i { color: var(--sky); }
.feature-chip:nth-child(3) i { color: var(--green); }
.feature-chip:nth-child(4) i { color: var(--orange); }
.feature-chip strong { display: block; font-size: .88rem; margin-bottom: 4px; }
.feature-chip span { font-size: .78rem; color: var(--muted); }

.game-showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.game-shot { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); border: 3px solid #fff; }
.game-shot img { width: 100%; height: 200px; object-fit: cover; }

.contact-teaser {
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
    padding: 28px; border-radius: var(--radius);
    background: linear-gradient(135deg, var(--sky), var(--sky-deep)); color: #fff;
}
.contact-teaser p { opacity: .92; max-width: 520px; }
.contact-teaser .cta-btn {
    display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px;
    border-radius: 999px; background: var(--sun); color: var(--ink); font-weight: 800;
}

/* ABOUT */
.page-about { background: linear-gradient(180deg, #FFF8E8 0%, #FFF 50%); }
.page-about .site-header { border-bottom-color: var(--orange); }
.page-about .nav-link.is-active { background: linear-gradient(135deg, var(--orange), var(--sun-deep)); color: var(--ink); }

.about-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: 36px; align-items: center; }
.about-photo { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); border: 4px solid var(--sun); }
.about-photo img { width: 100%; height: 380px; object-fit: cover; }
.about-copy h1 { font-family: 'Fredoka', sans-serif; font-size: 2rem; margin-bottom: 8px; }
.about-copy .company-name { color: var(--orange); font-weight: 800; margin-bottom: 18px; display: block; }
.about-copy p { color: var(--muted); margin-bottom: 16px; font-size: 1.02rem; }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.value-card {
    padding: 20px; border-radius: 16px; background: #fff; text-align: center;
    border-top: 4px solid var(--pink); box-shadow: var(--shadow);
}
.value-card:nth-child(2) { border-top-color: var(--sky); }
.value-card:nth-child(3) { border-top-color: var(--green); }
.value-card i { font-size: 1.5rem; margin-bottom: 10px; color: var(--sky-deep); }
.value-card h3 { font-family: 'Fredoka', sans-serif; font-size: .95rem; margin-bottom: 6px; }
.value-card p { font-size: .82rem; color: var(--muted); }

/* GAME */
.page-game { background: linear-gradient(180deg, #EAFBF0 0%, #FFF 45%); }
.page-game .site-header { border-bottom-color: var(--green); }
.page-game .nav-link.is-active { background: linear-gradient(135deg, var(--green), var(--green-deep)); }

.game-intro-banner {
    text-align: center; padding: 32px 24px; border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(75,163,245,.12), rgba(126,211,33,.12));
    margin-bottom: 32px;
}
.game-logo { width: 220px; margin: 0 auto 16px; }
.game-intro-banner p { color: var(--muted); max-width: 720px; margin: 0 auto; }

.game-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 36px; }
.game-feature {
    padding: 24px; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow);
    position: relative; overflow: hidden;
}
.game-feature::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
}
.game-feature:nth-child(1)::before { background: var(--pink); }
.game-feature:nth-child(2)::before { background: var(--sky); }
.game-feature:nth-child(3)::before { background: var(--orange); }
.game-feature h3 { font-family: 'Fredoka', sans-serif; font-size: 1.05rem; margin: 10px 0 8px; }
.game-feature p { font-size: .92rem; color: var(--muted); }
.game-feature i { font-size: 1.4rem; color: var(--sky-deep); }

.screenshot-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.screenshot-row img { border-radius: 16px; box-shadow: var(--shadow); height: 220px; width: 100%; object-fit: cover; }

/* CONTACT */
.page-contact { background: linear-gradient(180deg, #F3EEFF 0%, #FFF 50%); }
.page-contact .site-header { border-bottom-color: var(--purple); }
.page-contact .nav-link.is-active { background: linear-gradient(135deg, var(--purple), #7C3AED); }

.contact-page-head { text-align: center; margin-bottom: 36px; }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-cards-wide { grid-template-columns: repeat(2, 1fr); }
.contact-cards-wide .contact-card:last-child:nth-child(odd) { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; width: 100%; }
.contact-card {
    text-align: center; padding: 32px 20px; border-radius: var(--radius);
    background: #fff; box-shadow: var(--shadow); transition: transform .2s;
}
.contact-card:hover { transform: translateY(-4px); }
.contact-icon {
    width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: #fff;
}
.contact-card:nth-child(1) .contact-icon { background: linear-gradient(135deg, var(--pink), var(--purple)); }
.contact-card:nth-child(2) .contact-icon { background: linear-gradient(135deg, var(--sky), var(--sky-deep)); }
.contact-card:nth-child(3) .contact-icon { background: linear-gradient(135deg, var(--green), var(--green-deep)); }
.contact-card:nth-child(4) .contact-icon { background: linear-gradient(135deg, var(--orange), var(--sun-deep)); }
.contact-card:nth-child(5) .contact-icon { background: linear-gradient(135deg, var(--purple), var(--pink)); }
.contact-card h3 { font-family: 'Fredoka', sans-serif; margin-bottom: 8px; font-size: 1rem; }
.contact-card p, .contact-card a { color: var(--muted); font-weight: 600; word-break: break-word; }
.contact-card a:hover { color: var(--sky-deep); }

/* SHOP */
.page-shop { background: linear-gradient(180deg, #FFF9E6 0%, #FFF 40%); }
.page-shop .site-header { border-bottom-color: var(--sun-deep); }
.page-shop .nav-link.is-active { background: linear-gradient(135deg, var(--sun), var(--sun-deep)); color: var(--ink); }

.shop-head { margin-bottom: 24px; }
.shop-notes {
    list-style: none; display: grid; gap: 10px; margin-bottom: 24px;
    padding: 20px; border-radius: var(--radius); background: rgba(255,213,79,.15);
    border: 2px dashed var(--sun-deep);
}
.shop-notes li { display: flex; gap: 10px; font-size: .92rem; color: var(--muted); }
.shop-notes li i { color: var(--orange); margin-top: 3px; flex-shrink: 0; }

.shop-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: start;
    width: 100%;
}
.shop-layout > .panel {
    min-width: 0;
    box-sizing: border-box;
}
.shop-panel {
    display: flex;
    flex-direction: column;
}
.coin-list-scroll {
    max-height: 720px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 6px;
    margin-right: -2px;
}
.coin-list-scroll::-webkit-scrollbar { width: 8px; }
.coin-list-scroll::-webkit-scrollbar-track {
    background: var(--lane);
    border-radius: 999px;
}
.coin-list-scroll::-webkit-scrollbar-thumb {
    background: rgba(75,163,245,.45);
    border-radius: 999px;
}
.coin-list-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(46,134,222,.65);
}
.coin-panel-head {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    flex-wrap: wrap; margin-bottom: 16px;
}
.currency-bar {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    flex-wrap: wrap; margin-bottom: 20px; padding: 16px 18px;
    border-radius: 16px; background: linear-gradient(135deg, rgba(75,163,245,.12), rgba(255,213,79,.18));
    border: 2px solid rgba(75,163,245,.22);
    width: 100%;
    box-sizing: border-box;
}
.currency-bar-label {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Fredoka', sans-serif; font-size: 1rem; font-weight: 700; color: var(--sky-deep);
}
.currency-bar-label i { font-size: 1.2rem; color: var(--orange); }
.currency-switcher { display: flex; gap: 10px; flex-wrap: wrap; flex: 1; justify-content: flex-end; }
.currency-btn {
    display: inline-flex; align-items: center; gap: 8px;
    min-width: 96px; padding: 12px 18px; border-radius: 14px; border: 2px solid #D7E6F5;
    background: #fff; font: inherit; cursor: pointer; transition: all .2s;
    box-shadow: 0 4px 12px rgba(46,134,222,.08);
}
.currency-btn:hover {
    border-color: var(--sky); transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(46,134,222,.15);
}
.currency-btn .currency-symbol {
    font-size: 1.25rem; font-weight: 800; color: var(--sky-deep); line-height: 1;
}
.currency-btn .currency-code {
    font-size: 1rem; font-weight: 800; letter-spacing: .04em; color: var(--ink);
}
.currency-btn.is-active {
    background: linear-gradient(135deg, var(--sky), var(--sky-deep));
    border-color: var(--sky-deep);
    box-shadow: 0 8px 20px rgba(46,134,222,.28);
}
.currency-btn.is-active .currency-symbol,
.currency-btn.is-active .currency-code { color: #fff; }
.coin-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.coin-card {
    display: flex; align-items: center; gap: 12px; padding: 14px;
    border-radius: 16px; background: #fff; border: 2px solid transparent;
    box-shadow: var(--shadow); cursor: pointer; transition: all .2s;
}
.coin-card:hover { border-color: var(--sky); }
.coin-card.is-selected { border-color: var(--sun-deep); background: #FFFBEF; box-shadow: 0 0 0 3px rgba(255,179,0,.2); }
.coin-card img { width: 48px; height: 48px; object-fit: contain; flex-shrink: 0; }
.coin-info { flex: 1; min-width: 0; }
.coin-title {
    font-weight: 800; font-size: .92rem; color: var(--ink);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.coin-price { color: var(--orange); font-weight: 800; font-size: .95rem; }
.coin-pick {
    font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
    padding: 6px 10px; border-radius: 999px; background: var(--lane); color: var(--sky-deep);
}
.coin-card.is-selected .coin-pick { background: var(--sun); color: var(--ink); }

.coin-loading, .coin-empty {
    grid-column: 1 / -1; text-align: center; padding: 40px 20px; color: var(--muted);
}
.coin-loading-spinner {
    width: 36px; height: 36px; border: 4px solid var(--lane); border-top-color: var(--sky);
    border-radius: 50%; margin: 0 auto 12px; animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.checkout-panel h2 { font-family: 'Fredoka', sans-serif; font-size: 1.2rem; margin-bottom: 18px; color: var(--sky-deep); }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 700; font-size: .88rem; margin-bottom: 6px; color: var(--ink); }
.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%; padding: 11px 14px; border-radius: 12px; border: 2px solid #E2E8F0;
    font: inherit; transition: border-color .2s;
}
.form-group input:focus { outline: none; border-color: var(--sky); }
.form-group input[readonly] { background: #F8FAFC; color: var(--muted); }

.selected-display {
    padding: 12px 14px; border-radius: 12px; background: var(--mist); font-size: .9rem;
    color: var(--muted); min-height: 44px;
}
.selected-display.has-value { color: var(--ink); font-weight: 700; background: #FFFBEF; border: 2px solid var(--sun); }

.payment-options { display: grid; gap: 8px; }
.payment-option {
    display: flex; align-items: center; gap: 10px; padding: 12px 14px;
    border-radius: 12px; border: 2px solid #E2E8F0; cursor: pointer; transition: all .2s;
}
.payment-option:hover { border-color: var(--sky); }
.payment-option.is-selected { border-color: var(--sky-deep); background: var(--lane); }
.payment-option input { accent-color: var(--sky-deep); }
.payment-option i { width: 22px; text-align: center; color: var(--sky-deep); }

.agree-row { display: flex; gap: 10px; align-items: flex-start; font-size: .85rem; color: var(--muted); }
.agree-row input { margin-top: 4px; accent-color: var(--sky-deep); }
.agree-row a { color: var(--sky-deep); font-weight: 700; text-decoration: underline; }

.btn-submit {
    width: 100%; margin-top: 16px; padding: 14px; border: none; border-radius: 14px;
    background: linear-gradient(135deg, var(--green), var(--green-deep)); color: #fff;
    font: inherit; font-weight: 800; font-size: 1rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 6px 18px rgba(92,176,24,.3);
}
.btn-submit:hover { transform: translateY(-2px); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.field-error { display: block; color: #E53935; font-size: .78rem; font-weight: 700; margin-top: 4px; min-height: 1em; }
.shop-alert {
    padding: 14px 16px; border-radius: 12px; margin-bottom: 18px;
    background: #FFEBEE; border: 2px solid #FFCDD2; color: #C62828;
    font-weight: 700; font-size: .92rem; display: flex; gap: 10px; align-items: flex-start;
}

/* Transaction pages */
.page-confirm, .page-payfinish, .page-error { background: linear-gradient(180deg, #EAF5FF, #FFF); }
.transaction-wrap { padding: 40px 0 60px; }
.transaction-card {
    max-width: 560px; margin: 0 auto; padding: 32px; border-radius: var(--radius);
    background: #fff; box-shadow: var(--shadow); text-align: center;
}
.transaction-card h1 { font-family: 'Fredoka', sans-serif; font-size: 1.6rem; margin: 12px 0 8px; }
.transaction-card.success { border-top: 5px solid var(--green); }
.transaction-card.fail { border-top: 5px solid #E53935; }
.transaction-icon { font-size: 3rem; }
.transaction-card.success .transaction-icon { color: var(--green); }
.transaction-card.fail .transaction-icon { color: #E53935; }

.order-details { text-align: left; margin: 24px 0; border: 2px solid var(--lane); border-radius: 14px; overflow: hidden; }
.detail-row { display: flex; justify-content: space-between; gap: 16px; padding: 12px 16px; border-bottom: 1px solid var(--lane); font-size: .92rem; }
.detail-row:last-child { border-bottom: none; }
.detail-row .label { color: var(--muted); font-weight: 700; flex-shrink: 0; }
.detail-row .value { font-weight: 800; text-align: right; word-break: break-word; }
.detail-row .value.total { color: var(--orange); font-size: 1.05rem; }

.payment-redirect { margin: 20px 0; padding: 18px; border-radius: 14px; background: var(--mist); }
.payment-redirect p { color: var(--muted); margin-bottom: 10px; font-size: .92rem; }
.countdown { font-family: 'Fredoka', sans-serif; font-size: 2rem; color: var(--sky-deep); margin-bottom: 12px; }
.btn-action {
    display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px;
    border-radius: 999px; font-weight: 800; border: none; cursor: pointer; font: inherit;
    font-weight: 800; font-size: .95rem; transition: transform .2s;
}
.btn-action.primary { background: linear-gradient(135deg, var(--sky), var(--sky-deep)); color: #fff; }
.btn-action.secondary { background: #fff; color: var(--sky-deep); border: 2px solid var(--sky); }
.btn-action:hover { transform: translateY(-2px); }
.transaction-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 20px; }

/* Footer */
.site-footer {
    margin-top: auto; padding: 36px 0 24px;
    background: var(--ink); color: rgba(255,255,255,.75);
}
.footer-inner { text-align: center; }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { width: 40px; }
.footer-brand strong { display: block; color: #fff; font-family: 'Fredoka', sans-serif; }
.footer-brand span { font-size: .82rem; opacity: .7; }
.footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 16px; flex-wrap: wrap; }
.footer-links a { font-size: .88rem; opacity: .75; }
.footer-links a:hover { opacity: 1; color: var(--sun); }
.footer-copy { font-size: .78rem; opacity: .5; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.1); }

/* Responsive */
@media (max-width: 900px) {
    .banner-wrap, .about-layout, .shop-layout { grid-template-columns: 1fr; }
    .preview-grid, .game-features, .contact-cards, .contact-cards-wide, .feature-strip { grid-template-columns: 1fr; }
    .contact-cards-wide .contact-card:last-child:nth-child(odd) { max-width: none; }
    .game-showcase, .screenshot-row { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: 1fr; }
    .coin-grid { grid-template-columns: 1fr; }
    .currency-bar { flex-direction: column; align-items: stretch; }
    .currency-switcher { justify-content: stretch; }
    .currency-btn { flex: 1; justify-content: center; min-width: 0; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .main-nav {
        position: fixed; top: 86px; left: 0; right: 0; background: rgba(255,255,255,.98);
        flex-direction: column; padding: 16px; gap: 4px;
        border-bottom: 2px solid var(--lane);
        transform: translateY(-130%); opacity: 0; pointer-events: none; transition: all .25s;
    }
    .main-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .nav-link { width: 100%; text-align: center; }
    .contact-teaser { flex-direction: column; text-align: center; }
}
