﻿/* =============================================================
   ROYCE ENGINEERING — GLOBAL DESIGN SYSTEM
   site.css  |  Single source of truth for all pages
   =============================================================
   TABLE OF CONTENTS
   1.  CSS Variables & Reset
   2.  Typography
   3.  Global Utilities & Animations
   4.  Topbar
   5.  Navbar
   6.  Offcanvas Mobile Menu
   7.  Footer
   8.  Buttons
   9.  Page Hero (shared across inner pages)
   10. Section Shared Styles
   11. Forms (global)
   12. Content Pages (Privacy, Terms, FAQ, etc.)
   13. Responsive Breakpoints
   ============================================================= */


/* ── 1. CSS VARIABLES & RESET ─────────────────────────────── */
:root {
    /* Palette */
    --re-black: #0A0A0A;
    --re-dark: #111214;
    --re-dark-2: #181A1E;
    --re-dark-3: #1F2228;
    --re-dark-4: #252930;
    --re-gold: #C8963E;
    --re-gold-light: #E0AE58;
    --re-gold-dim: rgba(200, 150, 62, 0.15);
    --re-gold-line: rgba(200, 150, 62, 0.35);
    --re-white: #FFFFFF;
    --re-off-white: #E8E4DC;
    --re-grey: #8A8F99;
    --re-grey-light: #B0B6C1;
    --re-border: rgba(255, 255, 255, 0.07);
    --re-red: #E05252;
    /* Typography */
    --re-font-display: 'Bebas Neue', sans-serif;
    --re-font-cond: 'Barlow Condensed', sans-serif;
    --re-font-body: 'Barlow', sans-serif;
    /* Spacing */
    --re-section-pad: 120px;
    --re-container: 1280px;
    /* Transitions */
    --re-ease: 0.28s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--re-black);
    color: var(--re-off-white);
    font-family: var(--re-font-body);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
    /* padding-top set dynamically via JS (topbar + navbar height) */
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}


/* ── 2. TYPOGRAPHY ────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--re-font-cond);
    color: var(--re-white);
    line-height: 1.15;
    font-weight: 700;
}

/* Display headings */
.re-display-heading {
    font-family: var(--re-font-display);
    font-size: clamp(42px, 5vw, 72px);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.0;
}

/* Section title */
.re-section-title {
    font-family: var(--re-font-display);
    font-size: clamp(38px, 4.5vw, 64px);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--re-white);
    line-height: 1.0;
}

/* Section eyebrow label */
.re-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--re-font-cond);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--re-gold);
    margin-bottom: 18px;
}

    .re-eyebrow::before {
        content: '';
        display: block;
        width: 28px;
        height: 2px;
        background: var(--re-gold);
        flex-shrink: 0;
    }

/* Section subtitle / lead */
.re-subtitle {
    font-size: 17px;
    color: var(--re-grey-light);
    line-height: 1.75;
    max-width: 740px;
    margin-top: 14px;
}

p {
    color: var(--re-grey-light);
    line-height: 1.7;
}


/* ── 3. UTILITIES & ANIMATIONS ────────────────────────────── */
.re-container {
    max-width: var(--re-container);
    margin: 0 auto;
    padding: 0 40px;
}

.re-gold-text {
    color: var(--re-gold);
}

.re-white-text {
    color: var(--re-white);
}

/* Scroll-reveal base states */
.re-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.re-reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.re-reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .re-reveal.re-visible,
    .re-reveal-left.re-visible,
    .re-reveal-right.re-visible {
        opacity: 1;
        transform: translate(0, 0);
    }

/* Legacy .fade-in support (for inner pages that still use it) */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* Industrial grid background pattern (reusable) */
.re-grid-pattern {
    background-image: linear-gradient(rgba(200, 150, 62, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(200, 150, 62, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Dividers */
.re-divider {
    border: none;
    border-top: 1px solid var(--re-border);
    margin: 0;
}

/* Gold accent line */
.re-gold-line {
    display: block;
    width: 48px;
    height: 3px;
    background: var(--re-gold);
    margin-bottom: 20px;
}

/* Tag pill */
.re-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--re-gold-dim);
    border: 1px solid var(--re-gold-line);
    color: var(--re-gold);
    font-family: var(--re-font-cond);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 5px 12px;
}


/* ── 4. TOPBAR ────────────────────────────────────────────── */
.re-topbar {
    background: var(--re-dark-2);
    border-bottom: 1px solid var(--re-border);
    padding: 9px 40px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    transition: transform var(--re-ease);
}

.re-topbar-inner {
    max-width: var(--re-container);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.re-topbar-left,
.re-topbar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.re-topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--re-font-cond);
    font-size: 13px;
    color: var(--re-grey);
    letter-spacing: 0.04em;
    white-space: nowrap;
}

    .re-topbar-item .fa {
        color: var(--re-gold);
        font-size: 13px;
    }

.re-topbar-social {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .re-topbar-social a {
        color: var(--re-grey);
        font-size: 14px;
        transition: color var(--re-ease);
    }

        .re-topbar-social a:hover {
            color: var(--re-gold);
        }


/* ── 5. NAVBAR ────────────────────────────────────────────── */
#reNavbar {
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 199;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--re-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 72px;
    transition: top var(--re-ease), border-color var(--re-ease), box-shadow var(--re-ease);
}

    #reNavbar.re-navbar-scrolled {
        border-bottom-color: rgba(200, 150, 62, 0.2);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    }

