* { box-sizing: border-box; }

:root{
    /* Logo: blue wordmark / buildings, silver secondary line, black field */
    --logo-blue: #1e88e5;
    --logo-blue-hover: #42a5f5;
    --logo-blue-deep: #1565c0;
    --logo-silver: #bdbdbd;

    --bg: #050608;
    --surface: rgba(255,255,255,0.05);
    --surface-2: rgba(255,255,255,0.09);
    --text: #e8edf6;
    --muted: rgba(189, 189, 189, 0.82);
    --brand: var(--logo-blue);
    --brand-2: #90caf9;
    --ring: rgba(30, 136, 229, 0.45);
    --shadow: 0 16px 40px rgba(0,0,0,0.45);
    --radius: 16px;
    --radius-sm: 12px;
    --border: 1px solid rgba(255,255,255,0.10);
    --surface-3: rgba(255,255,255,0.12);
    /* Primary CTA fill — logo blue (keeps existing class names working) */
    --gy-yellow: var(--logo-blue);
    --gy-yellow-hover: var(--logo-blue-hover);
    --gy-navy: #050508;
    --gy-navy-mid: #0a1018;
    --gy-utility: #000000;
    --cta-fg: #ffffff;
    /* Rounded rectangle for buttons (not pills) */
    --btn-radius: 10px;
    /* Shared horizontal inset so utility strip + main header line up */
    --header-inline-pad: clamp(18px, 3vw, 36px);
    /* Header typography (condensed sans, Goodyear-like) */
    --header-condensed: "Barlow Condensed", "Oswald", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    /* Fixed header — space for first content below overlay */
    --site-header-offset: clamp(108px, 18vh, 124px);
    --fab-size: clamp(48px, 13vw, 56px);
    --fab-inset: clamp(14px, 4vw, 20px);
}
@media (max-width: 980px){
    :root{
        --site-header-offset: clamp(132px, 26vh, 172px);
    }
}

html, body{
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}
@supports (overflow: clip){
    html, body{ overflow-x: clip; }
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    background:
        radial-gradient(1200px 600px at 18% 0%, rgba(30, 136, 229, 0.14), transparent 58%),
        radial-gradient(900px 520px at 88% 12%, rgba(189, 189, 189, 0.06), transparent 52%),
        var(--bg);
    color: var(--text);
    line-height: 1.6;
}

a { color: inherit; }

/* When header becomes white on scroll, make the page background white too (hero image remains unchanged). */
body.page--scrolled{
    background: #ffffff;
    color: #061a2f;
    transition: background 0.28s ease, color 0.28s ease;
}
body.page--scrolled .muted{
    color: rgba(6, 26, 47, 0.72);
}

/* Text that sits on the white page background */
body.page--scrolled .section-subtitle,
body.page--scrolled .materials-page-lead,
body.page--scrolled .page-hero p,
body.page--scrolled section > .container > p{
    color: rgba(6, 26, 47, 0.72);
}
body.page--scrolled a{
    color: inherit;
}

/* Hero sits on dark photo — keep CTA/link white when page theme flips on scroll */
body.page--scrolled .hero-showroom .btn-hero-cta{
    color: var(--cta-fg);
}
body.page--scrolled .hero-showroom .hero-showroom__link{
    color: #ffffff;
}
body.page--scrolled .hero-showroom .hero-showroom__link:hover{
    color: var(--logo-silver);
}

/* Keep boxes/cards dark so their white text stays readable */
body.page--scrolled .card,
body.page--scrolled .tile,
body.page--scrolled .feature-strip,
body.page--scrolled .feature,
body.page--scrolled .page-hero .wrap,
body.page--scrolled .material-item,
body.page--scrolled .material-panel{
    /* On white page background, use a dark surface so the existing white text remains readable */
    background: rgba(5, 6, 8, 0.92);
    border-color: rgba(15, 23, 42, 0.12);
    color: rgba(248, 250, 252, 0.98);
}
body.page--scrolled .card p,
body.page--scrolled .tile span,
body.page--scrolled .feature p,
body.page--scrolled .materials-page-lead,
body.page--scrolled .material-item__detail,
body.page--scrolled .page-hero p{
    color: rgba(226, 232, 240, 0.78);
}
body.page--scrolled .card h2,
body.page--scrolled .card h3,
body.page--scrolled .tile strong,
body.page--scrolled .material-panel h3,
body.page--scrolled .material-item__title{
    color: rgba(248, 250, 252, 0.98);
}

/* On the white background, keep section headings readable */
body.page--scrolled .section-title,
body.page--scrolled .page-top-heading{
    color: rgba(15, 23, 42, 0.96);
}
body.page--scrolled .site-footer{
    /* Keep footer dark even when page background flips to white */
    background: #081a36;
    border-top-color: rgba(255,255,255,0.08);
}
body.page--scrolled .footer-bottom{
    border-top-color: rgba(255,255,255,0.10);
    color: rgba(226,232,240,0.86);
    font-weight: 600;
}
body.page--scrolled .footer-grid a{
    color: rgba(226,232,240,0.82);
    font-weight: 600;
}
body.page--scrolled .footer-grid a:hover{
    color: var(--brand-2);
}
body.page--scrolled .footer-grid a:focus-visible{
    color: var(--brand-2);
}

