/* ============================================================
   QUEENAN FACILITY SERVICES — style.css
   Inspired by ABM.com design system (via SkillUI extraction)
   4px base grid · subtle motion · layered elevation
   ============================================================ */

/* ── Variables ────────────────────────────────────────────── */
:root {
    /* Brand */
    --forest:      #1F4D3A;
    --deep:        #16382A;
    --gold:        #C89B3C;
    --gold-dark:   #a87e28;
    --charcoal:    #2E2E2E;
    --white:       #FFFFFF;
    --off-white:   #F5F5F3;
    --mid:         #E8E8E5;

    /* Text on dark */
    --text-on-dark:      rgba(255,255,255,0.90);
    --text-on-dark-sub:  rgba(255,255,255,0.65);
    --text-on-dark-muted:rgba(255,255,255,0.45);

    /* Fonts — max 2 families on any screen (ABM rule) */
    --f-display: 'Playfair Display', Georgia, serif;
    --f-sans:    'Montserrat', system-ui, sans-serif;
    --f-body:    'Inter', system-ui, sans-serif;

    /* 4px grid spacing scale (ABM: 4, 8, 12, 16, 20, 24, 28, 32, 40, 48, 64, 80, 96) */
    --sp-1:  4px;
    --sp-2:  8px;
    --sp-3:  12px;
    --sp-4:  16px;
    --sp-5:  20px;
    --sp-6:  24px;
    --sp-7:  28px;
    --sp-8:  32px;
    --sp-10: 40px;
    --sp-12: 48px;
    --sp-16: 64px;
    --sp-20: 80px;
    --sp-24: 96px;

    /* Border radius */
    --r-sm:  6px;
    --r-md:  10px;
    --r-lg:  16px;
    --r-xl:  24px;

    /* Elevation (ABM shadow tokens) */
    --shadow-raised:   0 0 0 1px rgba(0,0,0,0.10), 0 1px 3px rgba(0,0,0,0.10);
    --shadow-float:    -8px 8px 20px rgba(0,0,0,0.12);
    --shadow-overlay:  -16px 16px 40px rgba(0,0,0,0.12);
    --shadow-card:     0 2px 8px rgba(0,0,0,0.08), 0 8px 24px rgba(0,0,0,0.06);

    /* Motion (ABM: 150-300ms, ease-out enters, ease-in exits) */
    --t-fast:   150ms ease-out;
    --t-base:   250ms ease-out;
    --t-slow:   400ms ease-out;

    --container: 1200px;
    --section-v: var(--sp-24);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--f-body);
    color: var(--charcoal);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}

/* ── Container ────────────────────────────────────────────── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--sp-6);
}

/* ── Focus ────────────────────────────────────────────────── */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: var(--r-sm);
}

/* ── Typography helpers ───────────────────────────────────── */
.section-label {
    font-family: var(--f-sans);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: var(--sp-3);
}

.section-header {
    text-align: center;
    max-width: 660px;
    margin: 0 auto var(--sp-16);
}
.section-header h2 {
    font-family: var(--f-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--charcoal);
    line-height: 1.15;
    margin-bottom: var(--sp-4);
}
.section-header p {
    font-size: 1.05rem;
    color: #5a5a5a;
    line-height: 1.75;
}
/* On dark bg */
.section-header--light h2 { color: var(--white); }
.section-header--light p  { color: var(--text-on-dark-sub); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: 14px var(--sp-8);
    border-radius: var(--r-md);
    font-family: var(--f-sans);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.3px;
    transition: background var(--t-base), transform var(--t-base), box-shadow var(--t-base), color var(--t-base);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}
.btn i { font-size: 0.8rem; transition: transform var(--t-base); }
.btn:hover i { transform: translateX(3px); }

.btn-gold {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.btn-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200,155,60,0.35);
}

.btn-ghost {
    background: transparent;
    color: rgba(255,255,255,0.85);
    border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}