/* Logo */
.re-nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.re-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--re-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    transition: background var(--re-ease);
}

    .re-logo-icon svg {
        width: 20px;
        height: 20px;
        fill: var(--re-black);
    }

.re-nav-logo:hover .re-logo-icon {
    background: var(--re-gold-light);
}

.re-logo-text {
    font-family: var(--re-font-display);
    font-size: 22px;
    letter-spacing: 0.1em;
    color: var(--re-white);
    line-height: 1;
}

    .re-logo-text small {
        display: block;
        font-family: var(--re-font-cond);
        font-size: 10px;
        letter-spacing: 0.22em;
        color: var(--re-gold);
        font-weight: 600;
        text-transform: uppercase;
        margin-top: 3px;
    }

/* Desktop nav links */
.re-nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .re-nav-links a {
        font-family: var(--re-font-cond);
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--re-grey-light);
        transition: color var(--re-ease);
        position: relative;
        padding-bottom: 4px;
    }

        .re-nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--re-gold);
            transition: width var(--re-ease);
        }

        .re-nav-links a:hover,
        .re-nav-links a.active {
            color: var(--re-white);
        }

            .re-nav-links a:hover::after,
            .re-nav-links a.active::after {
                width: 100%;
            }

/* Navbar right */
.re-nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.re-nav-phone {
    font-family: var(--re-font-cond);
    font-size: 15px;
    font-weight: 600;
    color: var(--re-off-white);
    letter-spacing: 0.04em;
    line-height: 1.3;
}

    .re-nav-phone small {
        display: block;
        font-size: 10px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--re-gold);
        margin-bottom: 2px;
    }

/* Hamburger */
.re-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

    .re-hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--re-off-white);
        transition: var(--re-ease);
    }


/* ── 6. OFFCANVAS MOBILE MENU ─────────────────────────────── */
.re-offcanvas {
    background: var(--re-dark-2) !important;
    border-left: 1px solid var(--re-border) !important;
    width: 300px !important;
}

    .re-offcanvas .offcanvas-header {
        padding: 20px 24px;
        border-bottom: 1px solid var(--re-border);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.re-offcanvas-close {
    background: none;
    border: none;
    color: var(--re-grey);
    font-size: 18px;
    cursor: pointer;
    transition: color var(--re-ease);
    padding: 4px 8px;
}

    .re-offcanvas-close:hover {
        color: var(--re-gold);
    }

.re-offcanvas .offcanvas-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.re-offcanvas-links {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

    .re-offcanvas-links li {
        border-bottom: 1px solid var(--re-border);
    }

    .re-offcanvas-links a {
        display: block;
        padding: 14px 0;
        font-family: var(--re-font-cond);
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--re-grey-light);
        transition: color var(--re-ease), padding-left var(--re-ease);
    }

        .re-offcanvas-links a:hover {
            color: var(--re-gold);
            padding-left: 8px;
        }

.re-offcanvas-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    padding: 16px;
    background: var(--re-dark-3);
    border: 1px solid var(--re-border);
}

.re-offcanvas-phone,
.re-offcanvas-email {
    font-family: var(--re-font-cond);
    font-size: 14px;
    color: var(--re-grey-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

    .re-offcanvas-phone .fa,
    .re-offcanvas-email .fa {
        color: var(--re-gold);
        width: 14px;
        text-align: center;
    }

.re-btn-block {
    display: flex;
    justify-content: center;
    width: 100%;
    clip-path: none !important;
}


/* ── 7. FOOTER ────────────────────────────────────────────── */
.re-footer {
    background: var(--re-dark-2);
    border-top: 1px solid var(--re-border);
}

.re-footer-top {
    padding: 80px 0 60px;
}

.re-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* Footer brand col */
.re-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.re-footer-logo-wrap {
    display: inline-flex !important;
    pointer-events: none;
}

.re-footer-tagline {
    font-size: 14px;
    color: var(--re-grey);
    line-height: 1.75;
    margin: 0;
}

.re-footer-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

    .re-footer-socials a {
        width: 36px;
        height: 36px;
        border: 1px solid var(--re-border);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--re-grey);
        font-size: 14px;
        transition: all var(--re-ease);
    }

        .re-footer-socials a:hover {
            border-color: var(--re-gold);
            color: var(--re-gold);
            transform: translateY(-2px);
        }

/* Footer column titles */
.re-footer-col-title {
    font-family: var(--re-font-cond);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--re-gold);
    margin-bottom: 20px;
}

/* Footer link list */
.re-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .re-footer-links li {
        margin-bottom: 10px;
    }

    .re-footer-links a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        color: var(--re-grey);
        transition: color var(--re-ease), gap var(--re-ease);
    }

        .re-footer-links a::before {
            content: '—';
            font-size: 10px;
            color: var(--re-gold-line);
            flex-shrink: 0;
        }

        .re-footer-links a:hover {
            color: var(--re-off-white);
            gap: 12px;
        }

/* Footer contact list */
.re-footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.re-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    color: var(--re-grey);
    line-height: 1.6;
}

