/* ============================================================
   DIAMOND D BUILDERS — Shared Stylesheet
   ============================================================ */

/* ---- Reset & Variables ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --red:          #C8102E;
    --red-dark:     #A00D24;
    --black:        #111111;
    --black-deep:   #0A0A0A;
    --black-soft:   #1A1A1A;
    --purple:       #2D0E54;
    --purple-dark:  #1A0830;
    --purple-light: #4A1A90;
    --purple-pale:  #9B6FD0;
    --gray-light:   #F5F5F7;
    --gray-mid:     #E0E0E0;
    --gray-text:    #666666;
    --white:        #FFFFFF;
    --transition:   all 0.3s ease;
    --shadow-md:    0 8px 32px rgba(0,0,0,0.10);
    --shadow-lg:    0 20px 60px rgba(0,0,0,0.14);
    --max-w:        1200px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Barlow', sans-serif;
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Typography Helpers ---- */
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 52px;
    font-weight: 900;
    line-height: 1.0;
    color: var(--black);
    text-transform: uppercase;
}

.section-title span { color: var(--red); }

.section-subtitle {
    font-size: 17px;
    color: var(--gray-text);
    margin-top: 18px;
    line-height: 1.75;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 2px;
}

.btn-red {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}
.btn-red:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200,16,46,0.35);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.btn-outline-red {
    background: transparent;
    color: var(--red);
    border-color: var(--red);
}
.btn-outline-red:hover {
    background: var(--red);
    color: var(--white);
}

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

/* Fade-up animations removed — content always visible */
.fade-up { opacity: 1; transform: none; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
}

/* Top utility bar */
.navbar-top {
    background: var(--black-deep);
    padding: 9px 0;
}
.navbar-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar-contacts { display: flex; gap: 28px; }
.topbar-contacts a {
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: var(--transition);
}
.topbar-contacts a:hover { color: var(--red); }
.topbar-contacts i { color: var(--red); font-size: 11px; }
.topbar-social a {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: var(--transition);
}
.topbar-social a:hover { color: var(--white); }

/* Main nav */
.navbar-main {
    background: var(--white);
    box-shadow: 0 2px 24px rgba(0,0,0,0.09);
}
.navbar-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo-img { height: 52px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.nav-logo-name span { color: var(--red); }
.nav-logo-tagline {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray-text);
    margin-top: 3px;
}

/* Nav links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2px;
    align-items: center;
}
.nav-links > li { position: relative; }
.nav-links a {
    display: block;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--black);
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}
.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 16px; right: 16px;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}
.nav-links > li > a:hover { color: var(--red); }
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { transform: scaleX(1); }
.nav-links > li > a.active { color: var(--red); }

/* Dropdown toggle arrow */
.nav-links .has-dropdown > a::before {
    content: '';
    display: inline-block;
    width: 0; height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    margin-left: 5px;
    vertical-align: middle;
    transition: transform 0.25s ease;
}
.nav-links .has-dropdown:hover > a::before { transform: rotate(180deg); }

/* Dropdown panel */
.dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    min-width: 200px;
    background: var(--white);
    box-shadow: 0 12px 40px rgba(0,0,0,0.14);
    border-top: 3px solid var(--red);
    z-index: 500;
    padding: 8px 0;
}
.nav-links .has-dropdown:hover .dropdown { display: block; }
.dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--black);
    transition: var(--transition);
}
.dropdown a::after { display: none; }
.dropdown a i { color: var(--red); font-size: 12px; width: 14px; }
.dropdown a:hover { background: var(--gray-light); color: var(--red); padding-left: 24px; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
}
.hamburger span {
    display: block;
    width: 25px; height: 2px;
    background: var(--black);
    transition: var(--transition);
    border-radius: 2px;
}

/* Mobile nav */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--black-deep);
    z-index: 2000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.mobile-nav.open { display: flex; }
.mobile-nav-close {
    position: absolute;
    top: 28px; right: 28px;
    background: none; border: none;
    color: rgba(255,255,255,0.7);
    font-size: 30px;
    cursor: pointer;
    transition: var(--transition);
}
.mobile-nav-close:hover { color: var(--red); }
.mobile-nav a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    letter-spacing: 3px;
    transition: var(--transition);
    line-height: 1.25;
}
.mobile-nav a:hover { color: var(--red); }
.mobile-nav-contact {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.mobile-nav-contact a {
    font-size: 18px !important;
    letter-spacing: 1px !important;
    color: rgba(255,255,255,0.45) !important;
}

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero {
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    padding-top: 120px;
    padding-bottom: 56px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.80) 100%),
                url('../images/hero-bg.jpg') center / cover no-repeat;
}

.page-hero::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 5px;
    background: var(--red);
}

.page-hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 64px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1;
}

.page-hero-title span { color: var(--red); }

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.breadcrumb a, .breadcrumb span {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}
.breadcrumb a:hover { color: var(--red); }
.breadcrumb i { color: var(--red); font-size: 10px; }
.breadcrumb .current { color: rgba(255,255,255,0.85); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--black-deep); color: rgba(255,255,255,0.55); }

.footer-main { padding: 80px 0 52px; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 48px;
}

.footer-brand-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1;
}
.footer-brand-name span { color: var(--red); }
.footer-tagline {
    font-size: 10px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-top: 4px;
    margin-bottom: 18px;
}
.footer-desc { font-size: 14px; line-height: 1.75; margin-bottom: 26px; }

.footer-logo-img { height: 48px; width: auto; margin-bottom: 16px; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.07);
    display: flex; align-items: center; justify-content: center;
    border-radius: 2px;
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--red); color: var(--white); }

.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--red);
    display: inline-block;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    display: flex; align-items: center; gap: 8px;
    transition: var(--transition);
}
.footer-links a::before { content: '›'; color: var(--red); font-size: 20px; line-height: 1; }
.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
.footer-contact-item i { color: var(--red); font-size: 14px; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a, .footer-contact-item span {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    transition: var(--transition);
    line-height: 1.5;
}
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.28); }
.footer-bottom a { color: var(--red); }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top-btn {
    position: fixed;
    bottom: 36px; right: 36px;
    width: 50px; height: 50px;
    background: var(--red);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 999;
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(200,16,46,0.40);
}
.scroll-top-btn.show { opacity: 1; pointer-events: all; }
.scroll-top-btn:hover { background: var(--red-dark); transform: translateY(-3px); }

/* ============================================================
   RESPONSIVE (shared)
   ============================================================ */
@media (max-width: 960px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .navbar-top { display: none; }
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
}

@media (max-width: 600px) {
    .section-title { font-size: 36px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom .container { flex-direction: column; text-align: center; }
    .page-hero-title { font-size: 44px; }
}

/* Mobile subnav child links */
.mobile-subnav {
    font-size: 22px !important;
    color: rgba(255,255,255,0.45) !important;
    letter-spacing: 2px !important;
    padding-top: 4px !important;
    padding-bottom: 4px !important;
}

/* ============================================================
   SHARED — Page Hero (used across all subpages)
   ============================================================ */

/* Subpage hero base — background-image is set inline per page */
.page-hero {
    min-height: 420px;
    display: flex;
    align-items: center;
    padding-top: 132px;
    padding-bottom: 72px;
    position: relative;
    overflow: hidden;
}
.page-hero .container {
    width: 100%;
}
.page-hero::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 5px;
    background: var(--red);
}

/* Eyebrow label above the H1 (about/history pages use .page-hero-eyebrow,
   service pages use .page-hero-label — both get the same treatment) */
.page-hero-eyebrow,
.page-hero-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 14px;
}

/* H1 inside page hero (service subpages) */
.page-hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 80px;
    font-weight: 900;
    line-height: 1.0;
    text-transform: uppercase;
    color: var(--white);
}
.page-hero h1 span { color: var(--red); }

/* H1 variant used on about-family pages (.page-hero-title) */
.page-hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 72px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    line-height: 0.95;
}
.page-hero-title span { color: var(--red); }

/* Descriptor paragraph below the H1 */
.page-hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.68);
    max-width: 620px;
    margin-top: 20px;
    line-height: 1.75;
}

/* Breadcrumb (fully overrides the minimal version already in the file) */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.40);
}
.breadcrumb a {
    color: rgba(255,255,255,0.40);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}
.breadcrumb a:hover { color: var(--red); }
.breadcrumb i { color: var(--red); font-size: 9px; }
.breadcrumb .current { color: rgba(255,255,255,0.85); }
.breadcrumb span {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.45);
}

@media (max-width: 1024px) { .page-hero h1 { font-size: 56px; } }
@media (max-width: 768px) {
    .page-hero h1 { font-size: 52px; }
    .page-hero-desc { font-size: 16px; }
    .page-hero { padding-top: 100px; min-height: 320px; }
}
@media (max-width: 600px) {
    .page-hero h1 { font-size: 42px; }
    .page-hero-title { font-size: 48px; }
}
@media (max-width: 480px) { .page-hero h1 { font-size: 42px; } }

/* ============================================================
   SHARED — Process Steps (4-column icon grid with connector line)
   Used on: services-residential, services-remodeling,
            services-land-clearing, services-metal-buildings,
            services-commercial, and index.html
   ============================================================ */
.process-section {
    padding: 100px 0;
    background: var(--white);
}
.process-header {
    text-align: center;
    margin-bottom: 72px;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}
.process-grid::before {
    content: '';
    position: absolute;
    top: 38px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 2px;
    background: var(--red);
    z-index: 0;
}
.process-step {
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}
.process-circle {
    width: 76px; height: 76px;
    border-radius: 50%;
    background: var(--gray-light);
    border: 3px solid var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 26px;
    color: var(--black);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}
