/* ==========================================================================
   VB PAINTER - ABOUT PAGE STYLESHEET
   Refined Design System matching Home (index.html)
   ========================================================================== */

:root {
    --bg-color: #F7F6F2;
    --bg-alt: #EFEFEA;
    --text-dark: #1A1A1A;
    --text-light: #F7F6F2;
    --text-muted: #666666;
    --accent-terracotta: #C17767;
    --accent-sage: #7A8B76;
    --border-color: rgba(26, 26, 26, 0.15);
    
    --font-heading: 'Dela Gothic One', system-ui, sans-serif;
    --font-body: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    --nav-height: 90px;
    --container-padding: 5vw;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

body {
    background-color: var(--bg-color);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 1600px;
    height: var(--nav-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--container-padding);
    z-index: 1000;
    pointer-events: none;
    transition: background 0.35s ease, backdrop-filter 0.35s ease, -webkit-backdrop-filter 0.35s ease, border-color 0.35s ease;
}

.nav-logo, .nav-links a, .nav-contact a, .nav-contact button, .mobile-nav-toggle {
    pointer-events: auto;
}

.nav-logo-img {
    max-height: 60px;
    max-width: 150px;
    height: auto;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    color: var(--text-dark);
}

.nav-links a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    color: var(--text-dark);
    font-weight: 700;
}

.nav-links a.active::after,
.nav-links a:hover::after {
    transform: translateX(0);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text-dark);
    transform: translateX(-101%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-call-btn, .nav-quote-btn {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-dark);
    padding: 0.55rem 1.1rem;
    border-radius: 100px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-quote-btn {
    background: var(--text-dark);
    color: var(--text-light);
    border-color: var(--text-dark);
}

.nav-call-btn:hover {
    background: rgba(26, 26, 26, 0.1);
}

.nav-quote-btn:hover {
    background: var(--accent-terracotta);
    border-color: var(--accent-terracotta);
    color: var(--text-light);
}

.navbar.scrolled {
    background: rgba(247, 246, 242, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

/* --- Section Global Defaults --- */
section {
    padding: 12vh 0;
    position: relative;
}

.section-header {
    margin-bottom: 3.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
}

.section-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.8rem);
    letter-spacing: -0.01em;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 2.2rem;
    background: var(--text-dark);
    color: var(--text-light);
    border-radius: 100px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    transition: transform 0.3s ease, background 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.04);
    background: var(--accent-terracotta);
}

/* --- ABOUT HERO --- */
.about-hero {
    position: relative;
    min-height: 85vh;
    padding-top: calc(var(--nav-height) + 3vh);
    padding-bottom: 6vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-color);
}

.about-hero-stage {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5vw;
    align-items: center;
}

.hero-meta-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent-terracotta);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-hero-title {
    font-size: clamp(2.5rem, 5vw, 5.2rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.about-hero-title .title-line {
    display: block;
    overflow: hidden;
}

.about-hero-title .title-line span {
    display: inline-block;
    transform: translateY(110%);
}

.about-hero-subtitle {
    font-size: clamp(1.05rem, 1.5vw, 1.3rem);
    line-height: 1.55;
    color: var(--text-muted);
    max-width: 580px;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.hero-stats-row {
    display: flex;
    gap: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item .stat-val {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-dark);
}

.stat-item .stat-lbl {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.hero-image-frame {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 6px;
    overflow: hidden;
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- PREPARATION SECTION --- */
.prep-section {
    background-color: var(--bg-alt);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.prep-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
    align-items: start;
}

.prep-visual {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 6px;
    overflow: hidden;
}

.prep-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prep-copy h3 {
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.prep-copy p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.prep-checklist {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.checklist-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.checklist-item .item-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.checklist-item .item-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* --- STANDARDS SECTION --- */
.standards-section {
    background-color: var(--bg-color);
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3vw;
}

.standard-column {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.standard-index {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--accent-sage);
    margin-bottom: 1rem;
    display: block;
}

.standard-column h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.standard-column p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--text-muted);
    font-weight: 500;
}

/* --- SERVICE AREA SECTION --- */
.region-section {
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 10vh var(--container-padding);
}

.region-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4vw;
    align-items: center;
}

.region-text h2 {
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    margin-bottom: 1.25rem;
    color: var(--text-light);
}

.region-text p {
    font-size: 1.1rem;
    line-height: 1.55;
    color: rgba(247, 246, 242, 0.85);
    margin-bottom: 2rem;
    font-weight: 500;
}

.region-location-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1.25rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
}

.loc-sep {
    color: var(--accent-sage);
}

/* --- FEATURED WORK GALLERY SECTION --- */
.work-gallery-section {
    background-color: var(--bg-color);
}

.editorial-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5vw;
}

.gallery-card {
    display: flex;
    flex-direction: column;
}

.gallery-card-image {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.gallery-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* --- CONVERSION CTA SECTION --- */
.cta-section {
    background-color: var(--bg-alt);
    text-align: center;
    padding: 12vh 0;
    border-top: 1px solid var(--border-color);
}

.cta-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.cta-wrap h2 {
    font-size: clamp(2.2rem, 4.5vw, 4.2rem);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.cta-wrap p {
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

/* --- FOOTER --- */
.footer {
    background-color: var(--bg-alt);
    border-top: 1px solid var(--border-color);
    padding: 5vh 0 3vh;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.85rem;
}

.glass-credit {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    font-weight: 700;
    color: var(--text-dark);
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
    .about-hero-stage, .prep-grid, .region-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .standards-grid, .editorial-gallery-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 72px;
        --container-padding: 1.25rem;
    }

    section {
        padding: 4.5rem 0;
    }

    .about-hero {
        padding-top: calc(var(--nav-height) + clamp(3.25rem, 7vh, 4.25rem));
    }

    .about-hero-title {
        font-size: clamp(2.1rem, 7.5vw, 2.8rem);
        line-height: 1.1;
        margin-bottom: 1.25rem;
    }

    .about-hero-lead {
        font-size: 1rem;
        line-height: 1.55;
    }

    .hero-image-frame {
        aspect-ratio: 16/10;
        max-height: 320px;
    }

    .prep-visual {
        aspect-ratio: 16/10;
        max-height: 300px;
    }

    .prep-copy h3, .region-copy h3, .section-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
        line-height: 1.12;
    }

    .prep-copy p, .region-copy p {
        font-size: 0.98rem;
        line-height: 1.55;
    }

    .hero-stats-row {
        gap: 1.25rem;
    }

    .nav-links {
        display: none;
    }

    .nav-call-btn {
        display: none;
    }

    .mobile-nav-toggle {
        display: flex;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .nav-logo-img {
        max-height: 42px;
    }

    .nav-call-btn, .nav-quote-btn {
        font-size: 0.75rem;
        padding: 0.4rem 0.7rem;
    }
}

@media (max-width: 360px) {
    .nav-call-btn {
        display: none;
    }
}

/* --- PREFERS REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .about-hero-title .title-line span,
    .hero-image-frame img {
        transform: none !important;
    }
}
