/* ============================================================
   COMFFITS — MAIN STYLESHEET
   Matches the approved Next.js demo design.
   Brand tokens, typography, layout, components.
   ============================================================ */

/* ── Custom Properties ───────────────────────────────────────────────────── */

:root {
    --red:       #C8102E;
    --red-dark:  #A60D25;
    --red-light: #E8304A;
    --ink:       #111111;
    --charcoal:  #1A1A1A;
    --graphite:  #2B2B2B;
    --mid:       #666666;
    --light:     #767676;
    --border:    #E0E0E0;
    --surface:   #F5F5F5;
    --white:     #FFFFFF;

    --font-sans:    'DM Sans', system-ui, sans-serif;
    --font-display: 'Archivo', system-ui, sans-serif;

    --container-padding: 1.25rem;
    --nav-h: 100px;
    --radius: 0px; /* intentionally zero — demo uses sharp edges */

    --transition: 200ms ease;
    --transition-med: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset / Base ────────────────────────────────────────────────────────── */

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

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

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--ink);
    background: var(--white);
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; font: inherit; border: none; background: none; }

::selection { background: var(--red); color: #fff; }

/* ── Typography ──────────────────────────────────────────────────────────── */

.font-display { font-family: var(--font-display); }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.03em;
    color: var(--ink);
}

/* ── Container ───────────────────────────────────────────────────────────── */

.container {
    width: 100%;
    max-width: 1400px;
    margin-inline: auto;
    padding-inline: var(--container-padding);
}

@media (min-width: 640px)  { :root { --container-padding: 1.5rem; } }
@media (min-width: 1024px) { :root { --container-padding: 2rem;   } }
@media (min-width: 1280px) { :root { --container-padding: 2.5rem; } }

/* ── Utility ─────────────────────────────────────────────────────────────── */

.text-red  { color: var(--red); }
.section--white   { background: var(--white); }
.section--surface { background: var(--surface); }
.section--ink     { background: var(--ink); }
.section { padding-block: 5rem; }
@media (min-width: 640px)  { .section { padding-block: 7rem; } }
@media (min-width: 1024px) { .section { padding-block: 8rem; } }

.scroll-mt-nav { scroll-margin-top: var(--nav-h); }

/* ── Eyebrow ─────────────────────────────────────────────────────────────── */

.eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
}
.eyebrow--red       { color: var(--red); }
.eyebrow--mid       { color: var(--mid); }
.eyebrow--red-subtle{ color: var(--red); }
.eyebrow-line       { display: block; width: 1.75rem; height: 2px; background: var(--red); flex-shrink: 0; }
.eyebrow-line--light{ background: rgba(200,16,46,0.6); }

/* ── Buttons ─────────────────────────────────────────────────────────────── */

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--red);
    color: #fff;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.8125rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 2px solid var(--red);
    transition: background var(--transition), border-color var(--transition), transform 150ms ease;
    white-space: nowrap;
}
.btn-primary:hover  { background: var(--red-dark); border-color: var(--red-dark); }
.btn-primary:active { transform: scale(0.98); }

.btn-primary--white {
    background: #fff;
    color: var(--ink);
    border-color: #fff;
}
.btn-primary--white:hover { background: var(--surface); border-color: var(--surface); }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: var(--ink);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.8125rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 2px solid var(--ink);
    transition: background var(--transition), color var(--transition), border-color var(--transition);
    white-space: nowrap;
}
.btn-ghost:hover { background: var(--ink); color: #fff; }

.btn-ghost--white {
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}
.btn-ghost--white:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: var(--red);
    font-weight: 700;
    font-size: 0.8125rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 2px solid var(--red);
    transition: background var(--transition), color var(--transition);
}
.btn-outline:hover { background: var(--red); color: #fff; }

/* ── Section Headings ───────────────────────────────────────────────────── */

/* Consistent eyebrow → heading gap everywhere */
.eyebrow + .section-heading,
.eyebrow + h1,
.eyebrow + h2 { margin-top: 1rem; }

.section-heading {
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.03em;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--ink);
    margin-top: 1rem;
}

.section-heading--lg { font-size: clamp(1.75rem, 4vw, 3rem); }

.section-header { margin-bottom: 3rem; }
@media (min-width: 640px) { .section-header { margin-bottom: 4rem; } }

.section-desc {
    color: var(--mid);
    font-size: 1rem;
    line-height: 1.65;
    max-width: 48ch;
    margin-top: 1.125rem;
}
@media (min-width: 640px) { .section-desc { font-size: 1.0625rem; } }

.body-text {
    color: var(--mid);
    font-size: 1rem;
    line-height: 1.7;
}
@media (min-width: 640px) { .body-text { font-size: 1.125rem; } }

.body-text + .body-text { margin-top: 1.25rem; }

/* ── Section CTA ─────────────────────────────────────────────────────────── */

.section-cta { margin-top: 3rem; }
@media (min-width: 640px) { .section-cta { margin-top: 4rem; } }

/* ── Scroll reveal ───────────────────────────────────────────────────────── */

.scroll-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── NAVBAR ──────────────────────────────────────────────────────────────── */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--nav-h);
    background: linear-gradient(to bottom, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0) 100%);
    transition: background var(--transition-med), box-shadow var(--transition-med);
}

.site-header.is-scrolled {
    background: var(--ink);
    box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
    gap: 1.5rem;
}

/* Logo */
.site-logo,
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex-shrink: 0;
    text-decoration: none;
    line-height: 1;
}
/* Give the logo link room to show a wide horizontal image cleanly */
.site-logo { min-width: 0; }

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    background: var(--red);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.125rem;
    flex-shrink: 0;
    user-select: none;
}

.logo-text { line-height: 1; }

.logo-name {
    display: block;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.0625rem;
    letter-spacing: 0.04em;
    color: #fff;
}

.logo-since {
    display: block;
    font-size: 0.5625rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(255,255,255,0.35);
    font-weight: 600;
    margin-top: 1px;
}

/* Primary nav */
.primary-nav { display: none; }
@media (min-width: 1024px) { .primary-nav { display: block; } }

.primary-nav ul {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    color: rgba(255,255,255,0.75);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    position: relative;
    transition: color var(--transition);
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: -2px;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-med);
}
.nav-link:hover,
.nav-link--active { color: #fff; }
.nav-link:hover::after,
.nav-link--active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.dropdown-chevron {
    transition: transform var(--transition);
}
.nav-item--has-dropdown:hover .dropdown-chevron,
.nav-item--has-dropdown.is-open  .dropdown-chevron { transform: rotate(180deg); }

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1.25rem;
    margin-left: 0.5rem;
    background: var(--red);
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 2px solid var(--red);
    transition: background var(--transition), border-color var(--transition);
}
.nav-cta:hover,
.nav-cta--active { background: var(--red-dark); border-color: var(--red-dark); }

/* Products dropdown */
.nav-item--has-dropdown { position: relative; }

.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--ink);
    border: 1px solid rgba(255,255,255,0.08);
    min-width: 280px;
    padding: 0.5rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(4px);
    transition: opacity var(--transition-med), transform var(--transition-med);
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.nav-item--has-dropdown:hover .nav-dropdown,
.nav-item--has-dropdown.is-open .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-dropdown__inner { display: flex; flex-direction: column; }

.nav-dropdown__item {
    display: flex;
    flex-direction: column;
    padding: 0.75rem 1rem;
    border-left: 2px solid transparent;
    transition: border-color var(--transition), background var(--transition);
}
.nav-dropdown__item:hover {
    background: rgba(255,255,255,0.04);
    border-left-color: var(--red);
}

.nav-dropdown__title {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
}
.nav-dropdown__desc {
    color: rgba(255,255,255,0.45);
    font-size: 0.75rem;
    margin-top: 2px;
}

