/* ============================================================
   PRINTBOX NIGERIA — SHARED STYLESHEET
   Aesthetic: Luxury Editorial · Light · Image-Forward
   Fonts: Montserrat (headings) + Inter (body)
   Colors: Deep Green palette + Gold accent
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── TOKENS ── */

:root {
    /* Primary Green Palette */
    --forest: #0A2F2A;
    --forest-2: #1F6F5B;
    --forest-3: #2FAF7F;
    --mint: #A8E6CF;
    --mint-pale: #E6F7F1;
    /* Gold */
    --gold: #D4A843;
    --gold-light: #E8C070;
    --gold-pale: #FBF0D6;
    /* Neutrals */
    --black: #0B0B0B;
    --charcoal: #1A1A1A;
    --mid: #4A5568;
    --light-text: #718096;
    --white: #FFFFFF;
    --off-white: #F5F5F5;
    --cream: #F5F5F5;
    --cream-2: #EEEEEE;
    /* Borders */
    --border: rgba(212, 168, 67, 0.2);
    --border-light: rgba(0, 0, 0, 0.08);
    --border-green: rgba(31, 111, 91, 0.15);
}


/* ── RESET ── */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--charcoal);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    width: 100%;
    object-fit: cover;
}

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

::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
}


/* ── NAVIGATION ── */

#nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 80px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    transition: box-shadow 0.4s;
}

#nav.scrolled {
    box-shadow: 0 2px 32px rgba(0, 0, 0, 0.10);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-logo-emblem {
    width: 46px;
    height: 46px;
    background: var(--forest);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.nav-logo-emblem::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: -4px;
    bottom: -4px;
    border: 1.5px solid var(--gold);
    z-index: -1;
}

.nav-logo-emblem span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 15px;
    color: var(--gold);
    letter-spacing: 0.02em;
}

.nav-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--forest);
    letter-spacing: 0.03em;
    line-height: 1.2;
}

.nav-logo-text small {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}


/* Nav links list */

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}


/* All plain nav links */

.nav-links li:not(:last-child) a {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mid);
    transition: color 0.3s;
    position: relative;
    padding: 0;
    white-space: nowrap;
}

.nav-links li:not(:last-child) a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links li:not(:last-child) a:hover {
    color: var(--forest);
}

.nav-links li:not(:last-child) a.active {
    color: var(--forest);
}

.nav-links li:not(:last-child) a:hover::after,
.nav-links li:not(:last-child) a.active::after {
    width: 100%;
}


/* CTA button — last item only */

.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--forest);
    color: var(--white) !important;
    padding: 14px 26px;
    font-family: 'Inter', sans-serif;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.10em !important;
    text-transform: uppercase;
    transition: background 0.3s !important;
    white-space: nowrap;
    line-height: 1;
    /* reset any inherited link styles */
    border: none;
    text-decoration: none;
}

.nav-cta-btn::after {
    display: none !important;
}

.nav-cta-btn::before {
    display: none !important;
}

.nav-cta-btn:hover {
    background: var(--gold) !important;
}

a.lc-contact-link.get {
    color: #0a2f2a;
}


/* Hamburger — visible by default, hidden on desktop */

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--forest);
    border-radius: 2px;
    transition: all 0.3s;
}


/* Mobile fullscreen menu */

.mob-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 899;
    flex-direction: column;
    padding: 40px 8%;
    border-top: 3px solid var(--gold);
}

.mob-menu.open {
    display: flex;
}

.mob-menu a {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: -0.01em;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-light);
    transition: color 0.3s, padding-left 0.3s;
}

.mob-menu a:last-child {
    border-bottom: none;
}

.mob-menu a:hover {
    color: var(--forest);
    padding-left: 10px;
}


/* ── IMAGE PLACEHOLDERS ── */


/* Used until real photos are supplied. Replace <div class="img-ph"> with <img src="..."> */

.img-ph {
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-2) 40%, #0A1E14 100%);
    position: relative;
    overflow: hidden;
}

.img-ph::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient( 45deg, transparent, transparent 30px, rgba(255, 255, 255, 0.02) 30px, rgba(255, 255, 255, 0.02) 31px);
}

.img-ph-label {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.22);
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    padding: 20px;
}

.img-ph-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.img-ph-label::after {
    content: '';
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.market-tile .img-ph {
    display: none;
}


/* ── SECTION UTILITY ── */

.section-wrap {
    padding: 96px 5%;
}

.section-wrap-sm {
    padding: 72px 5%;
}

.section-wrap-lg {
    padding: 120px 5%;
}

.eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--gold);
}

.display-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--forest);
}

.display-heading em {
    font-style: normal;
    color: var(--gold);
    font-weight: 800;
}

.display-heading strong {
    font-weight: 800;
}

.body-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.85;
    color: var(--mid);
}

.body-text+.body-text {
    margin-top: 16px;
}


/* ── GOLD RULE ── */