.btn-forest {
    background: var(--forest);
    color: var(--white);
    border-color: var(--forest);
}
.btn-forest:hover {
    background: var(--deep);
    border-color: var(--deep);
    transform: translateY(-2px);
}

.btn-lg { padding: 16px 36px; font-size: 0.95rem; }
.btn-full { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }

/* ── Card link (service cards) ────────────────────────────── */
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--f-sans);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--gold);
    margin-top: auto;
    padding-top: var(--sp-4);
    transition: gap var(--t-fast), color var(--t-fast);
}
.card-link i { font-size: 0.7rem; }
.card-link:hover { gap: 10px; color: var(--gold-dark); }

/* ── HEADER ───────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.header-top {
    background: var(--deep);
    padding: var(--sp-2) 0;
    border-bottom: 1px solid rgba(200,155,60,0.12);
}
.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-top-left span,
.header-top-right a,
.header-top-right span {
    font-family: var(--f-sans);
    font-size: 0.76rem;
    color: var(--text-on-dark-sub);
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    transition: color var(--t-fast);
}
.header-top-right { display: flex; gap: var(--sp-6); }
.header-top-right a:hover { color: var(--gold); }
.header-top i { color: var(--gold); font-size: 0.7rem; }

.navbar { background: var(--forest); padding: var(--sp-3) 0; }
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-6);
}
.logo { height: 96px; width: auto; }

.nav-links { display: flex; align-items: center; gap: var(--sp-1); }
.nav-links li a {
    font-family: var(--f-sans);
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--text-on-dark);
    padding: var(--sp-2) var(--sp-3);
    border-radius: var(--r-sm);
    transition: color var(--t-fast), background var(--t-fast);
    letter-spacing: 0.2px;
}
.nav-links li a:hover,
.nav-links li a.active { color: var(--gold); }
.nav-links li a.nav-cta {
    background: var(--gold);
    color: var(--white);
    padding: var(--sp-2) var(--sp-5);
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
}
.nav-links li a.nav-cta i { font-size: 0.7rem; transition: transform var(--t-fast); }
.nav-links li a.nav-cta:hover { background: var(--gold-dark); color: var(--white); }
.nav-links li a.nav-cta:hover i { transform: translateX(3px); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: var(--sp-2); }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: transform var(--t-base), opacity var(--t-fast); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
    position: relative;
    background: var(--deep);
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center 30%;
    min-height: 680px;
    display: flex;
    flex-direction: column;
}

.hero-inner {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: var(--sp-16);
    align-items: center;
    padding-top: var(--sp-24);
    padding-bottom: var(--sp-20);
}

/* Logo column — left side of hero */
.hero-logo-col {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-logo-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 32px rgba(0,0,0,0.35));
}

/* Dark overlay so text stays readable over the photo */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(16,38,28,0.92) 0%,
        rgba(16,38,28,0.80) 55%,
        rgba(16,38,28,0.60) 100%
    );
    pointer-events: none;
}
/* Subtle gold radial accent on the right */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 40%, rgba(200,155,60,0.06) 0%, transparent 55%);
    pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-family: var(--f-sans);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(200,155,60,0.10);
    border: 1px solid rgba(200,155,60,0.25);
    border-radius: 100px;
    padding: 6px 14px;
    margin-bottom: var(--sp-5);
}
.hero-eyebrow i { font-size: 0.72rem; }

.hero-content h1 {
    font-family: var(--f-display);
    font-size: clamp(2.6rem, 5.5vw, 4.6rem);
    color: var(--white);
    line-height: 1.08;
    margin-bottom: var(--sp-4);
    letter-spacing: -0.5px;
}

.hero-location {
    font-family: var(--f-sans);
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 500;
    color: var(--gold);
    margin-bottom: var(--sp-5);
    letter-spacing: 0.2px;
}

.hero-body {
    font-size: 1.05rem;
    color: var(--text-on-dark-sub);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: var(--sp-10);
}