/* Mobile toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    margin-left: auto;
}
@media (min-width: 1024px) { .mobile-menu-toggle { display: none; } }

.hamburger-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    transition: transform var(--transition-med), opacity var(--transition);
}

.mobile-menu-toggle.is-open .hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.is-open .hamburger-bar:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.is-open .hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
    background: var(--charcoal);
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 1rem 0 1.5rem;
}
.mobile-nav[hidden] { display: none; }

.mobile-nav ul { list-style: none; }

.mobile-nav > ul > li > a,
.mobile-nav__sub-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem calc(var(--container-padding) + 0.5rem);
    color: rgba(255,255,255,0.85);
    font-size: 0.9375rem;
    font-weight: 500;
    border-left: 3px solid transparent;
    width: 100%;
    text-align: left;
    transition: color var(--transition), border-color var(--transition);
}
.mobile-nav > ul > li > a:hover,
.mobile-nav__sub-toggle:hover { color: #fff; border-left-color: var(--red); }

.mobile-nav__sub[hidden] { display: none; }

.mobile-nav__sub li a {
    display: block;
    padding: 0.625rem calc(var(--container-padding) + 2rem);
    color: rgba(255,255,255,0.55);
    font-size: 0.875rem;
    transition: color var(--transition);
}
.mobile-nav__sub li a:hover { color: var(--red); }

.mobile-nav__phone a {
    display: block;
    padding: 1rem calc(var(--container-padding) + 0.5rem);
    color: var(--red) !important;
    font-weight: 700;
    font-size: 1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 0.5rem;
}

/* ── HERO ─────────────────────────────────────────────────────────────────── */

.hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-top: var(--nav-h);
    overflow: hidden;
}

.hero--home                              { min-height: 100vh; }
@media (min-width: 640px)  { .hero--home { min-height:  92vh; } }
@media (min-width: 1024px) { .hero--home { min-height:  84vh; } }
.hero--interior { min-height: 65vh; }
@media (min-width: 640px)  { .hero--interior { min-height: 70vh; } }
@media (min-width: 1024px) { .hero--interior { min-height: min(72vh, 600px); } }
.hero--short    { min-height: 55vh; }
@media (min-width: 640px)  { .hero--short { min-height: 60vh; } }
@media (min-width: 1024px) { .hero--short { min-height: min(66vh, 560px); } }

.hero__bg {
    position: absolute;
    inset: 0;
}
.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(17,17,17,0.92) 0%, rgba(17,17,17,0.62) 52%, rgba(17,17,17,0.18) 100%),
        linear-gradient(to top,   rgba(17,17,17,0.72) 0%, transparent 38%);
}

.hero__content {
    position: relative;
    padding-bottom: 4rem;
    max-width: none;
}
@media (min-width: 640px) { .hero__content { padding-bottom: 5rem; } }

.hero__eyebrow { margin-bottom: 1rem; }

.hero__heading {
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.03em;
    color: #fff;
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    margin-top: 0;
}
@media (min-width: 768px) { .hero__heading { font-size: clamp(2rem, 4.5vw, 4.25rem); } }

.hero__sub {
    color: rgba(255,255,255,0.72);
    font-size: 1rem;
    line-height: 1.65;
    max-width: 50ch;
    margin-top: 1.25rem;
}
@media (min-width: 640px) { .hero__sub { font-size: 1.125rem; margin-top: 1.75rem; } }

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}
@media (min-width: 640px) { .hero__actions { margin-top: 2.5rem; } }

/* ── HERO — INTERIOR PAGES ───────────────────────────────────────────────── */

/* Interior + short heroes share the same heading scale and line-height.
   This covers About, Showroom (hero--interior) and Contact (hero--short). */
.hero--interior .hero__heading,
.hero--short    .hero__heading {
    font-size: clamp(1.875rem, 4.5vw, 3.75rem);
    line-height: 1.0;
}

/* ── HERO — ABOUT PAGE ───────────────────────────────────────────────────── */

/* Heading always renders as two template-split lines; constrain the block width
   so the editorial column stays tight and left-anchored. */
.hero--about .hero__heading {
    max-width: 16ch;
}

/* About carries only eyebrow + heading, so the generic interior hero leaves
   too much empty field above the text block. Tighten only this page. */
.hero--about {
    min-height: 58vh;
}
@media (min-width: 640px)  { .hero--about { min-height: 62vh; } }
@media (min-width: 1024px) { .hero--about { min-height: min(64vh, 540px); } }

.hero--about .hero__content {
    padding-bottom: 3.75rem;
}
@media (min-width: 640px) { .hero--about .hero__content { padding-bottom: 4.5rem; } }

/* Shorten the handoff into the first content section so the hero and story
   read as one intentional sequence rather than two disconnected bands. */
.hero--about + .section {
    padding-top: 4rem;
}
@media (min-width: 640px)  { .hero--about + .section { padding-top: 5rem; } }
@media (min-width: 1024px) { .hero--about + .section { padding-top: 6rem; } }

/* Contact/Get a Quote has the sparsest hero and needs its own composition
   without affecting showroom or other short heroes. */
.hero--contact {
    min-height: 50vh;
}
@media (min-width: 640px)  { .hero--contact { min-height: 54vh; } }
@media (min-width: 1024px) { .hero--contact { min-height: min(58vh, 500px); } }

.hero--contact .hero__heading {
    max-width: 14ch;
}

.hero--contact .hero__content {
    padding-bottom: 3.25rem;
}
@media (min-width: 640px) { .hero--contact .hero__content { padding-bottom: 4rem; } }

.hero--contact + .contact-section {
    padding-top: 4rem;
}
@media (min-width: 640px)  { .hero--contact + .contact-section { padding-top: 5rem; } }
@media (min-width: 1024px) { .hero--contact + .contact-section { padding-top: 6rem; } }

/* ── HERO — PRODUCTS PAGE ────────────────────────────────────────────────── */

/* Restrained catalogue hero — editorial, not homepage-loud.
   max() pixel floor prevents crampedness on short laptop screens where
   74vh alone would not leave enough space above the text block. */
.hero--products {
    min-height: max(62vh, 520px);
    align-items: flex-end;
}
@media (min-width: 640px)  { .hero--products { min-height: max(68vh, 560px); } }
@media (min-width: 1024px) { .hero--products { min-height: max(74vh, 640px); } }

.hero--products .hero__overlay {
    background:
        linear-gradient(to right,
            rgba(6,6,6,0.88) 0%,
            rgba(6,6,6,0.7)  42%,
            rgba(6,6,6,0.38) 72%,
            rgba(6,6,6,0.1)  100%),
        linear-gradient(to top,
            rgba(6,6,6,0.62) 0%,
            transparent 44%);
}

.hero--products .hero__content {
    padding-bottom: 4rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}
@media (min-width: 640px) { .hero--products .hero__content { padding-bottom: 5rem; } }

/* Restrained, editorial heading — significantly smaller than homepage */
.hero--products .hero__heading {
    font-size: clamp(1.875rem, 3.8vw, 3.25rem);
    line-height: 1.0;
    margin-top: 0;
}

.hero--products .hero__sub {
    max-width: 46ch;
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.65);
    margin-top: 1rem;
}
@media (min-width: 640px) { .hero--products .hero__sub { font-size: 1rem; margin-top: 1.25rem; } }

/* Scroll anchor — subtle, understated */
.hero__browse-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.75rem;
    color: rgba(255,255,255,0.68);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color var(--transition);
}
.hero__browse-cta:hover { color: #fff; }
.hero__browse-cta svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    animation: pg-bounce 2.6s ease-in-out infinite;
}
@keyframes pg-bounce {
    0%, 100% { transform: translateY(0); }
    55%       { transform: translateY(4px); }
}

/* Stat strip — compact, light, inline */
.hero__catalogue-meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 2.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.hero__catalogue-meta-item {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}
.hero__catalogue-meta-value {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    letter-spacing: -0.02em;
    line-height: 1;
}
.hero__catalogue-meta-label {
    font-size: 0.5625rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.16em;
}
.hero__catalogue-meta-sep {
    width: 1px;
    height: 2.75rem;
    background: rgba(255,255,255,0.16);
    flex-shrink: 0;
}

