/* ============================================
   EVERFORM CONTRACTING - DESIGN SYSTEM
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
    /* Typography — matches Everform Shopify brand: Archivo for display, Questrial for body */
    --font-display: 'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Questrial', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Colors - Primary */
    --black: #0A0A0A;
    --white: #FFFFFF;
    --cream: #FAFAF8;

    /* Colors - Brand */
    --forest: #1B4D3E;
    --forest-light: #256B52;
    --forest-dark: #153D31;

    /* Colors - Neutrals */
    --gray-900: #111111;
    --gray-800: #1A1A1A;
    --gray-700: #2E2E2E;
    --gray-600: #525252;
    --gray-500: #737373;
    --gray-400: #A3A3A3;
    --gray-300: #D4D4D4;
    --gray-200: #E8E8E8;
    --gray-100: #F3F3F3;

    /* Colors - Accent */
    --whatsapp: #25D366;
    --red: #DC2626;

    /* Spacing */
    --page-margin: 14px;
    --section-gap: 80px;
    --content-gap: 40px;

    /* Border Radius - Sharp/Professional for B2B */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 10px;
    --radius-2xl: 12px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--black);
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    margin-bottom: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--page-margin);
}

.section {
    padding: var(--section-gap) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--content-gap);
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--forest);
    margin-bottom: 12px;
}

.section-title {
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   TOP BANNER
   ============================================ */
.top-banner {
    background: var(--forest);
    padding: 10px var(--page-margin);
}

.top-banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.banner-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 500;
}

.banner-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px var(--page-margin);
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 45px;
    width: auto;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--black);
}

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

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.nav-link:hover {
    color: var(--black);
    background: var(--gray-100);
}

.nav-link.active {
    color: var(--forest);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-primary {
    background: var(--forest);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--forest-light);
}

.btn-outline {
    background: transparent;
    color: var(--black);
    border: 1.5px solid var(--gray-300);
}

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

.btn-white {
    background: var(--white);
    color: var(--black);
}

.btn-white:hover {
    background: var(--gray-100);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
}

.mobile-menu-btn svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

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

.hero-bg img,
.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-poster {
    position: absolute;
    inset: 0;
    z-index: 1;
    transition: opacity .5s ease;
}

.hero-poster.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.35) 40%,
        rgba(0,0,0,0.15) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 48px 72px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    margin-bottom: 20px;
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.05;
}

.hero-subtitle {
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

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

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-stat {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.hero-stat-number {
    font-family: var(--font-display, 'Archivo', -apple-system, BlinkMacSystemFont, sans-serif);
    font-size: 1.8rem;
    color: var(--white);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.4);
}

@media (max-width: 640px) {
    .hero-stats {
        gap: 24px;
        margin-top: 36px;
        padding-top: 24px;
    }

    .hero-stat-number {
        font-size: 1.4rem;
    }
}

/* Page Hero (shorter version) */
.page-hero {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-hero .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 24px 48px;
}

.page-hero .hero-overlay {
    background: rgba(0,0,0,0.5);
}

/* Portrait-orientation hero photo: taller frame + biased focal point so more of the top of the image is visible */
.page-hero--portrait {
    min-height: 580px;
}
.page-hero--portrait .hero-bg img {
    object-position: center 50%;
}

/* ============================================
   ABOUT INTRO SECTION
   ============================================ */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-content {
    padding-right: 40px;
}

.about-intro-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.about-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   SERVICES PREVIEW
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-content {
    padding: 24px;
}

.service-card-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.service-card-desc {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--forest);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-card-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.service-card:hover .service-card-link svg {
    transform: translateX(4px);
}

/* Service Preview Cards (Homepage) */
.services-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-preview-card {
    position: relative;
    display: block;
    aspect-ratio: 3/4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
}

.service-preview-image {
    position: absolute;
    inset: 0;
}

.service-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-preview-card:hover .service-preview-image img {
    transform: scale(1.05);
}

.service-preview-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
    transition: background var(--transition-base);
}

.service-preview-card:hover .service-preview-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.3) 100%);
}

.service-preview-content {
    position: absolute;
    inset: 0;
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
}

.service-preview-number {
    position: absolute;
    top: 24px;
    left: 28px;
    font-family: var(--font-display);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
}

.service-preview-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 10px;
}

.service-preview-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    margin-bottom: 0;
}

.service-preview-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-preview-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.service-preview-card:hover .service-preview-link svg {
    transform: translate(3px, -3px);
}

/* Large Service Cards */
.services-large-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-large-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-large-header {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.service-large-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-large-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.service-large-header-title {
    color: var(--white);
    font-size: 1.5rem;
}

.service-large-body {
    padding: 30px;
}

.service-list {
    list-style: none;
    margin-bottom: 24px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.95rem;
    color: var(--gray-700);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li svg {
    width: 18px;
    height: 18px;
    color: var(--forest);
    flex-shrink: 0;
}

/* ============================================
   PROJECTS SECTION
   ============================================ */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.project-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.project-card-image {
    position: absolute;
    inset: 0;
}

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

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

.project-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: background var(--transition-base);
}

.project-card:hover .project-card-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
}