.gold-rule {
    width: 64px;
    height: 2px;
    background: var(--gold);
    margin: 28px 0;
}

.gold-rule-center {
    margin: 28px auto;
}


/* ── MARQUEE ── */

.marquee-wrap {
    background: var(--forest);
    padding: 14px 0;
    overflow: hidden;
    border-top: 1px solid rgba(212, 168, 67, 0.25);
    border-bottom: 1px solid rgba(212, 168, 67, 0.25);
}

.marquee-inner {
    display: flex;
    gap: 0;
    animation: marq 35s linear infinite;
    white-space: nowrap;
}

.marq-item {
    display: inline-flex;
    align-items: center;
    gap: 0;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    padding: 0 28px;
}

.marq-sep {
    display: inline-block;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    margin: 0 28px;
    flex-shrink: 0;
    align-self: center;
}

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


/* ── BUTTONS ── */

.btn-forest {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--forest);
    color: var(--white);
    padding: 15px 36px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1;
    border: 2px solid var(--forest);
    transition: background 0.3s, border-color 0.3s;
    cursor: pointer;
}

.btn-forest:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.btn-outline-forest {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px solid var(--forest);
    color: var(--forest);
    padding: 15px 36px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1;
    background: transparent;
    transition: background 0.3s, color 0.3s;
    cursor: pointer;
}

.btn-outline-forest:hover {
    background: var(--forest);
    color: var(--white);
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 15px 36px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1;
    background: transparent;
    transition: background 0.3s, color 0.3s;
    cursor: pointer;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--white);
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 2px solid currentColor;
    padding-bottom: 3px;
    transition: gap 0.3s, color 0.3s;
}

.btn-text:hover {
    gap: 14px;
    color: var(--forest-2);
}


/* ── FOOTER ── */

footer {
    background: var(--forest);
    padding: 72px 5% 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.footer-logo-text em {
    font-style: normal;
    color: var(--gold);
}

.footer-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.45);
    max-width: 260px;
    margin-bottom: 28px;
}

.footer-contact-item {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 4px;
}

.footer-contact-item a {
    color: var(--gold);
    transition: opacity 0.3s;
}

.footer-contact-item a:hover {
    opacity: 0.75;
}

.footer-col-title {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.footer-nav-item {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.3s, padding-left 0.3s;
}

.footer-nav-item:hover {
    color: var(--white);
    padding-left: 6px;
}

.footer-cert {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cert-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 168, 67, 0.25);
    padding: 8px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
}

.cert-pill strong {
    color: var(--gold);
    font-weight: 600;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copy {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-copy span {
    color: rgba(255, 255, 255, 0.5);
}


/* ── WhatsApp Float ── */

.wa-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 800;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25D366;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.wa-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}


/* ── SCROLL REVEAL ── */

.sr {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.sr.sr-delay-1 {
    transition-delay: 0.1s;
}

.sr.sr-delay-2 {
    transition-delay: 0.2s;
}

.sr.sr-delay-3 {
    transition-delay: 0.3s;
}

.sr.sr-delay-4 {
    transition-delay: 0.4s;
}

.sr.sr-left {
    transform: translateX(-36px);
}

.sr.sr-right {
    transform: translateX(36px);
}

.sr.visible {
    opacity: 1;
    transform: translate(0, 0) !important;
}


/* ── RESPONSIVE ── */


/* Desktop — hide hamburger, show nav links */

@media (min-width: 901px) {
    .hamburger {
        display: none !important;
    }
    .nav-links {
        display: flex !important;
    }
}

@media (max-width: 1100px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    .nav-links {
        gap: 20px;
    }
}


/* Tablet/Mobile — hide nav links, show hamburger */

@media (max-width: 900px) {
    .nav-links {
        display: none !important;
    }
    .mob-menu {
        top: 80px;
    }
    .section-wrap {
        padding: 72px 6%;
    }
    .section-wrap-lg {
        padding: 88px 6%;
    }
}


/* Mobile */

@media (max-width: 640px) {
    /* Nav height */
    #nav {
        height: 72px;
    }
    .nav-logo-text {
        font-size: 15px;
    }
    .nav-logo-emblem {
        width: 40px;
        height: 40px;
    }
    .mob-menu a {
        font-size: 18px;
        font-weight: 700;
    }
    .mob-menu {
        top: 72px;
    }
    /* Sections */
    .section-wrap {
        padding: 56px 5%;
    }
    .section-wrap-sm {
        padding: 44px 5%;
    }
    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    /* Heading scale */
    .heading-xl {
        font-size: clamp(26px, 6.5vw, 36px) !important;
    }
    .heading-lg {
        font-size: clamp(24px, 6vw, 32px) !important;
    }
    .heading-md {
        font-size: clamp(22px, 5.5vw, 28px) !important;
    }
    .display-heading {
        font-size: clamp(24px, 6vw, 32px);
    }
    /* Buttons */
    .btn-forest,
    .btn-outline-gold,
    .btn-outline-forest {
        padding: 14px 24px;
        font-size: 12px;
    }
}


/* ══════════════════════════════════════════════════════════════
   UTILITY CLASSES  —  replaces all inline styles across pages
   Edit here once, applies everywhere.
══════════════════════════════════════════════════════════════ */


/* ── Image placeholder variants ── */

.img-ph-cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.img-ph-full {
    width: 100%;
    height: 100%;
}

.img-ph-md {
    width: 100%;
    height: 100%;
    min-height: 480px;
}

.img-ph-lg {
    width: 100%;
    height: 100%;
    min-height: 540px;
}


/* ── Display heading size scale ── */

.heading-xl {
    font-size: clamp(30px, 3.5vw, 48px);
}

.heading-lg {
    font-size: clamp(26px, 2.8vw, 40px);
}

.heading-md {
    font-size: clamp(24px, 2.4vw, 36px);
}

.heading-sm {
    font-size: clamp(22px, 2.2vw, 32px);
}


/* ── Heading on dark backgrounds ── */

.heading-light {
    color: var(--white);
}

.heading-light em {
    color: var(--gold);
}

.heading-mb {
    margin-bottom: 16px;
}

.heading-mb-lg {
    margin-bottom: 20px;
}


/* ── Body text variants ── */

.body-text-dim {
    color: rgba(255, 255, 255, 0.45);
}

.body-text-muted {
    color: rgba(255, 255, 255, 0.55);
}

.body-text-mt {
    margin-top: 16px;
}

.body-text-constrain {
    max-width: 520px;
}

.body-text-constrain-sm {
    max-width: 480px;
}

.body-text-mt-sm {
    margin-top: 12px;
}


/* ── Quote / commitment text ── */

.quote-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--mid);
}


