/* ═══════════════════════════════════════════════════════════
   THE BARN AUTOMOTIVE - Blue-Collar Auto Shop Design
   Rugged, industrial, authentic - built for a real shop.
   ═══════════════════════════════════════════════════════════ */

/* ─── RESET ─── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0d0d0d;
    color: #d4cfc5;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    padding-top: 68px;
    margin: 0;
}



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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.25s;
}

ul {
    list-style: none;
}

/* ─── TOKENS ─── */
:root {
    --barn-red: #C8102E;
    --barn-red-hover: #a80d25;
    --barn-red-glow: rgba(200, 16, 46, 0.25);

    --steel: #3a3a3a;
    --steel-light: #4a4a4a;
    --dark: #0d0d0d;
    --dark-2: #131313;
    --dark-3: #1a1a1a;
    --dark-4: #242424;
    --warm-white: #f0ebe0;
    --warm-gray: #a8a090;
    --warm-gray-light: #ccc5b5;
    --grease: #1e1c18;
    --concrete: #2a2824;
    --radius: 4px;
    --radius-lg: 8px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    --container: 1200px;
    --transition: 0.3s ease;
    --stripe-color: rgba(255, 255, 255, 0.015);
}

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

/* ─── TYPOGRAPHY ─── */
h1,
h2,
h3,
h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: var(--warm-white);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
}

p {
    color: var(--warm-gray);
    font-size: 0.95rem;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.9rem;
    padding: 14px 28px;
    border-radius: var(--radius);
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
}

.btn-primary {
    background: var(--barn-red);
    color: #fff;
    border-color: var(--barn-red);
    box-shadow: 0 2px 8px rgba(200, 16, 46, 0.2);
}

.btn-primary:hover {
    background: var(--barn-red-hover);
    border-color: var(--barn-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(200, 16, 46, 0.4);
}

.btn-ghost {
    background: transparent;
    color: var(--warm-white);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
    border-color: var(--warm-white);
    background: rgba(255, 255, 255, 0.06);
}

.btn-outline {
    background: transparent;
    color: var(--warm-white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--barn-red);
    color: var(--barn-red);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.link-arrow {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--barn-red);
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.link-arrow:hover {
    color: var(--barn-red);
    letter-spacing: 0.12em;
}

.text-center {
    text-align: center;
}

/* ═══ SITE HEADER — rebuilt from scratch, zero-twitch ═══ */
/* No transitions, no transforms, no will-change, no backdrop-filter on the header.
   It is a dead-simple fixed bar. Period. */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 68px;
    z-index: 9999;
    background: #0d0d0d;
    border-bottom: 2px solid var(--barn-red);
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    overflow: visible;
}

/* ═══ NAVBAR ═══ */
.navbar {
    height: 68px;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 42px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--warm-gray);
    padding: 8px 16px;
    border-radius: var(--radius);
    position: relative;
}

.nav-link:hover {
    color: var(--warm-white);
    background: rgba(200, 16, 46, 0.15);
}

.nav-link.active {
    color: var(--warm-white);
    background: rgba(200, 16, 46, 0.15);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: var(--barn-red);
}

.nav-cta {
    font-family: 'Oswald', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 10px 22px;
    background: var(--barn-red);
    color: #fff;
    border-radius: var(--radius);
    box-shadow: 0 2px 8px rgba(200, 16, 46, 0.2);
}

.nav-cta:hover {
    background: var(--barn-red-hover);
    box-shadow: 0 4px 16px rgba(200, 16, 46, 0.35);
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10001;
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    background: var(--warm-white);
    transition: transform 0.3s, opacity 0.3s;
    border-radius: 1px;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* MOBILE MENU */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: rgba(13, 13, 13, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-link {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--warm-gray);
    padding: 8px 0;
}

.mobile-link:hover {
    color: var(--warm-white);
}

.mobile-cta {
    margin-top: 16px;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 14px 32px;
    background: var(--barn-red);
    color: #fff;
    border-radius: var(--radius);
}

/* ═══ HERO ═══ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) contrast(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.45) 0%,
            rgba(0, 0, 0, 0.15) 50%,
            rgba(0, 0, 0, 0.05) 100%);
}

/* Grunge bottom edge */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--barn-red);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin-left: 8%;
    margin-right: auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--warm-white);
    margin-bottom: 20px;
    padding: 8px 16px;
    border-left: 3px solid var(--barn-red);
    background: rgba(200, 16, 46, 0.08);
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.4rem);
    margin-bottom: 20px;
    color: var(--warm-white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

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

.hero-sub {
    font-size: 1.05rem;
    color: var(--warm-gray-light);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ═══ SECTION HEADER ═══ */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--barn-red);
    margin-bottom: 12px;
}