.re-footer-contact-icon {
    width: 30px;
    height: 30px;
    border: 1px solid var(--re-gold-line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--re-gold);
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Footer bottom bar */
.re-footer-bottom {
    border-top: 1px solid var(--re-border);
    padding: 22px 40px;
}

.re-footer-bottom-inner {
    max-width: var(--re-container);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.re-footer-copyright {
    font-size: 13px;
    color: var(--re-grey);
    margin: 0;
}

.re-footer-legal-links {
    display: flex;
    gap: 24px;
}

    .re-footer-legal-links a {
        font-size: 13px;
        color: var(--re-grey);
        transition: color var(--re-ease);
    }

        .re-footer-legal-links a:hover {
            color: var(--re-gold);
        }


/* ── 8. BUTTONS ───────────────────────────────────────────── */

/* Primary gold button */
.re-btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--re-gold);
    color: var(--re-black);
    font-family: var(--re-font-cond);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 32px;
    border: none;
    cursor: pointer;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    transition: background var(--re-ease), transform var(--re-ease);
    position: relative;
    text-decoration: none;
}

    .re-btn-gold::after {
        content: '→';
        font-size: 16px;
        transition: transform var(--re-ease);
    }

    .re-btn-gold:hover {
        background: var(--re-gold-light);
        color: var(--re-black);
        transform: translateY(-2px);
    }

        .re-btn-gold:hover::after {
            transform: translateX(4px);
        }

/* Small variant */
.re-btn-sm {
    padding: 12px 22px;
    font-size: 13px;
}

/* Outline button */
.re-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--re-off-white);
    font-family: var(--re-font-cond);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 15px 30px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all var(--re-ease);
    text-decoration: none;
}

    .re-btn-outline::after {
        content: '→';
        font-size: 15px;
        opacity: 0.6;
        transition: transform var(--re-ease);
    }

    .re-btn-outline:hover {
        border-color: var(--re-gold);
        color: var(--re-gold);
        transform: translateY(-2px);
    }

        .re-btn-outline:hover::after {
            transform: translateX(4px);
            opacity: 1;
        }

/* Dark button (for use on gold/light backgrounds) */
.re-btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--re-black);
    color: var(--re-white);
    font-family: var(--re-font-cond);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 32px;
    border: none;
    cursor: pointer;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    transition: background var(--re-ease), transform var(--re-ease);
    text-decoration: none;
}

    .re-btn-dark::after {
        content: '→';
        font-size: 16px;
    }

    .re-btn-dark:hover {
        background: var(--re-dark-3);
        color: var(--re-white);
        transform: translateY(-2px);
    }


/* ── 9. PAGE HERO (inner pages) ───────────────────────────── */
.re-page-hero {
    padding: 80px 40px;
    background: var(--re-dark);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--re-border);
}

    .re-page-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(200, 150, 62, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(200, 150, 62, 0.04) 1px, transparent 1px);
        background-size: 60px 60px;
        z-index: 0;
    }

    .re-page-hero::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(to right, var(--re-gold), transparent);
    }

.re-page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: var(--re-container);
    margin: 0 auto;
    text-align: center;
}
/* Breadcrumb */
.re-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--re-font-cond);
    font-size: 13px;
    letter-spacing: 0.08em;
    color: var(--re-grey);
    margin-bottom: 20px;
    flex-wrap: wrap;
}

    .re-breadcrumb a {
        color: var(--re-grey);
        transition: color var(--re-ease);
    }

        .re-breadcrumb a:hover {
            color: var(--re-gold);
        }

    .re-breadcrumb span {
        color: var(--re-gold);
        font-size: 10px;
    }

    .re-breadcrumb .re-breadcrumb-current {
        color: var(--re-off-white);
    }

.re-page-hero h1 {
    font-family: var(--re-font-display);
    font-size: clamp(36px, 5vw, 64px);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--re-white);
    line-height: 1.0;
    margin-bottom: 16px;
}
.re-page-hero p {
    font-size: 17px;
    color: var(--re-grey-light);
    max-width: 600px;
    line-height: 1.7;
    margin: 0 auto;
}


/* ── 10. SECTION SHARED STYLES ────────────────────────────── */
.re-section {
    padding: var(--re-section-pad) 0;
}

.re-section-dark {
    background: var(--re-dark);
}

.re-section-darker {
    background: var(--re-black);
}

.re-section-card {
    background: var(--re-dark-2);
}

.re-section-header {
    margin-bottom: 60px;
}

    .re-section-header.re-center {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .re-section-header.re-center .re-eyebrow {
            justify-content: center;
        }

        .re-section-header.re-center .re-subtitle {
            text-align: center;
            
            margin-left: auto;
            margin-right: auto;
        }

/* Two-column header (title left, text+cta right) */
.re-section-header-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 60px;
}

/* Card base */
.re-card {
    background: var(--re-dark);
    border: 1px solid var(--re-border);
    transition: background var(--re-ease), border-color var(--re-ease);
}

    .re-card:hover {
        background: var(--re-dark-2);
        border-color: var(--re-gold-line);
    }

/* Stats block */
.re-stat-num {
    font-family: var(--re-font-display);
    font-size: clamp(48px, 5vw, 72px);
    color: var(--re-white);
    line-height: 1;
    margin-bottom: 8px;
}

    .re-stat-num span {
        color: var(--re-gold);
    }

.re-stat-label {
    font-family: var(--re-font-cond);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--re-grey);
}


/* ── 11. FORMS (global) ───────────────────────────────────── */
.re-form-group {
    margin-bottom: 20px;
}

    .re-form-group label {
        display: block;
        font-family: var(--re-font-cond);
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--re-grey-light);
        margin-bottom: 8px;
    }

    .re-form-group .re-required {
        color: var(--re-gold);
    }