.project-card-title {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.project-card-location {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

/* ============================================
   WHY CHOOSE US / FEATURES
   ============================================ */
.features-section {
    background: var(--gray-900);
    color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: var(--forest-light);
}

.feature-title {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-section {
    background: var(--forest);
}

/* Testimonial stage — arrows left/right */
.testimonial-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-arrow {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-arrow:hover {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.1);
}

.testimonial-slider {
    flex: 1;
    min-width: 0;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-content {
    color: var(--white);
    text-align: center;
}


.testimonial-quote {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    margin-bottom: 32px;
}

.testimonial-author {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.3);
}

.testimonial-person {
    margin-bottom: 28px;
}

.testimonial-name {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    margin-bottom: 4px;
}

.testimonial-role {
    color: rgba(255,255,255,0.4);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.testimonial-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

/* ============================================
   STATS SECTION
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--forest);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
/* ============================================
   STORE BANNER (inner pages)
   ============================================ */
.store-banner {
    background: var(--forest, #1B4D3E);
    padding: 60px 0;
}

.store-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.store-banner-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
}

.store-banner-title {
    font-family: var(--font-display, 'Archivo', -apple-system, BlinkMacSystemFont, sans-serif);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
}

.store-banner-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    line-height: 1.6;
    max-width: 500px;
}

.store-banner-btn {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .store-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .store-banner-desc {
        max-width: 100%;
    }
}

.cta-section {
    background: #F5F5F3;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    color: var(--black);
    margin-bottom: 16px;
}

.cta-subtitle {
    color: rgba(0,0,0,0.5);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

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

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story.reverse {
    direction: rtl;
}

.about-story.reverse > * {
    direction: ltr;
}

.about-story-content {
    padding: 20px;
}

.about-story-content .section-title {
    margin-bottom: 24px;
}

.about-story-lead {
    font-size: 1.15rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-story-content p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-story-content p:last-child {
    margin-bottom: 0;
}

.about-story-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.about-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
}

.value-icon svg {
    width: 28px;
    height: 28px;
    color: var(--forest);
}

.value-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.value-desc {
    color: var(--gray-500);
    font-size: 0.95rem;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid var(--gray-200);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse > * {
    direction: ltr;
}

.service-detail-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content h3 {
    margin-bottom: 16px;
}

.service-detail-content p {
    color: var(--gray-600);
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: var(--gray-700);
}

.service-features li svg {
    width: 20px;
    height: 20px;
    color: var(--forest);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================
   PROJECTS PAGE
   ============================================ */
.projects-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: var(--white);
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--forest);
    border-color: var(--forest);
    color: var(--white);
}

.projects-grid-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card-large {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.project-card-large:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.project-card-large-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

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

.project-card-large:hover .project-card-large-image img {
    transform: scale(1.05);
}

.project-card-large-content {
    padding: 24px;
}

.project-card-large-category {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.project-card-large-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.project-card-large-location {
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* Modern Project Cards - Full Bleed */
.projects-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 320px;
    gap: 16px;
}

.project-card-modern {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.project-card-modern.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.project-card-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.project-card-modern-image {
    position: absolute;
    inset: 0;
}

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

.project-card-modern:hover .project-card-modern-image img {
    transform: scale(1.08);
}

.project-card-modern-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 40%, transparent 100%);
    transition: background var(--transition-fast);
}

.project-card-modern:hover .project-card-modern-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
}

.project-card-modern-category {
    display: inline-block;
    align-self: flex-start;
    padding: 4px 10px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
    margin-bottom: 12px;
}

.project-card-modern-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 4px;
}

.project-card-modern-location {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* ============================================
   PROJECT DETAIL PAGE
   ============================================ */
.project-hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

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

.project-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-hero-bg img.loaded {
    opacity: 1;
}

.project-hero-overlay {
    position: absolute;
    inset: 0;
    /* Bottom-weighted: dark only where the title sits, transparent across the
       top ~40% so the architectural photo reads clean. */
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 35%, rgba(0,0,0,0) 60%);
}

.project-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px var(--page-margin);
}

.project-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 24px;
    transition: color var(--transition-fast);
}

.project-back-link:hover {
    color: var(--white);
}

.project-back-link svg {
    width: 18px;
    height: 18px;
}

.project-hero-category {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
    margin-bottom: 16px;
}

.project-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 8px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.project-hero-location {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

/* Project Details Bar */
.project-details-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 0;
}

.project-details-bar-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.project-detail-bar-item {
    padding: 24px 20px;
    border-right: 1px solid var(--gray-100);
    text-align: center;
}

.project-detail-bar-item:last-child {
    border-right: none;
}

.project-detail-bar-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-400);
    margin-bottom: 6px;
}

.project-detail-bar-value {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--black);
}

/* Project Intro Simple */
.project-intro-simple {
    padding: 60px 0;
}

.project-intro-simple-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.project-intro-simple-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--gray-600);
}

/* Project Gallery */
.project-gallery {
    background: var(--white);
    padding: 0;
}

.project-gallery-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 4px;
}

.project-gallery-grid-v2 {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 4px;
    height: 500px;
}

.project-gallery-item {
    overflow: hidden;
}

.project-gallery-item img,
.project-gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

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

.project-gallery-large {
    grid-row: span 2;
}

.project-gallery-grid--two-col {
    grid-template-columns: 1.5fr 1fr;
}

.project-gallery-tall {
    grid-row: span 2;
}

.project-gallery-wide {
    grid-column: span 2;
}

.project-gallery-video-tile,
.project-gallery-video-tile + .project-gallery-item {
    /* 40vw ≈ (2.5/3.5 of grid width) × 9/16 → native 16:9 at any screen size.
       Applied to both the video tile AND the tile beside it so row 1 has a
       single, flush height — no gap below the row. */
    height: min(40vw, 72vh);
}

/* When the gallery contains a video tile, pin row 1 to the video height and
   make every subsequent row a uniform landscape height. Overrides the base
   `grid-template-rows: 1fr 1fr`, which was causing row 2 to absorb extra
   vertical space and leave a visible gap below the video row. */
.project-gallery-grid:has(.project-gallery-video-tile) {
    grid-template-rows: min(40vw, 72vh);
    grid-auto-rows: min(24vw, 340px);
}

/* Mobile overrides for the Costa-style video gallery: let heights flow from
   content, and don't let the tall tile span 2 cols (which orphans a cell in
   the 2-col mobile grid and creates a white gap). */
@media (max-width: 768px) {
    .project-gallery-video-tile,
    .project-gallery-video-tile + .project-gallery-item {
        height: auto;
    }
    .project-gallery-grid:has(.project-gallery-video-tile) {
        grid-template-rows: auto;
        grid-auto-rows: auto;
    }
    .project-gallery-grid:has(.project-gallery-video-tile) .project-gallery-tall {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Project Content Section */
.project-content-section {
    background: var(--white);
    padding: 80px 0;
}

.project-content-wrapper {
    max-width: 100%;
}

.project-content-block {
    margin-bottom: 32px;
}

.project-content-block:last-child {
    margin-bottom: 0;
}

.project-content-label {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 16px;
}

.project-content-block p {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--gray-600);
}

.project-services-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-service-tag {
    padding: 10px 20px;
    background: var(--cream);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
}

/* Project Insight */
.project-insight {
    background: var(--white);
}

.project-insight-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.project-insight-card p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 40px;
}