.process-step:hover .process-circle {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    transform: scale(1.08);
}
.process-step-num {
    position: absolute;
    top: -6px; right: -6px;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}
.process-step h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.process-step p {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.65;
}

@media (max-width: 960px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
    .process-grid::before { display: none; }
    .process-section { padding: 72px 0; }
}
@media (max-width: 600px) { .process-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SHARED — Page CTA Section (dark gradient, left stripe, two buttons)
   Used on: services-residential, services-remodeling,
            services-land-clearing, services-metal-buildings,
            services-commercial
   ============================================================ */
.cta-section {
    padding: 100px 0;
    background: var(--black-deep);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 5px;
    background: var(--red);
}
.cta-section .section-title { color: var(--white); }
.cta-section .section-title span { color: var(--red); }
.cta-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.60);
    max-width: 540px;
    margin: 18px auto 0;
    line-height: 1.75;
}
.cta-buttons {
    margin-top: 42px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
@media (max-width: 768px) { .cta-section { padding: 72px 0; } }

/* ============================================================
   SHARED — Feature List (checkmark bullet list inside cards)
   Used on: services-land-clearing, services-metal-buildings
   ============================================================ */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.5;
}
.feature-list li i {
    color: var(--red);
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 3px;
}

/* ============================================================
   INDEX.HTML — Page-specific styles
   ============================================================ */

/* ---- HERO ---- */
.hero {
    min-height: 100vh;
    background:
        linear-gradient(135deg, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.76) 100%),
        url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1800&q=80') center / cover no-repeat;
    display: flex;
    align-items: center;
    padding-top: 132px;
    padding-bottom: 72px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 5px;
    background: var(--red);
}
.hero-bg-word {
    position: absolute;
    right: -20px; top: 50%;
    transform: translateY(-50%);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 260px;
    font-weight: 900;
    color: rgba(255,255,255,0.025);
    text-transform: uppercase;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    line-height: 1;
}
.hero-content { position: relative; max-width: 740px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(200,16,46,0.12);
    border: 1px solid rgba(200,16,46,0.35);
    padding: 7px 18px;
    border-radius: 2px;
    margin-bottom: 28px;
}
.hero-badge span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--red);
}
.hero-badge i { color: var(--red); font-size: 12px; }
.hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 96px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    line-height: 0.92;
    margin-bottom: 30px;
}
.hero-title .t-red   { color: var(--red); display: block; }
.hero-title .t-small {
    display: block;
    font-size: 0.52em;
    color: rgba(255,255,255,0.70);
    margin-top: 12px;
    letter-spacing: 2px;
}
.hero-divider {
    width: 80px; height: 2px;
    background: var(--red);
    margin-bottom: 28px;
}
.hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    line-height: 1.75;
    margin-bottom: 44px;
    max-width: 580px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats { display: flex; gap: 48px; flex-wrap: wrap; }
.hero-stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 46px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}
.hero-stat-num sup { color: var(--red); font-size: 0.5em; vertical-align: super; }
.hero-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 5px;
}

/* ---- QUICK BAR ---- */
.quick-bar { background: var(--black-soft); }
.quick-bar-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.quick-bar-item {
    display: flex; align-items: center; gap: 18px;
    padding: 30px 28px;
    border-right: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
    cursor: default;
}
.quick-bar-item:last-child { border-right: none; }
.quick-bar-item:hover { background: var(--red); }
.quick-bar-icon {
    width: 50px; height: 50px;
    background: rgba(200,16,46,0.18);
    border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}
.quick-bar-item:hover .quick-bar-icon { background: rgba(255,255,255,0.18); }
.quick-bar-icon i { color: var(--red); font-size: 22px; transition: var(--transition); }
.quick-bar-item:hover .quick-bar-icon i { color: var(--white); }
.quick-bar-text h4 {
    font-size: 14px; font-weight: 700;
    color: var(--white); text-transform: uppercase;
    letter-spacing: 0.5px; line-height: 1.2;
}
.quick-bar-text p {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    margin-top: 3px;
}

/* ---- ABOUT / INTRO (index) ---- */
.about { padding: 100px 0; background: var(--white); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-image-wrap { position: relative; }
.about-img-main {
    width: 100%; height: 540px;
    object-fit: cover;
    border-radius: 2px;
    display: block;
}
.about-img-accent {
    position: absolute;
    bottom: -20px; left: -20px;
    width: 180px; height: 180px;
    background: var(--red);
    z-index: -1;
    border-radius: 2px;
}
.about-badge {
    position: absolute;
    bottom: 32px; right: -28px;
    background: var(--black-deep);
    color: var(--white);
    padding: 28px 32px;
    text-align: center;
    border-bottom: 4px solid var(--red);
}
.about-badge-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
    color: var(--red);
}
.about-badge-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.65);
    margin-top: 6px;
}
.about-features { margin-top: 36px; display: flex; flex-direction: column; gap: 14px; }
.about-feature {
    display: flex; align-items: flex-start; gap: 18px;
    padding: 20px 22px;
    background: var(--gray-light);
    border-left: 3px solid var(--red);
    transition: var(--transition);
}
.about-feature:hover { border-left-color: var(--purple); background: var(--gray-light); }
.about-feature-icon {
    width: 42px; height: 42px;
    background: var(--red);
    border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}
.about-feature:hover .about-feature-icon { background: var(--purple); }
.about-feature-icon i { color: var(--white); font-size: 17px; }
.about-feature-text h4 {
    font-size: 15px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.about-feature-text p { font-size: 14px; color: var(--gray-text); line-height: 1.55; }

/* ---- SERVICES PREVIEW (index) ---- */
.services { padding: 100px 0; background: var(--gray-light); }
.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
    flex-wrap: wrap;
    gap: 24px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--white);
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-card-num {
    position: absolute; top: 12px; right: 20px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 72px; font-weight: 900;
    color: rgba(0,0,0,0.04);
    line-height: 1; pointer-events: none;
}
.service-icon {
    width: 68px; height: 68px;
    background: linear-gradient(135deg, var(--red), #E83050);
    border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 26px;
    transition: var(--transition);
}
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--purple), var(--purple-light)); }
.service-icon i { color: var(--white); font-size: 28px; }
.service-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 26px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.5px;
    color: var(--black); margin-bottom: 14px; line-height: 1.1;
}
.service-card p { font-size: 15px; color: var(--gray-text); line-height: 1.7; }
.service-card-link {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 20px;
    font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    color: var(--red);
    transition: var(--transition);
}
.service-card-link:hover { gap: 10px; }

/* ---- CTA BAND (index) ---- */
.cta-band {
    background: var(--black-deep);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.cta-band::after {
    content: '';
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1600585154526-990dced4db0d?w=1400&q=60') center / cover;
    opacity: 0.07;
    pointer-events: none;
}
.cta-band-content { position: relative; z-index: 1; text-align: center; }
.cta-band .section-label { color: var(--red); }
.cta-band .section-title { color: var(--white); font-size: 60px; }
.cta-band .section-subtitle {
    color: rgba(255,255,255,0.65);
    max-width: 620px; margin: 18px auto 44px;
    text-align: center;
}
.cta-band-actions { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

/* ---- PROCESS (index — uses different classes than service subpages) ---- */
.process { padding: 100px 0; background: var(--white); }
.process-header-idx { text-align: center; margin-bottom: 64px; }
.process-header-idx .section-subtitle { max-width: 560px; margin: 18px auto 0; text-align: center; }
.process-grid-idx {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}
.process-grid-idx::before {
    content: '';
    position: absolute;
    top: 40px; left: calc(12.5%); right: calc(12.5%);
    height: 2px;
    background: var(--red);
    z-index: 0;
}
.process-step-idx {
    text-align: center;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
.process-num {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--gray-mid);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 28px;
    transition: var(--transition);
    position: relative;
}
.process-step-idx:hover .process-num {
    border-color: var(--red);
    background: var(--red);
}
.process-num span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px; font-weight: 900;
    color: var(--red);
    transition: var(--transition);
}
.process-step-idx:hover .process-num span { color: var(--white); }
.process-step-idx h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.5px;
    color: var(--black);
    margin-bottom: 10px;
}
.process-step-idx p { font-size: 14px; color: var(--gray-text); line-height: 1.6; }

/* ---- WHY US (index) ---- */
.why-us { padding: 100px 0; background: var(--black); }
.why-us-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-us .section-label { color: var(--red); }
.why-us .section-title { color: var(--white); }
.why-us .section-subtitle { color: rgba(255,255,255,0.60); }
.why-list { margin-top: 44px; display: flex; flex-direction: column; }
.why-item {
    display: flex; align-items: flex-start; gap: 22px;
    padding: 26px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.why-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.why-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 44px; font-weight: 900;
    color: var(--red); line-height: 1;
    flex-shrink: 0; width: 50px;
}
.why-item h4 {
    font-size: 16px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.8px;
    color: var(--white); margin-bottom: 7px;
}
.why-item p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.65; }
.why-us-right { position: relative; }
.why-img { width: 100%; height: 560px; object-fit: cover; border-radius: 2px; display: block; }
.why-accent-top {
    position: absolute; top: -24px; right: -24px;
    width: 120px; height: 120px;
    background: var(--purple); z-index: -1; border-radius: 2px;
}
.why-accent-bot {
    position: absolute; bottom: -24px; left: -24px;
    width: 120px; height: 120px;
    background: var(--red); z-index: -1; border-radius: 2px;
}

