﻿/* ============================================================
   RED ANT — MAIN STYLESHEET
   Single source of truth for index, about, contact, news,
   status pages. Shared navbar + footer styles for all pages.
   ============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
    --bg:           #ffffff;
    --text:         #111111;
    --muted:        #6f6b66;
    --accent:       #b28b52;
    --accent-soft:  rgba(178, 139, 82, 0.12);
    --border:       #e3ddd6;
    --shadow:       0 8px 40px rgba(17, 17, 18, 0.07);
    --shadow-lg:    0 24px 64px rgba(17, 17, 18, 0.12);
    --transition:   0.35s ease;
    --page-width:   min(1200px, calc(100% - 48px));
    --nav-height:   72px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.75;
    overflow-x: hidden;
    padding-top: var(--nav-height);
}

img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { font: inherit; cursor: pointer; }

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1 {
    font-size: clamp(2rem, 5vw, 4.6rem);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -1px;
}

h2 {
    font-size: clamp(1.6rem, 3.5vw, 3.2rem);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.5px;
}

h3 {
    font-size: clamp(1rem, 2vw, 1.35rem);
    line-height: 1.35;
    font-weight: 600;
}

p { color: var(--muted); font-size: 1rem; line-height: 1.75; }

.eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

/* ============================================================
   4. NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 9999;
    background: #080808;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    transition: box-shadow var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.45);
}

.nav-container {
    width: var(--page-width);
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-bg {
    width: 48px;
    height: 48px;
    background: #faf5e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.logo-bg img {
    width: 36px;
    height: auto;
    object-fit: contain;
}

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

.nav-menu li { white-space: nowrap; }

.nav-menu li a {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Inter', Arial, sans-serif;
    color: rgba(255, 255, 255, 0.72);
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--accent);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

/* Social icons */
.social-icons {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.social-link {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 6px;
    z-index: 10001;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg)  translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Overlay backdrop */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.nav-overlay.active { display: block; }

/* ============================================================
   5. BUTTONS
   ============================================================ */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: transform var(--transition), background var(--transition),
                color var(--transition), box-shadow var(--transition);
}

.button:hover { transform: translateY(-2px); }

.button.primary {
    background: var(--text);
    color: #fff;
}

.button.primary:hover {
    box-shadow: 0 8px 24px rgba(17, 17, 18, 0.25);
}

.button.secondary {
    background: transparent;
    color: var(--text);
    border-color: rgba(17, 17, 18, 0.15);
}

/* ============================================================
   6. PAGE SHELL
   ============================================================ */
.page-shell { padding-top: 60px; }

/* ============================================================
   7. HERO PANEL — split-grid (index.html)
   ============================================================ */
.hero-panel {
    width: 100%;
    background: #fff;
    overflow: hidden;
    padding-top: 3px;
}

.split-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
}

.split-column { display: grid; gap: 3px; }

.grid-item {
    width: 100%;
    height: 320px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.grid-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0.1), transparent);
    opacity: 0.75;
    transition: opacity 0.5s ease;
}

.grid-item:hover img    { transform: scale(1.07); }
.grid-item:hover::after { opacity: 1; }

.overlay {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 5;
    color: #fff;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.grid-item:hover .overlay {
    opacity: 1;
    transform: translateY(0);
}

.overlay span {
    display: block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
    opacity: 0.85;
}

.overlay h2 {
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0;
}

.project-link {
    display: block;
    width: 100%;
    height: 100%;
}

/* ============================================================
   8. GALLERY SCROLL (index hero row)
   ============================================================ */
.hero-gallery-scroll {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 40px 0;
    -webkit-overflow-scrolling: touch;
}

.hero-gallery-scroll::-webkit-scrollbar { height: 5px; }
.hero-gallery-scroll::-webkit-scrollbar-track { background: rgba(17,17,18,0.06); }
.hero-gallery-scroll::-webkit-scrollbar-thumb {
    background: rgba(178,139,82,0.45);
    border-radius: 999px;
}

.gallery-container {
    display: flex;
    gap: 16px;
    padding: 0 24px;
    width: fit-content;
}

.gallery-item {
    flex: 0 0 400px;
    height: 460px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.gallery-item:hover img { transform: scale(1.07); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.25) 45%, transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px 22px;
    color: #fff;
}