/* Decorative dashes removed as per request */
.section-tag::before,
.section-tag::after {
    display: none;
}

.section-header h2 span {
    color: var(--barn-red);
}

.section-sub {
    max-width: 560px;
    margin: 12px auto 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ═══ TRUST STRIP ═══ */
.trust-strip {
    padding: 72px 0;
    background: var(--dark-2);
    position: relative;
    overflow: hidden;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.trust-card {
    text-align: left;
    padding: 32px 28px;
    background: var(--warm-white);
    border-radius: 12px;
    transition: all 0.4s ease;
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.trust-icon {
    width: auto;
    height: auto;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #1a1a1a;
}

.trust-card h3 {
    font-size: 1rem;
    margin-bottom: 12px;
    letter-spacing: 0.04em;
    color: #1a1a1a;
}

.trust-card p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: #555;
}

/* ═══ DIVISIONS ═══ */
.divisions {
    padding: 100px 0;
    background: var(--dark-3);
    position: relative;
    overflow: hidden;
}

/* Diagonal stripes texture on dark background */
.divisions::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(-45deg,
            transparent,
            transparent 14px,
            rgba(255, 255, 255, 0.018) 14px,
            rgba(255, 255, 255, 0.018) 15px);
    pointer-events: none;
}

.divisions .container {
    position: relative;
    z-index: 1;
}

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

.division-card {
    background: var(--dark-4);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
}

.division-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.division-img {
    padding: 16px 16px 0 16px;
    overflow: hidden;
    position: relative;
}

.division-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.6s ease;
}

.division-card:hover .division-img img {
    transform: scale(1.04);
}

.division-body {
    padding: 24px 24px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.division-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--barn-red);
    margin-bottom: 4px;
    display: block;
}

.division-body h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.division-body p {
    margin-bottom: 20px;
    line-height: 1.75;
    font-size: 0.9rem;
    color: var(--warm-gray);
    flex: 1;
}

.division-body .link-arrow {
    margin-top: auto;
}

/* ═══ CTA BANNER ═══ */
.cta-banner {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.9), rgba(100, 8, 16, 0.95));
}

/* Cross-hatch pattern on CTA */
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.05) 2px,
            rgba(0, 0, 0, 0.05) 4px);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 16px;
    color: #fff;
}

.cta-content h2 span {
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btns .btn-primary {
    background: #fff;
    color: var(--barn-red);
    border-color: #fff;
    font-weight: 700;
}

.cta-btns .btn-primary:hover {
    background: var(--warm-white);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.cta-btns .btn-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-btns .btn-ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* ═══ WORK PREVIEW ═══ */
.work-preview {
    padding: 100px 0;
    background: var(--dark-2);
    position: relative;
}

/* Subtle texture */
.work-preview::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg,
            transparent,
            transparent 60px,
            rgba(255, 255, 255, 0.008) 60px,
            rgba(255, 255, 255, 0.008) 61px);
    pointer-events: none;
}

.work-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.work-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    display: block;
    aspect-ratio: 4/3;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.work-item:hover {
    border-color: var(--barn-red);
}

.work-item.large {
    grid-row: span 2;
    aspect-ratio: auto;
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: contrast(1.05) saturate(0.9);
}

.work-item:hover img {
    transform: scale(1.06);
    filter: contrast(1.1) saturate(1);
}

.work-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}

.work-label span {
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--barn-red);
}

.work-label h4 {
    font-size: 1rem;
    text-transform: none;
    letter-spacing: 0;
}

/* ═══ CONTACT STRIP (homepage bottom) ═══ */
.contact-strip {
    padding: 72px 0;
    background: var(--grease);
    border-top: 3px solid var(--barn-red);
    border-bottom: 3px solid var(--barn-red);
    position: relative;
    overflow: hidden;
}