/* ---- TESTIMONIALS (index) ---- */
.testimonials { padding: 100px 0; background: var(--gray-light); }
.testimonials-header { text-align: center; margin-bottom: 56px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
    background: var(--white);
    padding: 40px 36px;
    position: relative;
    transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testimonial-stars { color: #F59E0B; font-size: 14px; margin-bottom: 20px; letter-spacing: 2px; }
.testimonial-text {
    font-size: 16px;
    color: var(--gray-text);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 28px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--red);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px; font-weight: 900;
    color: var(--white);
    flex-shrink: 0;
}
.testimonial-name { font-size: 15px; font-weight: 700; color: var(--black); }
.testimonial-role { font-size: 12px; color: var(--gray-text); margin-top: 2px; }
.testimonial-quote {
    position: absolute;
    top: 24px; right: 28px;
    font-size: 80px;
    line-height: 1;
    color: rgba(200,16,46,0.08);
    font-family: Georgia, serif;
}

/* ---- CONTACT STRIP (index) ---- */
.contact-strip { padding: 100px 0; background: var(--white); }
.contact-strip-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 64px;
    align-items: start;
}
.contact-info-list { display: flex; flex-direction: column; gap: 16px; margin-top: 36px; }
.ci-card {
    display: flex; align-items: flex-start; gap: 20px;
    background: var(--gray-light); padding: 24px;
    transition: var(--transition);
}
.ci-card:hover { box-shadow: var(--shadow-md); }
.ci-icon {
    width: 54px; height: 54px;
    background: var(--red); border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: var(--transition);
}
.ci-card:hover .ci-icon { background: var(--purple); }
.ci-icon i { color: var(--white); font-size: 20px; }
.ci-text h4 {
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2.5px;
    color: var(--gray-text); margin-bottom: 7px;
}
.ci-text a, .ci-text p {
    font-size: 18px; font-weight: 700;
    color: var(--black); transition: var(--transition); line-height: 1.3;
}
.ci-text a:hover { color: var(--red); }
.contact-form-wrap { background: var(--gray-light); padding: 52px 48px; }
.form-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 36px; font-weight: 900;
    text-transform: uppercase; color: var(--black);
    margin-bottom: 8px; line-height: 1;
}
.form-title span { color: var(--red); }
.form-subtitle { font-size: 14px; color: var(--gray-text); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block; font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    color: var(--black); margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--gray-mid);
    font-family: 'Barlow', sans-serif;
    font-size: 15px; color: var(--black);
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
    outline: none;
    appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(200,16,46,0.08);
}
.form-group textarea { min-height: 130px; resize: vertical; }

/* Index responsive */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid-idx { grid-template-columns: repeat(2, 1fr); gap: 48px; }
    .process-grid-idx::before { display: none; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}
@media (max-width: 960px) {
    .about-grid, .why-us-grid, .contact-strip-grid { grid-template-columns: 1fr; gap: 48px; }
    .quick-bar-grid { grid-template-columns: repeat(2, 1fr); }
    .about-badge { right: 0; }
    .why-us-right { display: none; }
}
@media (max-width: 768px) {
    .hero-title { font-size: 60px; }
    .hero-bg-word { display: none; }
    .hero { padding-top: 100px; }
    .services-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 32px 24px; }
    .services-header { flex-direction: column; align-items: flex-start; }
    .cta-band .section-title { font-size: 40px; }
}

/* ============================================================
   ABOUT.HTML — Page-specific styles
   ============================================================ */

/* ---- INTRO SECTION ---- */
.about-intro { padding: 100px 0; background: var(--white); }
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-intro-img { position: relative; }
.about-intro-img img {
    width: 100%; height: 500px;
    object-fit: cover; border-radius: 2px;
}
.about-intro-img-accent {
    position: absolute;
    bottom: -20px; left: -20px;
    width: 160px; height: 160px;
    background: var(--red); z-index: -1; border-radius: 2px;
}
.about-intro-img-badge {
    position: absolute;
    top: 32px; right: -28px;
    background: var(--black-deep);
    padding: 24px 28px;
    text-align: center;
    border-bottom: 4px solid var(--purple);
}
.about-intro-img-badge-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 48px; font-weight: 900;
    color: var(--red); line-height: 1;
}
.about-intro-img-badge-label {
    font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 2px;
    color: rgba(255,255,255,0.6); margin-top: 6px;
}
.about-intro-text .section-subtitle { max-width: 100%; }
.about-intro-text p + p { margin-top: 16px; }
.about-value-chips {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-top: 32px;
}
.value-chip {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px;
    background: var(--gray-light);
    border-left: 3px solid var(--red);
    font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
    color: var(--black);
}
.value-chip i { color: var(--red); font-size: 12px; }

/* ---- SUBPAGE CARDS ---- */
.sub-cards { padding: 100px 0; background: var(--gray-light); }
.sub-cards-header { text-align: center; margin-bottom: 56px; }
.sub-cards-header .section-subtitle { max-width: 560px; margin: 18px auto 0; text-align: center; }
.sub-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.sub-card {
    background: var(--white);
    overflow: hidden;
    transition: var(--transition);
    display: flex; flex-direction: column;
}
.sub-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.sub-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}
.sub-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.sub-card:hover .sub-card-img img { transform: scale(1.06); }
.sub-card-color-bar { height: 4px; width: 100%; }
.sub-card-body { padding: 36px 32px; flex: 1; display: flex; flex-direction: column; }
.sub-card-icon {
    width: 56px; height: 56px;
    border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.sub-card-icon i { color: var(--white); font-size: 24px; }
.sub-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px; font-weight: 900;
    text-transform: uppercase; letter-spacing: 0.5px;
    color: var(--black); margin-bottom: 12px; line-height: 1.1;
}
.sub-card p {
    font-size: 15px; color: var(--gray-text);
    line-height: 1.7; flex: 1;
}
.sub-card-cta {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 28px;
    font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    transition: var(--transition);
}
.sub-card-cta i { font-size: 11px; transition: transform 0.2s ease; }
.sub-card:hover .sub-card-cta i { transform: translateX(4px); }

/* ---- VALUES ---- */
.values { padding: 100px 0; background: var(--black); }
.values-header { text-align: center; margin-bottom: 64px; }
.values-header .section-label { color: var(--red); }
.values-header .section-title { color: var(--white); }
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}
.value-card {
    background: var(--black-soft);
    padding: 44px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.value-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.35s ease;
}
.value-card:hover { background: #1e1e1e; }
.value-card:hover::before { transform: scaleX(1); }
.value-card-icon {
    width: 72px; height: 72px;
    background: rgba(200,16,46,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    transition: var(--transition);
}
.value-card:hover .value-card-icon { background: var(--red); }
.value-card-icon i { color: var(--red); font-size: 28px; transition: var(--transition); }
.value-card:hover .value-card-icon i { color: var(--white); }
.value-card h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.5px;
    color: var(--white); margin-bottom: 12px;
}
.value-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
}

/* ---- STATS BAND ---- */
.stats-band { padding: 80px 0; background: var(--red); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item {
    text-align: center;
    padding: 0 24px;
    border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 64px; font-weight: 900;
    color: var(--white); line-height: 1;
}
.stat-num sup { font-size: 0.45em; vertical-align: super; }
.stat-label {
    font-size: 13px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 2px;
    color: rgba(255,255,255,0.75);
    margin-top: 8px;
}

/* ---- CTA ---- */
.about-cta {
    padding: 100px 0;
    background: var(--black-deep);
    text-align: center;
}
.about-cta .section-label { color: var(--red); }
.about-cta .section-title { color: var(--white); }
.about-cta .section-subtitle {
    color: rgba(255,255,255,0.65);
    max-width: 560px; margin: 18px auto 40px;
    text-align: center;
}
.about-cta-actions { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

/* About.html responsive */
@media (max-width: 960px) {
    .about-intro-grid { grid-template-columns: 1fr; gap: 48px; }
    .sub-cards-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .about-intro-img-badge { right: 0; }
}
@media (max-width: 600px) {
    .values-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   ABOUT-HISTORY.HTML — Page-specific styles
   ============================================================ */

/* ---- FOUNDING STORY ---- */
.founding { padding: 100px 0; background: var(--white); }
.founding-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.founding-img { position: relative; }
.founding-img img { width: 100%; height: 520px; object-fit: cover; border-radius: 2px; }
.founding-img-accent { position: absolute; bottom: -20px; right: -20px; width: 140px; height: 140px; background: var(--red); z-index: -1; border-radius: 2px; }
.founding-img-badge {
    position: absolute; top: 28px; left: -28px;
    background: var(--black-deep); padding: 22px 28px; text-align: center;
    border-bottom: 4px solid var(--red);
}
.founding-img-badge-num { font-family: 'Barlow Condensed', sans-serif; font-size: 48px; font-weight: 900; color: var(--red); line-height: 1; }
.founding-img-badge-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.6); margin-top: 6px; }
.founding-content p { font-size: 16px; color: var(--gray-text); line-height: 1.78; margin-top: 18px; }
.founding-content p:first-of-type { margin-top: 20px; }

/* ---- TIMELINE ---- */
.timeline-section { padding: 100px 0; background: var(--gray-light); }
.timeline-header { text-align: center; margin-bottom: 72px; }
.timeline-header .section-subtitle { max-width: 560px; margin: 18px auto 0; text-align: center; }
.timeline { position: relative; max-width: 900px; margin: 0 auto; }
.timeline::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: 50%; transform: translateX(-50%);
    width: 2px;
    background: var(--red);
}
.timeline-item {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 0;
    margin-bottom: 56px;
    position: relative;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
    display: flex; align-items: flex-start;
    justify-content: center;
    padding-top: 4px;
}
.timeline-dot-inner {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--red);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--red);
    flex-shrink: 0;
    transition: var(--transition);
}
.timeline-item:hover .timeline-dot-inner { background: var(--purple); box-shadow: 0 0 0 3px var(--purple); }
.timeline-left { text-align: right; padding-right: 32px; }
.timeline-right { padding-left: 32px; }
.timeline-item.right .timeline-left { order: 3; text-align: left; padding-left: 32px; padding-right: 0; }
.timeline-item.right .timeline-dot  { order: 2; }
.timeline-item.right .timeline-right { order: 1; text-align: right; padding-right: 32px; padding-left: 0; }
.timeline-year {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 48px; font-weight: 900;
    color: var(--red); line-height: 1; margin-bottom: 6px;
}
.timeline-card {
    background: var(--white);
    padding: 28px;
    border-radius: 2px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.timeline-item:hover .timeline-card { box-shadow: var(--shadow-lg); }
.timeline-card h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.5px;
    color: var(--black); margin-bottom: 10px;
}
.timeline-card p { font-size: 14px; color: var(--gray-text); line-height: 1.65; }
.timeline-card-tag {
    display: inline-block;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    padding: 3px 10px;
    margin-bottom: 14px;
    border-radius: 2px;
}