.hero-ctas { display: flex; gap: var(--sp-4); flex-wrap: wrap; }

/* Hero visual card */
.hero-visual { position: relative; z-index: 1; }

.hero-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(200,155,60,0.20);
    border-radius: var(--r-xl);
    padding: var(--sp-10) var(--sp-8);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-overlay);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--sp-6);
}
.hero-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-card-q {
    font-family: var(--f-display);
    font-size: clamp(7rem, 14vw, 10rem);
    font-weight: 700;
    color: rgba(200,155,60,0.12);
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    user-select: none;
    pointer-events: none;
    letter-spacing: -4px;
}

.hero-card-divider {
    width: 40px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    opacity: 0.5;
}

.hero-card-tagline {
    font-family: var(--f-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-on-dark-sub);
    position: relative;
    z-index: 1;
}

.hero-card-stats {
    display: flex;
    gap: var(--sp-6);
    position: relative;
    z-index: 1;
}
.hcs-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-1);
}
.hcs-item strong {
    font-family: var(--f-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.hcs-item span {
    font-family: var(--f-sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-on-dark-muted);
}

/* Hero wave divider */
.hero-wave {
    display: block;
    line-height: 0;
    margin-top: -1px;
}
.hero-wave svg { width: 100%; height: 48px; display: block; }

/* ── SERVICES ─────────────────────────────────────────────── */
.services {
    padding: var(--section-v) 0 var(--sp-20);
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
    margin-bottom: var(--sp-8);
}

/* Service card image header */
.service-card-img {
    margin: calc(var(--sp-8) * -1) calc(var(--sp-7) * -1) var(--sp-6);
    height: 180px;
    overflow: hidden;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    flex-shrink: 0;
}
.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--t-slow);
}
.service-card:hover .service-card-img img { transform: scale(1.06); }

.service-card {
    background: var(--white);
    border: 1.5px solid var(--mid);
    border-radius: var(--r-lg);
    padding: var(--sp-8) var(--sp-7);
    transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--forest), var(--gold));
    opacity: 0;
    transition: opacity var(--t-base);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-float);
    border-color: transparent;
}
.service-card:hover::after { opacity: 1; }

/* Featured card */
.service-card--featured {
    background: var(--forest);
    border-color: transparent;
}
.service-card--featured .service-icon { background: rgba(255,255,255,0.10); }
.service-card--featured .service-icon i { color: var(--gold); }
.service-card--featured h3 { color: var(--white); }
.service-card--featured p  { color: var(--text-on-dark-sub); }
.service-card--featured::after { background: linear-gradient(90deg, var(--gold), rgba(200,155,60,0.3)); opacity: 1; }

.service-icon {
    width: 52px;
    height: 52px;
    background: var(--off-white);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--sp-5);
    transition: background var(--t-base);
    flex-shrink: 0;
}
.service-card:not(.service-card--featured):hover .service-icon { background: var(--forest); }
.service-icon i {
    font-size: 1.3rem;
    color: var(--forest);
    transition: color var(--t-base);
}
.service-card:not(.service-card--featured):hover .service-icon i { color: var(--gold); }

.service-card h3 {
    font-family: var(--f-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--sp-2);
}
.service-card p {
    font-size: 0.90rem;
    color: #5a5a5a;
    line-height: 1.65;
    flex: 1;
}

/* Services list bar */
.services-list-bar {
    background: var(--off-white);
    border-radius: var(--r-lg);
    padding: var(--sp-5) var(--sp-8);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--sp-3) var(--sp-4);
}
.slb-label {
    font-family: var(--f-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-right: var(--sp-2);
    white-space: nowrap;
}
.services-list-bar span {
    font-family: var(--f-sans);
    font-size: 0.85rem;
    color: var(--charcoal);
}
.services-list-bar i.fa-circle-small { color: var(--gold); font-size: 0.4rem; }

/* ── STATS STRIP ──────────────────────────────────────────── */
.stats-strip {
    background: var(--forest);
    padding: var(--sp-12) 0;
    position: relative;
}
.stats-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        90deg,
        rgba(200,155,60,0.03) 0, rgba(200,155,60,0.03) 1px,
        transparent 1px, transparent 80px
    );
    pointer-events: none;
}

