/* ============================================================
   FETT INDUSTRIES — Shared stylesheet
   Brand: #FF3002 / black / white
   ============================================================ */

/* Self-hosted fonts (no third-party requests, GDPR-friendly) */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('assets/fonts/inter-400.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('assets/fonts/inter-500.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('assets/fonts/inter-600.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('assets/fonts/inter-700.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('assets/fonts/inter-800.woff2') format('woff2');
}
@font-face {
    font-family: 'Archivo Black';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('assets/fonts/archivo-black-400.woff2') format('woff2');
}

:root {
    --brand-red: #FF3002;
    --brand-red-dark: #D62500;
    --brand-red-soft: #FFE8E4;
    --black: #0a0a0a;
    --gray-900: #1a1a1a;
    --gray-700: #3a3a3a;
    --gray-500: #6a6a6a;
    --gray-300: #d0d0d0;
    --gray-100: #f5f5f5;
    --gray-50:  #fafafa;
    --white: #ffffff;

    --section-py: clamp(72px, 9vw, 128px);
    --section-px: clamp(20px, 5vw, 48px);
    --container-max: 1200px;
    --container-narrow: 820px;

    --gap-xs: 8px;
    --gap-sm: 16px;
    --gap-md: 24px;
    --gap-lg: 40px;
    --gap-xl: clamp(40px, 5vw, 64px);
    --gap-2xl: clamp(56px, 7vw, 88px);

    --nav-h: 84px;
    --radius: 4px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html {
    /* Fallback background in case the parallax image fails — same brand orange */
    background: var(--brand-red);
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--gray-900);
    background: transparent; /* Let the site-wide parallax bg show through */
    line-height: 1.6;
    overflow-x: hidden;
}

.display { font-family: 'Archivo Black', 'Arial Black', sans-serif; letter-spacing: -0.02em; }
.tracked { letter-spacing: 0.5em; }
.tracked-sm { letter-spacing: 0.3em; }

img { max-width: 100%; display: block; }

/* ============ NAV ============ */
nav.site-nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 14px var(--section-px);
    display: flex; justify-content: space-between; align-items: center;
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
}
nav.site-nav.transparent {
    background: transparent;
    border-bottom-color: transparent;
}
nav.site-nav.scrolled {
    background: var(--brand-red);
    padding: 10px var(--section-px);
    box-shadow: 0 6px 22px rgba(0,0,0,0.22);
    border-bottom-color: var(--brand-red);
}
nav.site-nav.scrolled ul a { color: var(--black); }
nav.site-nav.scrolled ul a:hover { color: var(--white); }
nav.site-nav.scrolled .nav-cta { background: var(--black); color: var(--white) !important; }
nav.site-nav.scrolled .nav-cta:hover { background: var(--white); color: var(--black) !important; }
/* When the scrolled nav is orange, the logo chip becomes invisible — keep just the letters by
   removing the chip background here. */
nav.site-nav.scrolled .nav-logo { background: transparent; padding: 0; }
.nav-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
    /* Orange chip — the SINGLE source of brand orange, driven by --brand-red */
    background: var(--brand-red);
    padding: 6px 14px;
    border-radius: 2px;
    transition: padding 0.3s ease;
}
.nav-logo > img,
.nav-logo-composite {
    display: block;
    height: 56px;
    width: auto;
    transition: height 0.3s ease;
}
nav.site-nav.scrolled .nav-logo { padding: 5px 12px; }
nav.site-nav.scrolled .nav-logo > img,
nav.site-nav.scrolled .nav-logo-composite { height: 44px; }
@media (max-width: 880px) {
    .nav-logo > img, .nav-logo-composite { height: 44px; }
    nav.site-nav.scrolled .nav-logo > img,
    nav.site-nav.scrolled .nav-logo-composite { height: 38px; }
}
@media (max-width: 480px) {
    .nav-logo { padding: 5px 10px; }
    .nav-logo > img, .nav-logo-composite { height: 36px; }
    nav.site-nav.scrolled .nav-logo > img,
    nav.site-nav.scrolled .nav-logo-composite { height: 32px; }
}