/* ---- MISSION / VISION ---- */
.mission { padding: 100px 0; background: var(--black); }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.mission-card { padding: 60px 52px; background: var(--black-soft); }
.mission-card-icon { width: 64px; height: 64px; background: var(--red); border-radius: 2px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.mission-card-icon i { color: var(--white); font-size: 26px; }
.mission-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 32px; font-weight: 900; text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
.mission-card p { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.75; }

/* ---- HISTORY CTA ---- */
.history-cta { padding: 100px 0; background: var(--black-deep); text-align: center; }
.history-cta .section-label { color: var(--red); }
.history-cta .section-title { color: var(--white); }
.history-cta .section-subtitle { color: rgba(255,255,255,0.65); max-width: 560px; margin: 18px auto 40px; text-align: center; }
.history-cta-actions { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

/* About-history responsive */
@media (max-width: 960px) {
    .founding-grid { grid-template-columns: 1fr; gap: 48px; }
    .founding-img-badge { left: 0; }
    .timeline::before { left: 20px; transform: none; }
    .timeline-item { grid-template-columns: 40px 1fr; }
    .timeline-left, .timeline-item.right .timeline-left { display: none; }
    .timeline-right, .timeline-item.right .timeline-right { order: 2; text-align: left; padding-left: 24px; padding-right: 0; }
    .timeline-dot, .timeline-item.right .timeline-dot { order: 1; justify-content: flex-start; }
    .mission-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ABOUT-TEAM.HTML — Page-specific styles
   ============================================================ */

/* ---- INTRO ---- */
.team-intro { padding: 80px 0 60px; background: var(--white); text-align: center; }
.team-intro .section-subtitle { max-width: 640px; margin: 18px auto 0; text-align: center; }

/* ---- LEADERSHIP ---- */
.leadership { padding: 60px 0 100px; background: var(--white); }
.leadership-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.team-card {
    background: var(--white);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-card-photo {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: var(--gray-light);
}
.team-card-photo img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s ease; }
.team-card:hover .team-card-photo img { transform: scale(1.05); }
.team-card-avatar {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--black-soft), var(--black-deep));
}
.team-card-avatar-initials {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 80px; font-weight: 900;
    color: rgba(255,255,255,0.15);
    letter-spacing: -4px;
}
.team-card-accent {
    height: 4px;
    background: var(--red);
}
.team-card-body { padding: 28px 28px 32px; }
.team-card-role {
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2.5px;
    color: var(--red); margin-bottom: 8px;
}
.team-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px; font-weight: 900;
    text-transform: uppercase; color: var(--black);
    margin-bottom: 14px; line-height: 1;
}
.team-card p { font-size: 14px; color: var(--gray-text); line-height: 1.68; }
.team-card-skills {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-top: 20px;
}
.skill-tag {
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
    padding: 4px 12px;
    background: var(--gray-light);
    color: var(--black);
    border-radius: 2px;
}

/* ---- CREW SECTION ---- */
.crew { padding: 100px 0; background: var(--gray-light); }
.crew-header { text-align: center; margin-bottom: 60px; }
.crew-header .section-subtitle { max-width: 560px; margin: 18px auto 0; text-align: center; }
.crew-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.crew-card {
    background: var(--white);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.crew-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--red);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.35s ease;
}
.crew-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.crew-card:hover::before { transform: scaleX(1); }
.crew-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), #E83050);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}
.crew-card:hover .crew-icon { background: linear-gradient(135deg, var(--purple), var(--purple-light)); }
.crew-icon i { color: var(--white); font-size: 26px; }
.crew-card h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px; font-weight: 800;
    text-transform: uppercase; color: var(--black);
    margin-bottom: 8px;
}
.crew-card p { font-size: 14px; color: var(--gray-text); line-height: 1.6; }

/* ---- CULTURE ---- */
.culture { padding: 100px 0; background: var(--black); }
.culture-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.culture .section-label { color: var(--red); }
.culture .section-title { color: var(--white); }
.culture .section-subtitle { color: rgba(255,255,255,0.60); }
.culture-points { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }
.culture-point {
    display: flex; align-items: flex-start; gap: 18px;
    padding: 20px;
    background: rgba(255,255,255,0.04);
    border-left: 3px solid var(--red);
    transition: var(--transition);
}
.culture-point:hover { border-left-color: var(--purple); background: rgba(255,255,255,0.07); }
.culture-point-icon {
    width: 40px; height: 40px;
    background: var(--red);
    border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: var(--transition);
}
.culture-point:hover .culture-point-icon { background: var(--purple); }
.culture-point-icon i { color: var(--white); font-size: 16px; }
.culture-point h4 { font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--white); margin-bottom: 5px; }
.culture-point p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.culture-img-wrap { position: relative; }
.culture-img { width: 100%; height: 520px; object-fit: cover; border-radius: 2px; }
.culture-img-accent-top { position: absolute; top: -20px; right: -20px; width: 100px; height: 100px; background: var(--purple); z-index: -1; border-radius: 2px; }
.culture-img-accent-bot { position: absolute; bottom: -20px; left: -20px; width: 100px; height: 100px; background: var(--red); z-index: -1; border-radius: 2px; }

/* ---- JOIN CTA ---- */
.join-cta {
    padding: 100px 0;
    background: var(--black-deep);
    text-align: center;
}
.join-cta .section-label { color: var(--red); }
.join-cta .section-title { color: var(--white); }
.join-cta .section-subtitle { color: rgba(255,255,255,0.65); max-width: 580px; margin: 18px auto 40px; text-align: center; }
.join-cta-actions { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

/* ---- PHOTO NOTE ---- */
.photo-note {
    background: rgba(200,16,46,0.06);
    border: 1px dashed rgba(200,16,46,0.25);
    padding: 10px 16px;
    border-radius: 2px;
    font-size: 12px;
    color: var(--gray-text);
    margin-top: 12px;
    text-align: center;
}

/* About-team responsive */
@media (max-width: 1024px) { .leadership-grid { grid-template-columns: repeat(2, 1fr); } .crew-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .leadership-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; } .culture-grid { grid-template-columns: 1fr; gap: 48px; } .culture-img-wrap { display: none; } }
@media (max-width: 600px) { .crew-grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   ABOUT-FAQS.HTML — Page-specific styles
   ============================================================ */

/* ---- INTRO ---- */
.faq-intro { padding: 80px 0 60px; background: var(--white); text-align: center; }
.faq-intro .section-subtitle { max-width: 600px; margin: 18px auto 0; text-align: center; }

/* ---- FAQ LAYOUT ---- */
.faq-section { padding: 20px 0 100px; background: var(--white); }
.faq-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 48px;
    align-items: start;
}
.faq-sidebar { position: sticky; top: 100px; }
.faq-sidebar h3 {
    font-size: 12px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--gray-text); margin-bottom: 16px;
}
.faq-cat-links { display: flex; flex-direction: column; gap: 4px; }
.faq-cat-link {
    display: flex; align-items: center; gap: 10px;
    padding: 11px 16px;
    font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
    color: var(--black);
    border-left: 3px solid transparent;
    transition: var(--transition);
    cursor: pointer;
}
.faq-cat-link i { color: var(--gray-text); font-size: 13px; width: 16px; transition: var(--transition); }
.faq-cat-link:hover, .faq-cat-link.active {
    color: var(--red);
    border-left-color: var(--red);
    background: rgba(200,16,46,0.05);
}
.faq-cat-link:hover i, .faq-cat-link.active i { color: var(--red); }
.faq-group { margin-bottom: 56px; }
.faq-group:last-child { margin-bottom: 0; }
.faq-group-title {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-mid);
}
.faq-group-icon {
    width: 44px; height: 44px;
    border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.faq-group-icon i { color: var(--white); font-size: 18px; }
.faq-group-title h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px; font-weight: 900;
    text-transform: uppercase; color: var(--black);
}
.accordion { display: flex; flex-direction: column; gap: 8px; }
.accordion-item {
    border: 1.5px solid var(--gray-mid);
    border-radius: 2px;
    overflow: hidden;
    transition: var(--transition);
}
.accordion-item.open { border-color: var(--red); }
.accordion-trigger {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
    gap: 16px;
}
.accordion-trigger h3 {
    font-size: 16px; font-weight: 700;
    color: var(--black); line-height: 1.4;
    transition: var(--transition);
}
.accordion-item.open .accordion-trigger h3 { color: var(--red); }
.accordion-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--gray-light);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}
.accordion-item.open .accordion-icon { background: var(--red); }
.accordion-icon i {
    color: var(--gray-text);
    font-size: 12px;
    transition: transform 0.3s ease, color 0.3s ease;
}
.accordion-item.open .accordion-icon i { transform: rotate(45deg); color: var(--white); }
.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.accordion-body-inner {
    padding: 0 24px 24px;
    font-size: 15px; color: var(--gray-text);
    line-height: 1.78;
    border-top: 1px solid var(--gray-mid);
    padding-top: 20px;
}
.accordion-body-inner p + p { margin-top: 12px; }
.accordion-body-inner ul { margin-top: 10px; padding-left: 20px; }
.accordion-body-inner li { margin-bottom: 6px; }
.accordion-body-inner strong { color: var(--black); }