/* Footer column text on white background (headings stay light blue) */
body.page--scrolled .footer-grid h4{
    color: var(--brand-2);
    font-weight: 700;
}
body.page--scrolled .footer-grid p{
    color: rgba(248,250,252,0.94);
    font-weight: 700;
}

img, video{
    max-width: 100%;
    height: auto;
}
iframe{
    max-width: 100%;
}

.muted{ color: var(--muted); }
.sr-only{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    width: min(90%, 1200px);
    margin-inline: auto;
    margin-block: 0;
}

/* Site header — fixed, transparent at top → solid white bar on scroll (all pages) */
.site-header{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    transition:
        background 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

/* Wrapper rows (avoid display:contents — Safari and some engines break flex/grid for descendants) */
.header-shell{
    display: block;
    width: 100%;
}

.header-utility{
    /* Default: glass strip (Goodyear-style transparent bar) */
    background: rgba(0, 0, 0, 0.22);
    backdrop-filter: saturate(150%) blur(12px);
    -webkit-backdrop-filter: saturate(150%) blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition:
        background 0.28s ease,
        border-color 0.28s ease,
        backdrop-filter 0.28s ease,
        -webkit-backdrop-filter 0.28s ease;
}
.header-utility .utility-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    /* ~30% shorter top strip */
    padding: 6px var(--header-inline-pad);
    font-family: var(--header-condensed);
    font-size: 11px;
    color: rgba(255,255,255,0.82);
}
.utility-left{
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.utility-loc-ico{
    display: inline-flex;
    color: rgba(255,255,255,0.65);
}
.utility-loc-text{ letter-spacing: 0.02em; }
.utility-loc-link{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: inherit;
    text-decoration: none;
}
.utility-loc-link:hover{
    color: #fff;
    text-decoration: underline;
}

.utility-links{
    display: flex;
    align-items: center;
    gap: 6px 18px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.utility-links a{
    text-decoration: none;
    color: rgba(255,255,255,0.88);
    font-family: var(--header-condensed);
    font-weight: 700;
    font-size: inherit;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.utility-links a:hover{ color: #fff; text-decoration: underline; }

.header-main{
    background: transparent;
    transition: background 0.28s ease;
}

/* Opaque bars while pointer (or keyboard focus) is on the header — not when scrolled */
.site-header:not(.site-header--scrolled):hover .header-utility,
.site-header:not(.site-header--scrolled):focus-within .header-utility{
    background: var(--gy-utility);
    border-bottom-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.site-header:not(.site-header--scrolled):hover .header-main,
.site-header:not(.site-header--scrolled):focus-within .header-main{
    background: var(--gy-navy-mid);
}

.header-main-inner{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    /* ~15% shorter than previous compact header */
    padding: 7px var(--header-inline-pad);
    /* Keep nav sizing the same; don't upscale header row */
    min-height: 41px;
}

/* Make header feel full-width like reference */
.site-header .container{
    width: min(96%, 1440px);
}

.header-left{
    display: flex;
    align-items: center;
    /* 50% tighter gap between logo and first nav item */
    gap: 6px;
    min-width: 0;
    /* Don't grow — let the right actions pin to the far right */
    flex: 0 1 auto;
}

.brand-gy{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    text-decoration: none;
    flex-shrink: 1;
    min-width: 0;
    max-width: min(300px, 36vw);
}
.brand-gy__logo{
    display: block;
    /* Keep logo prominent but Goodyear-like compact */
    width: auto;
    max-width: min(311px, 31.5vw);
    height: auto;
    /* keep within reduced header height */
    max-height: 56px;
    object-fit: contain;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.55));
}
.site-header.site-header--scrolled .brand-gy__logo{
    filter: none;
}
.brand-gy__word{
    font-family: "Oswald", ui-sans-serif, system-ui, sans-serif;
    font-weight: 700;
    font-size: clamp(14px, 2.1vw, 21px);
    line-height: 1.12;
    letter-spacing: 0.04em;
    color: var(--logo-blue);
    text-transform: uppercase;
}
.brand-gy__sub{
    font-size: clamp(9px, 1.1vw, 11px);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(189, 189, 189, 0.88);
    margin-top: 5px;
    line-height: 1.25;
}

.nav-main{
    display: flex;
    align-items: center;
    gap: 8px 18px;
    flex: 1 1 auto;
    justify-content: flex-start;
    min-width: 0;
}
.nav-main a{
    text-decoration: none;
    color: #fff;
    font-family: var(--header-condensed);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}
.nav-main a:hover{
    border-bottom-color: var(--gy-yellow);
}

/* Transparent bar: nav + tagline readable on photo / dark page backgrounds */
.site-header:not(.site-header--scrolled) .brand-gy__sub{
    font-weight: 800;
    font-size: clamp(10px, 1.35vw, 12px);
    color: rgba(189, 189, 189, 0.95);
    letter-spacing: 0.14em;
    text-shadow:
        0 0 1px rgba(0, 0, 0, 1),
        0 1px 4px rgba(0, 0, 0, 0.95),
        0 0 18px rgba(0, 0, 0, 0.65);
}
.site-header:not(.site-header--scrolled) .nav-main a{
    font-weight: 700;
    font-size: 14px;
    color: #ffffff;
    text-shadow: none;
}

.header-main-actions{
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 7px;
    flex-shrink: 0;
    margin-left: auto;
    min-width: 0;
}

.btn-nav-cta{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--gy-yellow);
    color: var(--cta-fg);
    font-family: var(--header-condensed);
    font-weight: 800;
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    /* Tighter than before so label + icon can read larger without growing the chip */
    padding: 6px 10px;
    border-radius: var(--btn-radius);
    border: none;
    transition: background 0.2s ease, transform 0.15s ease;
}
.btn-nav-cta:hover{
    background: var(--gy-yellow-hover);
    transform: translateY(-1px);
}
.btn-nav-cta__ico{
    display: inline-flex;
    opacity: 0.9;
}
.btn-nav-cta__ico svg{
    width: 16px;
    height: 16px;
}

.nav-icon-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 29px;
    height: 29px;
    border-radius: var(--btn-radius);
    border: 1px solid rgba(255,255,255,0.35);
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.nav-icon-btn svg{
    width: 15px;
    height: 15px;
}
.nav-icon-btn:hover{
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.55);
}
button.nav-icon-btn{
    cursor: pointer;
    padding: 0;
    margin: 0;
    font: inherit;
    background: transparent;
    -webkit-appearance: none;
    appearance: none;
}

.header-search-group{
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 6px;
    position: relative;
    flex-shrink: 1;
    min-width: 0;
}
.header-search-group--open{
    z-index: 1002;
}
.header-search-pop{
    display: flex;
    align-items: center;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-width 0.22s ease, opacity 0.18s ease;
}
.header-search-group--open .header-search-pop{
    max-width: min(260px, 56vw);
    opacity: 1;
    pointer-events: auto;
    overflow: visible;
}
.header-search-form{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
}
.header-search-input{
    width: min(260px, 56vw);
    min-width: 140px;
    max-width: 100%;
    box-sizing: border-box;
    padding: 7px 10px;
    border-radius: var(--btn-radius);
    border: 1px solid rgba(255,255,255,0.35);
    background: rgba(8, 12, 20, 0.92);
    color: #f8fafc;
    font-size: 13px;
    font-weight: 600;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
.header-search-input::-webkit-search-decoration,
.header-search-input::-webkit-search-cancel-button{
    -webkit-appearance: none;
    appearance: none;
}
.header-search-input::placeholder{
    color: rgba(226, 232, 240, 0.45);
}
.header-search-input:focus{
    border-color: rgba(250, 204, 21, 0.65);
    box-shadow: 0 0 0 1px rgba(250, 204, 21, 0.25);
}
.header-search-suggest{
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    margin: 0;
    padding: 4px 0;
    padding-left: 0;
    list-style: none;
    background: var(--gy-navy-mid);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--btn-radius);
    max-height: 220px;
    overflow-y: auto;
    z-index: 5000;
    box-shadow: 0 12px 28px rgba(0,0,0,0.45);
}
.header-search-suggest__btn{
    display: block;
    width: 100%;
    text-align: left;
    padding: 9px 12px;
    border: 0;
    margin: 0;
    background: transparent;
    color: rgba(248, 250, 252, 0.95);
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
}
.header-search-suggest__btn:hover,
.header-search-suggest__btn:focus-visible{
    background: rgba(255,255,255,0.08);
    outline: none;
}

.nav-burger{
    display: none;
    position: relative;
}
.nav-burger-summary{
    list-style: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--btn-radius);
    border: 1px solid rgba(255,255,255,0.35);
    color: #fff;
}
.nav-burger-summary::-webkit-details-marker{ display: none; }
.nav-burger-summary::marker{ display: none; }
.nav-burger-panel{
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    width: min(92vw, 320px);
    min-width: 0;
    padding: 14px;
    background: var(--gy-navy-mid);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.45);
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 1001;
}
.nav-burger-panel a{
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 14px;
    padding: 12px 10px;
    border-radius: var(--btn-radius);
}
.nav-burger-panel a:hover{ background: rgba(255,255,255,0.08); }