.contact-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(-45deg,
            transparent,
            transparent 20px,
            var(--stripe-color) 20px,
            var(--stripe-color) 21px);
    pointer-events: none;
}

.contact-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cs-text h2 {
    margin-bottom: 8px;
}

.cs-text p {
    font-size: 1rem;
}

.cs-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ═══ PAGE HERO (inner pages) ═══ */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 360px;
    max-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--barn-red);
    z-index: 3;
}

.page-hero.short {
    min-height: 300px;
    max-height: 400px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 13, 0.65);
}

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

.page-hero-content h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    margin-bottom: 8px;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.5);
}

.page-hero-sub {
    color: var(--warm-gray-light);
    font-size: 1.05rem;
}

/* ═══ SERVICES ═══ */
.services-section {
    padding: 80px 0 60px;
    background: var(--dark-2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.service-card {
    background: var(--dark-3);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-left: 3px solid var(--barn-red);
    transition: all 0.4s ease;
    position: relative;
}

.service-card:hover {
    border-left-color: var(--barn-red);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    background: var(--dark-4);
}

.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: rgba(200, 16, 46, 0.1);
    border: 1px solid rgba(200, 16, 46, 0.2);
    color: var(--barn-red);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.service-card p {
    margin-bottom: 20px;
    font-size: 0.88rem;
    line-height: 1.7;
}

.service-card.emergency {
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.1), var(--dark-3));
    border-left-color: var(--barn-red);
    border-left-width: 4px;
}

.badge-24 {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    background: var(--barn-red);
    color: #fff;
    padding: 4px 12px;
    border-radius: 2px;
}

.emergency-link {
    color: var(--barn-red) !important;
    font-weight: 600;
}

.services-bottom {
    text-align: center;
    padding: 40px;
    background: var(--dark-4);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-top: 3px solid var(--barn-red);
}

.services-bottom h3 {
    margin-bottom: 16px;
    font-size: 1.3rem;
}

/* ═══ GALLERY ═══ */
.gallery-section {
    padding: 80px 0;
    background: var(--dark-2);
}

.gallery-masonry {
    columns: 3;
    column-gap: 16px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 16px;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.gallery-item:hover {
    border-color: var(--barn-red);
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

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

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-label {
    opacity: 1;
}

.gallery-label span {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
}

/* ═══ ABOUT ═══ */
.about-section {
    padding: 80px 0;
    background: var(--dark-2);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 80px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    border: 2px solid rgba(200, 16, 46, 0.15);
}

.about-image-caption {
    margin-top: 12px;
    text-align: center;
}

.about-image-caption strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: var(--warm-white);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.about-image-caption span {
    font-size: 0.8rem;
    color: var(--barn-red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-story h2 {
    margin-bottom: 24px;
}

.about-story p {
    margin-bottom: 16px;
    font-size: 0.93rem;
}

.about-story blockquote {
    margin-top: 28px;
    padding: 24px 28px;
    border-left: 4px solid var(--barn-red);
    background: rgba(200, 16, 46, 0.06);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--warm-gray-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

.about-story blockquote cite {
    display: block;
    margin-top: 12px;
    font-style: normal;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    color: var(--barn-red);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* TIMELINE */
.timeline {
    margin-bottom: 80px;
}

.timeline-heading {
    text-align: center;
    margin-bottom: 40px;
}

.timeline-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    position: relative;
}

.timeline-row::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 8%;
    right: 8%;
    height: 3px;
    background: var(--dark-4);
}

.timeline-step {
    text-align: center;
    position: relative;
}

.tl-year {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--barn-red);
    margin-bottom: 8px;
}

.tl-dot {
    width: 16px;
    height: 16px;
    background: var(--barn-red);
    border: 3px solid var(--dark-2);
    border-radius: 50%;
    margin: 0 auto 12px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 8px var(--barn-red-glow);
}

.timeline-step p {
    font-size: 0.82rem;
    line-height: 1.5;
}

/* TEAM BANNER */
.team-banner {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 360px;
    border: 2px solid rgba(255, 255, 255, 0.04);
}

.team-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 13, 13, 0.9), transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
}

.team-banner-overlay h3 {
    margin-bottom: 8px;
    font-size: 1.6rem;
}

.team-banner-overlay p {
    color: var(--warm-gray-light);
}

/* ═══ CONTACT ═══ */
.contact-section {
    padding: 80px 0;
    background: var(--dark-2);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form-wrap h2 {
    margin-bottom: 28px;
}

/* FORM */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--warm-gray);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--dark-3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    color: var(--warm-white);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--barn-red);
    box-shadow: 0 0 0 2px var(--barn-red-glow);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* CONTACT INFO */