/* ============ BRAND LOCKUP — FETT logo + MF / C+F / LIME ACCESS ============ */
/* Each subsidiary is its own inline SVG so it scales sharply at any size.
   --sub-mark-size sets the SVG height; the width follows the viewBox automatically. */
:root {
    --lime-green: #2ECC71;
}
.brand-lockup {
    --lockup-gap: 28px;
    --sub-mark-size: 30px;
    --sub-dash-w: 28px;
    --sub-dash-h: 4px;
    --sub-row-gap: 12px;
    --sub-stack-gap: 10px;
    display: inline-flex;
    align-items: center;
    gap: var(--lockup-gap);
    text-decoration: none;
    line-height: 1;
}
.brand-subs {
    display: flex;
    flex-direction: column;
    gap: var(--sub-stack-gap);
    line-height: 1;
}
.sub-row {
    display: flex;
    align-items: center;
    gap: var(--sub-row-gap);
}
.sub-dash {
    display: inline-block;
    width: var(--sub-dash-w);
    height: var(--sub-dash-h);
    background: var(--white);
    border-radius: 1px;
    flex-shrink: 0;
}
/* All three subsidiary marks share the same height; viewBox controls width */
.sub-logo {
    display: block;
    height: var(--sub-mark-size);
    width: auto;
    flex-shrink: 0;
}
/* LIME ACCESS is a two-line mark — slightly taller relative to its bounding box,
   so we let it use the same height but with extra horizontal room. */
.sub-logo.sub-logo-lime { height: var(--sub-mark-size); }

/* --- Nav variant: compact, fits beside menu --- */
.nav-logo.brand-lockup {
    --lockup-gap: 12px;
    --sub-mark-size: 14px;
    --sub-lime-size: 6px;
    --sub-dash-w: 12px;
    --sub-dash-h: 2px;
    --sub-row-gap: 5px;
    --sub-stack-gap: 2px;
    /* The orange chip from .nav-logo still applies (defined above) */
}
.nav-logo.brand-lockup .brand-subs { padding-right: 2px; }
@media (max-width: 880px) {
    /* Hide subs in nav on small screens — they'd squeeze the menu */
    .nav-logo.brand-lockup .brand-subs { display: none; }
}

/* --- Hero variant: large, matches the supplied design --- */
.hero .brand-lockup {
    --lockup-gap: clamp(20px, 4vw, 56px);
    --sub-mark-size: clamp(26px, 5.5vw, 64px);
    --sub-lime-size: clamp(10px, 1.6vw, 16px);
    --sub-dash-w: clamp(18px, 3vw, 44px);
    --sub-dash-h: clamp(3px, 0.45vw, 5px);
    --sub-row-gap: clamp(8px, 1.4vw, 16px);
    --sub-stack-gap: clamp(6px, 1.2vw, 14px);
    margin: 0 auto var(--gap-xl);
    align-items: center;
    justify-content: center;
}
.hero .brand-lockup .hero-logo-image {
    margin: 0;  /* container handles spacing */
}
@media (max-width: 640px) {
    .hero .brand-lockup { flex-direction: column; gap: 22px; }
}

/* --- Footer variant: medium chip, mirrors hero proportions --- */
.footer-brand .brand-lockup {
    --lockup-gap: 14px;
    --sub-mark-size: 20px;
    --sub-lime-size: 8px;
    --sub-dash-w: 16px;
    --sub-dash-h: 3px;
    --sub-row-gap: 7px;
    --sub-stack-gap: 4px;
    background: var(--brand-red);
    padding: 12px 16px;
    border-radius: 2px;
    margin-bottom: 18px;
}
.footer-brand .brand-lockup .footer-logo {
    width: 120px;
    margin: 0;
    background: transparent;
    padding: 0;
}
nav.site-nav ul {
    display: flex;
    gap: clamp(20px, 3vw, 36px);
    list-style: none;
    align-items: center;
}
nav.site-nav ul a {
    color: var(--black);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
}
nav.site-nav ul a:hover { color: var(--brand-red); }
nav.site-nav .nav-cta {
    background: var(--brand-red);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 2px;
    transition: background 0.2s;
}
nav.site-nav .nav-cta:hover { background: var(--black); }
.menu-toggle {
    display: none;
    background: none; border: none;
    color: var(--black);
    font-size: 26px;
    cursor: pointer;
}