.project-awards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.project-award {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    background: var(--cream);
    border-radius: var(--radius-lg);
}

.project-award svg {
    width: 32px;
    height: 32px;
    color: var(--forest);
    flex-shrink: 0;
}

.project-award div {
    text-align: left;
}

.project-award strong {
    display: block;
    font-size: 0.95rem;
    color: var(--black);
    margin-bottom: 2px;
}

.project-award span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* Project Services Cards */
.project-services-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.project-service-card {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
}

.project-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.project-service-card-image {
    position: absolute;
    inset: 0;
}

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

.project-service-card:hover .project-service-card-image img {
    transform: scale(1.08);
}

.project-service-card-name {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: stretch;
}

.contact-info {
    background: var(--forest);
    color: var(--white);
    padding: 50px 40px;
    border-radius: var(--radius-xl);
}

.contact-info-title {
    color: var(--white);
    margin-bottom: 16px;
}

.contact-info-subtitle {
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 22px;
    height: 22px;
}

.contact-item-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.6);
    margin-bottom: 4px;
}

.contact-item-value {
    font-size: 1.05rem;
}

.contact-item-value a {
    color: var(--white);
}

.contact-item-value a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 50px 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}

.contact-form-wrapper .contact-form-clean {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-form-wrapper .contact-form-clean textarea {
    flex: 1;
    min-height: 120px;
}

.contact-form-title {
    margin-bottom: 8px;
}

.contact-form-subtitle {
    color: var(--gray-500);
    margin-bottom: 32px;
}

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

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--forest);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--forest);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.form-submit:hover {
    background: var(--forest-light);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Simple Footer */
.footer.footer-simple {
    padding: 40px 0;
}

.footer-simple-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.footer-simple-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.footer-simple-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-simple-links a:hover {
    color: var(--white);
}

.footer-simple-copy {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
}

.footer .logo-text {
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    margin-top: 16px;
    font-size: 0.9rem;
    max-width: 300px;
}

.footer-title {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.5);
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    opacity: 0.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
}

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

/* ============================================
   CHAT WIDGET
   ============================================ */
.chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--forest);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-fast);
}

.chat-toggle:hover {
    background: var(--forest-light);
    transform: scale(1.05);
}

.chat-toggle svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.chat-popup {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 300px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);
    transition: all var(--transition-base);
}

.chat-widget.active .chat-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-popup-header {
    background: var(--forest);
    color: var(--white);
    padding: 20px;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.chat-popup-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.chat-popup-subtitle {
    font-size: 0.85rem;
    opacity: 0.8;
}

.chat-popup-body {
    padding: 20px;
}

.chat-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    text-decoration: none;
    color: var(--gray-700);
    transition: all var(--transition-fast);
}

.chat-option:last-child {
    margin-bottom: 0;
}

.chat-option:hover {
    background: var(--gray-200);
}

.chat-option svg {
    width: 20px;
    height: 20px;
    color: var(--forest);
}

.chat-option.whatsapp {
    background: var(--whatsapp);
    color: var(--white);
}

.chat-option.whatsapp svg {
    color: var(--white);
}

.chat-option.whatsapp:hover {
    background: #20bd5a;
}

/* ============================================
   CLIENTS BANNER (Animated Logo Scroll)
   ============================================ */
.clients-banner {
    background: var(--white);
    padding: 40px 0;
    overflow: hidden;
}

.clients-banner-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
    margin-bottom: 24px;
}

.clients-track {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.clients-track-inner {
    display: flex;
    width: max-content;
}

.clients-logo-set {
    display: flex;
    gap: 60px;
    flex-shrink: 0;
    padding-right: 60px;
    animation: scrollLogos 30s linear infinite;
}

.client-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
}

.client-logo span {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-500);
    white-space: nowrap;
}

.client-logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: all var(--transition-fast);
}

.client-logo:hover img {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.clients-track:hover .clients-logo-set {
    animation-play-state: paused;
}

.clients-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.clients-stat {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.clients-stat-number {
    font-family: var(--font-display, 'Archivo', -apple-system, BlinkMacSystemFont, sans-serif);
    font-size: 1.8rem;
    color: var(--black);
    line-height: 1;
}

.clients-stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(0,0,0,0.4);
}

@media (max-width: 640px) {
    .clients-stats {
        gap: 32px;
    }

    .clients-stat-number {
        font-size: 1.4rem;
    }
}

/* ============================================
   STATS SECTION (compact version)
   ============================================ */
.stats-section {
    background: var(--forest);
    padding: 50px 0;
}

.stats-section .stats-grid {
    gap: 20px;
}

.stats-section .stat-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 30px 20px;
}

.stats-section .stat-number {
    color: var(--white);
}

.stats-section .stat-label {
    color: rgba(255,255,255,0.7);
}

/* ============================================
   STORE CTA
   ============================================ */
.store-cta {
    padding: 0 var(--page-margin, 14px);
    margin: var(--section-gap, 80px) 0;
}

.store-cta-inner {
    max-width: 1400px;
    margin: 0 auto;
    background: var(--black);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

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

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

.store-cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(10, 10, 10, 0.72) 0%,
        rgba(10, 10, 10, 0.48) 38%,
        rgba(10, 10, 10, 0.15) 70%,
        rgba(10, 10, 10, 0.05) 100%
    );
}

.store-cta-layout {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 72px;
    min-height: 440px;
    gap: 60px;
}

.store-cta-content {
    max-width: 520px;
}

.store-cta-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 24px;
}