.re-form-control {
    width: 100%;
    background: var(--re-dark-3);
    border: 1px solid var(--re-border);
    color: var(--re-off-white);
    font-family: var(--re-font-body);
    font-size: 15px;
    padding: 14px 16px;
    transition: border-color var(--re-ease), box-shadow var(--re-ease);
    outline: none;
    appearance: none;
}

    .re-form-control:focus {
        border-color: var(--re-gold);
        box-shadow: 0 0 0 3px rgba(200, 150, 62, 0.12);
    }

    .re-form-control::placeholder {
        color: var(--re-grey);
    }

select.re-form-control {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238A8F99' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

textarea.re-form-control {
    min-height: 120px;
    resize: vertical;
}

.re-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.re-form-help {
    font-size: 12px;
    color: var(--re-grey);
    margin-top: 6px;
}

/* Checkbox & Radio */
.re-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
    color: var(--re-grey-light);
    padding: 6px 0;
}

    .re-check-item input[type="checkbox"],
    .re-check-item input[type="radio"] {
        width: 18px;
        height: 18px;
        accent-color: var(--re-gold);
        cursor: pointer;
        flex-shrink: 0;
    }


/* ── 12. CONTENT PAGES ────────────────────────────────────── */

/* Generic content wrapper */
.re-content-page {
    padding: 60px 40px;
    max-width: 920px;
    margin: 0 auto;
}

.re-content-box {
    background: var(--re-dark-2);
    border: 1px solid var(--re-border);
    padding: 48px;
}

    .re-content-box .re-section-title {
        font-size: 28px;
        margin-bottom: 12px;
        padding-bottom: 12px;
        border-bottom: 2px solid var(--re-gold);
    }

    .re-content-box h2 {
        font-size: 22px;
        color: var(--re-white);
        margin: 2rem 0 1rem;
        padding-bottom: 8px;
        border-bottom: 1px solid var(--re-border);
    }

    .re-content-box h3 {
        font-size: 17px;
        color: var(--re-gold-light);
        margin: 1.5rem 0 0.6rem;
    }

    .re-content-box p {
        font-size: 15px;
        color: var(--re-grey-light);
        line-height: 1.8;
        margin-bottom: 1rem;
    }

    .re-content-box ul,
    .re-content-box ol {
        margin: 0.8rem 0 1rem 1.5rem;
        list-style: disc;
    }

    .re-content-box li {
        font-size: 15px;
        color: var(--re-grey-light);
        line-height: 1.75;
        margin-bottom: 0.4rem;
    }

    .re-content-box a {
        color: var(--re-gold);
        transition: color var(--re-ease);
    }

        .re-content-box a:hover {
            color: var(--re-gold-light);
        }

/* Highlight / info box */
.re-info-box {
    background: var(--re-gold-dim);
    border-left: 3px solid var(--re-gold);
    padding: 16px 20px;
    margin: 20px 0;
}

    .re-info-box p {
        color: var(--re-off-white);
        margin: 0;
        font-size: 15px;
    }

/* Warning box */
.re-warning-box {
    background: rgba(224, 82, 82, 0.1);
    border-left: 3px solid var(--re-red);
    padding: 16px 20px;
    margin: 20px 0;
}

    .re-warning-box p {
        color: var(--re-off-white);
        margin: 0;
    }

/* Last updated */
.re-last-updated {
    font-family: var(--re-font-cond);
    font-size: 13px;
    color: var(--re-grey);
    letter-spacing: 0.08em;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--re-border);
}

/* Data tables */
.re-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 14px;
}

    .re-table th {
        background: var(--re-dark-3);
        border: 1px solid var(--re-border);
        padding: 12px 16px;
        font-family: var(--re-font-cond);
        font-size: 13px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--re-gold);
        text-align: left;
        font-weight: 600;
    }

    .re-table td {
        padding: 12px 16px;
        border: 1px solid var(--re-border);
        color: var(--re-grey-light);
        vertical-align: top;
    }

    .re-table tr:nth-child(even) td {
        background: var(--re-dark-3);
    }

    .re-table tr:hover td {
        background: rgba(200, 150, 62, 0.05);
    }

/* FAQ */
.re-faq-item {
    border-bottom: 1px solid var(--re-border);
    overflow: hidden;
}

.re-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    transition: color var(--re-ease);
}

    .re-faq-question h3 {
        font-family: var(--re-font-cond);
        font-size: 17px;
        font-weight: 600;
        color: var(--re-off-white);
        margin: 0;
        padding-right: 20px;
    }

    .re-faq-question:hover h3 {
        color: var(--re-gold);
    }

.re-faq-icon {
    color: var(--re-gold);
    font-size: 22px;
    transition: transform var(--re-ease);
    flex-shrink: 0;
    line-height: 1;
}

.re-faq-item.active .re-faq-icon {
    transform: rotate(45deg);
}

.re-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.re-faq-item.active .re-faq-answer {
    max-height: 600px;
    padding-bottom: 20px;
}

.re-faq-answer p {
    font-size: 15px;
    color: var(--re-grey-light);
    line-height: 1.8;
}