/* ============ BUTTONS ============ */
.cta-btn {
    display: inline-block;
    padding: 16px 32px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: transform 0.2s, background 0.2s, color 0.2s;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: inherit;
}
.cta-btn.primary       { background: var(--black);     color: var(--white); border-color: var(--black); }
.cta-btn.primary:hover { background: var(--brand-red); color: var(--white); border-color: var(--brand-red); transform: translateY(-2px); }
.cta-btn.red           { background: var(--brand-red); color: var(--white); border-color: var(--brand-red); }
.cta-btn.red:hover     { background: var(--black);     color: var(--white); border-color: var(--black);     transform: translateY(-2px); }
.cta-btn.outline       { background: transparent;      color: var(--black); border-color: var(--black); }
.cta-btn.outline:hover { background: var(--black);     color: var(--white); transform: translateY(-2px); }
.cta-btn.outline-white       { background: transparent; color: var(--white); border-color: var(--white); }
.cta-btn.outline-white:hover { background: var(--white); color: var(--black); transform: translateY(-2px); }

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    background: rgba(255, 48, 2, 0.55); /* Semi-transparent so site-wide valve photo shines through hero strongest */
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    color: var(--black);
    overflow: hidden;
    padding: calc(var(--nav-h) + var(--gap-xl)) var(--section-px) var(--section-py);
}
/* SITE-WIDE parallax background: valve photo behind every section, drifting at 15% scroll speed.
   The valve is anchored to the left, photo spans full viewport, fixed so it stays put. */
.site-bg-parallax {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('assets/hero-valve.jpg');
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    z-index: -1;
    pointer-events: none;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}
/* On narrow/portrait viewports the landscape photo crops the valve. Use cropped version. */
@media (max-aspect-ratio: 1/1) {
    .site-bg-parallax {
        background-image: url('assets/hero-valve-crop.jpg');
    }
}


.hero-content { position: relative; z-index: 5; max-width: 1600px; width: 100%; }
.hero-logo-image {
    display: block;
    width: clamp(280px, 70vw, 820px);
    height: auto;
    margin: 0 auto var(--gap-xl);
}
.hero-logo-composite {
    display: block;
    width: clamp(320px, 94vw, 1560px);
    height: auto;
    margin: 0 auto var(--gap-xl);
}
.cta-group { display: inline-flex; gap: var(--gap-sm); flex-wrap: wrap; justify-content: center; }

/* Floating-shape decoration has been removed in favour of an editorial layout. */
/* Keep @keyframes float available for the whyus-visual accent animations. */
@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -40px) rotate(8deg); }
    50% { transform: translate(-20px, 30px) rotate(-5deg); }
    75% { transform: translate(20px, 20px) rotate(12deg); }
}

/* ============ Hero product image slot ============ */
.hero-product-slot {
    margin: var(--gap-xl) auto 0;
    width: clamp(260px, 60vw, 640px);
    aspect-ratio: 16 / 9;
    background: rgba(0,0,0,0.08);
    border: 2px dashed rgba(0,0,0,0.35);
    border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(0,0,0,0.55);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-align: center;
    padding: 16px;
    line-height: 1.6;
}
.hero-product-slot img { width: 100%; height: 100%; object-fit: contain; }
.scroll-indicator {
    position: absolute; bottom: 24px; left: 50%;
    transform: translateX(-50%);
    color: var(--black); font-size: 11px; font-weight: 700;
    letter-spacing: 0.4em;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(-8px); }
}

.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-up.in { opacity: 1; transform: translateY(0); }

