/* =====================================================================
   Sperrin Attachments — Shared Stylesheet (single source of theme)
   Apple-inspired high-end dark showroom aesthetic.
   ===================================================================== */

:root {
    --color-bg-primary: #000000;
    --color-bg-secondary: #0b0b0c;
    --color-bg-card: #151516;
    --color-text-primary: #ffffff;
    --color-text-secondary: #86868b;
    --color-accent: #B23B34;          /* Brand red (from logo) */
    --color-accent-bright: #ff4a3d;   /* Vibrant highlight red */
    --color-border: rgba(255, 255, 255, 0.08);
    --font-primary: 'DM Sans', system-ui, -apple-system, sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 120px; }

body {
    font-family: var(--font-primary);
    color: var(--color-text-primary);
    background-color: var(--color-bg-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, button, .btn, .card, .input, header, footer, section { border-radius: 12px; }

a { color: inherit; }

/* =========================== Header / Nav =========================== */
header {
    position: fixed;
    top: 20px;
    left: 5%;
    width: 90%;
    height: 64px;
    background-color: rgba(21, 21, 22, 0.75);
    backdrop-filter: saturate(180%) blur(24px);
    -webkit-backdrop-filter: saturate(180%) blur(24px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    border: 1px solid var(--color-border);
    border-radius: 980px !important;
}

.logo {
    color: var(--color-text-primary);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span { color: var(--color-accent-bright); }

.logo img {
    height: 40px;
    width: auto;
    display: block;
    border-radius: 0 !important;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.55));
}

footer .logo img { height: 60px; }

nav { display: flex; align-items: center; gap: 40px; }

nav a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

nav a:hover, nav a.active { color: var(--color-text-primary); }

/* CTA inside the nav is only used in the mobile menu */
nav .nav-cta { display: none; }

.btn-header {
    background-color: var(--color-accent);
    border: none;
    padding: 10px 24px;
    color: var(--color-text-primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 980px !important;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.btn-header:hover {
    background-color: var(--color-accent-bright);
    box-shadow: 0 0 20px rgba(255, 74, 61, 0.35);
}

/* Hamburger (hidden on desktop) */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    border-radius: 8px !important;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 0 auto;
    background: var(--color-text-primary);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================== Buttons =============================== */
.btn-premium {
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 980px !important;
    transition: var(--transition-smooth);
    display: inline-block;
    cursor: pointer;
}

.btn-premium {
    background-color: var(--color-accent);
    color: var(--color-text-primary);
    border: none;
}

.btn-premium:hover {
    background-color: var(--color-accent-bright);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(178, 59, 52, 0.3);
}

/* Back button (subpage headers). The .page-header is a flex row (meta-pill · h1 · p);
   absolute positioning lifts this out of that flow so it sits top-left, below the nav. */
.btn-back {
    position: absolute;
    /* ponytail: pinned in the band between the fixed nav (ends ~84px) and the
       vertically-centred header content. The mobile band is tight (~50px), so this
       is calibrated, not arbitrary — retune if nav height / header padding change. */
    top: 70px;
    left: 8%;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-text-secondary);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 980px !important;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-back:hover {
    color: var(--color-text-primary);
    border-color: var(--color-text-primary);
    background: rgba(255, 255, 255, 0.06);
}

/* =========================== Hero ================================= */
.hero {
    min-height: 100vh;
    background-color: var(--color-bg-primary);
    padding: 140px 8% 80px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    gap: 60px;
    border-radius: 0 !important;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, rgba(178, 59, 52, 0.12) 0%, transparent 65%);
    z-index: 1;
    pointer-events: none;
}

.hero-content { flex: 1; max-width: 580px; position: relative; z-index: 3; }

.hero-tag, .meta-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border);
    color: var(--color-accent-bright);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 16px;
    display: inline-block;
    margin-bottom: 24px;
    border-radius: 980px !important;
}

.hero-title {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hero-title b, .page-header h1 b {
    font-weight: 800;
    color: transparent;
    background: linear-gradient(135deg, #ffffff 40%, #86868b 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-desc {
    color: var(--color-text-secondary);
    font-size: 17px;
    margin-bottom: 40px;
    max-width: 480px;
}

.cta-container { display: flex; gap: 20px; flex-wrap: wrap; }

/* Managing Director quote in the hero */
.hero-quote {
    margin-top: 40px;
    max-width: 520px;
    padding-left: 22px;
    border-left: 3px solid var(--color-accent);
    font-size: 17px;
    line-height: 1.7;
    font-style: italic;
    color: var(--color-text-primary);
}
.hero-quote cite {
    display: block;
    margin-top: 16px;
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-accent-bright);
}

.hero-media {
    flex: 1.1;
    position: relative;
    z-index: 2;
    height: 600px;
    border-radius: 20px !important;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: var(--color-bg-card);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; }

/* ==================== Inner-page header =========================== */
.page-header {
    /* Reset the two nav-specific props inherited from the generic header{} rule:
       display:flex and height:64px. The pill, h1 and p are meant to STACK (their
       margins prove it) and the band must grow to fit them, not clip at 64px. */
    display: block;
    height: auto;
    padding: 200px 8% 80px 8%;
    background-color: var(--color-bg-primary);
    position: relative;
    overflow: hidden;
    border-radius: 0 !important;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 55vw;
    height: 55vw;
    background: radial-gradient(circle, rgba(178, 59, 52, 0.10) 0%, transparent 65%);
    pointer-events: none;
}

.page-header h1 {
    font-size: 58px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
    position: relative;
    z-index: 2;
}

.page-header p {
    color: var(--color-text-secondary);
    font-size: 18px;
    max-width: 620px;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

/* =========================== Sections ============================= */
section { padding: 140px 8%; border-radius: 0 !important; }
.section-secondary { background-color: var(--color-bg-secondary); }

.meta-tag {
    color: var(--color-accent-bright);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 16px;
    display: block;
}

.heading-section { max-width: 800px; margin-bottom: 80px; }

.title-section {
    font-size: 44px;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.title-section b { font-weight: 800; }

/* =========================== Grids ================================ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 80px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.showcase-desc {
    color: var(--color-text-secondary);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.specs-list { list-style: none; margin-bottom: 40px; }

.specs-list li {
    position: relative;
    padding-left: 28px;
    font-size: 15px;
    color: var(--color-text-primary);
    margin-bottom: 16px;
}

.specs-list li::before {
    content: '✓';
    color: var(--color-accent-bright);
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
}

/* ==================== Range spotlight strip ======================= */
.range-hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }

.range-lens-holder {
    height: 480px;
    border-radius: 16px !important;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.range-lens-holder img { width: 100%; height: 100%; object-fit: cover; }

/* ==================== Range collage (stockist page) ================ */
.range-collage {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(3, 1fr);
    gap: 16px;
    height: 480px;
}

.collage-tile {
    border-radius: 16px !important;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

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

.collage-tile-lg { grid-row: 1 / span 3; }

/* ==================== Strengths band (replaces testimonial) ======= */
.strengths-band {
    background-color: var(--color-bg-primary);
    text-align: center;
    padding: 140px 8%;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.strengths-statement {
    font-size: 32px;
    font-weight: 300;
    line-height: 1.45;
    max-width: 900px;
    margin: 0 auto 56px auto;
    letter-spacing: -0.015em;
}

.strengths-statement b { font-weight: 700; color: var(--color-text-primary); }

/* Feature pull-quote — white→red gradient text fill (About page) */
.quote-fade {
    background: linear-gradient(105deg, var(--color-text-primary) 30%, var(--color-accent-bright) 92%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-style: italic;
}
.quote-fade b { -webkit-text-fill-color: transparent; }

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.strength-item h3 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}

.strength-item h3 span { color: var(--color-accent-bright); margin-right: 8px; }
.strength-item p { color: var(--color-text-secondary); font-size: 14.5px; line-height: 1.6; }

/* =========================== Contact ============================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.10fr; gap: 120px; }
.contact-details { display: flex; flex-direction: column; gap: 48px; }
.contact-block { display: flex; flex-direction: column; gap: 12px; }

.contact-label {
    font-size: 11px;
    font-weight: 900;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.contact-data { font-size: 18px; font-weight: 400; color: var(--color-text-primary); }

.contact-data a {
    color: var(--color-text-primary);
    text-decoration: none;
    border-bottom: 1.5px solid var(--color-accent);
    padding-bottom: 2px;
    transition: var(--transition-smooth);
}

.contact-data a:hover { color: var(--color-accent-bright); border-color: var(--color-accent-bright); }

/* =========================== Form ================================= */
.field-group { margin-bottom: 28px; }

.field-label {
    display: block;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-secondary);
    margin-bottom: 10px;
}

.field-control {
    width: 100%;
    height: 52px;
    background: #111112;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 0 18px;
    font-family: var(--font-primary);
    font-size: 15px;
    color: var(--color-text-primary);
    transition: var(--transition-smooth);
}

.field-control:focus {
    outline: none;
    border-color: var(--color-accent-bright);
    background: #161618;
    box-shadow: 0 0 15px rgba(178, 59, 52, 0.15);
}

textarea.field-control { height: 140px; padding: 18px; resize: vertical; }
select.field-control { appearance: none; cursor: pointer; }

/* Checkbox group (stockist product selection) */
.checkbox-group { display: grid; gap: 12px; }
.checkbox-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--color-text-primary);
    cursor: pointer;
}
.checkbox-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-accent-bright);
    cursor: pointer;
}

/* Honeypot — visually hidden, off-screen, not focusable via tab in CSS */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px; height: 1px;
    overflow: hidden;
}