/* In-page CTA box */
.re-cta-box {
    background: var(--re-gold);
    padding: 48px;
    position: relative;
    overflow: hidden;
    text-align: center;
    margin: 60px 0;
}

    .re-cta-box::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(0, 0, 0, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.07) 1px, transparent 1px);
        background-size: 40px 40px;
    }

    .re-cta-box > * {
        position: relative;
        z-index: 1;
    }

    .re-cta-box h2 {
        font-family: var(--re-font-display);
        font-size: clamp(32px, 4vw, 52px);
        color: var(--re-black);
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .re-cta-box p {
        color: rgba(0, 0, 0, 0.65);
        font-size: 16px;
        max-width: 480px;
        margin: 0 auto 28px;
    }


/* ── 13. RESPONSIVE BREAKPOINTS ───────────────────────────── */

/* Large desktop */
@media (max-width: 1280px) {
    .re-container {
        padding: 0 32px;
    }

    .re-footer-grid {
        gap: 40px;
    }
}

/* Tablet landscape */
@media (max-width: 1100px) {
    .re-nav-links {
        gap: 24px;
    }

    .re-nav-phone {
        display: none;
    }

    .re-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .re-footer-brand {
        grid-column: 1 / -1;
    }
}

/* Tablet portrait */
@media (max-width: 900px) {
    :root {
        --re-section-pad: 80px;
    }

    .re-nav-links {
        display: none;
    }

    .re-nav-right .re-btn-gold {
        display: none;
    }

    .re-hamburger {
        display: flex;
    }

    #reNavbar {
        padding: 0 24px;
    }

    .re-topbar {
        padding: 8px 24px;
    }

    .re-topbar-left .re-topbar-item:last-child {
        display: none;
    }

    .re-topbar-right .re-topbar-item {
        display: none;
    }

    .re-section-header-split {
        flex-direction: column;
        align-items: flex-start;
    }

    .re-form-row {
        grid-template-columns: 1fr;
    }

    .re-content-box {
        padding: 28px 24px;
    }

    .re-page-hero {
        padding: 60px 24px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    :root {
        --re-section-pad: 60px;
    }

    .re-container {
        padding: 0 20px;
    }

    .re-topbar {
        display: none;
    }

    #reNavbar {
        /* topbar hidden, so navbar sits at top 0 */
        top: 0 !important;
    }

    body {
        padding-top: 72px !important;
    }

    .re-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .re-footer-brand {
        grid-column: auto;
    }

    .re-footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .re-footer-legal-links {
        justify-content: center;
    }

    .re-footer-bottom {
        padding: 20px;
    }

    .re-btn-gold,
    .re-btn-outline,
    .re-btn-dark {
        font-size: 13px;
        padding: 13px 22px;
    }

    .re-cta-box {
        padding: 32px 20px;
    }
}


/* =============================================================
   14. HOMEPAGE STYLES
   ============================================================= */

/* ── Hero ───────────────────────────────────────────────────── */
.hp-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--re-dark);
}

.hp-hero-bg {
    position: absolute;
    inset: 0;
}

.hp-hero-photo {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80') center / cover no-repeat;
    filter: saturate(0.2) brightness(0.4);
}

.hp-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.6) 60%, rgba(10,10,10,0.2) 100%);
    z-index: 1;
}

.hp-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 60px 0;
}

.hp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--re-gold-dim);
    border: 1px solid var(--re-gold-line);
    color: var(--re-gold);
    font-family: var(--re-font-cond);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 7px 14px;
    margin-bottom: 28px;
}

.hp-hero-h1 {
    font-family: var(--re-font-display);
    font-size: clamp(56px, 8vw, 110px);
    line-height: 0.93;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--re-white);
    margin-bottom: 24px;
}

    .hp-hero-h1 span {
        color: var(--re-gold);
        display: block;
    }

.hp-hero-p {
    font-size: 17px;
    color: var(--re-grey-light);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 36px;
}

.hp-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.hp-hero-divider {
    width: 1px;
    height: 40px;
    background: var(--re-border);
}

.hp-hero-phone {
    font-family: var(--re-font-cond);
    font-size: 15px;
    color: var(--re-grey-light);
    letter-spacing: 0.04em;
}

    .hp-hero-phone small {
        display: block;
        font-size: 10px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--re-gold);
        margin-bottom: 2px;
    }

/* ── Stats row ──────────────────────────────────────────────── */
.hp-stats-row {
    background: var(--re-dark-2);
    border-top: 1px solid var(--re-border);
    border-bottom: 1px solid var(--re-border);
    padding: 0;
}

.hp-stats-inner {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.hp-stat {
    flex: 1;
    text-align: center;
    padding: 36px 20px;
    border-right: 1px solid var(--re-border);
}

    .hp-stat:last-child {
        border-right: none;
    }

.hp-stat-n {
    font-family: var(--re-font-display);
    font-size: clamp(40px, 4vw, 60px);
    color: var(--re-white);
    line-height: 1;
    margin-bottom: 6px;
}

    .hp-stat-n span {
        color: var(--re-gold);
    }

.hp-stat-l {
    font-family: var(--re-font-cond);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--re-grey);
}

/* ── Services ───────────────────────────────────────────────── */
.hp-services {
    padding: var(--re-section-pad) 0;
    background: var(--re-black);
}

.hp-services-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--re-border);
    border-left: 1px solid var(--re-border);
}

.hp-svc {
    padding: 40px 32px;
    border-right: 1px solid var(--re-border);
    border-bottom: 1px solid var(--re-border);
    position: relative;
    transition: background var(--re-ease);
}

    .hp-svc::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--re-gold);
        transition: width 0.4s ease;
    }

    .hp-svc:hover {
        background: var(--re-dark-2);
    }

        .hp-svc:hover::after {
            width: 100%;
        }

.hp-svc-n {
    font-family: var(--re-font-display);
    font-size: 48px;
    color: rgba(200,150,62,0.12);
    line-height: 1;
    margin-bottom: 16px;
}

.hp-svc-title {
    font-family: var(--re-font-cond);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--re-white);
    margin-bottom: 10px;
}