@media (max-width: 639px) {
    .hero__catalogue-meta {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.85rem;
        margin-top: 1.75rem;
        padding-top: 1rem;
    }

    .hero__catalogue-meta-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
        min-width: 0;
    }

    .hero__catalogue-meta-label {
        font-size: 0.625rem;
        line-height: 1.35;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .hero__catalogue-meta-sep {
        display: none;
    }
}

/* ── TRUST BAR ────────────────────────────────────────────────────────────── */

.trust-bar {
    background: var(--ink);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding-block: 1.5rem;
}

.trust-bar__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
}
@media (min-width: 640px) {
    .trust-bar__grid { grid-template-columns: repeat(4, 1fr); gap: 0; }
    .trust-bar__item { border-right: 1px solid rgba(255,255,255,0.1); }
    .trust-bar__item:last-child { border-right: none; }
}

.trust-bar__item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-inline: 1.5rem;
}

.trust-bar__value {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #fff;
    line-height: 1;
}

.trust-bar__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.45);
    font-weight: 600;
}

/* ── PRODUCT GRID + CARDS ────────────────────────────────────────────────── */

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}
@media (min-width: 640px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
}
@media (min-width: 1024px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.product-card__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    transition: box-shadow 240ms ease, border-color 240ms ease;
}
.product-card:hover .product-card__inner,
a.product-card__inner:hover {
    border-color: rgba(0,0,0,0.12);
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
}

.product-card__img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f9f9f9;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.875rem;
    transition: transform 0.5s ease;
}
.product-card:hover .product-card__img-wrap img { transform: scale(1.03); }
a.product-card__inner:hover .product-card__img-wrap img { transform: scale(1.03); }

.product-card__img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--border);
    background: #fafafa;
}

.product-card__badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--red);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.625rem;
}

.product-card__body {
    padding: 0.875rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card__group {
    font-size: 0.5625rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
    color: var(--red);
    margin: 0 0 0.3rem;
}

.product-card__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.3;
    letter-spacing: -0.008em;
    color: var(--ink);
    margin: 0;
}

.product-card__short {
    color: var(--mid);
    font-size: 0.75rem;
    line-height: 1.5;
    margin: 0.25rem 0 0;
}

.product-card__desc {
    color: var(--mid);
    font-size: 0.75rem;
    line-height: 1.6;
    margin-top: 0.25rem;
}

.product-card__footer {
    margin-top: auto;
    padding-top: 0.75rem;
}

.product-card__cta,
.product-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--graphite);
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 150ms ease;
}
.product-card__cta-arrow {
    display: inline-block;
    transition: transform 150ms ease;
    font-style: normal;
}
.product-card:hover .product-card__cta,
.product-card:hover .product-card__link { color: var(--red); }
.product-card:hover .product-card__cta-arrow { transform: translateX(2px); }

/* ── WHY SECTION ─────────────────────────────────────────────────────────── */

.why-section__header { margin-bottom: 3.5rem; }

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 640px)  { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why-card {
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--red);
}

.why-card__num {
    display: block;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--border);
    line-height: 1;
    margin-bottom: 1.25rem;
}

.why-card__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.125rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 0.75rem;
}

.why-card__body {
    color: var(--mid);
    font-size: 0.9375rem;
    line-height: 1.65;
}

/* ── SHOWROOM STRIP ───────────────────────────────────────────────────────── */

.showroom-strip__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .showroom-strip__inner {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.showroom-strip__img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--surface);
}
.showroom-strip__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.showroom-strip__img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--border);
}

.showroom-strip__text { display: flex; flex-direction: column; gap: 1.25rem; }

.showroom-strip__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

/* ── CTA BANNER ──────────────────────────────────────────────────────────── */

.cta-banner {
    background: var(--ink);
    padding-block: 5rem;
}
@media (min-width: 640px) { .cta-banner { padding-block: 6rem; } }

.cta-banner__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .cta-banner__inner { grid-template-columns: 1fr auto; gap: 4rem; }
}

.cta-banner__heading {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-top: 0.75rem;
}

.cta-banner__sub {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    margin-top: 0.75rem;
    max-width: 50ch;
}

.cta-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* ── TWO-COL SECTION ─────────────────────────────────────────────────────── */

.two-col-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
@media (min-width: 1024px) {
    .two-col-section {
        grid-template-columns: 5fr 7fr;
        gap: 5rem;
        align-items: start;
    }
}

/* ── VALUES ──────────────────────────────────────────────────────────────── */

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}
@media (min-width: 640px)  { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }

.value-card {
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--border);
    position: relative;
}
.value-card__bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
}
.value-card__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.125rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 0.75rem;
}
.value-card__body {
    color: var(--mid);
    font-size: 0.9375rem;
    line-height: 1.65;
}

/* ── STATS SECTION ───────────────────────────────────────────────────────── */

.stats-section {
    background: var(--ink);
    padding-block: 4rem;
}

.stats-section__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
}
@media (min-width: 640px) {
    .stats-section__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
    }
    .stats-section__item {
        border-right: 1px solid rgba(255,255,255,0.1);
    }
    .stats-section__item:last-child { border-right: none; }
}

.stats-section__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    padding-inline: 1.5rem;
}

.stats-section__value {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    line-height: 1;
}

.stats-section__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.4);
    font-weight: 600;
}

/* ── TEAM ────────────────────────────────────────────────────────────────── */

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
@media (min-width: 640px)  { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }

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

.team-card__photo {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--surface);
    margin-bottom: 1rem;
}
.team-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-card__photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ink);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 2.5rem;
}

.team-card__name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--ink);
}

.team-card__role {
    color: var(--mid);
    font-size: 0.8125rem;
    margin-top: 0.25rem;
}

/* ── PRODUCTS PAGE — CATALOGUE SECTION ──────────────────────────────────── */

.pg-catalogue {
    background: var(--white);
    border-top: 1px solid var(--border);
}

.pg-catalogue__layout {
    display: flex;
    align-items: flex-start;
}

/* ── PRODUCTS PAGE — MOBILE HORIZONTAL TABS ─────────────────────────────── */

.pg-cat-tabs-mobile {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-bottom: 1px solid var(--border);
    background: var(--white);
    position: sticky;
    top: var(--nav-h);
    z-index: 9;
}
.pg-cat-tabs-mobile::-webkit-scrollbar { display: none; }
@media (min-width: 1024px) { .pg-cat-tabs-mobile { display: none; } }

.pg-cat-tab-mobile {
    flex-shrink: 0;
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--mid);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    cursor: pointer;
    margin-bottom: -1px;
    transition: color 150ms ease, border-color 150ms ease;
    line-height: 1;
}
.pg-cat-tab-mobile:hover { color: var(--graphite); }
.pg-cat-tab-mobile.is-active {
    color: var(--ink);
    font-weight: 600;
    border-bottom-color: var(--red);
}

/* ── PRODUCTS PAGE — LEFT RAIL ───────────────────────────────────────────── */

.pg-rail {
    display: none;
    flex-shrink: 0;
    width: 224px;
    border-right: 1px solid rgba(0,0,0,0.07);
    background: var(--white);
}
@media (min-width: 1024px) {
    .pg-rail {
        display: block;
        position: sticky;
        top: var(--nav-h);
        max-height: calc(100vh - var(--nav-h));
        overflow-y: auto;
        scrollbar-width: none;
        padding: 2.25rem 0 3rem;
    }
}
.pg-rail::-webkit-scrollbar { display: none; }

.pg-rail__heading {
    font-size: 0.5625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(0,0,0,0.58);
    padding: 0 1.5rem 0.875rem;
    margin: 0;
}

.pg-rail__items { display: flex; flex-direction: column; }

.pg-rail-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.5625rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 0.625rem;
}
/* Active indicator — thin red left bar, no background fill */
.pg-rail-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 2px;
    background: var(--red);
    opacity: 0;
    transition: opacity var(--transition);
}
.pg-rail-item.is-active::before { opacity: 1; }