.gallery-overlay .project-label {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 7px;
    opacity: 0.9;
}

.gallery-overlay h3 {
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 600;
}

/* ============================================================
   9. SECTION WIDTHS (shared)
   ============================================================ */
.intro-section,
.categories-preview,
.featured-section,
.highlight-section,
.services-section,
.team-section,
.contact-panel,
.news-list,
.projects-section,
.page-header,
.filter-section {
    width: var(--page-width);
    margin: 0 auto 72px;
}

/* ============================================================
   10. INTRO SECTION
   ============================================================ */
.intro-section {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 48px;
    align-items: start;
}

.stats-grid { display: grid; gap: 16px; }

.stat-card {
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.stat-card strong {
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

/* ============================================================
   11. CATEGORIES PREVIEW
   ============================================================ */
.categories-preview { padding: 80px 0 40px; }

.section-header { margin-bottom: 52px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p  { max-width: 640px; }

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.category-card {
    display: block;
    padding: 36px 32px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition),
                border-color var(--transition);
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.09);
    border-color: rgba(178, 139, 82, 0.3);
}

.category-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 60px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.04);
    line-height: 1;
}

.category-card h3 { margin-bottom: 12px; color: var(--text); }
.category-card p  { font-size: 0.93rem; color: var(--muted); line-height: 1.7; }

/* ============================================================
   12. FEATURED SECTION
   ============================================================ */
.featured-section { padding: 20px 0 60px; }

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.featured-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition);
}

.featured-card:hover { transform: translateY(-6px); }

.featured-image { overflow: hidden; }

.featured-image img,
.featured-card > img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.featured-card:hover .featured-image img,
.featured-card:hover > img { transform: scale(1.06); }

.featured-copy { padding: 30px; }

.featured-copy span {
    display: block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.featured-copy h3 { font-size: 1.6rem; margin-bottom: 12px; }
.featured-copy p  { margin-bottom: 18px; }

.featured-copy a {
    font-weight: 600;
    color: var(--text);
    transition: color var(--transition), letter-spacing var(--transition);
}

.featured-copy a:hover { color: var(--accent); letter-spacing: 0.5px; }

/* ============================================================
   13. HIGHLIGHT SECTION
   ============================================================ */
.highlight-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
    padding: 20px 0 80px;
}

.highlight-list { display: flex; flex-direction: column; gap: 20px; }

.highlight-card,
.highlight-list div {
    background: #fff;
    padding: 28px;
    border-left: 4px solid var(--accent);
    border-radius: 0 16px 16px 0;
    box-shadow: var(--shadow);
    transition: transform var(--transition);
}

.highlight-card:hover,
.highlight-list div:hover { transform: translateX(6px); }

.highlight-card strong,
.highlight-list strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

/* ============================================================
   14. FOOTER PANEL (CTA block above site footer)
   ============================================================ */
.footer-panel {
    background: #0d0d0d;
    color: #fff;
    text-align: center;
    padding: 90px 48px;
    border-radius: 28px;
    margin-bottom: 80px;
}

.footer-panel h2 { color: #fff; margin-bottom: 20px; }

.footer-panel p {
    color: rgba(255, 255, 255, 0.72);
    max-width: 680px;
    margin: 0 auto 32px;
    line-height: 1.8;
}

/* ============================================================
   15. PROJECTS PAGE
   ============================================================ */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 20px;
}

.page-header h1 { font-size: clamp(2rem, 4vw, 3.4rem); }
.page-header p  { max-width: 640px; }

.filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid rgba(17, 17, 18, 0.12);
    background: #fff;
    color: var(--text);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background var(--transition), border-color var(--transition),
                transform var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-soft);
    border-color: rgba(178, 139, 82, 0.45);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.project-item {
    position: relative;
    height: 420px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: transform var(--transition);
}

.project-item:hover { transform: translateY(-6px); }

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.project-item:hover img { transform: scale(1.05); }

.project-copy {
    position: absolute;
    left: 22px;
    bottom: 22px;
    color: #fff;
}

.project-copy span {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
    opacity: 0.9;
}

.project-item.hidden { display: none; }

/* ============================================================
   16. CONTENT GRIDS (about, contact, news, status)
   ============================================================ */
.content-grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow);
}

.card h3 { margin-bottom: 14px; }
.card p  { color: var(--muted); }