.store-cta-heading {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 500;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.store-cta-desc {
    color: rgba(255,255,255,0.5);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 44px;
}

.store-cta-actions {
    display: flex;
    align-items: center;
    gap: 32px;
}

.store-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 40px;
    background: var(--white);
    color: var(--black);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.01em;
}

.store-cta-btn svg {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.store-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.store-cta-btn:hover svg {
    transform: translateX(4px);
}

.store-cta-link {
    color: rgba(255,255,255,0.45);
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding-bottom: 2px;
}

.store-cta-link:hover {
    color: rgba(255,255,255,0.8);
    border-color: rgba(255,255,255,0.4);
}

/* ============================================
   STORE NUDGE (text-only, for inner pages)
   ============================================ */
.store-nudge {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.store-nudge-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(0,0,0,0.5);
    max-width: 560px;
    margin: 0 auto 20px;
}

.store-nudge-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--forest, #1B4D3E);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.store-nudge-link:hover {
    gap: 12px;
}

/* ============================================
   SECTION CTA LINK
   ============================================ */
.section-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: gap 0.3s ease;
}

.section-cta-link svg {
    transition: transform 0.3s ease;
}

.section-cta-link:hover {
    gap: 12px;
}

.section-cta-link:hover svg {
    transform: translate(2px, -2px);
}

/* ============================================
   ABOUT PULL QUOTE
   ============================================ */
.about-pullquote {
    padding: 100px 0;
    text-align: center;
    background: var(--forest);
}

.pullquote-text {
    font-family: var(--font-display, 'Archivo', -apple-system, BlinkMacSystemFont, sans-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.35;
    color: var(--white);
    max-width: 780px;
    margin: 0 auto 32px;
}

.pullquote-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
}

.pullquote-link:hover {
    color: var(--white);
    gap: 12px;
}

@media (max-width: 640px) {
    .about-pullquote {
        padding: 72px 0;
    }
}

/* ============================================
   CONTACT FORM SECTION
   ============================================ */
.contact-section {
    background: #F5F5F3;
}

.contact-form-section {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-form-section .section-title {
    margin-bottom: 12px;
}

.contact-form-desc {
    color: var(--gray-500, #737373);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-form-clean {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

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

.contact-form-clean input,
.contact-form-clean textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--black);
    background: var(--white);
    border: 1px solid var(--gray-200, #E8E8E8);
    border-radius: 10px;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form-clean input::placeholder,
.contact-form-clean textarea::placeholder {
    color: var(--gray-400, #A3A3A3);
}

.contact-form-clean input:focus,
.contact-form-clean textarea:focus {
    border-color: var(--forest);
}

.contact-form-clean textarea {
    resize: vertical;
}

.contact-form-clean .btn {
    align-self: flex-start;
    margin-top: 8px;
}

.form-privacy-note {
    margin-top: 14px;
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--color-text-secondary);
}

.form-privacy-note a {
    color: var(--color-primary);
    text-decoration: underline;
}

@media (max-width: 640px) {
    .form-row-2 {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   TESTIMONIAL SLIDER
   ============================================ */
.testimonial-slider {
    position: relative;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: grid;
}

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

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.testimonial-nav-btn:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
}

.testimonial-nav-btn svg {
    width: 20px;
    height: 20px;
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.testimonial-dot:hover {
    background: rgba(255,255,255,0.5);
}

.testimonial-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-us-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-bottom: 60px;
}

.pillar {
    padding: 0 40px;
    border-left: 1px solid var(--gray-200, #E8E8E8);
}

.pillar:first-child {
    padding-left: 0;
    border-left: none;
}

.pillar-number {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--forest);
    margin-bottom: 20px;
}

.pillar-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 12px;
}

.pillar-desc {
    color: var(--gray-500, #737373);
    font-size: 0.9rem;
    line-height: 1.7;
}

.why-us-stats-bar {
    display: flex;
    justify-content: center;
    gap: 64px;
    padding: 40px 0;
    border-top: 1px solid var(--gray-200, #E8E8E8);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--gray-500, #737373);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* ============================================
   CONTACT HOME SECTION
   ============================================ */
.contact-home-section {
    background: var(--white);
}

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

.contact-home-content p {
    color: var(--gray-600);
    margin-bottom: 24px;
}

.contact-home-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-home-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-home-item svg {
    width: 24px;
    height: 24px;
    color: var(--forest);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-home-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-home-item strong {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--black);
}

.contact-home-item span {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* Contact Form */
.contact-home-form {
    background: var(--cream);
    border-radius: var(--radius-xl);
    padding: 32px;
}

.quick-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.quick-contact-form .form-group {
    margin-bottom: 16px;
}

.quick-contact-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 6px;
}

.quick-contact-form input,
.quick-contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: var(--white);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.quick-contact-form input:focus,
.quick-contact-form textarea:focus {
    outline: none;
    border-color: var(--forest);
    box-shadow: 0 0 0 3px rgba(27, 77, 62, 0.1);
}

.quick-contact-form input::placeholder,
.quick-contact-form textarea::placeholder {
    color: var(--gray-400);
}

.quick-contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

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

/* Black/Dark Button Variant */
.btn-dark {
    background: var(--black);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--gray-800);
}

.btn-outline-dark {
    background: transparent;
    color: var(--black);
    border: 1px solid var(--gray-300);
}

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

/* ============================================
   SECTION DIVIDER
   ============================================ */
.section-divider {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--page-margin);
}

.section-divider::after {
    content: '';
    display: block;
    height: 1px;
    background: var(--gray-200);
}

/* ============================================
   SERVICES PAGE - SECTIONS & CARDS
   ============================================ */

/* Services Intro */
.services-intro {
    padding: 60px 0 0;
}

.services-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.services-intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--gray-600);
}

/* Service Sections */
.service-section {
    padding: 80px 0;
}

.service-section-alt {
    background: var(--white);
}

.service-section-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
}

.service-section-number {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--gray-400);
    padding-top: 8px;
}

.service-section-header-content {
    flex: 1;
}

.service-section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 400;
    color: var(--black);
    margin-bottom: 8px;
}

.service-section-desc {
    font-size: 1rem;
    color: var(--gray-500);
    max-width: 600px;
}

