/* Base Styles & Variables */
*, *::before, *::after {
    box-sizing: border-box;
}

:root {
    --color-primary: #1c2621; /* Rich, deep olive-tinted charcoal (structural) */
    --color-accent: #c5a059; /* Elegant champagne/gold (10% accent) */
    --color-accent-hover: #b08e4d;
    --color-text-main: #2d302e; /* Soft off-black (easier on eyes, highly premium) */
    --color-text-muted: #6b726f; /* Refined muted sage-tinted slate */
    --color-bg-light: #faf9f6; /* Soft warm stone / rich alabaster cream (60% base) */
    --color-bg-white: #ffffff;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-bg-white);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
    margin: 0;
}

p {
    margin: 0;
}

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

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

/* Utilities */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center { text-align: center; }
.text-accent { color: var(--color-accent); }

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-bg-white);
    box-shadow: 0 4px 6px rgba(197, 160, 89, 0.2);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(197, 160, 89, 0.3);
}

.btn-ghost {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-bg-white);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    letter-spacing: 0.05em;
}

.btn-ghost:hover {
    background-color: var(--color-bg-white);
    color: var(--color-primary);
    border-color: var(--color-bg-white);
    transform: translateY(-2px);
}

.site-header.scrolled .btn-ghost {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background-color: transparent;
    backdrop-filter: none;
}

.site-header.scrolled .btn-ghost:hover {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    border-color: var(--color-primary);
}

/* Navbar Minimal CTA */
.btn-nav-minimal {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
    border-width: 1px;
}

/* Header & Nav */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Utility Bar above main navigation (Luxury touch) */
.utility-bar {
    background-color: var(--color-primary);
    color: var(--color-bg-light);
    font-size: 0.725rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: none; /* Mobile-first, hidden by default */
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.utility-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 36px;
    gap: 1.5rem;
}

.utility-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.utility-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-bg-light);
    text-decoration: none;
    opacity: 0.85;
}

.utility-item:hover {
    opacity: 1;
}