/* ---- STILL HAVE QUESTIONS ---- */
.faq-contact { padding: 100px 0; background: var(--gray-light); }
.faq-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.faq-contact-text .section-subtitle { max-width: 100%; }
.faq-contact-cards { display: flex; flex-direction: column; gap: 16px; margin-top: 36px; }
.faq-ci-card {
    display: flex; align-items: center; gap: 20px;
    background: var(--white); padding: 22px 24px;
    transition: var(--transition);
}
.faq-ci-card:hover { box-shadow: var(--shadow-md); }
.faq-ci-icon { width: 50px; height: 50px; background: var(--red); border-radius: 2px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--transition); }
.faq-ci-card:hover .faq-ci-icon { background: var(--purple); }
.faq-ci-icon i { color: var(--white); font-size: 18px; }
.faq-ci-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gray-text); margin-bottom: 4px; }
.faq-ci-value { font-size: 17px; font-weight: 700; color: var(--black); }
.faq-ci-value a { color: var(--black); transition: var(--transition); }
.faq-ci-value a:hover { color: var(--red); }
.faq-contact-right {
    background: var(--black-deep);
    padding: 52px 44px;
}
.faq-contact-right h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 32px; font-weight: 900;
    text-transform: uppercase; color: var(--white);
    margin-bottom: 8px;
}
.faq-contact-right h3 span { color: var(--red); }
.faq-contact-right p { font-size: 15px; color: rgba(255,255,255,0.55); margin-bottom: 28px; line-height: 1.65; }
.faq-contact-right .btn { width: 100%; justify-content: center; margin-bottom: 12px; }

/* About-faqs responsive */
@media (max-width: 960px) {
    .faq-layout { grid-template-columns: 1fr; }
    .faq-sidebar { position: static; display: none; }
    .faq-contact-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICES.HTML — Page-specific styles
   ============================================================ */

/* ---- SERVICE SECTIONS ---- */
.svc-section { padding: 100px 0; background: var(--white); }
.svc-section.bg-gray { background: var(--gray-light); }
.svc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.svc-section.reverse .svc-grid { direction: rtl; }
.svc-section.reverse .svc-content,
.svc-section.reverse .svc-image-wrap { direction: ltr; }
.svc-content { position: relative; }
.svc-features { margin-top: 28px; display: flex; flex-direction: column; gap: 13px; }
.svc-feature { display: flex; align-items: flex-start; gap: 13px; }
.svc-feature i { color: var(--red); font-size: 13px; flex-shrink: 0; margin-top: 4px; }
.svc-feature span { font-size: 15px; color: var(--gray-text); line-height: 1.55; }
.svc-actions { margin-top: 38px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.svc-image-wrap { position: relative; }
.svc-img { width: 100%; height: 460px; object-fit: cover; display: block; border-radius: 2px; }
.svc-accent-top {
    position: absolute; top: -20px; right: -20px;
    width: 90px; height: 90px;
    background: var(--purple); z-index: -1; border-radius: 2px;
}
.svc-accent-bot {
    position: absolute; bottom: -20px; left: -20px;
    width: 90px; height: 90px;
    background: var(--red); z-index: -1; border-radius: 2px;
}
.svc-badge {
    position: absolute; bottom: 24px; right: 24px;
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(8px);
    border-left: 3px solid var(--red);
    color: var(--white); padding: 14px 20px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800; font-size: 14px;
    text-transform: uppercase; letter-spacing: 1px;
}

/* ---- TURNKEY ADVANTAGE ---- */
.turnkey { padding: 100px 0; background: var(--black); }
.turnkey-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.turnkey .section-label { color: var(--red); }
.turnkey .section-title { color: var(--white); }
.turnkey .section-subtitle { color: rgba(255,255,255,0.58); }
.adv-grid {
    margin-top: 48px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.adv-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    padding: 26px;
}
.adv-icon {
    width: 44px; height: 44px;
    background: rgba(200,16,46,0.12);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.adv-icon i { color: var(--red); font-size: 18px; }
.adv-card h4 {
    font-size: 14px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.8px;
    color: var(--white); margin-bottom: 8px;
}
.adv-card p { font-size: 13px; color: rgba(255,255,255,0.48); line-height: 1.65; }
.turnkey-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.turnkey-imgs img { width: 100%; object-fit: cover; display: block; border-radius: 2px; }
.turnkey-imgs img:first-child { grid-column: 1 / -1; height: 260px; }
.turnkey-imgs img:not(:first-child) { height: 170px; }

/* ---- PAGE CTA (services.html) ---- */
.page-cta {
    padding: 100px 0; text-align: center;
    background:
        linear-gradient(135deg, rgba(45,14,84,0.92), rgba(10,10,10,0.96)),
        url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1800&q=80') center / cover no-repeat;
}
.page-cta .section-title { color: var(--white); }
.page-cta .section-subtitle { color: rgba(255,255,255,0.65); max-width: 560px; margin: 18px auto 44px; text-align: center; }
.page-cta-actions { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

/* Services.html responsive */
@media (max-width: 960px) {
    .svc-grid { grid-template-columns: 1fr; gap: 40px; }
    .svc-section.reverse .svc-grid { direction: ltr; }
    .svc-image-wrap { display: none; }
    .turnkey-inner { grid-template-columns: 1fr; gap: 48px; }
    .turnkey-imgs { display: none; }
    .adv-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .svc-section { padding: 72px 0; }
}

/* ============================================================
   SERVICES-RESIDENTIAL.HTML — Page-specific styles
   ============================================================ */

/* ---- OVERVIEW SECTION ---- */
.overview-section { padding: 100px 0; background: var(--white); }
.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.overview-para { font-size: 16px; color: var(--gray-text); line-height: 1.8; margin-top: 22px; }
.check-list { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.check-item { display: flex; align-items: flex-start; gap: 14px; }
.check-item i { color: var(--red); font-size: 14px; flex-shrink: 0; margin-top: 3px; }
.check-item span { font-size: 15px; color: var(--gray-text); line-height: 1.55; }
.overview-image-wrap { position: relative; }
.overview-img { width: 100%; height: 500px; object-fit: cover; display: block; border-radius: 2px; }
.overview-accent-top { position: absolute; top: -20px; right: -20px; width: 80px; height: 80px; background: var(--purple); z-index: -1; border-radius: 2px; }
.overview-accent-bot { position: absolute; bottom: -20px; left: -20px; width: 80px; height: 80px; background: var(--red); z-index: -1; border-radius: 2px; }

/* ---- WHAT SETS US APART ---- */
.apart-section { padding: 100px 0; background: var(--black); }
.apart-section .section-label { color: var(--red); }
.apart-section .section-title { color: var(--white); }
.apart-header { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.apart-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.apart-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    padding: 36px 28px;
    border-radius: 2px;
    transition: var(--transition);
}
.apart-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); }
.apart-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    margin-bottom: 22px;
}
.apart-icon.purple { background: rgba(45,14,84,0.18); color: var(--white); }
.apart-icon.red { background: rgba(200,16,46,0.15); color: var(--red); }
.apart-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px; font-weight: 800;
    text-transform: uppercase; color: var(--white);
    margin-bottom: 12px; letter-spacing: 0.5px;
}
.apart-card p { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* Residential responsive */
@media (max-width: 1100px) { .apart-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 960px) {
    .overview-grid { grid-template-columns: 1fr; gap: 48px; }
    .overview-img { height: 360px; }
}
@media (max-width: 768px) {
    .apart-grid { grid-template-columns: 1fr; }
    .overview-section, .apart-section { padding: 72px 0; }
}

/* ============================================================
   SERVICES-REMODELING.HTML — Page-specific styles
   ============================================================ */

/* ---- REMODEL TYPES GRID ---- */
.remodel-types-section { padding: 100px 0; background: var(--white); }
.remodel-types-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.remodel-types-header .section-subtitle { margin-top: 16px; }
.remodel-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.remodel-card {
    background: var(--white);
    border: 1px solid var(--gray-mid);
    border-top: 3px solid transparent;
    border-radius: 2px;
    padding: 36px 28px 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}
.remodel-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.11); transform: translateY(-4px); }
.remodel-card.red-top { border-top-color: var(--red); }
.remodel-card.purple-top { border-top-color: var(--purple); }
.remodel-card-icon {
    width: 48px; height: 48px;
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}
.remodel-card-icon.red { background: rgba(200,16,46,0.08); color: var(--red); }
.remodel-card-icon.purple { background: rgba(45,14,84,0.10); color: var(--purple); }
.remodel-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 24px; font-weight: 800;
    text-transform: uppercase; color: var(--black);
    margin-bottom: 12px; letter-spacing: 0.5px;
}
.remodel-card p { font-size: 15px; color: var(--gray-text); line-height: 1.65; }