/* Solid header after scroll — same as previous home “scrolled” look */
.site-header.site-header--scrolled{
    background: #ffffff;
    border-bottom-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.site-header.site-header--scrolled .header-utility{
    display: none;
}
.site-header.site-header--scrolled .utility-links a{
    color: rgba(15, 23, 42, 0.78);
}
.site-header.site-header--scrolled .utility-links a:hover{
    color: #0f172a;
}
.site-header.site-header--scrolled .header-main{
    background: #ffffff;
}
.site-header.site-header--scrolled .brand-gy__word{
    color: var(--logo-blue);
}
.site-header.site-header--scrolled .brand-gy__sub{
    color: rgba(97, 97, 97, 0.92);
    font-weight: 800;
    font-size: clamp(9px, 1.1vw, 11px);
    letter-spacing: 0.12em;
    text-shadow: none;
}
.site-header.site-header--scrolled .nav-main a{
    color: #0f172a;
    text-shadow: none;
    font-family: var(--header-condensed);
    font-weight: 700;
    font-size: 14px;
}
.site-header.site-header--scrolled .nav-main a:hover{
    border-bottom-color: var(--logo-blue);
}
.site-header.site-header--scrolled .btn-nav-cta{
    background: var(--logo-blue-deep);
    color: var(--cta-fg);
}
.site-header.site-header--scrolled .btn-nav-cta:hover{
    background: var(--logo-blue);
}
.site-header.site-header--scrolled .nav-icon-btn{
    border-color: rgba(15, 23, 42, 0.22);
    color: #0f172a;
}
.site-header.site-header--scrolled .nav-icon-btn:hover{
    background: rgba(15, 23, 42, 0.06);
    border-color: rgba(15, 23, 42, 0.32);
}
.site-header.site-header--scrolled .nav-burger-summary{
    border-color: rgba(15, 23, 42, 0.22);
    color: #0f172a;
}
.site-header.site-header--scrolled .nav-burger-panel{
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
}
.site-header.site-header--scrolled .nav-burger-panel a{
    color: #0f172a;
}
.site-header.site-header--scrolled .nav-burger-panel a:hover{
    background: rgba(15, 23, 42, 0.06);
}
.site-header.site-header--scrolled .nav-burger-panel .btn-nav-cta{
    background: var(--logo-blue-deep);
    color: var(--cta-fg);
}
.site-header.site-header--scrolled .nav-burger-panel .btn-nav-cta:hover{
    background: var(--logo-blue);
}

.btn-nav-cta--block{
    margin-top: 8px;
    text-align: center;
}

/* Mid-width: one row only (zoom reduces CSS viewport width; wrapping looked like a broken header). */
@media (max-width: 1180px) and (min-width: 961px){
    .header-main-inner{
        flex-wrap: nowrap;
        align-items: center;
        gap: 8px;
    }
    .header-left{
        flex: 0 1 auto;
        min-width: 0;
    }
    .nav-main{
        flex: 1 1 auto;
        justify-content: flex-start;
        min-width: 0;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 6px 12px;
        padding: 0;
        border-top: none;
    }
    .nav-main::-webkit-scrollbar{
        display: none;
    }
    .site-header.site-header--scrolled .nav-main{
        border-top: none;
    }
    .nav-main a{
        font-size: 12px;
        letter-spacing: 0.06em;
        flex-shrink: 0;
        padding: 6px 0;
    }
    .brand-gy{
        max-width: min(220px, 28vw);
    }
    .brand-gy__logo{
        max-height: 48px;
    }
    .brand-gy__word{
        font-size: clamp(11px, 1.5vw, 15px);
    }
    .header-main-actions a.nav-icon-btn:last-of-type{
        display: none;
    }
}
/* ≤960px portrait: one header row; primary links only in burger panel */
@media (max-width: 960px) and (orientation: portrait){
    :root{
        --site-header-offset: clamp(132px, 28vh, 178px);
    }
    .header-main-inner{
        display: grid;
        grid-template-columns: 44px 1fr auto;
        grid-template-areas: "burger brand actions";
        align-items: center;
        column-gap: 10px;
        row-gap: 0;
        min-height: 44px;
        border-top: none;
        position: relative;
        z-index: 2;
    }
    .nav-burger{
        display: block;
        grid-area: burger;
        position: relative;
        z-index: 1002;
    }
    .header-left{
        display: flex;
        align-items: center;
        justify-content: center;
        grid-area: brand;
        justify-self: center;
        text-align: center;
        min-width: 0;
        max-width: min(280px, 70vw);
    }
    .brand-gy{
        max-width: min(220px, 62vw);
        align-items: center;
    }
    .header-main-actions{
        grid-area: actions;
        margin-left: 0;
    }
    .nav-main{
        display: none !important;
    }
}

/* ≤960px landscape: burger + logo (left group) + inline nav + actions */
@media (max-width: 960px) and (orientation: landscape){
    :root{
        --site-header-offset: clamp(140px, 22vh, 168px);
    }
    .header-main-inner{
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        gap: 8px 10px;
        min-height: 44px;
        border-top: none;
        position: relative;
        z-index: 2;
    }
    /* Hamburger redundant — primary links are inline */
    .nav-burger{
        display: none !important;
    }
    .header-left{
        display: flex;
        flex: 0 0 auto;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
        min-width: 0;
        max-width: min(200px, 34vw);
    }
    .brand-gy{
        max-width: min(200px, 34vw);
        align-items: flex-start;
    }
    .nav-main{
        display: flex !important;
        flex: 1 1 auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
        gap: 6px 10px;
        min-width: 0;
        padding: 0;
        border-top: none;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .nav-main::-webkit-scrollbar{
        display: none;
    }
    .site-header.site-header--scrolled .nav-main{
        border-top: none;
    }
    .nav-main a{
        font-size: 10px;
        letter-spacing: 0.06em;
        padding: 4px 2px;
        flex-shrink: 0;
    }
    .header-main-actions{
        flex: 0 0 auto;
        margin-left: auto;
    }
}
@media (max-width: 520px){
    .nav-icon-btn{ width: 27px; height: 27px; }
    .btn-nav-cta{
        padding: 7px 10px;
        font-size: 8px;
        gap: 5px;
    }
    .btn-nav-cta__ico{ display: none; }
    .header-search-group--open .header-search-pop{
        max-width: min(200px, 62vw);
    }
    .header-search-input{
        min-width: 96px;
        width: min(200px, 62vw);
    }
}
@media (max-width: 980px){
    /* Keep location + Contact on one row (stacking looked broken in mobile landscape) */
    .header-utility .utility-inner{
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px 14px;
    }
    .utility-left{
        flex: 1 1 auto;
        min-width: 0;
        flex-wrap: nowrap;
    }
    .utility-links{
        justify-content: flex-end;
        flex-shrink: 0;
    }
}
@media (max-width: 380px){
    .header-utility .utility-inner{
        flex-wrap: wrap;
    }
    .utility-links{
        width: 100%;
        justify-content: flex-start;
    }
}

/* Legacy inner-page blocks (no longer in header) */
.brand strong{ font-size: clamp(20px, 2.2vw, 28px); }

.hero {
    background: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e') no-repeat center/cover;
    min-height: 78vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
}

.hero div {
    background: rgba(0,0,0,0.55);
    padding: 26px 22px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 820px;
}

section {
    padding: 56px 0;
}
@media (max-width: 480px){
    section{
        padding: 42px 0;
    }
}
@media (min-width: 1440px){
    section{
        padding: 64px 0;
    }
}

/* Pull first content block up under the home hero (global section top padding is 56px) */
.hero-showroom + section {
    padding-top: 56px;
}

.card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    padding: 18px;
    border-radius: var(--radius);
}

/* Only apply to any legacy generic footer blocks (not the storefront footer) */
footer:not(.site-footer) {
    background: rgba(5, 8, 12, 0.72);
    border-top: 1px solid rgba(30, 136, 229, 0.12);
    color: white;
    text-align: center;
    padding: 10px;
}

/* Storefront footer */
.site-footer{
    margin-top: 34px;
    background: #081a36;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(248,250,252,0.95);
    position: relative;
}
.site-footer::before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: var(--brand-2);
}
.footer-top{
    padding: 44px 0 34px;
}
.footer-grid{
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
    gap: 26px;
    align-items: start;
}
.footer-grid > div{
    text-align: center;
}
.footer-grid h4{
    margin: 0 0 10px;
    font-family: var(--header-condensed);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-2);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: var(--brand-2);
    text-underline-offset: 6px;
}
.footer-grid p{
    margin: 0;
    color: rgba(226,232,240,0.78);
    font-size: 13px;
    line-height: 1.55;
}
.footer-grid a{
    display: block;
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
    box-sizing: border-box;
    position: relative;
    text-decoration: none;
    color: rgba(226,232,240,0.82);
    padding: 7px 0 10px;
    font-size: 13px;
}
.footer-grid a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 100%;
    height: 2px;
    background-color: var(--brand-2);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}