.hp-svc-text {
    font-size: 14px;
    color: var(--re-grey);
    line-height: 1.65;
}

/* ── Why us (2-col) ─────────────────────────────────────────── */
.hp-why {
    padding: var(--re-section-pad) 0;
    background: var(--re-dark);
}

.hp-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hp-why-visual {
    background: var(--re-dark-3);
    border: 1px solid var(--re-border);
    border-left: 3px solid var(--re-gold);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.hp-why-stat {
    padding-bottom: 28px;
    border-bottom: 1px solid var(--re-border);
}

    .hp-why-stat:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

.hp-why-stat-n {
    font-family: var(--re-font-display);
    font-size: 56px;
    color: var(--re-white);
    line-height: 1;
}

    .hp-why-stat-n span {
        color: var(--re-gold);
    }

.hp-why-stat-l {
    font-family: var(--re-font-cond);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--re-grey);
    margin-top: 4px;
}

.hp-why-points {
    list-style: none;
    padding: 0;
    margin: 24px 0 36px;
}

    .hp-why-points li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 12px 0;
        border-bottom: 1px solid var(--re-border);
        font-size: 15px;
        color: var(--re-grey-light);
        line-height: 1.5;
    }

        .hp-why-points li::before {
            content: '';
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            margin-top: 2px;
            background: var(--re-gold-dim);
            border: 1px solid var(--re-gold-line);
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23C8963E' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: center;
        }

/* ── Projects ───────────────────────────────────────────────── */
.hp-projects {
    padding: var(--re-section-pad) 0;
    background: var(--re-dark-2);
}

.hp-proj-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--re-border);
    margin-top: 48px;
}

.hp-proj-item {
    background: var(--re-dark-3);
    padding: 36px 30px;
    position: relative;
    cursor: pointer;
    transition: background var(--re-ease);
    overflow: hidden;
}

    .hp-proj-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--re-gold);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.35s ease;
    }

    .hp-proj-item:hover {
        background: var(--re-dark-4);
    }

        .hp-proj-item:hover::before {
            transform: scaleX(1);
        }

.hp-proj-cat {
    font-family: var(--re-font-cond);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--re-gold);
    margin-bottom: 10px;
}

.hp-proj-title {
    font-family: var(--re-font-cond);
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--re-white);
    line-height: 1.2;
    margin-bottom: 10px;
}

.hp-proj-info {
    font-size: 13px;
    color: var(--re-grey);
}

.hp-proj-arrow {
    position: absolute;
    bottom: 28px;
    right: 28px;
    font-size: 20px;
    color: var(--re-gold);
    opacity: 0;
    transform: translate(6px, -6px);
    transition: opacity 0.25s, transform 0.25s;
}

.hp-proj-item:hover .hp-proj-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

/* ── CTA ────────────────────────────────────────────────────── */
.hp-cta {
    padding: 80px 0;
    background: var(--re-gold);
    position: relative;
    overflow: hidden;
}

    .hp-cta::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(0,0,0,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,0.06) 1px, transparent 1px);
        background-size: 40px 40px;
    }

.hp-cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hp-cta-h {
    font-family: var(--re-font-display);
    font-size: clamp(40px, 5vw, 64px);
    color: var(--re-black);
    text-transform: uppercase;
    line-height: 0.95;
}

.hp-cta-p {
    font-size: 16px;
    color: rgba(0,0,0,0.6);
    margin-top: 12px;
    max-width: 400px;
    line-height: 1.65;
}

/* ── Homepage responsive ────────────────────────────────────── */
@media (max-width: 1024px) {
    .hp-why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hp-services-list {
        grid-template-columns: 1fr 1fr;
    }

    .hp-proj-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hp-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .hp-services-list {
        grid-template-columns: 1fr;
    }

    .hp-proj-grid {
        grid-template-columns: 1fr;
    }

    .hp-stats-inner {
        flex-wrap: wrap;
    }

    .hp-stat {
        flex: 1 1 50%;
        border-bottom: 1px solid var(--re-border);
    }

    .hp-hero-divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .hp-stat {
        flex: 1 1 100%;
        border-right: none;
    }
}


/* =============================================================
   15. SERVICES PAGE
   ============================================================= */

/* ── Services intro grid ────────────────────────────────────── */
.sv-intro {
    padding: var(--re-section-pad) 0;
    background: var(--re-dark);
}

.sv-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sv-intro-points {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
}

    .sv-intro-points li {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 14px 0;
        border-bottom: 1px solid var(--re-border);
        font-size: 15px;
        color: var(--re-grey-light);
    }

        .sv-intro-points li:last-child {
            border-bottom: none;
        }

        .sv-intro-points li::before {
            content: '';
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            margin-top: 2px;
            background: var(--re-gold-dim);
            border: 1px solid var(--re-gold-line);
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23C8963E' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: center;
        }

.sv-intro-img {
    background: var(--re-dark-3);
    border: 1px solid var(--re-border);
    border-top: 3px solid var(--re-gold);
    padding: 48px 40px;
}

.sv-cert {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--re-border);
}

    .sv-cert:first-child {
        padding-top: 0;
    }

    .sv-cert:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

.sv-cert-icon {
    width: 42px;
    height: 42px;
    background: var(--re-gold-dim);
    border: 1px solid var(--re-gold-line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.sv-cert-title {
    font-family: var(--re-font-cond);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--re-white);
    margin-bottom: 4px;
}

.sv-cert-text {
    font-size: 13px;
    color: var(--re-grey);
    line-height: 1.55;
}

/* ── Main services grid ─────────────────────────────────────── */
.sv-main {
    padding: var(--re-section-pad) 0;
    background: var(--re-black);
}

.sv-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--re-border);
    border: 1px solid var(--re-border);
    margin-top: 52px;
}