.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.service-item-card {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: var(--radius-lg);
    text-decoration: none;
    overflow: hidden;
    transition: all var(--transition-fast);
}

.service-item-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.service-item-card:hover .service-item-image img {
    transform: scale(1.08);
}

.service-item-card:hover svg {
    transform: translate(3px, -3px);
}

.service-item-card:hover .service-item-info {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
}

.service-item-image {
    position: absolute;
    inset: 0;
}

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

.service-item-info {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    transition: background var(--transition-fast);
}

.service-item-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.service-item-card svg {
    width: 20px;
    height: 20px;
    color: var(--white);
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

/* ============================================
   ABOUT PAGE - MODERN LAYOUT
   ============================================ */

/* Lead Section */
.about-lead {
    padding-top: 80px;
    padding-bottom: 80px;
}

.about-lead-simple {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-lead-text {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.4;
    color: var(--black);
    margin-bottom: 24px;
}

.about-lead-subtext {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.8;
}

/* Statement Section */
.about-statement {
    padding: 80px 0;
    background: var(--cream);
}

.about-statement-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-statement-text {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.4;
    color: var(--black);
    margin: 0;
}

/* Stats Bar */
.about-stats-bar {
    background: var(--black);
    padding: 60px 0;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.about-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.about-stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Values Section */
.about-values {
    background: var(--cream);
}

.about-values-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.about-value-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.about-value-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

.about-value-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--forest);
}

.about-value-card h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--black);
}

.about-value-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Commitment Section */
.about-commitment {
    background: var(--white);
}

.about-commitment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-commitment-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-commitment-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about-commitment-content .section-label {
    margin-bottom: 12px;
}

.about-commitment-content .section-title {
    margin-bottom: 20px;
}

.about-commitment-content > p {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
}

.about-commitment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-commitment-list li {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.about-commitment-list li strong {
    color: var(--black);
}

/* Approach Section */
.about-approach {
    background: var(--white);
}

.about-approach-header {
    margin-bottom: 60px;
}

.about-approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.approach-item {
    position: relative;
}

.approach-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--gray-100);
    line-height: 1;
    margin-bottom: 16px;
}

.approach-item h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 12px;
}

.approach-item p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Image Break */
.about-image-break {
    height: 400px;
    overflow: hidden;
}

.about-image-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Team Section */
.about-team {
    background: var(--white);
}

.about-team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-team-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-team-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about-team-content {
    max-width: 500px;
}

.about-team-content .section-title {
    margin-bottom: 20px;
}

.about-team-lead {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 32px;
}