/* ============ SECTIONS ============ */
section { padding: var(--section-py) var(--section-px); position: relative; }
.container { max-width: var(--container-max); margin: 0 auto; }
.container.narrow { max-width: var(--container-narrow); }
.section-tag {
    display: inline-block;
    font-size: 12px; font-weight: 700;
    color: var(--brand-red);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin-bottom: var(--gap-sm);
    padding-left: 24px;
    position: relative;
}
.section-tag::before {
    content: ''; position: absolute;
    left: 0; top: 50%;
    width: 14px; height: 2px;
    background: var(--brand-red);
}
.section-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2.25rem, 5vw, 4rem);
    color: var(--black);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: var(--gap-md);
    text-transform: uppercase;
}
.section-title .red { color: var(--brand-red); }
/* On orange-dominant sections the red highlight would vanish — flip it to white for a strong accent */
#whyus .section-title .red,
#reach .section-title .red,
#contact .section-title .red { color: var(--white); }
.section-subtitle {
    font-size: 17px;
    color: var(--gray-500);
    max-width: 640px;
    margin-bottom: var(--gap-2xl);
    line-height: 1.6;
}
.section-header { text-align: center; }
.section-header .section-subtitle { margin-left: auto; margin-right: auto; }

/* ============ WHY US (orange section) ============ */
#whyus { background: rgba(255, 48, 2, 0.92); color: var(--black); }
#whyus .section-title { color: var(--black); }
#whyus .section-tag { color: var(--black); }
#whyus .section-tag::before { background: var(--black); }
/* === WHY US section layout (rewritten) === */
.whyus-intro {
    max-width: 820px;
    margin: 0 auto var(--gap-2xl);
    text-align: center;
}
.whyus-intro .section-tag { margin: 0 auto 18px; }
.whyus-intro .section-title { margin-bottom: var(--gap-md); }
.whyus-intro p {
    color: rgba(0,0,0,0.85);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
}
.whyus-intro p:last-child { margin-bottom: 0; }

.whyus-subhead {
    font-family: 'Archivo Black', sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--black);
    text-align: center;
    margin-bottom: var(--gap-md);
}
/* "Roof" tagline — sits on top of the 3 pillars like a banner across them */
.pillars-roof {
    background: var(--black);
    color: var(--white);
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(13px, 1.5vw, 18px);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.4;
    text-align: center;
    padding: 18px clamp(20px, 4vw, 48px);
    margin: 0;
    border-bottom: 3px solid var(--brand-red);
}
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-md);
    margin: 0 0 var(--gap-2xl);
}
/* When roof sits above pillars, tighten the pillar tops so they appear as one structure */
.pillars-roof + .pillars-grid .pillar { border-top: none; }
.pillars-roof + .pillars-grid { margin-top: var(--gap-md); }
.pillar {
    background: rgba(0,0,0,0.05);
    padding: 28px 24px;
    border-top: 3px solid var(--black);
}
.pillar h4 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 15px;
    color: var(--black);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.25;
}
.pillar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pillar li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(0,0,0,0.82);
}
.pillar li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--black);
    font-weight: 700;
}

.whyus-purpose {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-md);
}
.purpose-card {
    background: var(--black);
    color: var(--white);
    padding: clamp(28px, 4vw, 40px);
    border-left: 4px solid var(--brand-red);
}
.purpose-card h4 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.purpose-card p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.88);
    margin: 0;
}

/* Legacy class kept for backwards-compat if referenced elsewhere */
.value h4 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 14px;
    color: var(--black);
    margin-bottom: 8px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.value p { font-size: 14px; color: rgba(0,0,0,0.78); margin-bottom: 0; }