.sv-card {
    background: var(--re-dark);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: background var(--re-ease);
}

    .sv-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 3px;
        height: 0;
        background: var(--re-gold);
        transition: height 0.4s ease;
    }

    .sv-card:hover {
        background: var(--re-dark-2);
    }

        .sv-card:hover::before {
            height: 100%;
        }

.sv-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.sv-card-icon {
    width: 52px;
    height: 52px;
    background: var(--re-gold-dim);
    border: 1px solid var(--re-gold-line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.sv-card-num {
    font-family: var(--re-font-display);
    font-size: 52px;
    color: rgba(200,150,62,0.1);
    line-height: 1;
}

.sv-card-title {
    font-family: var(--re-font-cond);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--re-white);
    margin-bottom: 14px;
}

.sv-card-text {
    font-size: 15px;
    color: var(--re-grey);
    line-height: 1.7;
    margin-bottom: 20px;
}

.sv-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sv-tag {
    font-family: var(--re-font-cond);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--re-grey);
    border: 1px solid var(--re-border);
    padding: 4px 10px;
    transition: all var(--re-ease);
}

.sv-card:hover .sv-tag {
    border-color: var(--re-gold-line);
    color: var(--re-gold);
}

/* ── Process steps ──────────────────────────────────────────── */
.sv-process {
    padding: var(--re-section-pad) 0;
    background: var(--re-dark-2);
}

.sv-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--re-border);
    margin-top: 52px;
}

.sv-step {
    background: var(--re-dark-3);
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
}

.sv-step-num {
    font-family: var(--re-font-display);
    font-size: 80px;
    color: rgba(200,150,62,0.08);
    line-height: 1;
    position: absolute;
    top: 16px;
    right: 20px;
}

.sv-step-dot {
    width: 48px;
    height: 48px;
    border: 2px solid var(--re-gold);
    background: var(--re-gold-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--re-font-display);
    font-size: 22px;
    color: var(--re-gold);
    clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px));
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.sv-step-title {
    font-family: var(--re-font-cond);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--re-white);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.sv-step-text {
    font-size: 14px;
    color: var(--re-grey);
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

/* ── Services responsive ────────────────────────────────────── */
@media (max-width: 1024px) {
    .sv-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sv-steps {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .sv-cards {
        grid-template-columns: 1fr;
    }

    .sv-steps {
        grid-template-columns: 1fr;
    }
}


/* =============================================================
   16. NEWS PAGE
   ============================================================= */

/* ── Filter tabs ────────────────────────────────────────────── */
.nw-filters {
    display: flex;
    gap: 2px;
    background: var(--re-border);
    border: 1px solid var(--re-border);
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.nw-filter-btn {
    flex: 1;
    min-width: 120px;
    background: var(--re-dark-2);
    color: var(--re-grey);
    font-family: var(--re-font-cond);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 16px 20px;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all var(--re-ease);
    text-decoration: none;
    display: block;
}

    .nw-filter-btn:hover {
        background: var(--re-dark-3);
        color: var(--re-off-white);
    }

    .nw-filter-btn.active {
        background: var(--re-gold);
        color: var(--re-black);
    }

/* ── Featured article ───────────────────────────────────────── */
.nw-featured {
    background: var(--re-dark-2);
    border: 1px solid var(--re-border);
    border-left: 3px solid var(--re-gold);
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 48px;
}

.nw-featured-label {
    background: var(--re-dark-3);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    position: relative;
    overflow: hidden;
}

    .nw-featured-label::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(200,150,62,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(200,150,62,0.04) 1px, transparent 1px);
        background-size: 30px 30px;
    }

.nw-featured-num {
    font-family: var(--re-font-display);
    font-size: 120px;
    color: rgba(200,150,62,0.08);
    line-height: 1;
    position: absolute;
    bottom: 10px;
    right: 20px;
}

.nw-featured-tag {
    position: relative;
    z-index: 1;
}

.nw-featured-body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}

    .nw-featured-body h2 {
        font-family: var(--re-font-cond);
        font-size: clamp(20px, 2.5vw, 26px);
        font-weight: 700;
        letter-spacing: 0.03em;
        text-transform: uppercase;
        color: var(--re-white);
        line-height: 1.2;
    }

    .nw-featured-body p {
        font-size: 15px;
        color: var(--re-grey-light);
        line-height: 1.7;
    }

.nw-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.nw-meta-item {
    font-family: var(--re-font-cond);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--re-grey);
    display: flex;
    align-items: center;
    gap: 6px;
}

.nw-meta-dot {
    width: 4px;
    height: 4px;
    background: var(--re-gold);
    border-radius: 50%;
}

/* ── News grid ──────────────────────────────────────────────── */
.nw-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--re-border);
    border: 1px solid var(--re-border);
}

.nw-card {
    background: var(--re-dark);
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-decoration: none;
    transition: background var(--re-ease);
    position: relative;
    overflow: hidden;
}

    .nw-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--re-gold);
        transition: width 0.35s ease;
    }

    .nw-card:hover {
        background: var(--re-dark-2);
    }

        .nw-card:hover::after {
            width: 100%;
        }

.nw-card-tag {
    font-family: var(--re-font-cond);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--re-gold);
}