.contact-info-card {
    background: var(--dark-3);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-top: 3px solid var(--barn-red);
    margin-bottom: 20px;
}

.contact-info-card h2 {
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.contact-tagline {
    margin-bottom: 24px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.info-item svg {
    color: var(--barn-red);
    flex-shrink: 0;
    margin-top: 2px;
}

.info-item strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--warm-white);
    margin-bottom: 2px;
}

.info-item a {
    color: var(--warm-gray);
    font-size: 0.88rem;
}

.info-item a:hover {
    color: var(--barn-red);
}

.info-item span {
    color: var(--warm-gray);
    font-size: 0.88rem;
}

.info-heading {
    font-size: 0.9rem;
    margin-bottom: 12px;
    color: var(--warm-white);
}

.contact-info-card hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin: 20px 0;
}

.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.04);
}

/* ═══ FOOTER ═══ */
.footer {
    background: var(--dark);
    border-top: 3px solid var(--barn-red);
    padding: 64px 0 0;
    position: relative;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-logo-img {
    height: 36px;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.footer-brand p {
    font-size: 0.88rem;
    margin-bottom: 16px;
}

.footer-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-tags span {
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border: 1px solid rgba(200, 16, 46, 0.3);
    border-radius: 2px;
    color: var(--barn-red);
    background: rgba(200, 16, 46, 0.05);
}

.footer-col h4 {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
    color: var(--warm-white);
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--barn-red);
}

.footer-col a,
.footer-col span {
    display: block;
    font-size: 0.85rem;
    color: var(--warm-gray);
    padding: 4px 0;
    transition: color 0.25s;
}

.footer-col a:hover {
    color: var(--barn-red);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--warm-gray);
}

.footer-bottom a {
    color: var(--barn-red);
}

.footer-bottom a:hover {
    color: var(--warm-white);
}

/* ═══ ANIMATIONS ═══ */
[data-anim] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-anim].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══ LIGHTBOX ═══ */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    animation: lbFade 0.25s ease;
}

.lightbox-overlay img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius);
    animation: lbScale 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes lbFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes lbScale {
    from {
        transform: scale(0.92);
    }

    to {
        transform: scale(1);
    }
}

/* ═══ BLOG MODAL ═══ */
.blog-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
    animation: lbFade 0.25s ease;
    padding: 40px;
    overflow-y: auto;
}

.blog-modal-content {
    background: var(--dark-3);
    border-radius: var(--radius-lg);
    max-width: 720px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 36px;
    position: relative;
    border-top: 3px solid var(--barn-red);
}

.blog-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    color: var(--warm-white);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
}

.blog-modal-close:hover {
    background: var(--barn-red);
    border-color: var(--barn-red);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .divisions-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }

    .work-grid {
        grid-template-columns: 1fr 1fr;
    }

    .work-item.large {
        grid-row: span 1;
        aspect-ratio: 4/3;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        max-width: 640px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .timeline-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .gallery-masonry {
        columns: 2;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .hero {
        min-height: 500px;
    }

    .hero-content {
        margin: 0 auto;
        padding: 0 16px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-sub {
        font-size: 0.95rem;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .work-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        text-align: left;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

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

    .cs-actions {
        justify-content: center;
    }

    .timeline-row {
        grid-template-columns: 1fr;
    }

    .gallery-masonry {
        columns: 2;
        gap: 12px;
        max-width: 100%;
        margin: 0;
    }

    .cta-content h2 {
        font-size: 2.4rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
    }

    .cta-btns {
        flex-direction: row;
        justify-content: center;
        gap: 8px;
    }
    
    .cta-btns .btn {
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }
}