/* ---- WHY REMODEL WITH DIAMOND D ---- */
.why-section { padding: 0; background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; }
.why-dark-panel {
    background: var(--black);
    padding: 80px 64px;
    display: flex; flex-direction: column; justify-content: center;
}
.why-dark-panel .section-label { color: var(--red); }
.why-dark-panel h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 52px; font-weight: 900;
    line-height: 1.0; text-transform: uppercase; color: var(--white);
    margin-top: 14px;
}
.why-dark-panel > p { font-size: 16px; color: rgba(255,255,255,0.60); line-height: 1.8; margin-top: 22px; }
.why-check-list { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.why-check-item { display: flex; align-items: flex-start; gap: 14px; }
.why-check-item i { color: var(--white); font-size: 13px; flex-shrink: 0; margin-top: 4px; }
.why-check-item span { font-size: 15px; color: rgba(255,255,255,0.70); line-height: 1.55; }
.why-image-wrap { position: relative; overflow: hidden; min-height: 520px; }
.why-image-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Remodeling responsive */
@media (max-width: 1100px) { .remodel-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 960px) {
    .why-grid { grid-template-columns: 1fr; }
    .why-dark-panel { padding: 64px 40px; }
    .why-image-wrap { min-height: 360px; }
    .remodel-types-section { padding: 72px 0; }
}
@media (max-width: 768px) {
    .why-dark-panel { padding: 56px 28px; }
    .why-dark-panel h2 { font-size: 40px; }
}
@media (max-width: 600px) { .remodel-cards-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SERVICES-LAND-CLEARING.HTML — Page-specific styles
   ============================================================ */

/* ---- SERVICE CATEGORIES ---- */
.categories-section { padding: 100px 0; background: var(--white); }
.categories-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.category-card {
    background: var(--white);
    border: 1px solid var(--gray-mid);
    border-top: 3px solid transparent;
    border-radius: 2px;
    padding: 36px 28px 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}
.category-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.11); transform: translateY(-4px); }
.category-card.red-top { border-top-color: var(--red); }
.category-card.purple-top { border-top-color: var(--purple); }
.category-card-icon {
    width: 52px; height: 52px;
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 22px;
}
.category-card-icon.red { background: rgba(200,16,46,0.08); color: var(--red); }
.category-card-icon.purple { background: rgba(45,14,84,0.10); color: var(--purple); }
.category-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 24px; font-weight: 800;
    text-transform: uppercase; color: var(--black);
    margin-bottom: 12px; letter-spacing: 0.5px;
}
.category-card > p { font-size: 15px; color: var(--gray-text); line-height: 1.65; margin-bottom: 20px; }

/* ---- EQUIPMENT SECTION ---- */
.equipment-section { padding: 100px 0; background: var(--black); }
.equipment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.equipment-content .section-label { color: var(--red); }
.equipment-content h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 52px; font-weight: 900;
    line-height: 1.0; text-transform: uppercase; color: var(--white);
    margin-top: 14px;
}
.equipment-content > p { font-size: 16px; color: rgba(255,255,255,0.60); line-height: 1.8; margin-top: 22px; margin-bottom: 36px; }
.equipment-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.equipment-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 4px;
    padding: 22px 20px;
}
.equipment-card i { font-size: 22px; color: var(--red); margin-bottom: 12px; display: block; }
.equipment-card h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px; font-weight: 800;
    text-transform: uppercase; color: var(--white);
    margin-bottom: 8px; letter-spacing: 0.5px;
}
.equipment-card p { font-size: 13px; color: rgba(255,255,255,0.50); line-height: 1.6; }
.equipment-image-wrap { position: relative; overflow: hidden; border-radius: 4px; }
.equipment-image-wrap img { width: 100%; height: 480px; object-fit: cover; display: block; }

/* Land-clearing responsive */
@media (max-width: 1100px) { .categories-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 960px) {
    .equipment-grid { grid-template-columns: 1fr; gap: 48px; }
    .equipment-content h2 { font-size: 40px; }
    .categories-section, .equipment-section { padding: 72px 0; }
}
@media (max-width: 600px) { .categories-grid { grid-template-columns: 1fr; } .equipment-cards { grid-template-columns: 1fr; } }

/* ============================================================
   SERVICES-METAL-BUILDINGS.HTML — Page-specific styles
   ============================================================ */

/* ---- BUILDING TYPES GRID ---- */
.building-types-section { padding: 100px 0; background: var(--white); }
.building-types-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.building-cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.building-card {
    background: var(--white);
    border: 1px solid var(--gray-mid);
    border-radius: 2px;
    padding: 40px 32px 36px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}
.building-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.11); transform: translateY(-4px); }
.building-card-icon { font-size: 36px; color: var(--red); margin-bottom: 22px; display: block; }
.building-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 26px; font-weight: 800;
    text-transform: uppercase; color: var(--black);
    margin-bottom: 12px; letter-spacing: 0.5px;
}
.building-card > p { font-size: 15px; color: var(--gray-text); line-height: 1.65; margin-bottom: 20px; }

/* ---- IN-HOUSE FABRICATION ---- */
.fab-section { padding: 100px 0; background: var(--black); }
.fab-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.fab-content .section-label { color: var(--red); }
.fab-content h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 52px; font-weight: 900;
    line-height: 1.0; text-transform: uppercase; color: var(--white);
    margin-top: 14px;
}
.fab-content > p { font-size: 16px; color: rgba(255,255,255,0.60); line-height: 1.8; margin-top: 22px; margin-bottom: 36px; }
.advantage-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.advantage-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 4px;
    padding: 22px 20px;
}
.advantage-card i { font-size: 22px; color: var(--red); margin-bottom: 12px; display: block; }
.advantage-card h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px; font-weight: 800;
    text-transform: uppercase; color: var(--white);
    margin-bottom: 8px; letter-spacing: 0.5px;
}
.advantage-card p { font-size: 13px; color: rgba(255,255,255,0.50); line-height: 1.6; }
.fab-image-wrap { position: relative; overflow: hidden; border-radius: 4px; }
.fab-image-wrap img { width: 100%; height: 480px; object-fit: cover; display: block; }

/* Metal-buildings responsive */
@media (max-width: 960px) {
    .building-cards-grid { grid-template-columns: 1fr; }
    .fab-grid { grid-template-columns: 1fr; gap: 48px; }
    .fab-content h2 { font-size: 40px; }
    .building-types-section, .fab-section { padding: 72px 0; }
}
@media (max-width: 600px) { .advantage-cards { grid-template-columns: 1fr; } }

/* ============================================================
   SERVICES-COMMERCIAL.HTML — Page-specific styles
   ============================================================ */

/* ---- COMMERCIAL SERVICES GRID ---- */
.services-section { padding: 100px 0; background: var(--white); }
.services-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.comm-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.comm-service-card {
    background: var(--white);
    border: 1px solid var(--gray-mid);
    border-top: 3px solid transparent;
    border-radius: 2px;
    padding: 36px 28px 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}
.comm-service-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.11); transform: translateY(-4px); }
.comm-service-card.red-top { border-top-color: var(--red); }
.comm-service-card.purple-top { border-top-color: var(--purple); }
.comm-service-card-icon {
    width: 52px; height: 52px;
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 22px;
}
.comm-service-card-icon.red { background: rgba(200,16,46,0.08); color: var(--red); }
.comm-service-card-icon.purple { background: rgba(45,14,84,0.10); color: var(--purple); }
.comm-service-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 24px; font-weight: 800;
    text-transform: uppercase; color: var(--black);
    margin-bottom: 12px; letter-spacing: 0.5px;
}
.comm-service-card p { font-size: 15px; color: var(--gray-text); line-height: 1.65; }

/* ---- WHO WE WORK WITH ---- */
.clients-section {
    padding: 100px 0;
    background: var(--black);
    text-align: center;
}
.clients-section .section-label { color: var(--red); }
.clients-section h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 56px; font-weight: 900;
    line-height: 1.0; text-transform: uppercase; color: var(--white);
    margin-top: 14px;
}
.clients-section h2 span { color: var(--red); }
.clients-intro {
    font-size: 17px; color: rgba(255,255,255,0.60);
    max-width: 640px; margin: 22px auto 56px; line-height: 1.75;
}
.client-types-row { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.client-type-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 4px;
    padding: 32px 24px;
    min-width: 160px;
    display: flex; flex-direction: column;
    align-items: center; gap: 14px;
    transition: var(--transition);
}
.client-type-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(200,16,46,0.40); }
.client-type-card i { font-size: 30px; color: var(--red); }
.client-type-card span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px; font-weight: 700;
    text-transform: uppercase; color: var(--white);
    letter-spacing: 0.5px; text-align: center;
}

/* Commercial responsive */
@media (max-width: 1100px) { .comm-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 960px) {
    .comm-services-grid { grid-template-columns: repeat(2, 1fr); }
    .clients-section h2 { font-size: 42px; }
    .services-section, .clients-section { padding: 72px 0; }
    .client-types-row { gap: 14px; }
    .client-type-card { min-width: 130px; padding: 24px 16px; }
}
@media (max-width: 600px) { .comm-services-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .client-type-card { min-width: 110px; } }

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-main-section { padding: 100px 0; background: var(--white); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 72px;
    align-items: start;
}

/* Form side */
.contact-form-intro {
    font-size: 16px; color: var(--gray-text);
    margin: 18px 0 36px; line-height: 1.7;
}
.contact-form-intro a { color: var(--red); font-weight: 700; }
.contact-form { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
    font-size: 12px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--black);
}
.req { color: var(--red); }
.form-group input,
.form-group select,
.form-group textarea {
    padding: 13px 16px;
    border: 1.5px solid var(--gray-mid);
    border-radius: 2px;
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    color: var(--black);
    background: var(--white);
    transition: border-color 0.2s ease;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 130px; }