.pg-rail-item__name {
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(0,0,0,0.68);
    line-height: 1.35;
    text-align: left;
    transition: color 160ms ease, font-weight 160ms ease;
}
.pg-rail-item:hover .pg-rail-item__name { color: rgba(0,0,0,0.85); }
.pg-rail-item.is-active .pg-rail-item__name {
    color: var(--ink);
    font-weight: 600;
}

/* Count — plain inline number, ambient */
.pg-rail-item__count {
    font-size: 0.625rem;
    font-weight: 500;
    color: rgba(0,0,0,0.52);
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
    transition: color 160ms ease;
}
.pg-rail-item:hover .pg-rail-item__count { color: rgba(0,0,0,0.68); }
.pg-rail-item.is-active .pg-rail-item__count { color: var(--red); }

/* ── PRODUCTS PAGE — CONTENT AREA ────────────────────────────────────────── */

.pg-cat-content {
    flex: 1;
    min-width: 0;
}

/* ── PRODUCTS PAGE — CATEGORY PANELS ────────────────────────────────────── */

.pg-cat-panels { position: relative; }

.pg-cat-panel {
    padding: 2rem 1.5rem 4rem;
}
@media (min-width: 640px) { .pg-cat-panel { padding: 2.5rem 2rem 4.5rem; } }
@media (min-width: 1024px) { .pg-cat-panel { padding: 2.5rem 2.5rem 5rem; } }

.pg-panel-header {
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}

.pg-panel-header__top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.375rem;
}

.pg-panel-title {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.875rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1;
    color: var(--ink);
    margin: 0;
}

.pg-panel-subcat-count {
    font-size: 0.625rem;
    font-weight: 500;
    color: rgba(0,0,0,0.55);
    letter-spacing: 0.06em;
    white-space: nowrap;
    flex-shrink: 0;
}

.pg-panel-desc {
    color: var(--mid);
    font-size: 0.875rem;
    max-width: 58ch;
    line-height: 1.7;
    margin: 0;
}

/* ── PRODUCTS PAGE — SUB-CATEGORY UNDERLINE TABS ────────────────────────── */

.pg-subcat-nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    margin-bottom: 1.75rem;
}
.pg-subcat-nav::-webkit-scrollbar { display: none; }

.pg-subcat-tab {
    flex-shrink: 0;
    padding: 0.5rem 1rem 0.5625rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    color: rgba(0,0,0,0.58);
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    cursor: pointer;
    white-space: nowrap;
    line-height: 1;
    transition: color 150ms ease, border-color 150ms ease;
}
.pg-subcat-tab:hover { color: var(--graphite); }
.pg-subcat-tab.is-active {
    color: var(--ink);
    font-weight: 600;
    border-bottom-color: var(--red);
}

/* ── PRODUCTS PAGE — SUB-CATEGORY PANELS ────────────────────────────────── */

.pg-subcat-panels { position: relative; }
.pg-subcat-panel .product-grid { margin-top: 0; }

/* Product grid inside content pane — narrower rail means room for 2 at 1024, 3 at 1280 */
@media (min-width: 1024px) {
    .pg-cat-content .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}
@media (min-width: 1280px) {
    .pg-cat-content .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}
/* Global grid gap tightening on products page */
.pg-cat-content .product-grid { margin-top: 0; }

/* ── VISIT STRIP ─────────────────────────────────────────────────────────── */

.visit-strip {
    background: var(--ink);
    padding-block: 3.5rem 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
@media (min-width: 640px) { .visit-strip { padding-block: 3.5rem; } }

.visit-strip__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 640px) {
    .visit-strip__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        divide-x: 1px solid rgba(255,255,255,0.1);
    }
    .visit-strip__col { padding-inline: 2rem; border-right: 1px solid rgba(255,255,255,0.1); }
    .visit-strip__col:first-child { padding-left: 0; }
    .visit-strip__col:last-child  { border-right: none; }
}

.visit-strip__eyebrow { margin-bottom: 0.75rem; }

.visit-strip__address {
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
}

.visit-strip__hours {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}
.visit-strip__hours li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 0.9375rem;
}
.visit-strip__days  { color: rgba(255,255,255,0.45); font-size: 0.875rem; }

.visit-strip__phones {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}
.visit-strip__phones a {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    transition: color var(--transition);
}
.visit-strip__phones a:hover { color: var(--red); }

.visit-strip__email {
    display: block;
    color: rgba(255,255,255,0.55);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    word-break: break-all;
    transition: color var(--transition);
}
.visit-strip__email:hover { color: var(--red); }

/* ── GALLERY ─────────────────────────────────────────────────────────────── */

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 3rem;
}
@media (min-width: 640px)  { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

.gallery-grid__item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--surface);
}
.gallery-grid__item--tall { aspect-ratio: 3/4; }

.gallery-grid__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-grid__item:hover img { transform: scale(1.03); }

.gallery-grid__placeholder {
    width: 100%;
    height: 100%;
    background: var(--border);
}

/* Showroom gallery: keep mobile unchanged, but give the desktop photo grid a
   cleaner rhythm so the mixed-aspect layout does not feel ragged. */
@media (min-width: 1024px) {
    .gallery-section .gallery-grid:not(.gallery-grid--videos) {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        grid-auto-flow: dense;
        gap: 1.25rem;
    }

    .gallery-section .gallery-grid:not(.gallery-grid--videos) .gallery-grid__item {
        grid-column: span 4;
        aspect-ratio: 4 / 3;
        min-width: 0;
    }

    .gallery-section .gallery-grid:not(.gallery-grid--videos) .gallery-grid__item--tall {
        grid-column: span 8;
        aspect-ratio: 16 / 10;
    }
}

/* ── LOCATION SECTION ────────────────────────────────────────────────────── */

.location-section__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}
@media (min-width: 1024px) {
    .location-section__inner {
        grid-template-columns: 5fr 7fr;
        gap: 4rem;
    }
}

.location-section__map {
    aspect-ratio: 4/3;
    overflow: hidden;
    border: 1px solid var(--border);
}
.location-section__map iframe { display: block; width: 100%; height: 100%; }

.location-section__notes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.location-section__notes li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--mid);
    line-height: 1.55;
}
.location-note__dot {
    display: block;
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

/* ── CONTACT SECTION ─────────────────────────────────────────────────────── */

.contact-section__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}
@media (min-width: 1024px) {
    .contact-section__inner { grid-template-columns: 7fr 5fr; gap: 4rem; }
}

/* Contact form */
.contact-form {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row { display: flex; flex-direction: column; gap: 1.25rem; }
@media (min-width: 640px) {
    .form-row--two { flex-direction: row; }
    .form-row--two .form-group { flex: 1; }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink);
}

.required { color: var(--red); }

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.875rem 1rem;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 1rem;
    outline: none;
    transition: border-color var(--transition);
    width: 100%;
    border-radius: 0;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--red); }

.form-group textarea { resize: vertical; min-height: 9rem; }

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

.btn-primary--submit {
    min-width: 180px;
    justify-content: center;
    position: relative;
}