.stats-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    z-index: 1;
}

.stat-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--sp-4) var(--sp-8);
    gap: var(--sp-2);
}
.stat-block strong {
    font-family: var(--f-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.stat-block span {
    font-family: var(--f-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-on-dark-muted);
}

.stat-sep {
    width: 1px;
    height: 48px;
    background: rgba(200,155,60,0.20);
    flex-shrink: 0;
}

/* ── ABOUT ────────────────────────────────────────────────── */
.about {
    padding: var(--section-v) 0;
    background: var(--deep);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
    align-items: center;
}

.about-visual {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-overlay);
    min-height: 420px;
}

.about-photo {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
}

/* Quote overlay on the photo */
.about-visual::after {
    content: '"Your facility tells clients what to expect before you say a word."';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: var(--sp-8) var(--sp-7) var(--sp-6);
    background: linear-gradient(to top, rgba(16,38,28,0.95) 0%, rgba(16,38,28,0.5) 70%, transparent 100%);
    font-family: var(--f-display);
    font-style: italic;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.90);
    line-height: 1.55;
    border-top: 2px solid rgba(200,155,60,0.3);
}

.about-content .section-label { color: var(--gold); }
.about-content h2 {
    font-family: var(--f-display);
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: var(--sp-6);
}
.about-content p {
    font-size: 1rem;
    color: var(--text-on-dark-sub);
    line-height: 1.8;
    margin-bottom: var(--sp-5);
}
.about-content .btn-gold { margin-top: var(--sp-3); }

/* ── BRAND PILLARS ────────────────────────────────────────── */
.pillars {
    padding: var(--section-v) 0;
    background: var(--white);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-6);
    margin-bottom: var(--sp-16);
}

.pillar-card {
    background: var(--off-white);
    border-radius: var(--r-lg);
    padding: var(--sp-10) var(--sp-8);
    transition: transform var(--t-base), box-shadow var(--t-base);
    border: 1.5px solid transparent;
}
.pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: rgba(31,77,58,0.12);
}

.pillar-icon {
    width: 52px;
    height: 52px;
    background: var(--forest);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--sp-5);
}
.pillar-icon i {
    font-size: 1.3rem;
    color: var(--gold);
}

.pillar-card h3 {
    font-family: var(--f-sans);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--sp-3);
}
.pillar-card p {
    font-size: 0.93rem;
    color: #5a5a5a;
    line-height: 1.7;
}

.pillars-copy {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    padding: var(--sp-10) var(--sp-8);
    background: var(--off-white);
    border-radius: var(--r-xl);
    border-top: 3px solid var(--gold);
}
.pillars-copy p {
    font-size: 0.97rem;
    color: #5a5a5a;
    line-height: 1.85;
    margin-bottom: var(--sp-4);
}
.pillars-copy p:last-of-type { margin-bottom: var(--sp-8); }

/* ── SERVICE AREAS ────────────────────────────────────────── */
.service-areas {
    padding: var(--section-v) 0;
    background: var(--deep);
}
.service-areas .section-header h2 { color: var(--white); }
.service-areas .section-header p  { color: var(--text-on-dark-sub); }

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-3);
    justify-content: center;
}
.areas-grid span {
    font-family: var(--f-sans);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-on-dark);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(200,155,60,0.20);
    border-radius: var(--r-sm);
    padding: var(--sp-3) var(--sp-6);
    transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
    cursor: default;
}
.areas-grid span:hover {
    background: rgba(200,155,60,0.12);
    border-color: var(--gold);
    color: var(--gold);
}