.about-team-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-team-list li {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.about-team-list li strong {
    color: var(--black);
}

/* About Store Section */
.about-store {
    background: var(--gray-50);
}

.about-store-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-store-content {
    max-width: 500px;
}

.about-store-content p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-store-content p:last-of-type {
    margin-bottom: 32px;
}

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

.about-store-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-store-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .services-grid,
    .projects-grid,
    .services-large-grid,
    .projects-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .store-cta-layout {
        padding: 56px 36px;
        min-height: 380px;
    }

    .store-cta-heading {
        font-size: 2rem;
    }

    .store-cta-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 16px 24px;
        gap: 0;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--gray-200);
    }

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

    .nav-link {
        padding: 12px 16px;
        width: 100%;
        border-radius: 0;
        border-bottom: 1px solid var(--gray-100);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-actions .btn {
        display: none;
    }

    .about-intro,
    .about-story,
    .testimonial-card,
    .service-detail,
    .contact-grid,
    .contact-home-grid,
    .why-us-pillars {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .pillar {
        padding: 0;
        border-left: none;
        padding-bottom: 32px;
        border-bottom: 1px solid var(--gray-200, #E8E8E8);
    }

    .pillar:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .why-us-stats-bar {
        flex-wrap: wrap;
        gap: 32px;
    }

    .testimonial-arrow {
        display: none;
    }

    .testimonial-footer {
        flex-direction: column;
        gap: 20px;
    }

    .about-approach-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .about-image-break {
        height: 300px;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

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

    .about-commitment-grid,
    .about-team-grid,
    .about-store-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .about-commitment-image,
    .about-team-image,
    .about-store-image {
        order: -1;
    }

    .about-commitment-image img {
        height: 350px;
    }

    .about-team-image img {
        height: 350px;
    }

    .about-store-image img {
        height: 300px;
    }

    .about-commitment-content,
    .about-team-content,
    .about-store-content {
        max-width: 100%;
    }

    .about-story.reverse,
    .service-detail.reverse {
        direction: ltr;
    }

    .about-intro-content {
        padding-right: 0;
    }

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

    .services-preview-grid .service-preview-card:last-child {
        grid-column: span 2;
        aspect-ratio: 16/9;
    }

    .services-grid,
    .projects-grid,
    .features-grid,
    .values-grid,
    .services-large-grid,
    .projects-grid-large {
        grid-template-columns: 1fr;
    }

    .projects-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 280px;
    }

    .project-card-modern.featured {
        grid-column: span 2;
        grid-row: span 1;
    }

    .project-details-bar-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .project-detail-bar-item:nth-child(3) {
        border-right: none;
    }

    .project-detail-bar-item:nth-child(4),
    .project-detail-bar-item:nth-child(5) {
        border-top: 1px solid var(--gray-100);
    }

    .project-gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .project-gallery-grid-v2 {
        grid-template-columns: 1fr 1fr;
        height: 400px;
    }

    .project-gallery-tall {
        grid-row: span 1;
        grid-column: span 2;
    }

    .project-gallery-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .project-content-section {
        padding: 60px 0;
    }

    .project-awards {
        flex-direction: column;
        align-items: center;
    }

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

    .hero {
        min-height: 70vh;
    }

    .page-hero {
        min-height: 340px;
    }
    .page-hero--portrait {
        min-height: 420px;
    }

    .testimonial-image {
        order: -1;
    }

    .testimonial-nav-btn {
        width: 40px;
        height: 40px;
    }

    .testimonial-nav-btn svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 768px) {
    :root {
        --page-margin: 16px;
        --section-gap: 60px;
    }

    .top-banner-content {
        gap: 20px;
    }

    .clients-banner {
        padding: 30px 0;
    }

    .clients-track-inner {
        gap: 30px;
        animation-duration: 20s;
    }

    .client-logo {
        padding: 12px 20px;
    }

    .client-logo span {
        font-size: 0.85rem;
    }

    .stats-section {
        padding: 40px 0;
    }

    .stats-section .stat-card {
        padding: 20px 16px;
    }

    .banner-item span {
        display: none;
    }

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

    .hero-actions .btn {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-card {
        padding: 24px 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin: 16px auto 0;
    }

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

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

    .contact-home-form {
        padding: 24px;
    }

    .why-us-stat {
        padding: 24px 16px;
    }

    .why-us-stat-number {
        font-size: 2rem;
    }

    .about-approach-grid {
        grid-template-columns: 1fr;
    }

    .approach-number {
        font-size: 2rem;
    }

    .service-section {
        padding: 60px 0;
    }

    .service-section-header {
        gap: 16px;
        margin-bottom: 32px;
        padding-bottom: 16px;
    }

    .service-item-info {
        padding: 16px;
    }

    .service-item-name {
        font-size: 0.95rem;
    }

    .about-image-break {
        height: 200px;
    }

    .about-team-image img {
        height: 280px;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 30px 24px;
    }
}

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

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .service-cards-grid {
        grid-template-columns: 1fr;
    }

    .service-section {
        padding: 48px 0;
    }

    .service-section-header {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .service-item-card {
        aspect-ratio: 16/10;
    }

    .service-item-info {
        padding: 14px;
    }

    .service-item-name {
        font-size: 0.9rem;
    }

    .projects-grid-modern {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
        gap: 12px;
    }

    .project-card-modern.featured {
        grid-column: span 1;
        grid-row: span 1;
    }

    .project-card-modern {
        aspect-ratio: auto;
    }

    .project-card-modern-overlay {
        padding: 20px;
    }

    .project-card-modern-title {
        font-size: 1.15rem;
    }

    .project-hero {
        min-height: 400px;
    }

    .project-hero-content {
        padding: 40px var(--page-margin);
    }

    .project-hero-title {
        font-size: 2rem;
    }

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

    .project-detail-bar-item {
        padding: 16px 12px;
    }

    .project-detail-bar-item:nth-child(odd) {
        border-right: 1px solid var(--gray-100);
    }

    .project-detail-bar-item:nth-child(even) {
        border-right: none;
    }

    .project-detail-bar-item:nth-child(n+3) {
        border-top: 1px solid var(--gray-100);
    }

    .project-detail-bar-value {
        font-size: 0.85rem;
    }

    .project-intro-simple {
        padding: 40px 0;
    }

    .project-intro-simple-content p {
        font-size: 1rem;
    }

    .project-gallery-grid {
        grid-template-columns: 1fr;
    }

    .project-gallery-grid-v2 {
        grid-template-columns: 1fr;
        height: auto;
    }

    .project-gallery-grid-v2 .project-gallery-item {
        height: 200px;
    }

    .project-gallery-tall,
    .project-gallery-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .project-gallery-large {
        grid-column: span 1;
    }

    .project-content-section {
        padding: 48px 0;
    }

    .project-content-block {
        margin-bottom: 28px;
    }

    .project-content-block p {
        font-size: 1.05rem;
    }

    .stat-card {
        padding: 20px 12px;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Services Preview Mobile */
    .services-preview-grid {
        grid-template-columns: 1fr;
    }

    .services-preview-grid .service-preview-card:last-child {
        grid-column: span 1;
    }

    .service-preview-card {
        aspect-ratio: 4/3;
    }

    .service-preview-title {
        font-size: 1.5rem;
    }

    /* About Page Mobile */
    .about-statement {
        padding: 60px 0;
    }

    .about-statement-text {
        font-size: 1.25rem;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-stat-number {
        font-size: 2rem;
    }

    .about-stat-label {
        font-size: 0.75rem;
    }

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

    .about-value-card {
        padding: 24px 20px;
    }

    .about-commitment-image img {
        height: 280px;
    }
}

/* ============================================
   SERVICE MODAL
   ============================================ */
.service-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.service-modal.active {
    opacity: 1;
    visibility: visible;
}

.service-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.service-modal-container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transform: scale(0.95) translateY(20px);
    transition: transform var(--transition-base);
}

.service-modal.active .service-modal-container {
    transform: scale(1) translateY(0);
}

.service-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.service-modal-close:hover {
    background: var(--gray-100);
    transform: scale(1.05);
}

.service-modal-close svg {
    width: 20px;
    height: 20px;
    color: var(--gray-600);
}

.service-modal-image {
    position: relative;
    min-height: 300px;
}

.service-modal-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-modal-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.service-modal-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--forest);
    margin-bottom: 12px;
}

.service-modal-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 16px;
}

.service-modal-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 24px;
}

.service-modal-features {
    list-style: none;
    margin-bottom: 32px;
}

.service-modal-features li {
    position: relative;
    padding-left: 24px;
    padding-bottom: 12px;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.service-modal-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--forest);
    border-radius: 50%;
}

.service-modal-cta {
    margin-top: auto;
    align-self: flex-start;
}

.service-modal-cta svg {
    width: 16px;
    height: 16px;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .service-modal-container {
        grid-template-columns: 1fr;
        max-height: 95vh;
    }

    .service-modal-image {
        min-height: 200px;
        max-height: 250px;
    }

    .service-modal-content {
        padding: 24px;
    }

    .service-modal-title {
        font-size: 1.5rem;
    }

    .service-modal-close {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
    }
}

/* ============================================
   ABOUT PAGE — RESTYLED
   ============================================ */

/* Typographic Hero */
.about-hero {
    background: var(--cream);
    padding: 160px 0 100px;
    text-align: left;
}

.about-hero-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-500, #888);
    margin-bottom: 24px;
}