/* ============================================================
   17. FORMS
   ============================================================ */
form { display: grid; gap: 16px; }

input,
textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 18px;
    background: #faf7f2;
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: rgba(178, 139, 82, 0.55);
    box-shadow: 0 0 0 4px rgba(178, 139, 82, 0.1);
}

textarea { min-height: 180px; resize: vertical; }

/* ============================================================
   18. SITE FOOTER
   ============================================================ */
.site-footer {
    background: #050505;
    color: #fff;
    overflow: hidden;
    margin-top: 40px;
}

.footer-container {
    width: min(1400px, calc(100% - 80px));
    margin: auto;
    padding: 90px 0 70px;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: 80px;
}

.footer-brand small {
    display: block;
    color: #b8956a;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-brand h2 {
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    line-height: 0.95;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: -3px;
    color: #fff;
}

.footer-brand p {
    max-width: 500px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.9;
    font-size: 16px;
    margin-bottom: 44px;
}

.footer-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 36px;
}

.stat-box {
    flex: 0 0 auto;
    width: 152px;
    padding: 26px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.01);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(184, 149, 106, 0.13), transparent 55%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-box:hover {
    transform: translateY(-8px);
    border-color: #b8956a;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.stat-box:hover::before { opacity: 1; }

.stat-box h3 {
    font-size: 1.45rem;
    color: #d4a35f;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-box span {
    display: block;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #b8956a;
    margin-bottom: 30px;
}

.footer-links ul { list-style: none; }

.footer-links ul li { margin-bottom: 18px; }

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links ul li a:hover { color: #b8956a; padding-left: 8px; }

.footer-contact p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.footer-socials a {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.footer-socials a:hover {
    background: #b8956a;
    border-color: #b8956a;
    transform: translateY(-4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 26px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.42);
    font-size: 13px;
    letter-spacing: 1px;
}

/* ============================================================
   19. ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0);    }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-28px); }
    to   { opacity: 1; transform: translateX(0);     }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0);    }
}

@keyframes gridPop {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1);   }
}

.appear { animation: fadeInUp 0.7s ease both; }

/* ============================================================
   20. RESPONSIVE — TABLET  ≤ 992px
   ============================================================ */
@media (max-width: 992px) {

    /* Hamburger visible, social + menu hidden by default */
    .social-icons { display: none; }

    .hamburger { display: flex; }

    /* Slide-in panel from right */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        background: #0a0a0a;
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 40px 40px;
        gap: 0;
        z-index: 10000;
        overflow-y: auto;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-menu.active { right: 0; }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-menu li:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-menu li a {
        display: block;
        padding: 18px 0;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.75);
    }

    /* Layout collapses */
    .intro-section,
    .highlight-section,
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .category-grid,
    .projects-grid,
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .footer-brand h2 { font-size: 3rem; }
}

/* ============================================================
   21. RESPONSIVE — MOBILE  ≤ 640px
   ============================================================ */
@media (max-width: 640px) {

    :root {
        --nav-height: 60px;
        --page-width: calc(100% - 32px);
    }

    .logo-bg           { width: 40px; height: 40px; }
    .logo-bg img       { width: 30px; }

    /* Hero */
    .split-grid        { grid-template-columns: 1fr; }
    .grid-item         { height: 240px; }
    .hero-panel        { padding-top: 2px; }

    /* Gallery */
    .gallery-item      { flex: 0 0 240px; height: 300px; }
    .gallery-overlay h3 { font-size: 1.2rem; }

    /* Projects */
    .project-item      { height: 280px; }

    /* Featured */
    .featured-image img,
    .featured-card > img { height: 240px; }

    /* Cards padding */
    .category-card,
    .featured-copy,
    .highlight-card,
    .highlight-list div { padding: 22px; }

    /* Footer CTA */
    .footer-panel      { padding: 60px 22px; border-radius: 18px; }

    /* Site footer */
    .footer-container  { width: calc(100% - 32px); padding: 60px 0 40px; }
    .footer-brand h2   { font-size: 2.2rem; letter-spacing: -1px; }
    .stat-box          { width: 100%; }
    .footer-stats      { flex-direction: column; }
    .footer-socials a  { width: 42px; height: 42px; }

    /* Nav padding */
    .nav-container { padding: 0 16px; }

    /* Page shell */
    .page-shell { padding-top: 32px; }
}