.footer-grid a:hover{
    color: var(--brand-2);
}
.footer-grid a:hover::after,
.footer-grid a:focus-visible::after{
    transform: scaleX(1);
}
.footer-grid a:focus-visible{
    color: var(--brand-2);
    outline: 2px solid var(--brand-2);
    outline-offset: 4px;
}
@media (prefers-reduced-motion: reduce){
    .footer-grid a::after{
        transition-duration: 0.01ms;
    }
}

.footer-signup{
    max-width: 44ch;
    margin-inline: auto;
    text-align: center;
}
.footer-signup__title{
    margin: 0 0 8px;
    font-family: var(--header-condensed);
    font-weight: 900;
    letter-spacing: 0.02em;
    font-size: 22px;
    text-transform: none;
    color: rgba(255,255,255,0.96);
}
.footer-signup__note{
    margin: 0 0 14px;
    color: rgba(226,232,240,0.78);
    font-size: 13px;
}
.footer-signup__form{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}
.footer-input{
    flex: 1 1 220px;
    min-width: 190px;
    padding: 11px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.06);
    color: rgba(248,250,252,0.96);
    outline: none;
}
.footer-input::placeholder{ color: rgba(226,232,240,0.52); }
.footer-input:focus{
    border-color: rgba(250, 204, 21, 0.55);
    box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.18);
}
.footer-signup__btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 14px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.10);
    background: #f5c84c;
    color: #081a36;
    font-family: var(--header-condensed);
    font-weight: 900;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    font-size: 12px;
    cursor: pointer;
}
.footer-signup__btn:hover{ filter: brightness(1.03); }