.submit-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.form-feedback {
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 500;
    margin-top: 0.5rem;
}
.form-feedback[hidden] { display: none; }
.form-feedback--success { background: #f0fdf4; color: #166534; border-left: 3px solid #16a34a; }
.form-feedback--error   { background: #fef2f2; color: #991b1b; border-left: 3px solid var(--red); }

/* Contact info panel */
.contact-info-panel {
    background: var(--ink);
    padding: 2rem;
    color: #fff;
}
@media (min-width: 640px) { .contact-info-panel { padding: 2.5rem 3rem; } }

.contact-info-panel .eyebrow { margin-bottom: 2rem; }

.contact-info-panel__group {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}
.contact-info-panel__group:first-of-type { margin-top: 0; border-top: none; padding-top: 0; }

.contact-info-panel__group-label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(255,255,255,0.35);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.contact-info-panel__group ul { display: flex; flex-direction: column; gap: 0.375rem; }
.contact-info-panel__group li { display: flex; align-items: center; gap: 0.625rem; flex-wrap: wrap; }

.contact-info-panel__group a {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    transition: color var(--transition);
}
.contact-info-panel__group a:hover { color: var(--red); }

.contact-info-panel__phone-label {
    color: rgba(255,255,255,0.35);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-info-panel address {
    color: rgba(255,255,255,0.8);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.contact-info-panel__hours { display: flex; flex-direction: column; gap: 0.5rem; }
.contact-info-panel__hours li { display: flex; align-items: center; gap: 0.625rem; }
.hours-days { color: rgba(255,255,255,0.4); font-size: 0.875rem; }
.hours-time { color: #fff; font-size: 0.9375rem; font-weight: 500; }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */

.site-footer { background: var(--ink); color: #fff; }

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 4rem;
    padding-bottom: 2.5rem;
}
@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 3rem;
    }
}
@media (min-width: 1024px) {
    /* brand | company | products | contact | locations */
    .footer-grid {
        grid-template-columns: 3fr 1fr 2fr 2fr 2fr;
        gap: 2rem;
    }
}

.footer-logo .logo-name { font-size: 1.0625rem; }

.footer-tagline {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    line-height: 1.65;
    max-width: 30ch;
    margin-top: 1.25rem;
}

.footer-stamp {
    display: inline-block;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--red);
    font-weight: 700;
    border-top: 2px solid var(--red);
    padding-top: 0.5rem;
    margin-top: 1.25rem;
}

.footer-col-heading {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(255,255,255,0.3);
    font-weight: 700;
    font-family: var(--font-sans);
    margin-bottom: 1.25rem;
}

.footer-nav-col ul,
.footer-contact-col ul { display: flex; flex-direction: column; gap: 0.625rem; }

.footer-nav-col a,
.footer-contact-col a,
.footer-locations-col a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9375rem;
    transition: color var(--transition);
}
.footer-nav-col a:hover,
.footer-contact-col a:hover,
.footer-locations-col a:hover { color: #fff; }

.footer-locations-col .footer-location { margin-bottom: 1rem; }
.footer-locations-col .footer-location:last-child { margin-bottom: 0; }
.footer-locations-col .footer-address { margin-top: 0.25rem; }

.footer-phones { display: flex; flex-direction: column; gap: 0.375rem; }
.footer-phones a { font-size: 0.9375rem; font-weight: 500; }

.footer-email {
    display: block;
    color: rgba(255,255,255,0.5) !important;
    font-size: 0.8125rem !important;
    margin-top: 0.75rem;
    word-break: break-all;
}
.footer-email:hover { color: var(--red) !important; }

.footer-address {
    color: rgba(255,255,255,0.55);
    font-size: 0.875rem;
    line-height: 1.7;
    font-style: normal;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-block: 1.25rem;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}
@media (min-width: 640px) {
    .footer-bottom-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.footer-copy {
    color: rgba(255,255,255,0.3);
    font-size: 0.8125rem;
}

.footer-cta-link {
    color: rgba(255,255,255,0.5);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: color var(--transition);
}
.footer-cta-link:hover { color: var(--red); }

/* ── Video section ───────────────────────────────────────────────────────── */

.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
}
@media (min-width: 768px) {
    .video-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
    .video-grid { grid-template-columns: repeat(3, 1fr); }
}

.video-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.video-card__embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--ink);
    border-radius: 4px;
    overflow: hidden;
}
.video-card__embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Self-hosted video: don't use overflow:hidden clipping so native controls are fully usable */
.video-card__embed--native {
    aspect-ratio: unset;
    overflow: visible;
    background: #000;
    border-radius: 4px;
}
.video-card__embed--native video {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    display: block;
    border-radius: 4px;
    border: 0;
}
.video-card__embed--thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-card__title {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.35;
    margin: 0;
}

.video-card__desc {
    font-size: 0.9375rem;
    color: var(--mid);
    line-height: 1.6;
    margin: 0;
}

/* ── Admin bar offset ────────────────────────────────────────────────────── */

.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

/* ── Print ───────────────────────────────────────────────────────────────── */

@media print {
    .site-header, .site-footer, .cta-banner { display: none; }
    .hero { min-height: auto; padding-top: 1rem; }
    .hero__overlay { display: none; }
    .hero__content h1 { color: #000; }
}

/* ── HERO STATS STRIP (inside hero, after CTAs) ──────────────────────────── */

.hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hero__stat-value {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: #fff;
    line-height: 1;
}

.hero__stat-label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.45);
    font-weight: 600;
}

/* ── WHO WE ARE / MANUFACTURER SECTION ───────────────────────────────────── */

.mfr-section__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .mfr-section__inner {
        grid-template-columns: 5fr 7fr;
        gap: 5rem;
        align-items: start;
    }
}

.section-heading--xl {
    font-size: clamp(2.25rem, 5.5vw, 4rem);
}

.mfr-section__right {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mfr-section__cta { margin-top: 0.75rem; }

/* ── DARK PRODUCT SECTION (homepage "What We Build") ─────────────────────── */

.section-heading--white { color: #fff; }

.featured-products--dark .section-heading { color: #fff; }
.featured-products--dark .section-desc    { color: rgba(255,255,255,0.55); }

.featured-products--dark .product-card__inner {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
}

.featured-products--dark .product-card:hover .product-card__inner,
.featured-products--dark a.product-card__inner:hover {
    border-color: var(--red);
    box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

.featured-products--dark .product-card__img-wrap {
    background: rgba(255,255,255,0.06);
}

.featured-products--dark .product-card__img-placeholder {
    background: rgba(255,255,255,0.08);
}

.featured-products--dark .product-card__title { color: #fff; }

.featured-products--dark .product-card__short,
.featured-products--dark .product-card__desc  { color: rgba(255,255,255,0.55); }

/* ── HOW WE WORK – 4-COLUMN GRID ────────────────────────────────────────── */

@media (min-width: 1024px) {
    .why-grid--four { grid-template-columns: repeat(4, 1fr); }
}

.why-section__header .section-desc { max-width: 60ch; }

/* ── VIDEO SECTION ON DARK BACKGROUND ───────────────────────────────────── */

.video-card__title--light { color: rgba(255,255,255,0.9); }
.video-card__desc--light  { color: rgba(255,255,255,0.5); }

/* ── HERO — refinements to match demo composition ────────────────────────── */

/* .hero__content uses container's full 1400px — text block constrained below */
.hero__text    { max-width: 620px; }
.hero__eyebrow { margin-bottom: 1.5rem; }
.hero__sub     { max-width: 58ch; }

/* ── WHO WE ARE — left column sticks to top on desktop ───────────────────── */

.mfr-section__left { padding-top: 0.25rem; }
.mfr-section__left .eyebrow { margin-bottom: 1.25rem; }

/* ── SHOWROOM + LEADERSHIP — combined white section ──────────────────────── */

/* background comes from .section--* utility; no hardcoded override here */
.showroom-section { }

.showroom-section__strip {
    padding-block: 5rem;
    border-bottom: 1px solid var(--border);
}
@media (min-width: 640px)  { .showroom-section__strip { padding-block: 7rem; } }
@media (min-width: 1024px) { .showroom-section__strip { padding-block: 8rem; } }

/* Leadership sub-section */
.leadership-section {
    padding-block: 5rem 6rem;
}
@media (min-width: 640px)  { .leadership-section { padding-block: 6rem 7rem; } }
@media (min-width: 1024px) { .leadership-section { padding-block: 7rem 8rem; } }

.leadership-section__header { margin-bottom: 0; }
.leadership-section__header .section-heading { margin-top: 1rem; }
.leadership-section__header .section-desc    { margin-top: 1rem; }

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
    margin-top: 3rem;
}
@media (min-width: 640px) {
    .leadership-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; max-width: 700px; }
}

.leadership-card { display: flex; flex-direction: column; }

.leadership-card__photo {
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--surface);
    margin-bottom: 0.875rem;
    position: relative;
}
.leadership-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.leadership-card__initial {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ink);
    color: rgba(255,255,255,0.12);
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 4.5rem;
    line-height: 1;
}

.leadership-card__name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--ink);
}