/* ── Eyebrow variants ── */

.eyebrow-center {
    justify-content: center;
}

.eyebrow-center::before {
    display: none;
}


/* ── Stat block (inline mini-stats) ── */

.stat-row {
    display: flex;
    gap: 36px;
}

.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 12px;
}

.stat-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--light-text);
    margin-top: 4px;
}


/* ── ISO / cert tags ── */

.iso-tag {
    background: var(--cream);
    border-left: 2px solid var(--gold);
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 500;
    color: var(--forest);
}

.iso-tag small {
    display: block;
    font-weight: 400;
    font-size: 11px;
    color: var(--light-text);
    margin-top: 2px;
}

.iso-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 8px;
}


/* ── Button row ── */

.btn-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}


/* ── Section text (centered dark) ── */

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

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

.section-center .eyebrow::before {
    display: none;
}


/* ── Highlight strong text ── */

.text-forest {
    color: var(--forest);
}

.text-gold {
    color: var(--gold);
}

.text-white {
    color: var(--white);
}

.text-dim {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
}


/* ── Footer address label ── */

.footer-addr-label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.footer-contact-item.mb-lg {
    margin-bottom: 16px;
}


/* ── Gold divider (contact page) ── */

.gold-divider {
    width: 64px;
    height: 2px;
    background: var(--gold);
    margin: 40px 0 0;
}


/* ── Response note (contact) ── */

.response-note {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.8;
}

.response-note strong {
    color: rgba(255, 255, 255, 0.55);
}


/* ── Contact dark card ── */

.location-card-dark {
    background: var(--forest);
}

.location-card-dark .lc-type {
    color: var(--gold);
}

.location-card-dark .lc-name {
    color: var(--white);
}

.lc-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.lc-contact-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.3s;
}

.lc-contact-link:hover {
    color: var(--white);
}

.lc-contact-link-sm {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.3s;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #25D366;
    border-bottom: 1px solid #25D366;
    padding-bottom: 2px;
    transition: opacity 0.3s;
}

.btn-whatsapp:hover {
    opacity: 0.75;
}


/* ── Products page ── */

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.4);
    max-width: 480px;
    margin: 0 auto;
}

.section-body-muted {
    color: rgba(255, 255, 255, 0.5);
    max-width: 520px;
    margin: 0 auto;
}

.cta-section-sub {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 32px;
}


/* ── spacing utilities ── */

.mt-lg {
    margin-top: 40px;
}

.mb-lg2 {
    margin-bottom: 40px;
}


/* ── IMAGE CLASSES (replaces img-ph placeholders) ── */


/* All images: cover their container, hide broken icon when src empty */


/* Full-cover background images (heroes, CTA banners) */

.page-bg-img,
.cta-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.page-bg-img[src=""],
.page-bg-img:not([src]),
.cta-bg-img[src=""],
.cta-bg-img:not([src]) {
    display: none;
}


/* Side/teaser images (about, quality sections) */

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

.teaser-img[src=""],
.teaser-img:not([src]) {
    display: none;
}


/* Product split images */

.product-img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.product-img[src=""],
.product-img:not([src]) {
    display: none;
}


/* Machine/equipment grid images */

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

.machine-img[src=""],
.machine-img:not([src]) {
    display: none;
}