.footer-bottom{
    border-top: 1px solid rgba(255,255,255,0.10);
    padding: 18px 0;
}
.footer-bottom__row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.footer-mini-links{
    display: flex;
    align-items: center;
    gap: 10px 16px;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
    color: rgba(226,232,240,0.72);
    font-size: 12px;
}
.footer-mini-links a{
    color: inherit;
    text-decoration: none;
}
.footer-mini-links a:hover{
    color: var(--brand-2);
    text-decoration: underline;
    text-decoration-color: var(--brand-2);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}
.footer-social{
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-social a{
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.06);
    color: rgba(248,250,252,0.92);
    text-decoration: none;
}
.footer-social a:hover{
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.30);
}
.footer-social svg{ width: 18px; height: 18px; }
.footer-legal{
    color: var(--brand-2);
    font-size: 12px;
    text-align: center;
    margin-top: 0.5rem;
}
@media (max-width: 480px){
    .footer-bottom{
        padding: 16px 0;
    }
}
@media (max-width: 900px){
    .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
    .footer-grid{ grid-template-columns: 1fr; }
    .footer-signup__form{
        flex-direction: column;
        align-items: stretch;
    }
    .footer-signup__btn{
        width: 100%;
    }
}

/* ─── Breakpoints (explicit, requested) ─── */
@media (max-width: 1024px){
    .site-header .container{ width: min(96%, 1400px); }
}
@media (max-width: 768px){
    .site-header .container{ width: min(96%, 1280px); }
}