/* Right-hand brand card — flipped to BLACK so it pops against orange */
.whyus-visual {
    position: relative;
    background: var(--black);
    padding: clamp(40px, 6vw, 64px) clamp(28px, 4vw, 44px);
    border-radius: var(--radius);
    color: var(--white);
    overflow: hidden;
    min-height: 380px;
    display: flex; flex-direction: column; justify-content: center;
}
.whyus-visual::before {
    content: ''; position: absolute;
    width: 220px; height: 220px;
    background: var(--brand-red); opacity: 0.18;
    border-radius: 50%;
    top: -60px; right: -60px;
}
.whyus-visual::after {
    content: ''; position: absolute;
    width: 160px; height: 160px;
    background: var(--brand-red); opacity: 0.1;
    bottom: -40px; left: -40px;
    border-radius: 50%;
}
.whyus-visual .vmark {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    color: var(--white);
    line-height: 0.9;
    letter-spacing: -0.06em;
    position: relative; z-index: 2;
}
.whyus-visual .vsub {
    font-weight: 700;
    font-size: 12px;
    color: var(--brand-red);
    letter-spacing: 0.55em;
    margin-top: 6px;
    margin-bottom: 22px;
    padding-left: 0.55em;
    position: relative; z-index: 2;
}
.whyus-visual .vslogan {
    font-weight: 700;
    font-size: 13px;
    color: var(--white);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    border-top: 2px solid var(--brand-red);
    border-bottom: 2px solid var(--brand-red);
    padding: 8px 0;
    display: inline-block;
    position: relative; z-index: 2;
}
.whyus-visual .vquote {
    margin-top: 26px;
    position: relative; z-index: 2;
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    line-height: 1.5;
    font-style: italic;
}

/* ============ PRODUCTS (TEASER) — the BLACK rhythm break ============ */
#products { background: rgba(10, 10, 10, 0.92); color: var(--white); }
#products .section-title { color: var(--white); }
#products .section-subtitle { color: rgba(255,255,255,0.65); }
#products .section-tag { color: var(--brand-red); }
#products .section-tag::before { background: var(--brand-red); }
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--gap-md);
    margin-bottom: var(--gap-xl);
}
.product-card {
    background: var(--black) center top / cover no-repeat;
    padding: 0;
    border-radius: var(--radius);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--black);
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;        /* Same shape for ALL cards — no more uneven heights */
    min-height: 360px;
    display: flex;
    align-items: flex-start;
    color: var(--white);
}
/* No overlay — image dominates. Text sits on top at 50% opacity so you can see THROUGH
   the letters to the product behind. */
.product-card-inner {
    position: relative;
    z-index: 2;
    padding: clamp(20px, 2.5vw, 28px);
    width: 100%;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}
.product-card:hover .product-card-inner {
    opacity: 1;
}
/* Per-card backgrounds */
.product-card--fittings    { background-image: url('assets/product-fittings.jpg'); }
.product-card--valves      { background-image: url('assets/product-valves.jpg'); }
.product-card--ball-valves { background-image: url('assets/product-ball-valves.jpg'); }
.product-card--custom      { background-image: url('assets/product-custom.jpg'); }

.product-card::after {
    content: ''; position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--brand-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 3;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,0.1); }
.product-card:hover::after { transform: scaleX(1); }
.product-number {
    font-family: 'Archivo Black', sans-serif;
    font-size: 14px;
    color: var(--brand-red);
    letter-spacing: 0.2em;
    margin-bottom: 14px;
    display: block;
}
.product-card h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 22px;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.product-card p { color: rgba(255,255,255,0.92); font-size: 14px; line-height: 1.55; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }

/* Gated catalog banner — ORANGE inside the BLACK Products section, so it pops */
.catalog-gate {
    background: var(--brand-red);
    color: var(--black);
    padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 56px);
    border-radius: var(--radius);
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: var(--gap-xl);
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-bottom: var(--gap-xl);
}
.catalog-gate > * { position: relative; z-index: 2; }
.catalog-gate h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    line-height: 1;
    margin-bottom: 14px;
    text-transform: uppercase;
    color: var(--black);
}
.catalog-gate h3 .red { color: var(--white); }
.catalog-gate p { color: rgba(0,0,0,0.8); margin-bottom: 22px; font-size: 16px; line-height: 1.6; }
.catalog-gate .cta-row { display: flex; gap: var(--gap-sm); flex-wrap: wrap; }