.contact-submit { margin-top: 4px; }
.form-note {
    font-size: 13px; color: var(--gray-text);
    margin-top: -8px;
}

/* Info side */
.contact-info-card,
.contact-area-card,
.contact-services-card {
    border-radius: 4px;
    padding: 32px;
    margin-bottom: 24px;
}
.contact-info-card { background: var(--black); }
.contact-area-card { background: var(--gray-light); }
.contact-services-card { background: var(--white); border: 1.5px solid var(--gray-mid); }

.contact-info-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px; font-weight: 800;
    text-transform: uppercase;
    color: var(--white); margin-bottom: 28px;
    letter-spacing: 0.5px;
}
.contact-info-item {
    display: flex; align-items: flex-start; gap: 16px;
    margin-bottom: 22px;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
    width: 42px; height: 42px;
    border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; flex-shrink: 0;
}
.contact-info-icon.red { background: rgba(200,16,46,0.15); color: var(--red); }
.contact-info-icon.purple { background: rgba(45,14,84,0.15); color: var(--purple-light); }
.contact-info-label {
    font-size: 10px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,0.35); margin-bottom: 4px;
}
.contact-info-value {
    font-size: 15px; font-weight: 600; color: var(--white);
    line-height: 1.4;
}
a.contact-info-value:hover { color: var(--red); }

/* Area card */
.contact-area-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px; font-weight: 800;
    text-transform: uppercase;
    color: var(--black); margin-bottom: 12px;
}
.contact-area-title i { color: var(--red); margin-right: 6px; }
.contact-area-desc { font-size: 14px; color: var(--gray-text); margin-bottom: 16px; }
.contact-area-cities {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 16px;
}
.contact-area-cities a {
    background: var(--white);
    border: 1.5px solid var(--gray-mid);
    border-radius: 2px;
    padding: 5px 14px;
    font-size: 13px; font-weight: 700;
    color: var(--black);
    transition: var(--transition);
}
.contact-area-cities a:hover { border-color: var(--red); color: var(--red); }
.contact-area-note { font-size: 13px; color: var(--gray-text); font-style: italic; }

/* Services card */
.contact-services-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px; font-weight: 800;
    text-transform: uppercase;
    color: var(--black); margin-bottom: 18px;
}
.contact-services-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.contact-services-list li a {
    display: flex; align-items: center; gap: 12px;
    font-size: 14px; font-weight: 600; color: var(--black);
    transition: color 0.2s;
}
.contact-services-list li a i { color: var(--red); width: 16px; }
.contact-services-list li a:hover { color: var(--red); }

/* Trust bar */
.contact-trust-section { padding: 80px 0; background: var(--gray-light); }
.contact-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.contact-trust-item { text-align: center; }
.contact-trust-icon {
    width: 60px; height: 60px;
    background: var(--black);
    border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    font-size: 22px; color: var(--red);
}
.contact-trust-item h4 {
    font-size: 15px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
    margin-bottom: 10px; color: var(--black);
}
.contact-trust-item p { font-size: 14px; color: var(--gray-text); line-height: 1.65; }

/* Contact responsive */
@media (max-width: 1100px) {
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
    .contact-trust-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================================
   PORTFOLIO PAGE
   ============================================================ */

.portfolio-section { padding: 80px 0 100px; background: var(--white); }

/* Filter buttons */
.portfolio-filters {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-bottom: 56px;
}
.pf-btn {
    padding: 10px 22px;
    font-family: 'Barlow', sans-serif;
    font-size: 12px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    border: 1.5px solid var(--gray-mid);
    background: var(--white);
    color: var(--black);
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
}
.pf-btn:hover, .pf-btn.active {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

/* Project grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.portfolio-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    border: 1.5px solid var(--gray-mid);
    transition: var(--transition);
}
.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.portfolio-card-link { display: block; color: inherit; }
.portfolio-card-img-wrap { position: relative; overflow: hidden; height: 240px; }
.portfolio-card-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.portfolio-card:hover .portfolio-card-img { transform: scale(1.06); }
.portfolio-card-badge {
    position: absolute; top: 14px; left: 14px;
    padding: 5px 12px;
    font-size: 10px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    border-radius: 2px;
    color: var(--white);
}
.portfolio-card-badge.residential { background: var(--red); }
.portfolio-card-badge.remodeling  { background: var(--purple); }
.portfolio-card-badge.clearing    { background: #2E7D32; }
.portfolio-card-badge.metal       { background: #1565C0; }
.portfolio-card-badge.commercial  { background: #E65100; }

.portfolio-card-body { padding: 24px 24px 28px; }
.portfolio-card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px; font-weight: 800;
    text-transform: uppercase; color: var(--black);
    margin-bottom: 10px; letter-spacing: 0.3px;
}
.portfolio-card-meta {
    display: flex; gap: 18px; flex-wrap: wrap;
    font-size: 12px; color: var(--gray-text);
    font-weight: 600; margin-bottom: 14px;
}
.portfolio-card-meta i { color: var(--red); margin-right: 4px; }
.portfolio-card-desc {
    font-size: 14px; color: var(--gray-text);
    line-height: 1.65; margin-bottom: 18px;
}
.portfolio-card-cta {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    color: var(--red);
    transition: gap 0.2s;
}
.portfolio-card:hover .portfolio-card-cta { gap: 10px; }

@media (max-width: 1100px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .portfolio-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PROJECT DETAIL PAGE
   ============================================================ */

.project-detail-section { padding: 80px 0 100px; background: var(--white); }
.project-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 60px;
    align-items: start;
}

/* Gallery */
.project-gallery { margin-bottom: 48px; }
.project-gallery-hero { border-radius: 4px; overflow: hidden; margin-bottom: 12px; }
.project-gallery-main-img {
    width: 100%; height: 480px;
    object-fit: cover; display: block;
    transition: opacity 0.3s ease;
}
.project-gallery-thumbs { display: flex; gap: 10px; }
.project-thumb {
    width: 100%; aspect-ratio: 4/3;
    object-fit: cover; border-radius: 2px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    opacity: 0.7;
    flex: 1;
}
.project-thumb:hover { opacity: 1; border-color: var(--gray-mid); }
.project-thumb.active { opacity: 1; border-color: var(--red); }

/* Write-up */
.project-writeup-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 36px; font-weight: 900;
    text-transform: uppercase; color: var(--black);
    line-height: 1.05; margin-bottom: 8px;
}
.project-writeup-title span { color: var(--red); }
.project-writeup-tagline {
    font-size: 15px; font-style: italic;
    color: var(--gray-text); margin-bottom: 28px;
}
.project-writeup p {
    font-size: 16px; color: #444;
    line-height: 1.75; margin-bottom: 18px;
}

/* Features list */
.project-features { margin-top: 36px; }
.project-features-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px; font-weight: 800;
    text-transform: uppercase; color: var(--black);
    margin-bottom: 18px; letter-spacing: 0.5px;
}
.project-features-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.project-features-list li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 15px; color: #444; line-height: 1.5;
}
.project-features-list li i { color: var(--red); margin-top: 3px; flex-shrink: 0; }

/* Sidebar */
.project-meta-card {
    background: var(--black);
    border-radius: 4px;
    padding: 28px;
    margin-bottom: 20px;
}
.project-meta-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px; font-weight: 800;
    text-transform: uppercase; color: var(--white);
    margin-bottom: 24px; letter-spacing: 0.5px;
}
.project-meta-item {
    display: flex; align-items: flex-start; gap: 14px;
    margin-bottom: 18px;
}
.project-meta-item:last-child { margin-bottom: 0; }
.project-meta-icon {
    width: 36px; height: 36px;
    border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; flex-shrink: 0;
}
.project-meta-icon.red { background: rgba(200,16,46,0.15); color: var(--red); }
.project-meta-icon.purple { background: rgba(45,14,84,0.15); color: var(--purple-light); }
.project-meta-label {
    font-size: 10px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,0.35); margin-bottom: 3px;
}
.project-meta-value { font-size: 14px; font-weight: 600; color: var(--white); }

/* CTA card in sidebar */
.project-cta-card {
    background: var(--gray-light);
    border-radius: 4px;
    padding: 28px;
    margin-bottom: 20px;
}
.project-cta-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px; font-weight: 800;
    text-transform: uppercase; color: var(--black);
    margin-bottom: 10px;
}
.project-cta-card p { font-size: 14px; color: var(--gray-text); line-height: 1.6; margin-bottom: 20px; }
.project-cta-phone {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin-top: 14px;
    font-size: 15px; font-weight: 700; color: var(--black);
    transition: color 0.2s;
}
.project-cta-phone i { color: var(--red); }
.project-cta-phone:hover { color: var(--red); }

/* Service link card */
.project-service-link-card {
    background: var(--white);
    border: 1.5px solid var(--gray-mid);
    border-radius: 4px;
    padding: 20px 24px;
}
.project-service-link-card p {
    font-size: 12px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--gray-text); margin-bottom: 12px;
}
.project-service-link {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px;
    background: var(--gray-light);
    border-radius: 2px;
    font-size: 14px; font-weight: 700;
    color: var(--black);
    transition: var(--transition);
}
.project-service-link i:first-child { color: var(--red); width: 16px; }
.project-service-link:hover { background: var(--red); color: var(--white); }
.project-service-link:hover i { color: var(--white); }