/* Home hero — full-bleed cinematic */
.hero-showroom{
    position: relative;
    min-height: min(56vh, 520px);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-showroom__bg{
    position: absolute;
    inset: 0;
    background-color: #0a0a0a;
    /* Same folder as style.css — works on GitHub Pages project sites */
    background-image: url("images/background.png?v=20260509");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
@media (max-width: 640px){
    .hero-showroom{
        min-height: min(46vh, 400px);
    }
}
.hero-showroom__gradient{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(3, 5, 8, 0.94) 0%,
        rgba(8, 14, 22, 0.58) 42%,
        rgba(10, 20, 32, 0.22) 100%
    );
}
.hero-showroom__inner{
    position: relative;
    z-index: 1;
    align-self: flex-start;
    box-sizing: border-box;
    /* Own width (no .container) so margins aren’t reset by margin: 0 auto */
    width: min(640px, 92%);
    /* Centered left gutter was (100% − width)/2; half of that → divide by 4 */
    margin-left: calc(((100% - min(640px, 92%)) / 4) * 0.7);
    margin-right: auto;
    /* Never shrink below fixed header height; slack past offset (further −27% vs prior) */
    padding: calc(var(--site-header-offset) + clamp(4px, 0.67vw, 8px) * 0.5 * 0.336) 0 clamp(14px, 2.5vw, 28px);
}
.hero-showroom h1{
    margin: 0 0 calc(16px * 0.9);
    /* Goodyear-style hero headline (tall condensed display) */
    font-family: "Bebas Neue", "Oswald", ui-sans-serif, system-ui, sans-serif;
    font-weight: 400;
    /* Slightly smaller so company name fits in exactly two lines */
    font-size: clamp(34px, 6vw, 64px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #fff;
}
.hero-showroom h1 .hero-title-line{
    display: block;
}
@media (min-width: 520px){
    .hero-showroom h1 .hero-title-line{
        /* Keep each intended line from splitting into an extra wrap on typical widths */
        white-space: nowrap;
    }
}
.hero-showroom__tagline{
    margin: 0 0 28px;
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-style: italic;
    font-size: clamp(17px, 2.2vw, 22px);
    line-height: 1.5;
    color: rgba(255,255,255,0.92);
    max-width: 42ch;
}
.hero-showroom__cta{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 24px;
}
.btn-hero-cta{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gy-yellow);
    color: var(--cta-fg);
    font-family: var(--header-condensed);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: var(--btn-radius);
    border: none;
    transition: background 0.2s ease, transform 0.15s ease;
}
.btn-hero-cta:hover{
    background: var(--gy-yellow-hover);
    transform: translateY(-1px);
}
.hero-showroom__link{
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.35);
    padding-bottom: 2px;
}
.hero-showroom__link:hover{
    border-bottom-color: var(--logo-blue);
    color: var(--logo-silver);
}
.cta-row{
    margin-top: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.tiles{
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 14px;
}
.tile{
    grid-column: span 3;
    text-decoration: none;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius);
    padding: 16px;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 110px;
}
.tile__thumb{
    margin: -6px -6px 4px -6px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: rgba(0, 0, 0, 0.35);
}
.tile__thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.tile:hover{
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.08);
}
.tile strong{ font-size: 16px; }
.tile span{ color: var(--muted); font-size: 13px; }
.tile .tag{
    margin-top: auto;
    display: inline-flex;
    width: fit-content;
    padding: 6px 10px;
    border-radius: var(--btn-radius);
    border: 1px solid rgba(30, 136, 229, 0.38);
    background: rgba(30, 136, 229, 0.12);
    color: #bbdefb;
    font-weight: 800;
    letter-spacing: 0.2px;
    font-size: 12px;
}
@media (max-width: 980px){
    .tile{ grid-column: span 6; }
}
@media (max-width: 560px){
    .tile{ grid-column: span 12; }
}

.feature-strip{
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius);
    padding: 16px;
}
.feature-strip .items{
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 12px;
}
.feature{
    grid-column: span 4;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius-sm);
    padding: 14px;
}
.feature h3{ margin: 0 0 6px; font-size: 16px; }
.feature p{ margin: 0; color: var(--muted); }
@media (max-width: 900px){
    .feature{ grid-column: span 12; }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    font-family: var(--header-condensed);
    background: var(--gy-yellow);
    color: var(--cta-fg);
    padding: 11px 16px;
    text-decoration: none;
    border-radius: var(--btn-radius);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    box-shadow: none;
    transition: background 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
}

.btn.secondary{
    background: transparent;
    color: var(--text);
    border: 2px solid rgba(232, 237, 246, 0.35);
    box-shadow: none;
}

.btn:focus{ outline: none; box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.5); }
.btn:hover{
    transform: translateY(-1px);
    background: var(--gy-yellow-hover);
}
.btn.secondary:hover{
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(232, 237, 246, 0.55);
}

/* Layout helpers */
.section-title{
    margin: 0 0 14px;
    font-family: var(--header-condensed);
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 4.5rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}
.section-subtitle{
    margin: 0 0 26px;
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-style: italic;
    font-weight: 800;
    font-size: clamp(1.05rem, 1.6vw, 1.4rem);
    line-height: 1.45;
    color: var(--muted);
    max-width: 80ch;
}
.grid{
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}
.col-4{ grid-column: span 4; }
.col-6{ grid-column: span 6; }
.col-12{ grid-column: span 12; }
@media (max-width: 900px){
    .col-4, .col-6{ grid-column: span 12; }
}