/* Materials strip */
.materials-banner {
    background: var(--white);
    color: var(--black);
    padding: clamp(40px, 5vw, 64px) clamp(24px, 4vw, 48px);
    border-radius: var(--radius);
    text-align: center;
    border: 2px solid var(--black);
}
.materials-banner h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--black);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1;
}
.materials-banner p { color: var(--gray-500); margin-bottom: 26px; font-size: 15px; }
.material-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.material-pill {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--black);
    color: var(--black);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.material-pill.accent { border-color: var(--white); color: var(--white); background: var(--black); }

/* Materials inset that lives INSIDE the orange catalog-gate */
.materials-inset { color: var(--black); }
.materials-inset h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--black);
}
.materials-inset p { color: rgba(0,0,0,0.72); margin-bottom: 22px; font-size: 14px; }
.materials-inset .material-pills { justify-content: flex-start; }
.materials-inset .material-pill { border-color: var(--black); color: var(--black); }
.materials-inset .material-pill.accent { background: var(--black); color: var(--white); border-color: var(--black); }

/* ============ GROUP / REACH (orange section) ============ */
#reach { background: rgba(10, 10, 10, 0.92); color: var(--white); }
#reach .section-title { color: var(--white); }
#reach .section-title .red { color: var(--brand-red); }
#reach .section-tag { color: var(--brand-red); }
#reach .section-tag::before { background: var(--brand-red); }
#reach .section-subtitle { color: rgba(255,255,255,0.65); }
.reach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--gap-md);
    margin-top: var(--gap-xl);
}

/* "Where we work" world map — sits above the three cards as the visual centrepiece */
.where-we-work {
    margin: var(--gap-xl) 0 0;
    padding: 0;
}
.where-we-work img {
    display: block;
    width: 100%;
    max-width: 1400px;
    height: auto;
    margin: 0 auto;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}

/* Panoramic founder/brand banner — wide strip between the map and the cards */
.personal-banner {
    margin: var(--gap-lg) 0 0;
    padding: 0;
}
.personal-banner img {
    display: block;
    width: 100%;
    max-width: 1400px;
    height: auto;
    margin: 0 auto;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
}
.reach-card {
    background: var(--gray-900);
    color: var(--white);
    padding: clamp(24px, 2.8vw, 36px) clamp(28px, 3.5vw, 40px) clamp(28px, 3.5vw, 40px);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex; flex-direction: column; justify-content: space-between;
    border-top: 3px solid var(--brand-red);
}
.reach-card > * { position: relative; z-index: 2; }
.reach-card .badge {
    display: inline-block;
    font-family: 'Archivo Black', sans-serif;
    font-size: 12px;
    color: var(--white);
    background: var(--brand-red);
    padding: 6px 12px;
    letter-spacing: 0.2em;
    margin-bottom: 18px;
}
.reach-card .submark {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 8px;
}
.reach-card .submark-svg {
    display: block;
    height: clamp(2.4rem, 4.5vw, 3.5rem);
    width: auto;
    margin-bottom: 14px;
    color: var(--white); /* currentColor → white */
}
/* Transparent logo PNGs (white ink on transparent) — integrate cleanly into the black card */
.reach-card .submark-img {
    display: block;
    height: clamp(56px, 6vw, 84px);
    width: auto;
    margin-bottom: 18px;
    object-fit: contain;
}
.reach-card .region {
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-red);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.reach-card p { color: rgba(255,255,255,0.75); font-size: 15px; line-height: 1.6; }
.reach-card .entity {
    margin-top: 22px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.05em;
}

/* ============ CONTACT (orange section) ============ */
#contact { background: rgba(255, 48, 2, 0.92); }
#contact .section-title { color: var(--black); }
#contact .section-tag { color: var(--black); }
#contact .section-tag::before { background: var(--black); }
#contact .section-subtitle { color: rgba(0,0,0,0.75); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--gap-2xl);
    align-items: start;
}
.contact-info h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 24px;
    color: var(--black);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}