.leadership-card__role {
    color: var(--mid);
    font-size: 0.8125rem;
    margin-top: 0.2rem;
    line-height: 1.4;
}

.leadership-section__cta { margin-top: 2.5rem; }

/* ── SHOWROOM STRIP – VIDEO EMBED ────────────────────────────────────────── */

/* When video replaces the showroom image, fill the same 4/3 slot */
.showroom-strip__video {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--ink);
    overflow: hidden;
}
.showroom-strip__video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.showroom-strip__video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── SECTION CTA ─────────────────────────────────────────────────────────── */

.section-cta {
    margin-top: 3rem;
    text-align: center;
}

.leadership-section__cta { margin-top: 2.5rem; }

/* ── STANDALONE STATS STRIP (below hero) ─────────────────────────────────── */

.section-strip {
    padding-block: 2rem;
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* ── MID CTA BAND ─────────────────────────────────────────────────────────── */

.mid-cta-band {
    background: var(--red);
    padding-block: 2.5rem;
}

.mid-cta-band__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem 3rem;
}

.mid-cta-band__eyebrow {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.65);
    font-weight: 700;
    margin-bottom: 0.375rem;
}

.mid-cta-band__heading {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(1.25rem, 3vw, 2rem);
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
}

.mid-cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* ── INSTALLATIONS ACROSS INDIA ───────────────────────────────────────────── */

.installs-section {
    position: relative;
    overflow: hidden;
    padding-block: 5rem;
}
@media (min-width: 640px)  { .installs-section { padding-block: 7rem; } }
@media (min-width: 1024px) { .installs-section { padding-block: 8rem; } }

.installs-section__bg {
    position: absolute;
    inset: 0;
    opacity: 0.12;
}
.installs-section__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.installs-section__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .installs-section__inner { grid-template-columns: 5fr 7fr; gap: 5rem; }
}

.installs-section__text { display: flex; flex-direction: column; gap: 1rem; }

.installs-counter-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
@media (min-width: 640px) { .installs-counter-grid { gap: 1.5rem; } }

.installs-counter {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-left: 3px solid var(--red);
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.installs-counter__value {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: #fff;
    line-height: 1;
}

.installs-counter__label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.4);
    font-weight: 600;
}

.installs-section__cta { margin-top: 0.5rem; }

/* ── INSTALLATIONS SLIDER ──────────────────────────────────────────────────── */

/* Standalone section: no longer shares .installs-section base class */
.installs-section--slider {
    position: relative;
    padding-block: 5rem;
}
@media (min-width: 640px)  { .installs-section--slider { padding-block: 6rem; } }
@media (min-width: 1024px) { .installs-section--slider { padding-block: 7rem; } }

/* Counter grid displayed in the intro header above project slides */
.installs-counter-grid--header {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 2.5rem;
    max-width: 960px;
}
@media (min-width: 640px) {
    .installs-counter-grid--header { grid-template-columns: repeat(4, 1fr); }
}

.installs-slider__header {
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}
@media (min-width: 640px) { .installs-slider__header { margin-bottom: 4rem; } }
@media (min-width: 1024px) { .installs-slider__header { margin-bottom: 4.5rem; } }

.installs-slider__sub {
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    line-height: 1.7;
    margin-top: 0.75rem;
    max-width: 52ch;
}

.installs-slider {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.installs-slider__track {
    display: flex;
    transition: transform 420ms cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.installs-slide {
    flex: 0 0 100%;
    min-width: 0;
}

/* Intro stats slide */
.installs-slide--intro .installs-counter-grid--slider {
    max-width: 800px;
    margin-inline: auto;
    grid-template-columns: repeat(2, 1fr);
    padding-block: 1rem;
}
@media (min-width: 640px) {
    .installs-slide--intro .installs-counter-grid--slider {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Project slide */
.installs-slide__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}
@media (min-width: 768px) {
    .installs-slide__inner {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        align-items: center;
    }
}
@media (min-width: 1100px) {
    .installs-slide__inner {
        grid-template-columns: 7fr 5fr;
        gap: 4rem;
    }
}

.installs-slide__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem;
}
.installs-slide__images--single {
    grid-template-columns: 1fr;
}

.installs-slide__img-wrap {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
}
.installs-slide__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
}
.installs-slide:hover .installs-slide__img-wrap img { transform: scale(1.03); }

.installs-slide__text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-block: 0.5rem;
}

.installs-slide__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.25rem, 3vw, 1.875rem);
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.installs-slide__quote {
    border-left: 3px solid var(--red);
    padding-left: 1.125rem;
    margin: 0;
}
.installs-slide__quote p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    line-height: 1.7;
    font-style: italic;
}

.installs-slide__cta { align-self: flex-start; }

/* Slider dots */
.installs-slider__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    position: relative;
    z-index: 1;
}

.installs-slider__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.28);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 200ms ease, transform 200ms ease;
    flex-shrink: 0;
}
.installs-slider__dot.is-active {
    background: var(--red);
    transform: scale(1.35);
}
.installs-slider__dot:hover:not(.is-active) { background: rgba(255,255,255,0.55); }

/* ── SHOWROOM GALLERY SLIDER ───────────────────────────────────────────────── */

.gallery-slider {
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
    background: var(--ink);
}

.gallery-slider__track {
    display: flex;
    transition: transform 420ms cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.gallery-slider__slide {
    flex: 0 0 100%;
    min-width: 0;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (min-width: 640px) { .gallery-slider__slide { aspect-ratio: 4/3; } }
@media (min-width: 1024px) { .gallery-slider__slide { aspect-ratio: 16/9; } }

@media (min-width: 1024px) {
    .gallery-section .container {
        display: grid;
        grid-template-columns: minmax(0, 1.85fr) minmax(280px, 0.9fr);
        gap: 2rem;
        align-items: start;
    }

    .gallery-section .container > .scroll-reveal:first-child {
        grid-column: 1 / -1;
        max-width: 70rem;
    }

    .gallery-section .gallery-slider {
        grid-column: 1;
        margin-top: 2.25rem;
        border: 1px solid var(--border);
    }

    .gallery-section .gallery-slider__slide {
        aspect-ratio: 16 / 10;
    }

    .gallery-section .gallery-slider__dots {
        margin-top: 0;
        padding: 0.9rem 1rem 1rem;
        justify-content: center;
        background: #fff;
    }

    .gallery-section .gallery-slider__arrow--prev { left: 1rem; }
    .gallery-section .gallery-slider__arrow--next { right: 1rem; }

    .gallery-section .gallery-grid--videos {
        grid-column: 2;
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2.25rem !important;
        align-self: start;
    }

    .gallery-section .gallery-grid--videos .gallery-grid__item--video {
        aspect-ratio: 4 / 5;
        overflow: hidden;
        border: 1px solid var(--border);
        background: var(--ink);
    }
}

.gallery-slider__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Prev / Next arrows */
.gallery-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 200ms ease;
    z-index: 2;
    flex-shrink: 0;
}
.gallery-slider__arrow:hover { background: rgba(0,0,0,0.82); border-color: rgba(255,255,255,0.35); }
.gallery-slider__arrow--prev { left: 0.75rem; }
.gallery-slider__arrow--next { right: 0.75rem; }
@media (min-width: 640px) {
    .gallery-slider__arrow--prev { left: 1.25rem; }
    .gallery-slider__arrow--next { right: 1.25rem; }
}

/* Gallery dots */
.gallery-slider__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.125rem;
    flex-wrap: wrap;
}

.gallery-slider__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 200ms ease, transform 200ms ease;
    flex-shrink: 0;
}
.gallery-slider__dot.is-active {
    background: var(--red);
    transform: scale(1.3);
}
.gallery-slider__dot:hover:not(.is-active) { background: var(--light); }