.pill{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: var(--btn-radius);
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    color: var(--muted);
    font-size: 13px;
}

.card h2,
.card h3{ margin: 0 0 8px; }
.card p{ margin: 0; color: var(--muted); }

/* Materials catalog (products page) */
.page-materials{
    /* Clear fixed header + ~½in visible space before first card */
    padding-top: calc(var(--site-header-offset) + 0.5in);
}
/* Shared page title below header (materials + inner pages) */
.page-top-heading{
    margin: 0 0 22px;
    font-family: var(--header-condensed);
    font-size: clamp(26px, 3.6vw, 36px);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(248, 250, 252, 0.98);
    line-height: 1.15;
}
.page-after-header .page-top-heading{
    margin-bottom: 12px;
}
.page-after-header .page-top-heading + .section-subtitle{
    margin-top: 0;
}
.materials-page-lead{
    margin: 0 0 28px;
    color: var(--muted);
    max-width: 70ch;
    font-size: 15px;
}
.material-panels{
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.material-panel{
    padding: 20px;
}
.material-panel h3{
    margin: 0 0 16px;
    font-size: 18px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(232,237,246,0.95);
}
.material-panel__grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
@media (max-width: 900px){
    .material-panel__grid{
        grid-template-columns: 1fr;
    }
}
.material-item{
    display: grid;
    grid-template-columns: minmax(0, 132px) 1fr;
    gap: 14px;
    align-items: start;
    padding: 14px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
}
@media (max-width: 560px){
    .material-item{
        grid-template-columns: 1fr;
    }
}
.material-item__media{
    border-radius: 10px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.35);
    aspect-ratio: 4 / 3;
    min-height: 96px;
}
.material-item__media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.material-item__title{
    margin: 0 0 10px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.3;
    color: #f8fafc;
    letter-spacing: 0.02em;
}
.material-item__detail{
    margin: 0 0 6px;
    font-size: 13px;
    line-height: 1.45;
    color: rgba(232, 237, 246, 0.88);
    font-weight: 600;
}
.material-item__detail:last-child{
    margin-bottom: 0;
}
.material-item__body{
    min-width: 0;
}
.material-item__cart-row{
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.material-item__cart-btn{
    width: fit-content;
}

.cart-page-items{
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cart-page-items li{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 14px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
}
.cart-page-remove{
    flex-shrink: 0;
}
.cart-page-actions{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}
.cart-page-plain{
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-top: 8px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.25);
    color: inherit;
    font: inherit;
    resize: vertical;
    min-height: 120px;
}

/* Page hero (for inner pages) */
.page-hero{
    padding: calc(var(--site-header-offset) + 12px) 0 10px;
}
.page-after-header{
    /* Match Materials page spacing below fixed header */
    padding-top: calc(var(--site-header-offset) + 0.5in);
}
.page-hero .wrap{
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius);
    padding: 24px;
}
.page-hero h1{ margin: 0 0 8px; }
.page-hero p{ margin: 0; color: var(--muted); max-width: 70ch; }
.whatsapp-float {
    width: var(--fab-size);
    height: var(--fab-size);
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 rgba(37, 211, 102, 0.7);
    z-index: 1000;
    text-decoration: none;
    animation: pulse 1.8s infinite;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
    animation: none;
}
.whatsapp-float img {
    width: clamp(22px, 6vw, 30px);
    height: auto;
    margin-top: 0;
}
/* Container */
.whatsapp-container {
    position: fixed;
    bottom: max(var(--fab-inset), env(safe-area-inset-bottom));
    right: max(var(--fab-inset), env(safe-area-inset-right));
    z-index: 1000;
}

/* Tooltip */
.whatsapp-tooltip {
    position: absolute;
    bottom: calc(var(--fab-size) + 12px);
    right: 0;
    background: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s;
}

/* Show on hover */
.whatsapp-container:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Button (keep your pulse animation) */
/* Hidden state */
.animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

/* Visible state */
.animate.show {
    opacity: 1;
    transform: translateY(0);
}

/* Delay classes */
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Card hover effect */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Quote form */
.quote-form label{
    display: block;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.04em;
    margin: 0 0 8px;
    color: rgba(232,237,246,0.92);
}
.quote-form input,
.quote-form textarea{
    width: 100%;
    padding: 12px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.06);
    color: var(--text);
    outline: none;
    transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.quote-form textarea{ resize: vertical; min-height: 120px; }
.quote-form input::placeholder,
.quote-form textarea::placeholder{ color: rgba(232,237,246,0.45); }
.quote-form input:focus,
.quote-form textarea:focus{
    box-shadow: 0 0 0 4px var(--ring);
    border-color: rgba(30, 136, 229, 0.55);
    background: rgba(255,255,255,0.08);
}
.form-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.form-field--full{ grid-column: 1 / -1; }
@media (max-width: 720px){
    .form-grid{ grid-template-columns: 1fr; }
}
.form-actions{
    margin-top: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}
.form-note{
    margin: 12px 0 0;
    font-size: 13px;
}