.contact-info > p { color: rgba(0,0,0,0.72); margin-bottom: 28px; font-size: 16px; }
/* Contact items flip to BLACK cards on orange — dramatic contrast */
.contact-item {
    display: flex; gap: 16px;
    margin-bottom: 16px;
    align-items: center;
    padding: 16px;
    background: var(--black);
    border-left: 3px solid var(--white);
}
.contact-item .icon {
    width: 36px; height: 36px;
    background: transparent;
    color: var(--brand-red);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 800;
    flex-shrink: 0;
    letter-spacing: 0.02em;
}
.contact-item .label {
    font-size: 11px; color: rgba(255,255,255,0.6);
    text-transform: uppercase; letter-spacing: 0.15em;
    font-weight: 700;
}
.contact-item .value { font-size: 15px; color: var(--white); font-weight: 600; }
.contact-item .value a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    transition: border-color 0.2s ease;
}
.contact-item .value a:hover { border-bottom-color: var(--brand-red); }
.contact-item .icon svg { display: block; }

/* ============ FORMS ============ */
form.fett-form {
    background: var(--white);
    padding: clamp(28px, 4vw, 48px);
    border-radius: var(--radius);
    border-top: 4px solid var(--brand-red);
}
.form-row { margin-bottom: 18px; }
.form-row.two-col, .form-row.three-col {
    display: grid;
    gap: var(--gap-sm);
}
.form-row.two-col   { grid-template-columns: 1fr 1fr; }
.form-row.three-col { grid-template-columns: 1fr 1fr 1fr; }
.form-row label {
    display: block;
    font-size: 11px;
    color: var(--black);
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.form-row .req { color: var(--brand-red); }
.form-row input, .form-row textarea, .form-row select {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid var(--gray-300);
    border-radius: 2px;
    font-size: 15px;
    font-family: inherit;
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    color: var(--black);
}
.form-row input[type="file"] { padding: 11px 12px; background: var(--gray-50); cursor: pointer; }
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
    outline: none;
    border-color: var(--brand-red);
    box-shadow: 0 0 0 3px rgba(255, 48, 2, 0.12);
}
.form-row textarea { min-height: 120px; resize: vertical; }
.form-row .hint { display: block; font-size: 12px; color: var(--gray-500); margin-top: 6px; letter-spacing: 0; text-transform: none; font-weight: 400; }
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--gray-700);
    margin-bottom: 22px;
    line-height: 1.5;
}
.form-checkbox input { width: auto; margin-top: 3px; }
.form-checkbox a { color: var(--brand-red); font-weight: 600; }
.submit-btn {
    background: var(--brand-red);
    color: var(--white);
    border: none;
    padding: 18px 40px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    width: 100%;
    font-family: inherit;
}
.submit-btn:hover { background: var(--black); transform: translateY(-1px); }
.form-success {
    background: var(--brand-red-soft);
    border-left: 4px solid var(--brand-red);
    padding: 16px 20px;
    margin-bottom: 20px;
    color: var(--black);
    font-size: 14px;
    display: none;
}
.form-success.show { display: block; }