.about-hero-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    line-height: 1.1;
    color: var(--black);
    max-width: 820px;
    margin-bottom: 32px;
}

.about-hero-body {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-600, #555);
    max-width: 600px;
}

/* Full-Bleed Image Break */
.about-image-fullbleed {
    width: 100%;
    height: 50vh;
    overflow: hidden;
}

.about-image-fullbleed img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* About — Pull Quote Break */
.about-pullquote-break {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.about-pullquote-break-bg {
    position: absolute;
    inset: 0;
}

.about-pullquote-break-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-pullquote-break .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-pullquote-break-text {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    line-height: 1.35;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    border: none;
}

/* How We Work — Two Column */
.about-approach-section {
    background: var(--white);
}

.about-approach-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-approach-left .section-title {
    margin-bottom: 24px;
}

.about-approach-left p {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--gray-600, #555);
}

.about-approach-right .approach-item {
    padding: 0;
    border: none;
    background: none;
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--gray-200, #e5e5e5);
}

.about-approach-right .approach-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* About — Accreditations Strip */
.about-accreditations {
    background: var(--black);
    padding: 32px 0;
    text-align: center;
}

.about-accreditations-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.about-accreditations-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 56px;
    flex-wrap: wrap;
}

.accreditation-logo {
    height: 56px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: opacity var(--transition-base);
}

.accreditation-logo:hover {
    opacity: 1;
}

/* Per-logo size + brightness tweaks (logos have different visual weight) */
.accreditation-logo[alt^="CHAS"] {
    height: 64px;
}

.accreditation-logo[alt^="UKCA"] {
    height: 58px;
}

.accreditation-logo[alt^="Ronald"] {
    height: 68px;
}

.accreditation-logo-wide {
    height: 160px;
}

.accreditation-logo-tall {
    height: 72px;
}

/* About — Store Section */
.about-store-section {
    background: var(--cream);
}

.about-store-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-store-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.about-store-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-store-content .section-title {
    margin-bottom: 24px;
}

.about-store-content p {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-600, #555);
    margin-bottom: 20px;
}

.about-store-actions {
    margin-top: 32px;
}

/* Responsive — About Restyle */
@media (max-width: 1024px) {
    .about-approach-two-col {
        gap: 60px;
    }

    .about-store-grid {
        gap: 60px;
    }

    .about-pullquote-break {
        padding: 96px 0;
    }

    .about-accreditations-list {
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .about-approach-two-col {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-store-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-store-image {
        aspect-ratio: 16 / 10;
    }

    .about-pullquote-break {
        padding: 72px 0;
    }

    .about-accreditations-list {
        gap: 24px 36px;
    }
}

@media (max-width: 480px) {
    .about-pullquote-break {
        padding: 56px 0;
    }

    .about-accreditations-list {
        gap: 20px 28px;
    }

    .accreditation-logo {
        height: 36px;
    }

    .accreditation-logo-wide {
        height: 112px;
    }

    .accreditation-logo-tall {
        height: 52px;
    }
}

/* About — Our Story Section */
.about-story-section {
    background: var(--cream);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-story-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--forest);
    font-weight: 600;
    margin-bottom: 20px;
}

.about-story-content .section-title {
    margin-bottom: 28px;
}

.about-story-content p {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-600, #555);
    margin-bottom: 20px;
}

.about-story-content p:last-child {
    margin-bottom: 0;
}

.about-story-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.about-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1024px) {
    .about-story-grid {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-story-image {
        aspect-ratio: 16 / 10;
    }
}

/* ============================================
   PROJECTS PAGE — EDITORIAL GALLERY
   ============================================ */

/* Projects Image Hero */
/* Projects hero — matches .page-hero used on services */

.projects-editorial-section {
    background: var(--white);
}

.projects-editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 32px;
}

.project-editorial-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: opacity 0.3s ease;
}

.project-editorial-card.hidden {
    display: none;
}

.project-editorial-card.wide {
    grid-column: 1 / -1;
}

.project-editorial-image {
    overflow: hidden;
    border-radius: 2px;
}

.project-editorial-card:not(.wide) .project-editorial-image {
    aspect-ratio: 4 / 3;
}

.project-editorial-card.wide .project-editorial-image {
    aspect-ratio: 16 / 7;
}

.project-editorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.project-editorial-card:hover .project-editorial-image img {
    transform: scale(1.03);
}

.project-editorial-info {
    padding-top: 16px;
}

.project-editorial-category {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-500, #888);
}

.project-editorial-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.5rem;
    color: var(--black);
    margin-top: 4px;
    line-height: 1.2;
}

.project-editorial-card.wide .project-editorial-title {
    font-size: 2rem;
}

.project-editorial-location {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--gray-500, #888);
    margin-top: 2px;
    display: block;
}

/* Responsive — Projects Editorial */
@media (max-width: 768px) {
    .projects-editorial-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .project-editorial-card.wide .project-editorial-image {
        aspect-ratio: 16 / 9;
    }

    .project-editorial-card.wide .project-editorial-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .projects-editorial-grid {
        gap: 32px;
    }

    .project-editorial-title {
        font-size: 1.25rem;
    }
}

/* ============================================
   ABOUT PAGE — STATS STRIP
   ============================================ */
.about-stats-strip {
    background: var(--forest);
    padding: 48px 0;
}

.about-stats-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.about-stats-strip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.about-stats-strip-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1;
}

.about-stats-strip-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .about-stats-strip-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 24px;
    }

    .about-stats-strip {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .about-stats-strip-number {
        font-size: 2.25rem;
    }
}

/* ============================================
   ABOUT PAGE — TIMELINE
   ============================================ */
.about-timeline-section {
    background: var(--white);
}

.about-timeline-header {
    text-align: center;
    margin-bottom: 64px;
}

.about-timeline-header .section-title {
    margin-bottom: 0;
}

.about-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.about-timeline-line {
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-200);
}

.about-timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 40px;
    padding-bottom: 48px;
    align-items: start;
}

.about-timeline-item:last-child {
    padding-bottom: 0;
}