.auth-feedback{
    display: none;
    margin: 14px 0 0;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(147, 197, 253, 0.35);
    background: rgba(30, 58, 138, 0.22);
    font-size: 14px;
    line-height: 1.45;
}
.auth-feedback.is-visible{
    display: block;
}
.auth-feedback.auth-feedback--ok{
    border-color: rgba(34, 197, 94, 0.45);
    background: rgba(20, 83, 45, 0.2);
}
.auth-feedback.auth-feedback--err{
    border-color: rgba(248, 113, 113, 0.5);
    background: rgba(127, 29, 29, 0.22);
}
.auth-switch{
    margin-top: 18px;
    font-size: 14px;
}
.auth-switch a{
    font-weight: 700;
    text-decoration: underline;
}

/* Gallery */
.gallery{
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 14px;
}
.gallery a{
    grid-column: span 4;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.gallery a:hover{
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.22);
}
.gallery img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
@media (max-width: 900px){
    .gallery a{ grid-column: span 6; }
}
@media (max-width: 560px){
    .gallery a{ grid-column: span 12; }
}

/* Lightbox */
.lightbox{
    position: fixed;
    inset: 0;
    display: none;
    place-items: center;
    background: rgba(0,0,0,0.75);
    padding: 18px;
    z-index: 2000;
}
.lightbox.open{ display: grid; }
.lightbox img{
    width: min(1100px, 96vw);
    max-height: 85vh;
    object-fit: contain;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: var(--shadow);
}
.lightbox button{
    position: absolute;
    top: 16px;
    right: 16px;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(255,255,255,0.08);
    color: var(--text);
    width: 40px;
    height: 40px;
    border-radius: var(--btn-radius);
    cursor: pointer;
}
.lightbox button:hover{
    background: rgba(255,255,255,0.14);
}

/* ─── Mobile storefront layout (Goodyear-style reference: stacked bars + hero band) ─── */
.header-promo-strip{
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 11px 14px;
    background: var(--gy-yellow);
    color: var(--cta-fg);
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-top: 1px solid rgba(0,0,0,0.08);
    transition: background 0.2s ease, color 0.2s ease;
}
.header-promo-strip__inner{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.header-promo-strip__ico{
    flex-shrink: 0;
    stroke: currentColor;
}
.header-promo-strip:active{
    background: var(--gy-yellow-hover);
}

@media (max-width: 720px){
    :root{
        --header-inline-pad: 24px;
    }

    .header-promo-strip{
        display: flex;
    }

    /* Same glass → solid-on-hover as desktop (see .site-header:not(.site-header--scrolled):hover rules) */

    .header-utility .utility-inner{
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 8px var(--header-inline-pad);
        font-size: 11px;
    }
    .header-main-inner{
        padding: 7px var(--header-inline-pad);
    }
    .nav-burger-summary{
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    .nav-burger-panel{
        left: 12px;
        right: auto;
        top: calc(100% + 10px);
    }
    .brand-gy__word{
        font-size: clamp(11px, 3.2vw, 14px);
    }
    .brand-gy__sub{
        font-size: 9px;
        margin-top: 2px;
    }
    .site-header:not(.site-header--scrolled) .brand-gy__sub{
        font-size: 9px;
        color: rgba(189, 189, 189, 0.9);
        text-shadow: none;
    }

    .header-main-actions{
        gap: 4px;
    }
    .header-main-actions .btn-nav-cta{
        display: none;
    }
    /* Match reference: search + cart only */
    .header-main-actions .nav-icon-btn[aria-label="Contact"]{
        display: none;
    }
    .nav-icon-btn{
        width: 28px;
        height: 28px;
    }

    /* Home hero: left stack, full-width CTA bar, stronger overlay */
    .hero-showroom{
        min-height: min(58vh, 520px);
    }
    .hero-showroom__gradient{
        background: linear-gradient(
            180deg,
            rgba(3, 5, 8, 0.94) 0%,
            rgba(6, 12, 20, 0.62) 45%,
            rgba(8, 16, 26, 0.38) 100%
        );
    }
    .hero-showroom__inner{
        width: 100%;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        padding-left: clamp(18px, 5vw, 22px);
        padding-right: clamp(18px, 5vw, 22px);
        padding-bottom: clamp(24px, 8vw, 40px);
    }
    .hero-showroom h1{
        font-size: clamp(30px, 10vw, 44px);
        line-height: 0.95;
        letter-spacing: -0.015em;
        margin-bottom: calc(12px * 0.9);
    }
    .hero-showroom__tagline{
        font-size: clamp(15px, 4vw, 18px);
        margin-bottom: 22px;
        max-width: none;
    }
    .hero-showroom__cta{
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        max-width: 420px;
    }
    .btn-hero-cta{
        width: 100%;
        max-width: none;
        justify-content: center;
        padding: 16px 24px;
        font-size: 15px;
        letter-spacing: 0.1em;
        border-radius: var(--btn-radius);
    }
    .hero-showroom__link{
        justify-content: flex-start;
        text-align: left;
        border-bottom: none;
        padding-bottom: 0;
        font-size: 14px;
        align-self: flex-start;
    }
}

/* Promo strip only shows ≤720px — a bit more header offset */
@media (max-width: 720px) and (orientation: portrait){
    :root{
        --site-header-offset: clamp(164px, 36vh, 210px);
    }
}
@media (max-width: 720px) and (orientation: landscape){
    :root{
        --site-header-offset: clamp(154px, 28vh, 196px);
    }
}