.utility-phone {
    color: var(--color-accent);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.utility-phone:hover {
    color: var(--color-bg-white);
}

.utility-phone svg {
    width: 12px;
    height: 12px;
}

.main-header {
    width: 100%;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px; /* Extremely sleek main header height */
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.scrolled .main-header .container {
    height: 65px; /* Shorter header on scroll for maximum content visibility */
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-bg-white);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.4s ease;
}

.site-header.scrolled .logo {
    color: var(--color-primary);
}

.desktop-nav {
    display: none;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.header-cta {
    display: none;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px 6px;
    z-index: 1100;
}

.hamburger-line {
    height: 2px;
    background-color: var(--color-bg-white);
    transition: all 0.3s ease;
}

.site-header.scrolled .hamburger-line {
    background-color: var(--color-primary);
}

.hamburger-line:nth-child(1) {
    width: 100%;
}

.hamburger-line:nth-child(2) {
    width: 70%;
}

.hamburger-line:nth-child(3) {
    width: 100%;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease;
}

.mobile-menu-overlay.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-menu-content {
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    padding: calc(60px + env(safe-area-inset-top, 0px)) 40px 100px 40px;
    position: relative;
}

.close-menu-btn {
    position: relative;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2100;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-bottom: 4rem;
}

.close-line {
    position: absolute;
    width: 32px;
    height: 1.5px;
    background-color: var(--color-bg-white);
    transition: transform 0.3s ease, background-color 0.4s ease;
}

.mobile-menu-overlay.scrolled .close-line {
    background-color: var(--color-primary);
}

.close-line:nth-child(1) {
    transform: rotate(45deg);
}

.close-line:nth-child(2) {
    transform: rotate(-45deg);
}

.mobile-menu-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    font-weight: 500;
    transition: color 0.4s ease;
}

.mobile-menu-overlay.scrolled .mobile-menu-label {
    color: rgba(0, 0, 0, 0.4);
}

.mobile-nav-links {
    list-style: none;
    text-align: left;
}

.mobile-nav-links li {
    margin-bottom: 2.5rem;
}

.mobile-nav-links a {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    color: var(--color-bg-white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 300;
    transition: all 0.4s ease;
    display: inline-block;
}

.mobile-menu-overlay.scrolled .mobile-nav-links a {
    color: var(--color-primary);
}

.mobile-nav-links a:not(.btn):hover {
    color: var(--color-accent);
    padding-left: 10px;
}

.mobile-nav-links .btn {
    margin-top: 1rem;
    font-size: 1rem;
    padding: 1.25rem 2.5rem;
    width: 100%;
    text-align: center;
}

.mobile-menu-overlay.scrolled .mobile-nav-links .btn-ghost {
    color: var(--color-primary);
    border-color: rgba(0, 0, 0, 0.15);
}

.mobile-menu-overlay.scrolled .mobile-nav-links .btn-ghost:hover {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('https://picsum.photos/id/1018/1920/1080'); /* Placeholder nature/architecture */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 75px; /* Height of mobile header */
    padding-bottom: 3rem; /* Spacing from trust bar */
    overflow: hidden;
}

@media (min-width: 1024px) {
    .hero {
        padding-top: 111px; /* Height of desktop header (36px utility + 75px main) */
        padding-bottom: 5rem;
    }
    
    .hero-content {
        max-width: 1000px;
    }

    .hero h1 {
        font-size: 3.8rem; /* Premium larger desktop heading */
        line-height: 1.1;
        letter-spacing: -0.02em;
    }

    .hero p {
        max-width: 600px;
        font-size: 1.25rem;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(17, 38, 26, 0.6), rgba(17, 38, 26, 0.3));
    z-index: 2;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--color-bg-white);
    max-width: 650px;
    padding-top: var(--spacing-xl);
}

.hero h1 {
    color: var(--color-bg-white);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
}

.hero-cta-group {
    display: flex; 
    flex-direction: column;
    gap: 1rem; 
    margin-top: 2rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
    margin-top: 3rem;
}

@media (min-width: 1024px) {
    .hero-badges {
        flex-wrap: nowrap;
        gap: 2.5rem;
    }
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    white-space: nowrap;
    opacity: 0.9;
}

.badge-icon {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
}

/* Trust Banner */
.trust-banner {
    background-color: #050505;
    padding: 1.75rem 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.trust-logos {
    display: flex;
    gap: 6rem;
    width: max-content;
    animation: marquee 60s linear infinite;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

@media (max-width: 768px) {
    .trust-logos {
        animation-duration: 40s;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
    position: relative;
}

.trust-item::after {
    content: "•";
    position: absolute;
    right: -3.5rem;
    color: rgba(255, 255, 255, 0.2);
    font-size: 1.2rem;
}

.trust-item:last-child::after {
    display: none;
}

.trust-item i, .trust-item svg {
    color: var(--color-accent);
    width: 16px;
    height: 16px;
}

.trust-item strong {
    color: #fff;
    font-weight: 600;
}

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

.trust-item strong {
    color: var(--color-primary);
    font-weight: 700;
}

/* Features/Agitation Section */
.section-features {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-bg-light);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.feature-card {
    background: var(--color-bg-white);
    padding: var(--spacing-md);
    border-radius: 0;
    box-shadow: none;
    border: none;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
}

.feature-icon svg {
    width: 48px;
    height: 48px;
    color: rgba(197, 160, 89, 0.6); /* Lighter accent */
    transition: color 0.3s ease;
}

.feature-card:hover .feature-icon svg {
    color: var(--color-accent);
}

/* Premium Printed Testimonial Section */
.section-hero-testimonial {
    padding: var(--spacing-lg) 0;
    background-color: var(--color-bg-white);
    position: relative;
    overflow: hidden;
}

.testimonial-printed {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: var(--spacing-md) var(--spacing-sm);
}

.testimonial-printed:hover .printed-quote-mark {
    color: rgba(197, 160, 89, 0.25); /* Darken on hover like the cards */
}

.testimonial-printed .stars {
    color: var(--color-accent);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.2em;
    position: relative;
    z-index: 2;
}

.testimonial-printed .quote {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .testimonial-printed .quote {
        font-size: 1.35rem;
    }
}

.testimonial-printed .author {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
}

.testimonial-printed .printed-quote-mark {
    font-family: var(--font-heading);
    font-size: 13rem;
    line-height: 1;
    color: rgba(197, 160, 89, 0.08); /* Accent gold with low opacity */
    position: absolute;
    top: -4rem; /* Lifted up to avoid overlapping with stars */
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 1;
    transition: all 0.4s ease;
}

/* Portfolio Section */
.section-portfolio {
    padding: var(--spacing-xl) 0;
}

.portfolio-grid {
    display: grid;
    gap: var(--spacing-xl);
}

.case-study {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    align-items: center;
}

.case-image-wrapper {
    position: relative;
    border-radius: 0;
    overflow: hidden;
}

.case-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.case-study:hover .case-image {
    transform: scale(1.03);
}

.case-content h3 {
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.case-content p {
    margin-bottom: 0.75rem;
    color: var(--color-text-muted);
}

.case-content strong {
    color: var(--color-text-main);
}

/* Process Section */
.section-process {
    background-color: var(--color-bg-light);
    padding: var(--spacing-xl) 0;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.process-step {
    background-color: var(--color-bg-white);
    padding: 2.5rem 1.5rem;
    border-radius: 0;
    position: relative;
}

.process-step:hover .step-number {
    color: rgba(197, 160, 89, 0.3);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    color: rgba(197, 160, 89, 0.12); /* Accent gold with soft opacity */
    position: absolute;
    top: -2.25rem; /* Exactly half of font-size to offset vertically */
    right: -1rem;  /* Offset slightly outside the right edge */
    line-height: 1;
    z-index: 10;
    pointer-events: none;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .step-number {
        font-size: 5.5rem;
        top: -2.75rem; /* Exactly half of 5.5rem */
        right: -1.25rem;
    }
}

@media (min-width: 1024px) {
    .step-number {
        font-size: 6rem;
        top: -3rem; /* Exactly half of 6rem */
        right: -1.5rem;
    }
}

.process-step h3 {
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.process-step p {
    position: relative;
    z-index: 2;
    color: var(--color-text-muted);
}

/* FAQ Section */
.section-faq {
    padding: var(--spacing-xl) 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--color-accent);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--color-text-muted);
}

/* CTA / Form Section */
.section-cta {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg-light);
}

.consultation-split-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.consultation-info-col {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
    order: 2; /* Mobile default: info below the form */
}

.info-group-item {
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.info-subtitle {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.info-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.info-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-main);
    margin: 0;
}

.info-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.info-link:hover {
    color: var(--color-accent);
}

.info-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--color-text-main);
    padding: 0.5rem 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

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

.consultation-form-col {
    background: var(--color-bg-white);
    padding: 2.5rem 2rem;
    border-radius: 0;
    order: 1; /* Mobile default: form on top */
}

@media (max-width: 480px) {
    .consultation-form-col {
        padding: 2rem 1.25rem;
    }
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-text-main);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

/* Footer */
.site-footer {
    background-color: #0f1c14;
    color: rgba(255,255,255,0.7);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    text-align: center;
}

/* Responsive Tablet */
@media (min-width: 768px) {
    .section-portfolio {
        padding: 6rem 0;
    }
    .portfolio-grid {
        gap: 8rem;
    }
    .container {
        padding: 0 2.5rem;
    }
    .hero-cta-group {
        flex-direction: row;
    }
    .features-grid { grid-template-columns: repeat(3, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .consultation-split-grid { grid-template-columns: 1fr 1.2fr; }
    .consultation-info-col { order: 1; }
    .consultation-form-col { order: 2; }
    .form-row { grid-template-columns: 1fr 1fr; }
    .hero-content { max-width: 700px; }
    .hero h1 { font-size: 3rem; }
    .case-study {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
    }
    .case-study.reverse .case-content {
        order: -1;
    }
}

/* Responsive Desktop */
@media (min-width: 1024px) {
    .section-portfolio {
        padding: 8rem 0;
    }
    
    .portfolio-grid {
        gap: 10rem; /* generous space between case study rows */
    }
    
    .case-study {
        gap: var(--spacing-xl);
    }
    
    .mobile-menu-btn { display: none; }
    
    .utility-bar {
        display: block;
    }
    
    .site-header.scrolled .utility-bar {
        height: 0;
        overflow: hidden;
        border-bottom: none;
    }
    
    .desktop-nav {
        display: block;
    }
    
    .nav-links a {
        font-weight: 500;
        letter-spacing: 0.5px;
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.9);
        transition: color 0.4s ease;
    }
    
    .nav-links a:hover {
        color: var(--color-bg-white);
    }

    .site-header.scrolled .nav-links a {
        color: var(--color-text-main);
    }
    
    .site-header.scrolled .nav-links a:hover {
        color: var(--color-accent);
    }
    
    .header-cta {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
    
    .container { padding: 0 3rem; }
    
    .process-grid { 
        grid-template-columns: repeat(4, 1fr); 
        gap: 1.5rem;
    }
}