/* ============ PAGE HEADER (for non-landing pages) ============ */
.page-header {
    background: var(--black);
    color: var(--white);
    padding: calc(var(--nav-h) + var(--gap-2xl)) var(--section-px) var(--gap-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: ''; position: absolute;
    width: 420px; height: 420px;
    top: -160px; right: -160px;
    background: var(--brand-red);
    opacity: 0.18;
    border-radius: 50%;
}
.page-header::after {
    content: ''; position: absolute;
    width: 220px; height: 220px;
    bottom: -100px; left: -60px;
    background: var(--brand-red);
    opacity: 0.1;
    border-radius: 50%;
}
.page-header > * { position: relative; z-index: 2; }
.page-header .section-tag { color: var(--brand-red); }
.page-header .section-title { color: var(--white); }
.page-header p { color: rgba(255,255,255,0.75); max-width: 620px; margin: 12px auto 0; font-size: 16px; }

/* ============ LEGAL PAGES ============ */
.legal-content {
    background: var(--white);
    padding: var(--section-py) var(--section-px);
}
.legal-content .container { max-width: var(--container-narrow); }
.legal-content h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 22px;
    color: var(--black);
    margin: 36px 0 14px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 16px;
    color: var(--black);
    margin: 24px 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.legal-content p, .legal-content li { font-size: 15px; color: var(--gray-700); margin-bottom: 12px; line-height: 1.7; }
.legal-content ul, .legal-content ol { padding-left: 22px; margin-bottom: 12px; }
.legal-content a { color: var(--brand-red); }
.placeholder-note {
    background: var(--brand-red-soft);
    border-left: 4px solid var(--brand-red);
    padding: 16px 20px;
    margin-bottom: 28px;
    color: var(--black);
    font-size: 14px;
    line-height: 1.6;
}

/* Language toggle on legal pages */
.lang-toggle {
    display: inline-flex;
    gap: 0;
    border: 1.5px solid var(--black);
    margin-bottom: 32px;
    background: var(--white);
}
.lang-toggle button {
    background: transparent;
    border: 0;
    padding: 8px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--black);
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.15s ease, color 0.15s ease;
}
.lang-toggle button + button { border-left: 1.5px solid var(--black); }
.lang-toggle button:hover { background: var(--gray-100); }
.lang-toggle button.active {
    background: var(--black);
    color: var(--white);
}
.lang-content { display: none; }
.lang-content.active { display: block; }

/* ============ FOOTER ============ */
footer.site-footer {
    background: var(--black);
    color: rgba(255,255,255,0.7);
    padding: clamp(56px, 7vw, 88px) var(--section-px) var(--gap-lg);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--gap-lg);
    max-width: var(--container-max);
    margin: 0 auto var(--gap-xl);
}
.footer-brand img.footer-logo,
.footer-brand img.footer-logo-composite {
    display: block;
    width: clamp(280px, 32vw, 380px);
    height: auto;
    margin-bottom: 20px;
    /* Orange chip behind the transparent letters — same brand orange */
    background: var(--brand-red);
    padding: 8px 14px;
    border-radius: 2px;
    margin-bottom: 18px;
    box-sizing: content-box;
}
.footer-brand .footer-slogan {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.4em;
    color: var(--white);
    text-transform: uppercase;
    display: inline-block;
    border-top: 2px solid var(--brand-red);
    border-bottom: 2px solid var(--brand-red);
    padding: 6px 14px;
    margin-bottom: 18px;
}
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.6); }
.footer-brand .subsidiaries { margin-top: 16px; font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 0.05em; line-height: 1.8; }
.footer-brand .subsidiaries span { color: var(--brand-red); font-weight: 700; }
footer h5 {
    color: var(--white);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 18px;
    font-weight: 700;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}
footer ul a:hover { color: var(--brand-red); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: var(--gap-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    max-width: var(--container-max);
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 10px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .whyus-grid, .contact-grid { gap: var(--gap-xl); }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--gap-md); }
}
@media (max-width: 900px) {
    .whyus-grid, .contact-grid, .reach-grid, .catalog-gate,
    .pillars-grid, .whyus-purpose {
        grid-template-columns: 1fr;
        gap: var(--gap-xl);
    }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--gap-lg); }
    .footer-brand { grid-column: 1 / -1; }
    .form-row.two-col, .form-row.three-col { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    nav.site-nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: var(--gap-md);
        gap: var(--gap-sm);
        border-top: 3px solid var(--brand-red);
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }
    nav.site-nav ul.open { display: flex; }
    nav.site-nav ul li { width: 100%; }
    nav.site-nav ul a { display: block; padding: 6px 0; }
    .values-row { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; gap: var(--gap-lg); }
    .footer-brand { grid-column: auto; }
    .cta-btn { padding: 14px 22px; font-size: 12px; }
    .cta-group { display: flex; width: 100%; }
    .cta-group .cta-btn { flex: 1; }
}