.nw-card-title {
    font-family: var(--re-font-cond);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--re-white);
    line-height: 1.25;
    flex: 1;
}

.nw-card:hover .nw-card-title {
    color: var(--re-gold-light);
}

.nw-card-excerpt {
    font-size: 14px;
    color: var(--re-grey);
    line-height: 1.65;
}

.nw-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--re-border);
}

.nw-card-date {
    font-family: var(--re-font-cond);
    font-size: 12px;
    color: var(--re-grey);
    letter-spacing: 0.08em;
}

.nw-card-arrow {
    color: var(--re-gold);
    font-size: 16px;
    opacity: 0;
    transform: translate(6px, -6px);
    transition: opacity 0.25s, transform 0.25s;
}

.nw-card:hover .nw-card-arrow {
    opacity: 1;
    transform: translate(0,0);
}

/* ── Newsletter ─────────────────────────────────────────────── */
.nw-subscribe {
    margin-top: 60px;
    background: var(--re-dark-2);
    border: 1px solid var(--re-border);
    padding: 52px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.nw-subscribe-text h3 {
    font-family: var(--re-font-cond);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--re-white);
    margin-bottom: 8px;
}

.nw-subscribe-text p {
    font-size: 15px;
    color: var(--re-grey);
    max-width: 400px;
    line-height: 1.65;
}

.nw-subscribe-form {
    display: flex;
    gap: 0;
    flex-shrink: 0;
}

    .nw-subscribe-form input {
        background: var(--re-dark-3);
        border: 1px solid var(--re-border);
        border-right: none;
        color: var(--re-off-white);
        font-family: var(--re-font-body);
        font-size: 15px;
        padding: 14px 20px;
        width: 260px;
        outline: none;
        transition: border-color var(--re-ease);
    }

        .nw-subscribe-form input:focus {
            border-color: var(--re-gold);
        }

        .nw-subscribe-form input::placeholder {
            color: var(--re-grey);
        }

    .nw-subscribe-form button {
        background: var(--re-gold);
        border: 1px solid var(--re-gold);
        color: var(--re-black);
        font-family: var(--re-font-cond);
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        padding: 14px 24px;
        cursor: pointer;
        transition: background var(--re-ease);
        white-space: nowrap;
    }

        .nw-subscribe-form button:hover {
            background: var(--re-gold-light);
        }

/* ── News responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
    .nw-featured {
        grid-template-columns: 1fr;
    }

    .nw-featured-label {
        min-height: 180px;
    }

    .nw-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nw-subscribe {
        flex-direction: column;
        align-items: flex-start;
    }

    .nw-subscribe-form {
        width: 100%;
    }

        .nw-subscribe-form input {
            flex: 1;
            width: auto;
        }
}

@media (max-width: 768px) {
    .nw-grid {
        grid-template-columns: 1fr;
    }

    .nw-subscribe {
        padding: 32px 24px;
    }

    .nw-filters {
        gap: 0;
    }

    .nw-filter-btn {
        flex: 1 1 50%;
    }
}



/* =============================================================
   17. LOGO IMAGE + TEXT
   =============================================================
   Place RoyceLogo.png at: wwwroot/images/RoyceLogo.png
   ============================================================= */

/* Logo anchor — image + text side by side */
.re-nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

/* Logo image — icon portion */
.re-logo-img {
    height: 56px;
    width: auto;
    display: block;
    object-fit: contain;
    border-radius: 3px;
    flex-shrink: 0;
    transition: opacity 0.28s ease;
}

.re-nav-logo:hover .re-logo-img {
    opacity: 0.85;
}

/* Offcanvas sidebar — slightly smaller */
.re-logo-img-sm {
    height: 48px;
}

/* Footer brand column */
.re-logo-img-footer {
    height: 76px;
    margin-bottom: 4px;
}

/* Text block next to image */
.re-logo-text {
    display: block !important; /* override any hide rules */
    font-family: var(--re-font-display);
    font-size: 22px;
    letter-spacing: 0.1em;
    color: var(--re-white);
    line-height: 1;
}

    .re-logo-text small {
        display: block;
        font-family: var(--re-font-cond);
        font-size: 10px;
        letter-spacing: 0.22em;
        color: var(--re-gold);
        font-weight: 600;
        text-transform: uppercase;
        margin-top: 3px;
    }

/* SVG icon no longer used — hidden */
.re-logo-icon {
    display: none !important;
}

/* Footer logo wrapper — image + text side by side */
.re-footer-logo-wrap {
    display: flex !important;
    align-items: center;
    gap: 14px;
    pointer-events: none;
}

/* Footer name text — slightly larger than navbar */
.re-footer-name-text {
    font-size: 24px !important;
}

    .re-footer-name-text small {
        font-size: 11px !important;
        letter-spacing: 0.2em !important;
    }

@media (max-width: 1100px) {
    .re-logo-text {
        font-size: 18px;
    }

        .re-logo-text small {
            font-size: 9px;
            letter-spacing: 0.16em;
        }
}
.re-page-hero p {
    margin: 0 auto 12px;
}

    .re-page-hero p:last-child {
        margin-bottom: 0;
    }
@media (max-width: 900px) {
    .re-logo-img {
        height: 50px;
    }

    .re-logo-img-sm {
        height: 44px;
    }
}

@media (max-width: 600px) {
    .re-logo-img {
        height: 44px;
    }

    .re-logo-img-sm {
        height: 40px;
    }

    .re-logo-text {
        font-size: 16px;
    }
}