/* ── SECTORS / TRUSTED BY ─────────────────────────────────────────────────── */

.trusted-section__header { margin-bottom: 3rem; }
@media (min-width: 640px) { .trusted-section__header { margin-bottom: 4rem; } }

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
@media (min-width: 640px)  { .sectors-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
@media (min-width: 1024px) { .sectors-grid { grid-template-columns: repeat(6, 1fr); gap: 1rem; } }

.sector-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid transparent;
    padding: 1.5rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    transition: border-top-color var(--transition), box-shadow var(--transition-med);
}
.sector-card:hover {
    border-top-color: var(--red);
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}

.sector-card__count {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.75rem;
    color: var(--red);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.sector-card__name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
    color: var(--ink);
    line-height: 1.25;
}

.sector-card__label {
    font-size: 0.6875rem;
    color: var(--mid);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-top: 0.125rem;
}

/* ── RESPONSIVE UTILITY ───────────────────────────────────────────────────── */

/* Mid CTA band — stack on small screens */
@media (max-width: 639px) {
    .mid-cta-band__inner { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
    .mid-cta-band__actions { width: 100%; }
    .mid-cta-band__actions .btn-primary { width: 100%; justify-content: center; }
}

/* Installs counters stack cleanly on mobile */
@media (max-width: 479px) {
    .installs-counter-grid { grid-template-columns: 1fr; }
}

/* Sector grid — 1-col fallback on very small screens */
@media (max-width: 359px) {
    .sectors-grid { grid-template-columns: 1fr; }
}

/* ── MID CTA BAND – SUPPORTING TEXT ─────────────────────────────────────── */

.mid-cta-band__sub {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    margin-top: 0.4rem;
    line-height: 1.6;
}

/* ── LOGO IN HEADER / FOOTER ─────────────────────────────────────────────── */

/* Fixed height so the logo is consistent regardless of source dimensions.
   max-width is generous to handle wide horizontal logos (e.g. 4:1–6:1 aspect). */
.site-logo__img {
    display: block;
    height: 46px;
    width: auto;
    max-width: 220px;
}
@media (min-width: 640px) {
    .site-logo__img {
        height: 60px;
        max-width: 280px;
    }
}
@media (min-width: 768px) {
    .site-logo__img {
        height: 68px;
        max-width: 320px;
    }
}

.footer-logo__img {
    display: block;
    height: 30px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    object-position: left center;
    opacity: 0.85;
}
@media (min-width: 640px) {
    .footer-logo__img { height: 34px; }
}

/* ── SHOWROOM SECTION DARK MODE ──────────────────────────────────────────── */

.section--ink .store-card {
    border-color: rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
}
.section--ink .store-card__name    { color: #fff; }
.section--ink .store-card__address { color: rgba(255,255,255,0.55); }
.section--ink .store-card__phone   { color: var(--red); }
.section--ink .store-card__img     { background: rgba(255,255,255,0.08); }

/* ── MULTI-STORE CARD GRID ───────────────────────────────────────────────── */

.stores-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 640px) {
    .stores-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
@media (min-width: 1024px) {
    .stores-grid--3 { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
    .stores-grid--2 { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
    .stores-grid--1 { grid-template-columns: 1fr; max-width: 640px; margin-inline: auto; }
}

.store-card {
    border: 1px solid var(--border);
    background: var(--white);
    display: flex;
    flex-direction: column;
}

.store-card__img {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--surface);
}
.store-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 400ms ease;
}
.store-card:hover .store-card__img img { transform: scale(1.03); }

.store-card__img--placeholder {
    background: linear-gradient(135deg, var(--surface) 0%, var(--border) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-card__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}

.store-card__name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 0;
}

.store-card__address {
    font-style: normal;
    font-size: 0.875rem;
    color: var(--mid);
    line-height: 1.6;
}

.store-card__phone {
    font-size: 0.875rem;
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
}
.store-card__phone:hover { text-decoration: underline; }

.store-card__cta {
    margin-top: auto;
    padding-top: 0.75rem;
    font-size: 0.875rem;
}

/* ── OUR BRANDS MARQUEE ──────────────────────────────────────────────────── */

.brands-section {
    overflow: hidden;
    padding-block: 4rem;
}

.brands-marquee {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.brands-marquee__track {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: max-content;
    animation: cf-marquee 28s linear infinite;
}

@keyframes cf-marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(var(--marquee-end, -50%)); }
}

@media (prefers-reduced-motion: reduce) {
    .brands-marquee__track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: auto;
    }
    .brands-marquee {
        mask-image: none;
        -webkit-mask-image: none;
    }
}

.brands-marquee__item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.brands-marquee__link {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0.5rem 1rem;
    opacity: 0.65;
    transition: opacity 250ms ease;
}
.brands-marquee__link:hover { opacity: 1; }

.brands-marquee__logo {
    display: block;
    height: 48px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

.brands-marquee__name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--graphite);
    letter-spacing: -0.02em;
    white-space: nowrap;
}

/* ── LEADERSHIP SECTION (standalone, separated from showroom) ────────────── */

.leadership-section-wrap { padding-block: 5rem; }

/* Initial-letter overlay: goes INSIDE .leadership-card__photo as a child */
.leadership-card__initial {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    color: var(--mid);
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 4rem;
    line-height: 1;
}

/* Legacy companion-class form — kept for backwards compatibility but no longer used */
.leadership-card__photo--initial {
    background: var(--surface);
}

/* ── FOOTER MULTI-LOCATION ───────────────────────────────────────────────── */

.footer-location { margin-bottom: 0.75rem; }
.footer-location:last-child { margin-bottom: 0; }
.footer-location__name {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.2rem;
}

/* ── MULTI-MAP WRAP ──────────────────────────────────────────────────────── */

.location-maps-wrap {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-section__map--stacked {
    aspect-ratio: 4/3;
}

.location-section__map--stacked iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.location-map__label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--mid);
    margin-bottom: 0.5rem;
}

/* ── VISIT STRIP – MULTI-LOCATION ────────────────────────────────────────── */

.visit-strip__location { margin-bottom: 0.75rem; }
.visit-strip__location:last-child { margin-bottom: 0; }
.visit-strip__loc-name {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--mid);
    margin-bottom: 0.2rem;
}

/* ══ DARK SECTION (section--ink) — universal child overrides ════════════════
   Fires whenever any section carries section--ink. Covers all standard
   text, card, and component elements so admins get correct contrast
   automatically without per-section manual overrides.
   ════════════════════════════════════════════════════════════════════════ */

/* ─ Typography ────────────────────────────────────────────────────────── */
.section--ink .section-heading,
.section--ink .section-heading--xl,
.section--ink .section-heading--lg { color: #fff; }

.section--ink .section-desc,
.section--ink .body-text            { color: rgba(255,255,255,0.72); }

/* ─ Eyebrows ──────────────────────────────────────────────────────────── */
.section--ink .eyebrow--red,
.section--ink .eyebrow--red-subtle  { color: var(--red); }
.section--ink .eyebrow--mid         { color: rgba(255,255,255,0.45); }
.section--ink .eyebrow-line         { background: var(--red); }

/* ─ Address / metadata ────────────────────────────────────────────────── */
.section--ink address { color: rgba(255,255,255,0.72); }
.section--ink strong  { color: rgba(255,255,255,0.9); }

/* ─ Buttons — ghost adapts to dark bg ────────────────────────────────── */
.section--ink .btn-ghost {
    color: rgba(255,255,255,0.9);
    border-color: rgba(255,255,255,0.55);
}
.section--ink .btn-ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
    color: #fff;
}

.hero .btn-ghost--white {
    color: #fff;
    border-color: rgba(255,255,255,0.55);
}
.hero .btn-ghost--white:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
    color: #fff;
}