/* Quote-context pill — shown when the form is reached from a product CTA */
.quote-context {
    background: rgba(178, 59, 52, 0.10);
    border: 1px solid rgba(178, 59, 52, 0.35);
    border-radius: 10px;
    padding: 12px 18px;
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--color-text-secondary);
}
.quote-context strong { color: var(--color-accent-bright); font-weight: 700; }

/* Form status message */
.form-status {
    display: none;
    margin-top: 18px;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.form-status.is-visible { display: block; }
.form-status.is-success { background: rgba(40, 167, 69, 0.12); border: 1px solid rgba(40, 167, 69, 0.4); color: #7ee29a; }
.form-status.is-error { background: rgba(178, 59, 52, 0.12); border: 1px solid rgba(178, 59, 52, 0.5); color: #ff8a80; }

button[disabled] { opacity: 0.6; cursor: not-allowed; }

/* =================== Product grid (products page) ================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}
.product-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}
.product-card:hover {
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-4px);
}
.product-card-media {
    aspect-ratio: 4 / 3;
    background: #0d0d0e;
    overflow: hidden;
}
.product-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.product-card:hover .product-card-media img { transform: scale(1.04); }
.product-card-body {
    padding: 24px 24px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.product-card-tag {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-accent-bright);
    margin-bottom: 10px;
}
.product-card-body h2 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 10px;
}
.product-card-body p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
    flex: 1;
}
.product-card-size {
    align-self: flex-start;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--color-text-primary);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 7px 12px;
    margin-bottom: 18px;
}
.product-card-size b { color: var(--color-accent-bright); font-weight: 800; }

.product-card-link {
    align-self: flex-start;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-primary);
    text-decoration: none;
    border-bottom: 1px solid var(--color-accent);
    padding-bottom: 3px;
    transition: var(--transition-smooth);
}
.product-card-link:hover { color: var(--color-accent-bright); border-color: var(--color-accent-bright); }

/* ==================== Product filter chips ======================== */
.product-filter { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }

.filter-chip {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 980px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-chip:hover { color: var(--color-text-primary); border-color: rgba(255, 255, 255, 0.25); }
.filter-chip.is-active { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }

/* [hidden] must beat the .product-card display:flex rule above */
.product-card[hidden] { display: none; }

/* =========================== Prose (legal) ======================== */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 48px 0 16px;
    letter-spacing: -0.01em;
}
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--color-text-secondary); font-size: 16px; line-height: 1.75; margin-bottom: 16px; }
.prose ul { padding-left: 22px; margin-bottom: 16px; }
.prose a { color: var(--color-accent-bright); }
.prose strong { color: var(--color-text-primary); }

.legal-disclaimer {
    background: rgba(178, 59, 52, 0.08);
    border: 1px solid rgba(178, 59, 52, 0.35);
    border-radius: 10px;
    padding: 20px 24px;
    margin-bottom: 48px;
    color: var(--color-text-secondary);
    font-size: 14.5px;
    line-height: 1.6;
}

.legal-meta { color: var(--color-text-secondary); font-size: 13px; margin-bottom: 40px; }

/* =========================== Footer =============================== */
footer {
    background-color: #050505;
    color: var(--color-text-secondary);
    padding: 100px 8% 50px 8%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13.5px;
}

.footer-grid-3 { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; margin-bottom: 80px; }

.footer-col-info h4 {
    color: var(--color-text-primary);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 24px;
}

.footer-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-list a { color: var(--color-text-secondary); text-decoration: none; transition: var(--transition-smooth); }
.footer-list a:hover { color: var(--color-text-primary); }

.footer-term-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    font-size: 11.5px;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal-links { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-legal-links a { color: var(--color-text-secondary); text-decoration: none; transition: var(--transition-smooth); }
.footer-legal-links a:hover { color: var(--color-text-primary); }

/* =========================== Responsive ========================== */
@media (max-width: 1200px) {
    .hero { flex-direction: column; padding-top: 160px; text-align: center; gap: 50px; }
    .hero-content { max-width: 100%; }
    .hero-desc { margin: 0 auto 40px auto; }
    .cta-container { justify-content: center; }
    .hero-media { width: 100%; height: 480px; }
    .grid-2 { grid-template-columns: 1fr; gap: 50px; }
    .range-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .range-lens-holder { height: 380px; }
}

@media (max-width: 900px) {
    header { padding: 0 20px 0 24px; left: 3%; width: 94%; }
    .nav-toggle { display: flex; }
    .btn-header { display: none; }

    nav {
        position: fixed;
        top: 96px;
        left: 3%;
        width: 94%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background-color: rgba(15, 15, 16, 0.97);
        backdrop-filter: saturate(180%) blur(24px);
        -webkit-backdrop-filter: saturate(180%) blur(24px);
        border: 1px solid var(--color-border);
        border-radius: 18px;
        padding: 12px;
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        transition: var(--transition-smooth);
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }
    body.nav-open nav { opacity: 1; transform: translateY(0); pointer-events: auto; }
    nav a { padding: 16px 18px; border-radius: 12px; font-size: 14px; }
    nav a:hover, nav a.active { background: rgba(255, 255, 255, 0.05); }
    nav .btn-header.nav-cta { display: block; text-align: center; margin-top: 6px; color: #fff; }

    .page-header { padding: 150px 8% 60px; }
    .page-header h1 { font-size: 44px; }
    .range-collage { grid-template-columns: 1fr; grid-template-rows: none; height: auto; }
    .collage-tile { height: 220px; }
    .collage-tile-lg { grid-row: auto; height: 280px; }
    .hero-title { font-size: 44px; }
    .title-section { font-size: 34px; }
    section { padding: 90px 8%; }
    .grid-3 { grid-template-columns: 1fr; gap: 24px; }
    .strengths-statement { font-size: 23px; }
    .strengths-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
    .contact-grid { grid-template-columns: 1fr; gap: 60px; }
    .footer-grid-3 { grid-template-columns: 1fr; gap: 40px; }
}