/* ── CTA STRIP ────────────────────────────────────────────── */
.cta-strip {
    padding: var(--sp-16) 0;
    background: var(--forest);
    background-image: url('images/cta-bg.jpg');
    background-size: cover;
    background-position: center 60%;
    position: relative;
    overflow: hidden;
}
.cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(16,38,28,0.92) 0%,
        rgba(16,38,28,0.80) 50%,
        rgba(16,38,28,0.70) 100%
    );
    pointer-events: none;
}
.cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-10);
    position: relative;
    z-index: 1;
}
.cta-strip-text h2 {
    font-family: var(--f-display);
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    color: var(--white);
    margin-bottom: var(--sp-2);
    line-height: 1.2;
}
.cta-strip-text p {
    font-size: 0.95rem;
    color: var(--text-on-dark-sub);
}

/* ── CONTACT ──────────────────────────────────────────────── */
.contact {
    padding: var(--section-v) 0;
    background: var(--forest);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--sp-16);
    align-items: start;
}

.contact-info .section-label { color: var(--gold); }
.contact-info h2 {
    font-family: var(--f-display);
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: var(--sp-5);
}
.contact-info > p {
    font-size: 0.98rem;
    color: var(--text-on-dark-sub);
    line-height: 1.8;
    margin-bottom: var(--sp-10);
}

.contact-details { display: flex; flex-direction: column; gap: var(--sp-4); }
.contact-item {
    display: flex;
    align-items: center;
    gap: var(--sp-4);
    transition: opacity var(--t-fast);
}
a.contact-item:hover { opacity: 0.85; }
.contact-item-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(200,155,60,0.20);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-item-icon i { color: var(--gold); font-size: 1rem; }
.contact-item-label {
    display: block;
    font-family: var(--f-sans);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-on-dark-muted);
    margin-bottom: 2px;
}
.contact-item-value {
    display: block;
    font-size: 0.95rem;
    color: var(--text-on-dark);
}