/* ─ Product cards ─────────────────────────────────────────────────────── */
.section--ink .product-card__inner {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
}
.section--ink .product-card:hover .product-card__inner,
.section--ink a.product-card__inner:hover {
    border-color: var(--red);
    box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
.section--ink .product-card__img-wrap         { background: rgba(255,255,255,0.06); }
.section--ink .product-card__img-placeholder  { background: rgba(255,255,255,0.08); }
.section--ink .product-card__title            { color: #fff; }
.section--ink .product-card__short,
.section--ink .product-card__desc             { color: rgba(255,255,255,0.55); }

/* ─ Team cards (text sits directly on section bg, no card background) ── */
.section--ink .team-card__name  { color: #fff; }
.section--ink .team-card__role  { color: rgba(255,255,255,0.55); }
.section--ink .team-card__photo { background: rgba(255,255,255,0.08); }

/* ─ Leadership cards ─────────────────────────────────────────────────── */
.section--ink .leadership-card__name { color: #fff; }
.section--ink .leadership-card__role { color: rgba(255,255,255,0.55); }
.section--ink .leadership-card__dept { color: rgba(255,255,255,0.4); }
.section--ink .leadership-card__cta  { color: var(--red); }

/* ─ Value cards (white-bg cards on dark section; full dark adaptation) ─ */
.section--ink .value-card            { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); }
.section--ink .value-card__title     { color: #fff; }
.section--ink .value-card__body      { color: rgba(255,255,255,0.65); }

/* ─ Why / How We Work grid items ─────────────────────────────────────── */
.section--ink .why-card          { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); }
.section--ink .why-card__title   { color: #fff; }
.section--ink .why-card__body    { color: rgba(255,255,255,0.65); }
.section--ink .why-card__num     { color: rgba(255,255,255,0.12); }

/* ─ Sector / Trusted items ───────────────────────────────────────────── */
.section--ink .sector-card        { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); }
.section--ink .sector-card__count { color: #fff; }
.section--ink .sector-card__name  { color: rgba(255,255,255,0.9); }
.section--ink .sector-card__label { color: rgba(255,255,255,0.55); }

/* ─ Store / Showroom cards (in case showroom section goes dark) ──────── */
.section--ink .store-card          { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); }
.section--ink .store-card__name    { color: #fff; }
.section--ink .store-card__address { color: rgba(255,255,255,0.65); }

/* ─ Home showroom strip dividers ─────────────────────────────────────── */
.section--ink .showroom-section__strip { border-bottom-color: rgba(255,255,255,0.12); }

/* ─ Showroom page strip elements ─────────────────────────────────────── */
.section--ink .showroom-strip__img-placeholder { background: rgba(255,255,255,0.06); }
.section--ink .location-map__label             { color: rgba(255,255,255,0.45); }
.section--ink .visit-strip__loc-name           { color: rgba(255,255,255,0.45); }

/* ─ Location section (showroom 1/2/3) on dark backgrounds ────────────── */
.section--ink .location-section__notes li      { color: rgba(255,255,255,0.72); }
.section--ink .location-section__text p        { color: rgba(255,255,255,0.72); }
.section--ink .location-section__text a[href^="tel"] {
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}
.section--ink .location-section__text a[href^="tel"]:hover { color: #fff; }
.section--ink .location-section__map           { border-color: rgba(255,255,255,0.1); }

/* ─ Store cards (home showroom section) on dark backgrounds ──────────── */
.section--ink .store-card__phone               { color: rgba(255,255,255,0.85); }
.section--ink .store-card__phone:hover         { color: #fff; }
.section--ink .store-card__cta.btn-outline {
    color: rgba(255,255,255,0.85);
    border-color: rgba(255,255,255,0.3);
}
.section--ink .store-card__cta.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-color: #fff;
}

/* ─ Products group header (products page, future-proofing) ───────────── */
.section--ink .products-group__desc { color: rgba(255,255,255,0.72); }

/* ─ Contact info panel (if form section goes dark) ───────────────────── */
.section--ink .contact-info-panel__group-label { color: rgba(255,255,255,0.45); }
.section--ink .contact-info-panel__group a     { color: rgba(255,255,255,0.9); }
.section--ink .contact-info-panel__phone-label { color: rgba(255,255,255,0.45); }
.section--ink .hours-days                      { color: rgba(255,255,255,0.5); }
.section--ink .hours-time                      { color: rgba(255,255,255,0.85); }

/* ── WHY COMFFITS — variable grid by active card count ──────────────────
   .why-grid--N is set by PHP based on how many cards are enabled.
   1 card: centered single column. 2–4: standard responsive columns. 5: 3+2 layout.
   ──────────────────────────────────────────────────────────────────────── */

/* 1 card: always single column, centred */
.why-grid--1 { max-width: 480px; }
@media (min-width: 640px) {
    .why-grid--1 { grid-template-columns: 1fr; }   /* override base 2-col */
}

/* 2 cards: cap at 2 columns even on wide screens */
@media (min-width: 640px) {
    .why-grid--2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .why-grid--2 { grid-template-columns: repeat(2, 1fr); } /* don't inherit 3-col base */
}

/* 3 cards: 3 columns from tablet up */
@media (min-width: 640px) {
    .why-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

/* 4 cards: 2-col on tablet, 4-col on desktop */
@media (min-width: 1024px) {
    .why-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* 5 cards: 2-col on tablet; on desktop use a 6-virtual-col grid so first row
   gets 3 cards and second row gets 2 centred (cols 2-3 and 4-5 of 6) */
@media (min-width: 640px) {
    .why-grid--5 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .why-grid--5                              { grid-template-columns: repeat(6, 1fr); }
    .why-grid--5 > .why-card                  { grid-column: span 2; }
    .why-grid--5 > .why-card:nth-child(4)     { grid-column: 2 / span 2; }
    .why-grid--5 > .why-card:nth-child(5)     { grid-column: 4 / span 2; }
}

/* Card style with no step number — remove top padding gap left by hidden num */
.why-card__title { margin-top: 0; }

/* ── VIDEOS SECTION — adapt for non-dark backgrounds ────────────────────
   The --light suffix classes set white text for dark bg. Override them
   back to dark when the section is not section--ink.
   ──────────────────────────────────────────────────────────────────────── */

.video-section:not(.section--ink) .section-heading--white        { color: var(--ink); }
.video-section:not(.section--ink) .video-card__title--light      { color: var(--ink); }
.video-section:not(.section--ink) .video-card__desc--light       { color: var(--mid); }
.video-section:not(.section--ink) .video-card__embed             { background: var(--surface); }
.video-section:not(.section--ink) .video-card__embed--native     { background: var(--surface); }

/* ── GALLERY — video items ───────────────────────────────────────────────
   Videos appear in the gallery grid with a 16:9 aspect ratio.
   No overflow:hidden so browser video controls are fully accessible.
   ──────────────────────────────────────────────────────────────────────── */

.gallery-grid__item--video {
    aspect-ratio: 16 / 9;
    overflow: visible;
    background: var(--ink);
    border-radius: 0;
    position: relative;
}
.gallery-grid__item--video video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
}
.gallery-grid__item--video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ── MID CTA BAND — background override and text variants ───────────────
   .mid-cta-band { background: var(--red) } at line ~1759 sits later in
   the cascade than section--ink/white/surface (line ~89), so it always
   wins with equal specificity. Using two-class selectors (0,2,0 vs 0,1,0)
   lets us override only for light/surface. "dark" keeps the brand red.
   ─────────────────────────────────────────────────────────────────────── */

.mid-cta-band.section--white   { background: var(--white); }
.mid-cta-band.section--surface { background: var(--surface); }

/* Text adapts when band is on a light background (white text = invisible) */
.mid-cta-band.section--white .mid-cta-band__eyebrow,
.mid-cta-band.section--surface .mid-cta-band__eyebrow { color: var(--mid); }

.mid-cta-band.section--white .mid-cta-band__heading,
.mid-cta-band.section--surface .mid-cta-band__heading { color: var(--ink); }

.mid-cta-band.section--white .mid-cta-band__sub,
.mid-cta-band.section--surface .mid-cta-band__sub { color: var(--mid); }