/* Related projects */
.related-projects-section { padding: 80px 0 100px; background: var(--gray-light); }
.related-header { margin-bottom: 48px; }
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Project detail responsive */
@media (max-width: 1100px) {
    .project-layout { grid-template-columns: 1fr; }
    .project-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .project-service-link-card { grid-column: 1 / -1; }
}
@media (max-width: 900px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) {
    .project-gallery-main-img { height: 300px; }
    .project-sidebar { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr; }
}

/* ---- PER-PAGE HERO BACKGROUNDS (areas pages) ---- */
.hero-bg-areas-served {
    background:
        linear-gradient(135deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.82) 100%),
        url('https://images.unsplash.com/photo-1542281286-9e0a16bb7366?w=1800&q=80') center / cover no-repeat;
}
.hero-bg-lufkin {
    background:
        linear-gradient(135deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.82) 100%),
        url('https://images.unsplash.com/photo-1570129477492-45c003edd2be?w=1800&q=80') center / cover no-repeat;
}
.hero-bg-nacogdoches {
    background:
        linear-gradient(135deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.82) 100%),
        url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1800&q=80') center / cover no-repeat;
}
.hero-bg-huntington {
    background:
        linear-gradient(135deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.82) 100%),
        url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1800&q=80') center / cover no-repeat;
}
.hero-bg-diboll {
    background:
        linear-gradient(135deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.82) 100%),
        url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1800&q=80') center / cover no-repeat;
}
.hero-bg-hudson {
    background:
        linear-gradient(135deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.82) 100%),
        url('https://images.unsplash.com/photo-1489171078254-c3365d6e359f?w=1800&q=80') center / cover no-repeat;
}
.hero-bg-zavalla {
    background:
        linear-gradient(135deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.82) 100%),
        url('https://images.unsplash.com/photo-1542281286-9e0a16bb7366?w=1800&q=80') center / cover no-repeat;
}

/* ---- ET CONSIDERATIONS SECTION (service pages) ---- */
.et-considerations-section { padding: 0 0 80px; background: var(--white); }
.et-considerations-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 64px;
    align-items: start;
}
.et-stat-stack { display: flex; flex-direction: column; gap: 20px; }
.et-stat-card {
    background: var(--black);
    border-radius: 4px;
    padding: 28px 24px;
    text-align: center;
}
.et-stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 40px; font-weight: 900;
    color: var(--red); line-height: 1;
    margin-bottom: 8px;
}
.et-stat-label {
    font-size: 13px; color: rgba(255,255,255,0.55);
    line-height: 1.5;
}
@media (max-width: 900px) {
    .et-considerations-grid { grid-template-columns: 1fr; }
    .et-stat-stack { flex-direction: row; flex-wrap: wrap; }
    .et-stat-card { flex: 1; min-width: 140px; }
}

/* ============================================================
   ABOUT — HOW WE WORK SECTION
   ============================================================ */
.about-how-section { padding: 80px 0; background: var(--gray-light); }
.about-how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}
.about-how-list { display: flex; flex-direction: column; gap: 24px; }
.about-how-item {
    display: flex; align-items: flex-start; gap: 18px;
}
.about-how-icon {
    width: 46px; height: 46px;
    background: var(--black);
    border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    color: var(--red); font-size: 18px;
    flex-shrink: 0;
}
.about-how-item h4 {
    font-size: 14px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
    color: var(--black); margin-bottom: 6px;
}
.about-how-item p { font-size: 14px; color: var(--gray-text); line-height: 1.65; }
@media (max-width: 900px) { .about-how-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ============================================================
   CONTACT — WHAT HAPPENS NEXT SECTION
   ============================================================ */
.what-next-section { padding: 80px 0; background: var(--gray-light); }
.what-next-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 56px;
}
.what-next-step {
    background: var(--white);
    border-radius: 4px;
    padding: 32px 24px;
    border-top: 3px solid var(--red);
}
.what-next-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 52px; font-weight: 900;
    color: rgba(0,0,0,0.06);
    line-height: 1; margin-bottom: 12px;
}
.what-next-step h3 {
    font-size: 15px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
    color: var(--black); margin-bottom: 10px;
}
.what-next-step p { font-size: 14px; color: var(--gray-text); line-height: 1.65; }
@media (max-width: 1000px) { .what-next-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .what-next-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PORTFOLIO — INTRO SECTION
   ============================================================ */
.portfolio-intro-section { padding: 80px 0 0; background: var(--white); }
.portfolio-intro-grid {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 64px;
    align-items: start;
}
.portfolio-intro-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.portfolio-stat {
    background: var(--black);
    border-radius: 4px;
    padding: 28px 20px;
    text-align: center;
}
.portfolio-stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 36px; font-weight: 900;
    color: var(--red); line-height: 1;
    margin-bottom: 8px;
}
.portfolio-stat-label {
    font-size: 12px; color: rgba(255,255,255,0.5);
    line-height: 1.4;
}
@media (max-width: 900px) { .portfolio-intro-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .portfolio-intro-stats { grid-template-columns: repeat(2,1fr); } }

/* ============================================================
   PROJECT DETAIL — CONTEXT / LESSONS SECTION
   ============================================================ */
.project-context-section { padding: 0 0 60px; background: var(--white); }
.project-context-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}
.project-context-quote {
    background: var(--black);
    border-radius: 4px;
    padding: 32px;
    margin-bottom: 20px;
    position: relative;
}
.project-context-quote i {
    font-size: 28px; color: var(--red);
    margin-bottom: 16px; display: block;
}
.project-context-quote p {
    font-size: 17px; font-style: italic;
    color: var(--white); line-height: 1.6;
    margin-bottom: 16px;
}
.project-context-attribution {
    font-size: 12px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}
@media (max-width: 900px) { .project-context-grid { grid-template-columns: 1fr; } }


/* ================================================================
   AREA PAGES — missing classes
   ================================================================ */

/* Service card icon (area pages use .service-card-icon, not .service-icon) */
.service-card-icon {
    width: 52px; height: 52px;
    background: var(--black-deep);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: var(--red);
    margin-bottom: 18px;
}

/* "Learn More →" link inside area service cards */
.service-link {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--red);
    text-decoration: none;
    margin-top: 14px;
    transition: gap 0.2s;
}
.service-link:hover { gap: 12px; }
.service-link i { font-size: 11px; }

/* About the Area section */
.about-section {
    padding: 100px 0;
    background: var(--white);
}
.about-section .about-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: center;
}
.about-para {
    font-size: 16px; color: var(--gray-text);
    line-height: 1.8; margin-bottom: 20px;
}

/* Stat boxes — dark card so white text is readable */
.about-stats {
    display: flex; gap: 16px;
    flex-wrap: wrap;
    margin-top: 36px;
}
.stat-box {
    flex: 1; min-width: 100px;
    background: var(--black-deep);
    padding: 20px 16px;
    border-radius: 4px;
    text-align: center;
    border-top: 3px solid var(--red);
}

/* About area image */
.about-img-wrap {
    position: relative;
}
.about-img {
    width: 100%; height: 480px;
    object-fit: cover;
    border-radius: 2px;
    display: block;
}
.about-accent-top {
    position: absolute;
    top: -16px; right: -16px;
    width: 80px; height: 80px;
    background: var(--red);
    z-index: -1;
    border-radius: 2px;
}
.about-accent-bot {
    position: absolute;
    bottom: -16px; left: -16px;
    width: 80px; height: 80px;
    background: var(--purple);
    z-index: -1;
    border-radius: 2px;
}

@media (max-width: 1024px) {
    .about-section .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-img { height: 320px; }
}
@media (max-width: 600px) {
    .about-stats { gap: 10px; }
    .stat-box { min-width: 80px; padding: 16px 10px; }
}


/* ================================================================
   AREA PAGES — missing classes
   ================================================================ */

/* Service card icon (area pages use .service-card-icon) */
.service-card-icon {
    width: 52px; height: 52px;
    background: var(--black-deep);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: var(--red);
    margin-bottom: 18px;
}

/* "Learn More →" link inside area service cards */
.service-link {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--red);
    text-decoration: none;
    margin-top: 14px;
    transition: gap 0.2s;
}
.service-link:hover { gap: 12px; }
.service-link i { font-size: 11px; }

/* About the Area section */
.about-section {
    padding: 100px 0;
    background: var(--white);
}
.about-section .about-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: center;
}
.about-para {
    font-size: 16px; color: var(--gray-text);
    line-height: 1.8; margin-bottom: 20px;
}

/* Stat boxes — dark card so white text is readable */
.about-stats {
    display: flex; gap: 16px;
    flex-wrap: wrap;
    margin-top: 36px;
}
.stat-box {
    flex: 1; min-width: 100px;
    background: var(--black-deep);
    padding: 20px 16px;
    border-radius: 4px;
    text-align: center;
    border-top: 3px solid var(--red);
}

/* About area image */
.about-img-wrap { position: relative; }
.about-img {
    width: 100%; height: 480px;
    object-fit: cover;
    border-radius: 2px;
    display: block;
}
.about-accent-top {
    position: absolute;
    top: -16px; right: -16px;
    width: 80px; height: 80px;
    background: var(--red);
    z-index: -1;
    border-radius: 2px;
}
.about-accent-bot {
    position: absolute;
    bottom: -16px; left: -16px;
    width: 80px; height: 80px;
    background: var(--purple);
    z-index: -1;
    border-radius: 2px;
}

@media (max-width: 1024px) {
    .about-section .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-img { height: 320px; }
}
@media (max-width: 600px) {
    .about-stats { gap: 10px; }
    .stat-box { min-width: 80px; padding: 16px 10px; }
}