/* Form */
.contact-form {
    background: var(--white);
    border-radius: var(--r-xl);
    padding: var(--sp-10);
    box-shadow: var(--shadow-overlay);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
.form-group { margin-bottom: var(--sp-5); }
.form-group label {
    display: block;
    font-family: var(--f-sans);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: var(--charcoal);
    margin-bottom: var(--sp-2);
}
.req { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px var(--sp-4);
    border: 1.5px solid var(--mid);
    border-radius: var(--r-md);
    font-family: var(--f-body);
    font-size: 0.93rem;
    color: var(--charcoal);
    background: var(--white);
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
    -webkit-appearance: none;
    appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #b0b0b0; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--forest);
    box-shadow: 0 0 0 3px rgba(31,77,58,0.10);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath fill='%232E2E2E' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}
.hidden-field { display: none; }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer { background: var(--deep); border-top: 1px solid rgba(200,155,60,0.12); }

.footer-inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: var(--sp-16);
    padding: var(--sp-16) var(--sp-6) var(--sp-12);
    max-width: var(--container);
    margin: 0 auto;
}
.footer-logo { height: 96px; width: auto; margin-bottom: var(--sp-4); }
.footer-brand p {
    font-size: 0.88rem;
    color: var(--text-on-dark-muted);
    line-height: 1.7;
    max-width: 280px;
}
.footer-col h4 {
    font-family: var(--f-sans);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--sp-4);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-col ul li a {
    font-size: 0.88rem;
    color: var(--text-on-dark-muted);
    transition: color var(--t-fast);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-line {
    font-size: 0.88rem;
    color: var(--text-on-dark-muted);
    margin-bottom: var(--sp-3);
    display: flex;
    align-items: center;
    gap: var(--sp-2);
}
.footer-contact-line a {
    color: inherit;
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    transition: color var(--t-fast);
}
.footer-contact-line a:hover { color: var(--gold); }
.footer-contact-line i { color: var(--gold); font-size: 0.8rem; width: 14px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: var(--sp-5) var(--sp-6);
    text-align: center;
    font-family: var(--f-sans);
    font-size: 0.76rem;
    color: var(--text-on-dark-muted);
    max-width: var(--container);
    margin: 0 auto;
}

/* ── SCROLL TO TOP ────────────────────────────────────────── */
.scroll-top {
    position: fixed;
    bottom: var(--sp-8);
    right: var(--sp-8);
    width: 44px;
    height: 44px;
    background: var(--forest);
    border: 1px solid rgba(200,155,60,0.30);
    border-radius: 50%;
    color: var(--gold);
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity var(--t-base), transform var(--t-base), background var(--t-fast);
    z-index: 900;
    box-shadow: var(--shadow-float);
}
.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.scroll-top:hover { background: var(--gold); color: var(--white); }

/* ── ANIMATIONS ───────────────────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── 1024px ─────────────────────────────────── */
@media (max-width: 1024px) {
    :root { --section-v: var(--sp-20); }

    .hero-inner { grid-template-columns: 1fr; gap: var(--sp-12); }
    .hero-logo-col { display: none; }
    .hero-wave svg { height: 36px; }

    .services-grid { grid-template-columns: repeat(2, 1fr); }

    .stats-inner { flex-wrap: wrap; gap: var(--sp-2); }
    .stat-sep { display: none; }
    .stat-block { flex: 1 1 40%; padding: var(--sp-6); }

    .about-inner { grid-template-columns: 1fr; gap: var(--sp-12); }
    .about-visual { display: none; }

    .pillars-grid { grid-template-columns: repeat(2, 1fr); }

    .cta-strip-inner { flex-direction: column; text-align: center; }

    .contact-inner { grid-template-columns: 1fr; gap: var(--sp-12); }

    .footer-inner { grid-template-columns: 1fr 1fr; gap: var(--sp-10); }
    .footer-brand { grid-column: 1 / -1; }
}

/* ── RESPONSIVE ── 768px ──────────────────────────────────── */
@media (max-width: 768px) {
    :root { --section-v: var(--sp-16); }

    .header-top { display: none; }
    .hamburger { display: flex; }
    .navbar { position: relative; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--deep);
        flex-direction: column;
        align-items: stretch;
        padding: var(--sp-3) var(--sp-4) var(--sp-4);
        gap: var(--sp-1);
        box-shadow: 0 12px 32px rgba(0,0,0,0.3);
        z-index: 999;
    }
    .nav-links.open { display: flex; }
    .nav-links li a { padding: 12px var(--sp-4); display: flex; align-items: center; }
    .nav-links li a.nav-cta { text-align: center; justify-content: center; margin-top: var(--sp-2); }

    .hero-content h1 { font-size: 2.4rem; }
    .hero-ctas { flex-direction: column; align-items: flex-start; }

    .services-grid { grid-template-columns: 1fr; }
    .services-list-bar { flex-direction: column; align-items: flex-start; }
    .services-list-bar i.fa-circle-small { display: none; }

    .pillars-grid { grid-template-columns: 1fr; }
    .pillars-copy { padding: var(--sp-8) var(--sp-6); }

    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: var(--sp-8) var(--sp-6); }

    .footer-inner { grid-template-columns: 1fr; gap: var(--sp-8); }
    .footer-brand { grid-column: auto; }

    .scroll-top { bottom: var(--sp-5); right: var(--sp-5); }
}

/* ── RESPONSIVE ── 480px ──────────────────────────────────── */
@media (max-width: 480px) {
    .stat-block { flex: 1 1 100%; }
    .stat-sep  { display: none; }
    .areas-grid span { font-size: 0.8rem; padding: var(--sp-2) var(--sp-4); }
    .hero-ctas .btn { width: 100%; justify-content: center; }
}