.about-timeline-dot {
    position: absolute;
    left: 74px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--forest);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--forest);
    z-index: 1;
}

.about-timeline-year {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--forest);
    line-height: 1.2;
    text-align: right;
    padding-top: 2px;
}

.about-timeline-content h3 {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}

.about-timeline-content p {
    font-family: var(--font-body);
    font-size: 0.975rem;
    line-height: 1.7;
    color: var(--gray-600);
}

@media (max-width: 640px) {
    .about-timeline-line {
        left: 60px;
    }

    .about-timeline-item {
        grid-template-columns: 60px 1fr;
        gap: 28px;
        padding-bottom: 36px;
    }

    .about-timeline-dot {
        left: 54px;
    }

    .about-timeline-year {
        font-size: 1.25rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }
.section-cta-wrap { text-align: center; margin-top: 40px; }
.footer-story-link { color: rgba(255,255,255,0.5); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
.footer-story-link:hover { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.3); }
.store-cta-desc-muted { color: rgba(255,255,255,0.7); }

/* ============================================
   ABOUT PAGE — OUR PEOPLE
   ============================================ */
.about-people-section {
    background: var(--cream);
}

.about-people-header {
    text-align: center;
    margin-bottom: 56px;
}

.about-people-header .section-title {
    margin-bottom: 16px;
}

.about-people-intro {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--gray-600);
    max-width: 560px;
    margin: 0 auto;
}

.about-people-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.about-person-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow var(--transition-base);
}

.about-person-card:hover {
    box-shadow: var(--shadow-md);
}

.about-person-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.about-person-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(20%);
    transition: transform var(--transition-slow), filter var(--transition-base);
}

.about-person-card:hover .about-person-image img {
    transform: scale(1.03);
    filter: grayscale(0%);
}

.about-person-info {
    padding: 28px 24px;
}

.about-person-info h3 {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 4px;
}

.about-person-info span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--forest);
    margin-bottom: 12px;
}

.about-person-info p {
    font-family: var(--font-body);
    font-size: 0.925rem;
    line-height: 1.6;
    color: var(--gray-600);
}

@media (max-width: 768px) {
    .about-people-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .about-people-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

/* ============================================
   SUPPLIERS SECTION (named cards, 3x3)
   ============================================ */
.suppliers-section { background: var(--cream); }
.suppliers-section.bg-white { background: var(--white); }

.suppliers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.supplier-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.suppliers-section.bg-white .supplier-card { background: var(--cream); }

.supplier-card:hover {
    border-color: var(--forest);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(27, 77, 62, 0.08);
}

.supplier-card-logo {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.supplier-card-logo img {
    max-height: 56px;
    max-width: 160px;
    object-fit: contain;
}

.supplier-card-logo img[alt="Bailey"],
.suppliers-band-logos img[alt="Bailey"] {
    transform: scale(0.85);
    transform-origin: center;
}

.supplier-card-logo img[alt="Millboard"],
.suppliers-band-logos img[alt="Millboard"] {
    transform: scale(1.1);
    transform-origin: center;
}

.supplier-card-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.supplier-card-category {
    font-size: 13px;
    color: var(--gray-500);
    letter-spacing: 0.02em;
}

/* 3-col: center a lone last card in the middle column */
.suppliers-grid .supplier-card:last-child:nth-child(3n+1) {
    grid-column: 2 / span 1;
}
/* 3-col: when two cards remain on last row, shift them inward by half a column */
.suppliers-grid .supplier-card:last-child:nth-child(3n+2) {
    grid-column: 3 / span 1;
}
.suppliers-grid .supplier-card:nth-last-child(2):nth-child(3n+1) {
    grid-column: 2 / span 1;
}

@media (max-width: 900px) {
    .suppliers-grid { grid-template-columns: repeat(2, 1fr); }
    /* reset desktop centering rules */
    .suppliers-grid .supplier-card:last-child:nth-child(3n+1),
    .suppliers-grid .supplier-card:last-child:nth-child(3n+2),
    .suppliers-grid .supplier-card:nth-last-child(2):nth-child(3n+1) {
        grid-column: auto;
    }
    /* 2-col: center a lone last card across both columns */
    .suppliers-grid .supplier-card:last-child:nth-child(2n+1) {
        grid-column: 1 / -1;
        max-width: calc(50% - 12px);
        justify-self: center;
    }
}

@media (max-width: 540px) {
    .suppliers-grid { grid-template-columns: 1fr; gap: 12px; }
    .supplier-card { padding: 24px 20px; }
    .suppliers-grid .supplier-card:last-child:nth-child(2n+1) {
        max-width: none;
    }
}

/* ============================================
   SUPPLIERS BAND (slim variant for services page)
   ============================================ */
.suppliers-band {
    background: var(--cream);
    border-bottom: 1px solid var(--gray-200);
    padding: 16px 0 80px;
}

.suppliers-band-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--page-margin, 24px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.suppliers-band-label {
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-400);
    font-weight: 600;
    text-align: center;
}

.suppliers-band-logos {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: nowrap;
}

.suppliers-band-logos img {
    max-height: 38px;
    max-width: 100px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.55;
    transition: opacity .25s ease, filter .25s ease;
}

.suppliers-band-logos img:hover {
    opacity: 1;
    filter: grayscale(0);
}

@media (max-width: 900px) {
    .suppliers-band-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 28px 32px;
    }
}

/* ============================================
   ACCREDITATIONS — LIGHT VARIANT (homepage)
   Sits above the contact form. Cream bg, logos in natural color.
   ============================================ */
.accreditations-light {
    background: var(--cream);
    padding: 8px 0 48px;
    text-align: center;
}

.accreditations-light-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gray-400);
    margin-bottom: 22px;
}

.accreditations-light-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 56px;
    flex-wrap: wrap;
}

/* Reset the dark-treatment filter for logos inside the light variant */
.accreditations-light .accreditation-logo {
    filter: none;
    opacity: 1;
}

@media (max-width: 768px) {
    .accreditations-light-list {
        gap: 28px 36px;
    }
}
