/**
 * WoodFlooring.pt - Arbor & Atrium Design System
 * Based on warm minimalism, editorial precision, and environmental harmony
 */

/* ==========================================================================
   CSS CUSTOM PROPERTIES - Design Tokens
   ========================================================================== */

:root {
    /* Surface Colors */
    --surface: #fcf9f4;
    --surface-dim: #dcdad5;
    --surface-bright: #fcf9f4;
    --surface-container-lowest: #ffffff;
    --surface-container-low: #f6f3ee;
    --surface-container: #f0ede8;
    --surface-container-high: #ebe8e3;
    --surface-container-highest: #e5e2dd;

    /* On Surface Colors */
    --on-surface: #1c1c19;
    --on-surface-variant: #43483f;
    --inverse-surface: #31302d;
    --inverse-on-surface: #f3f0eb;

    /* Outline Colors */
    --outline: #73796f;
    --outline-variant: #c3c8bc;

    /* Primary Colors - Deep Forest Green */
    --primary: #34502b;
    --on-primary: #ffffff;
    --primary-container: #4b6841;
    --on-primary-container: #c4e5b5;
    --primary-fixed: #caecbb;
    --primary-fixed-dim: #afd0a0;
    --on-primary-fixed: #072103;
    --on-primary-fixed-variant: #324e29;

    /* Secondary Colors - Mushroom Taupe */
    --secondary: #695c4d;
    --on-secondary: #ffffff;
    --secondary-container: #efddc9;
    --on-secondary-container: #6d6151;
    --secondary-fixed: #f1e0cc;
    --secondary-fixed-dim: #d5c4b1;
    --on-secondary-fixed: #231a0e;
    --on-secondary-fixed-variant: #504536;

    /* Tertiary Colors */
    --tertiary: #4d4840;
    --on-tertiary: #ffffff;
    --tertiary-container: #656057;
    --on-tertiary-container: #e3dbd0;

    /* Error Colors */
    --error: #ba1a1a;
    --on-error: #ffffff;
    --error-container: #ffdad6;
    --on-error-container: #93000a;

    /* Background */
    --background: #fcf9f4;
    --on-background: #1c1c19;
    --surface-tint: #49663f;
    --inverse-primary: #afd0a0;

    /* Spacing Scale */
    --spacing-gutter: 24px;
    --spacing-stack-sm: 8px;
    --spacing-stack-md: 16px;
    --spacing-stack-lg: 32px;
    --spacing-margin-mobile: 20px;
    --spacing-margin-desktop: 64px;
    --spacing-section-gap: 120px;
    --spacing-container-max: 1280px;

    /* Border Radius */
    --radius-sm: 0.125rem;
    --radius-default: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-full: 9999px;

    /* Typography - Trirong (Serif) */
    --font-display-lg: 'Trirong', Georgia, serif;
    --font-headline-lg: 'Trirong', Georgia, serif;
    --font-headline-md: 'Trirong', Georgia, serif;

    /* Typography - Quattrocento Sans */
    --font-body-lg: 'Quattrocento Sans', Arial, sans-serif;
    --font-body-md: 'Quattrocento Sans', Arial, sans-serif;
    --font-label-caps: 'Quattrocento Sans', Arial, sans-serif;

    /* Shadows */
    --shadow-soft: 0 10px 40px rgba(75, 104, 65, 0.05);
    --shadow-ghost-border: 1px solid rgba(140, 126, 109, 0.2);
}

/* ==========================================================================
   BASE TYPOGRAPHY
   ========================================================================== */

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body-md);
    font-size: 16px;
    line-height: 1.6;
    color: var(--on-surface);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography Classes */
.font-display-lg {
    font-family: var(--font-display-lg);
    font-size: clamp(42px, 6vw, 69px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.font-headline-lg {
    font-family: var(--font-headline-lg);
    font-size: clamp(32px, 4vw, 69px);
    font-weight: 400;
    line-height: 1.2;
}

.font-headline-md {
    font-family: var(--font-headline-md);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 400;
    line-height: 1.3;
}

.font-body-lg {
    font-family: var(--font-body-lg);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
}

.font-body-md {
    font-family: var(--font-body-md);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

.font-label-caps {
    font-family: var(--font-label-caps);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Selection */
::selection {
    background-color: var(--primary-fixed);
    color: var(--on-primary-fixed);
}

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */

.container {
    /* max-width: var(--spacing-container-max); */
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--spacing-margin-desktop);
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: calc(var(--spacing-stack-lg) * 1.5);
}

/* Section Spacing */
.section-gap {
    padding-top: var(--spacing-section-gap);
    padding-bottom: var(--spacing-section-gap);
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 80px;
    background: rgba(252, 249, 244, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(195, 200, 188, 0.2);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.site-logo {
    font-family: var(--font-headline-md);
    font-size: 32px;
    font-weight: 500;
    color: var(--on-surface);
    text-decoration: none;
}

.site-logo:hover {
    color: var(--primary);
}

.main-nav ul {
    display: flex;
    gap: var(--spacing-stack-lg);
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    font-family: var(--font-label-caps);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--on-surface-variant);
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-stack-md);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: var(--primary);
    color: var(--on-primary);
    font-family: var(--font-label-caps);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-container);
    color: var(--on-primary-container);
    transform: translateY(-2px);
}

/* Secondary Button */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    background: transparent;
    color: var(--primary);
    font-family: var(--font-label-caps);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--secondary);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--secondary-container);
    border-color: var(--secondary-container);
}

/* Ghost Button */
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: transparent;
    color: var(--primary);
    font-family: var(--font-label-caps);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    opacity: 0.7;
}

.btn-ghost .material-symbols-outlined {
    transition: transform 0.3s ease;
}

.btn-ghost:hover .material-symbols-outlined {
    transform: translate(2px, -2px);
}

/* White Button (for dark backgrounds) */
.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: #ffffff;
    color: var(--primary);
    font-family: var(--font-label-caps);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: var(--surface);
}

/* Outline White Button */
.btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: transparent;
    color: #ffffff;
    font-family: var(--font-label-caps);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(4px);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.hero-content {
    position: relative;
    z-index: 10;
    color: #ffffff;
    /* max-width: 800px; */
}

.hero-content h1 {
    margin-bottom: var(--spacing-stack-lg);
    line-height: 1.1;
}

.hero-content h1 em {
    font-style: italic;
}

.hero-content p {
    max-width: 600px;
    margin-bottom: var(--spacing-stack-lg);
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-stack-md);
    flex-wrap: wrap;
}

/* ==========================================================================
   ABOUT / BRAND INTRO SECTION
   ========================================================================== */

.brand-intro {
    padding: var(--spacing-section-gap) var(--spacing-margin-desktop);
    background: var(--background);
}

.brand-intro .container {
    max-width: var(--spacing-container-max);
    margin: 0 auto;
}

.brand-intro .eyebrow {
    color: var(--primary);
    margin-bottom: var(--spacing-stack-sm);
}

.brand-intro h2 {
    color: var(--on-surface);
}

.brand-intro .intro-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-stack-lg);
}

.brand-intro .intro-text {
    color: var(--on-surface-variant);
}

@media (max-width: 768px) {
    .brand-intro {
        padding: var(--spacing-margin-mobile);
    }

    .brand-intro .intro-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   SIGNATURE SERIES / BENTO GALLERY
   ========================================================================== */

.signature-series {
    padding-bottom: var(--spacing-section-gap);
    padding-left: var(--spacing-margin-desktop);
    padding-right: var(--spacing-margin-desktop);
    background: var(--background);
}

.signature-series .container {
    /* max-width: var(--spacing-container-max); */
    margin: 0 auto;
}

.signature-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--spacing-stack-lg);
}

.signature-link {
    font-family: var(--font-label-caps);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid var(--primary);
    padding-bottom: 2px;
    transition: opacity 0.3s ease;
}

.signature-link:hover {
    opacity: 0.7;
}

.signature-grid {
    display: grid;
    grid-template-columns: 7fr 5fr;
    grid-template-rows: repeat(2, 1fr);
    gap: var(--spacing-gutter);
    height: 800px;
}

.signature-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.signature-card:first-child {
    grid-row: span 2;
}

.signature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.signature-card:hover img {
    transform: scale(1.05);
}

.signature-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-stack-lg);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    color: #ffffff;
}

.signature-card-overlay .card-number {
    font-family: var(--font-label-caps);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.signature-card-overlay h3 {
    font-family: var(--font-headline-md);
    font-size: clamp(20px, 2.5vw, 32px);
    font-weight: 400;
    line-height: 1.3;
}

@media (max-width: 992px) {
    .signature-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }

    .signature-card {
        height: 400px;
    }

    .signature-card:first-child {
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .signature-series {
        padding-left: var(--spacing-margin-mobile);
        padding-right: var(--spacing-margin-mobile);
    }

    .signature-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-stack-md);
    }
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */

.services-section {
    padding: var(--spacing-section-gap) var(--spacing-margin-desktop);
    background: var(--primary);
    color: #ffffff;
    overflow: hidden;
}

.services-section .container {
    /* max-width: var(--spacing-container-max); */
    margin: 0 auto;
}

.services-eyebrow {
    color: var(--primary-fixed);
    margin-bottom: var(--spacing-stack-sm);
}

.services-section h2 {
    color: #ffffff;
    margin-bottom: var(--spacing-stack-lg);
}

.services-section .services-intro {
    opacity: 0.8;
    margin-bottom: 48px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.service-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateX(8px);
}

.service-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.service-number {
    font-family: var(--font-label-caps);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--primary-fixed);
}

.service-icon {
    color: #ffffff;
    transition: transform 0.3s ease;
}

.service-item:hover .service-icon {
    transform: rotate(45deg);
}

.service-item h3 {
    color: #ffffff;
    transition: transform 0.3s ease;
}

.service-item p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 16px;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: var(--spacing-margin-mobile);
    }
}

/* ==========================================================================
   TESTIMONIAL SECTION
   ========================================================================== */

.testimonial-section {
    padding: var(--spacing-section-gap) var(--spacing-margin-desktop);
    background: var(--background);
    overflow: hidden;
}

.testimonial-section .container {
    max-width: var(--spacing-container-max);
    margin: 0 auto;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-gutter);
    align-items: center;
}

.testimonial-quote {
    order: 2;
}

.testimonial-quote-mark {
    font-family: var(--font-display-lg);
    font-size: 120px;
    color: var(--primary);
    opacity: 0.1;
    line-height: 1;
    margin-bottom: -48px;
    margin-left: -32px;
}

.testimonial-quote blockquote {
    font-family: var(--font-headline-lg);
    font-size: clamp(24px, 3vw, 48px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.2;
    color: var(--on-surface);
    margin-bottom: var(--spacing-stack-lg);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-stack-md);
}

.testimonial-divider {
    width: 48px;
    height: 1px;
    background: var(--primary);
}

.testimonial-author-info p {
    margin: 0;
}

.testimonial-author-info .author-name {
    font-family: var(--font-label-caps);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--on-surface);
}

.testimonial-author-info .author-title {
    font-family: var(--font-body-md);
    font-size: 16px;
    color: var(--on-surface-variant);
}

.testimonial-image {
    order: 1;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-image {
        order: -1;
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 768px) {
    .testimonial-section {
        padding: var(--spacing-margin-mobile);
    }
}

/* ==========================================================================
   NEWSLETTER / CTA SECTION
   ========================================================================== */

.newsletter-section {
    padding: var(--spacing-section-gap) var(--spacing-margin-desktop);
    background: var(--surface-container);
    text-align: center;
}

.newsletter-section .container {
    max-width: var(--spacing-container-max);
    margin: 0 auto;
}

.newsletter-eyebrow {
    color: var(--primary);
    margin-bottom: var(--spacing-stack-sm);
}

.newsletter-section h2 {
    margin-bottom: var(--spacing-stack-lg);
}

.newsletter-description {
    color: var(--on-surface-variant);
    max-width: 640px;
    margin: 0 auto var(--spacing-stack-lg);
}

.newsletter-form {
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    gap: var(--spacing-stack-md);
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: #ffffff;
    border: 1px solid var(--outline-variant);
    border-radius: var(--radius-lg);
    font-family: var(--font-body-md);
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(52, 80, 43, 0.1);
}

.newsletter-form input::placeholder {
    color: var(--on-surface-variant);
}

@media (max-width: 576px) {
    .newsletter-section {
        padding: var(--spacing-margin-mobile);
    }

    .newsletter-form {
        flex-direction: column;
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
    padding: var(--spacing-section-gap) var(--spacing-margin-desktop) var(--spacing-stack-lg);
    background: var(--surface-container);
}

.site-footer .container {
    max-width: var(--spacing-container-max);
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--spacing-gutter);
    padding-bottom: var(--spacing-stack-lg);
    margin-bottom: var(--spacing-stack-lg);
    border-bottom: 1px solid var(--outline-variant);
}

.footer-brand {
    grid-column: span 4;
}

.footer-brand .footer-logo {
    font-family: var(--font-headline-md);
    font-size: 32px;
    font-weight: 500;
    color: var(--on-surface);
    text-decoration: none;
    margin-bottom: var(--spacing-stack-md);
    display: block;
}

.footer-brand p {
    color: var(--on-surface-variant);
    max-width: 300px;
    margin-bottom: var(--spacing-stack-lg);
}

.footer-social {
    display: flex;
    gap: var(--spacing-stack-md);
}

.footer-social a {
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.footer-social a:hover {
    opacity: 0.7;
}

.footer-links {
    grid-column: span 8;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-gutter);
}

.footer-links h4 {
    font-family: var(--font-label-caps);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--on-surface);
    margin-bottom: var(--spacing-stack-md);
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-stack-sm);
}

.footer-links a {
    font-family: var(--font-body-md);
    font-size: 16px;
    color: var(--on-surface-variant);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-stack-md);
}

.footer-copyright {
    font-family: var(--font-body-md);
    font-size: 16px;
    color: var(--on-surface-variant);
    opacity: 0.6;
}

.footer-locations {
    display: flex;
    gap: var(--spacing-stack-lg);
}

.footer-locations span {
    font-family: var(--font-label-caps);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--on-surface-variant);
    opacity: 0.6;
}

@media (max-width: 992px) {
    .footer-brand {
        grid-column: span 12;
        margin-bottom: var(--spacing-stack-lg);
    }

    .footer-links {
        grid-column: span 12;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: var(--spacing-margin-mobile);
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-locations {
        justify-content: center;
    }
}

/* ==========================================================================
   MATERIAL SYMBOLS
   ========================================================================== */

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

/* ==========================================================================
   WOOCOMMERCE OVERRIDES
   ========================================================================== */

.woocommerce-message,
.woocommerce-info {
    border-top-color: var(--primary);
}

.woocommerce-message::before,
.woocommerce-info::before {
    color: var(--primary);
}

.woocommerce button.button.alt,
.woocommerce a.button,
.woocommerce button.button {
    background: var(--primary);
    color: var(--on-primary);
    border-radius: var(--radius-lg);
    font-family: var(--font-label-caps);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.woocommerce button.button.alt:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
    background: var(--primary-container);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.faq-section {
    padding: var(--spacing-section-gap) var(--spacing-margin-desktop);
    background: var(--background);
}

.faq-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(140, 126, 109, 0.1);
    padding: var(--spacing-stack-lg) 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: var(--spacing-stack-md) 0;
}

.faq-question h3 {
    font-family: var(--font-headline-md);
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 400;
    color: var(--on-surface);
    transition: color 0.3s ease;
}

.faq-question:hover h3 {
    color: var(--primary);
}

.faq-toggle {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: var(--spacing-stack-md);
}

.faq-answer p {
    color: var(--on-surface-variant);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */

.contact-section {
    padding: var(--spacing-section-gap) var(--spacing-margin-desktop);
    background: var(--surface-container-low);
}

.contact-section .container {
    max-width: var(--spacing-container-max);
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-section-gap);
}

.contact-info h2 {
    margin-bottom: var(--spacing-stack-lg);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-stack-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-stack-md);
}

.contact-item .icon {
    color: var(--primary);
    margin-top: 4px;
}

.contact-item h4 {
    font-family: var(--font-label-caps);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--on-surface);
    margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
    font-family: var(--font-body-md);
    font-size: 16px;
    color: var(--on-surface-variant);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-form {
    background: var(--surface-container-lowest);
    padding: var(--spacing-stack-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
}

.contact-form h3 {
    font-family: var(--font-headline-md);
    font-size: 24px;
    margin-bottom: var(--spacing-stack-lg);
}

.form-group {
    margin-bottom: var(--spacing-stack-md);
}

.form-group label {
    display: block;
    font-family: var(--font-label-caps);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--on-surface);
    margin-bottom: var(--spacing-stack-sm);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: #ffffff;
    border: 1px solid var(--outline-variant);
    border-radius: var(--radius-lg);
    font-family: var(--font-body-md);
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(52, 80, 43, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: var(--spacing-margin-mobile);
    }
}

/* ==========================================================================
   PRODUCT CARDS
   ========================================================================== */

.product-card {
    background: var(--surface-container-lowest);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.product-card-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-content {
    padding: var(--spacing-stack-md);
}

.product-card h3 {
    font-family: var(--font-headline-md);
    font-size: 20px;
    font-weight: 400;
    color: var(--on-surface);
    margin-bottom: var(--spacing-stack-sm);
}

.product-card p {
    font-family: var(--font-body-md);
    font-size: 16px;
    color: var(--on-surface-variant);
}

.product-card .price {
    font-family: var(--font-label-caps);
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-top: var(--spacing-stack-sm);
}

/* ==========================================================================
   PAGE HEADER
   ========================================================================== */

.page-header {
    padding: 160px var(--spacing-margin-desktop) var(--spacing-section-gap);
    background: var(--surface-container);
    text-align: center;
}

.page-header .container {
    max-width: var(--spacing-container-max);
    margin: 0 auto;
}

.page-header h1 {
    font-family: var(--font-headline-lg);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 400;
    color: var(--on-surface);
    margin-bottom: var(--spacing-stack-md);
}

.page-header p {
    font-family: var(--font-body-lg);
    font-size: 18px;
    color: var(--on-surface-variant);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px var(--spacing-margin-mobile) var(--spacing-margin-mobile);
    }
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-on-surface { color: var(--on-surface); }
.text-on-surface-variant { color: var(--on-surface-variant); }

.bg-surface { background-color: var(--surface); }
.bg-surface-container { background-color: var(--surface-container); }
.bg-surface-container-low { background-color: var(--surface-container-low); }
.bg-surface-container-lowest { background-color: var(--surface-container-lowest); }
.bg-primary { background-color: var(--primary); }

.mb-sm { margin-bottom: var(--spacing-stack-sm); }
.mb-md { margin-bottom: var(--spacing-stack-md); }
.mb-lg { margin-bottom: var(--spacing-stack-lg); }
.mt-sm { margin-top: var(--spacing-stack-sm); }
.mt-md { margin-top: var(--spacing-stack-md); }
.mt-lg { margin-top: var(--spacing-stack-lg); }

/* Aspect Ratios */
.aspect-4-5 { aspect-ratio: 4 / 5; }
.aspect-3-2 { aspect-ratio: 3 / 2; }
.aspect-16-9 { aspect-ratio: 16 / 9; }

/* Border Radius */
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-full { border-radius: var(--radius-full); }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Shadow */
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

/* ==========================================================================
   ADDITIONAL HOMEPAGE STYLES
   ========================================================================== */

/* Nav Phone */
.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-label-caps);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--on-surface-variant);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-phone:hover {
    color: var(--primary);
}

.nav-phone .material-symbols-outlined {
    font-size: 18px;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator .material-symbols-outlined {
    font-size: 32px;
    color: rgba(255, 255, 255, 0.6);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Brand Intro Enhancements */
.brand-intro-left {
    grid-column: span 4;
}

.brand-intro-right {
    grid-column: span 8;
}

.brand-intro-right h2 {
    margin-bottom: 48px;
}

.brand-desc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-stack-lg);
    margin-bottom: 48px;
}

.brand-desc-item p {
    color: var(--on-surface-variant);
}

.brand-badges {
    display: flex;
    gap: var(--spacing-stack-lg);
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--surface-container-low);
    border-radius: var(--radius-lg);
}

.badge-icon {
    color: var(--primary);
    font-size: 20px;
}

.badge-text {
    color: var(--on-surface);
}

/* Services Section Grid */
.services-left {
    /* grid-column: span 5; */
}

.services-right {
    /* grid-column: span 6; */
    /* grid-column-start: 7; */
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* FAQ Preview Section */
.faq-preview {
    padding: var(--spacing-section-gap) var(--spacing-margin-desktop);
    background: var(--surface-container-low);
}

.faq-preview .container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-preview .faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-preview .faq-header h2 {
    margin-top: 8px;
}

.faq-preview .faq-grid {
    display: flex;
    flex-direction: column;
}

.faq-preview .faq-item {
    background: var(--surface-container-lowest);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    padding: 0 0 24px 0;
    border: none;
}

.faq-preview .faq-question {
    padding: 24px;
    margin: 0;
}

.faq-preview .faq-question h3 {
    font-size: clamp(18px, 2vw, 22px);
    margin: 0;
    flex: 1;
    padding-right: 16px;
}

.faq-preview .faq-question .material-symbols-outlined {
    color: var(--primary);
    flex-shrink: 0;
}

.faq-preview .faq-answer {
    padding: 0 24px 24px 24px;
}

.faq-cta {
    text-align: center;
    margin-top: 48px;
}

/* Testimonial Section */
.testimonial-quote {
    position: relative;
}

.testimonial-quote .quote-mark {
    position: absolute;
    top: -60px;
    left: -40px;
    font-size: 120px;
    color: var(--primary);
    opacity: 0.1;
    line-height: 1;
    pointer-events: none;
}

.testimonial-quote blockquote {
    font-style: italic;
    margin-bottom: 32px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author .author-divider {
    width: 48px;
    height: 1px;
    background: var(--primary);
    flex-shrink: 0;
}

.testimonial-author .author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author .author-name {
    font-family: var(--font-label-caps);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--on-surface);
}

.testimonial-author .author-title {
    font-family: var(--font-body-md);
    font-size: 16px;
    color: var(--on-surface-variant);
}

.testimonial-image {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Collaboration Section */
.collaboration-section {
    padding: var(--spacing-section-gap) var(--spacing-margin-desktop);
    background: var(--surface-container);
}

.collaboration-section .container {
    max-width: var(--spacing-container-max);
    margin: 0 auto;
}

.collaboration-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.collaboration-content .eyebrow {
    color: var(--primary);
    margin-bottom: 8px;
    display: block;
}

.collaboration-content h2 {
    margin-bottom: 24px;
}

.collaboration-content > .font-body-lg {
    color: var(--on-surface-variant);
    margin-bottom: 48px;
}

.collaboration-features {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.collaboration-features .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.collaboration-features .feature .material-symbols-outlined {
    font-size: 32px;
    color: var(--primary);
}

.collaboration-features .feature span:last-child {
    color: var(--on-surface);
}

/* Newsletter Note */
.newsletter-note {
    color: var(--on-surface-variant);
    opacity: 0.6;
    margin-top: 16px;
}

/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--on-surface-variant);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact .contact-item:hover {
    color: var(--primary);
}

.footer-contact .contact-item .material-symbols-outlined {
    font-size: 18px;
    color: var(--primary);
}

/* Footer Columns */
.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col h4 {
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col ul li a {
    font-family: var(--font-body-md);
    font-size: 16px;
    color: var(--on-surface-variant);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

/* Card Link in Signature Series */
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 12px;
    color: #ffffff;
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.signature-card:hover .card-link {
    opacity: 1;
    transform: translateY(0);
}

.card-link .material-symbols-outlined {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.card-link:hover .material-symbols-outlined {
    transform: translateX(4px);
}

.card-description {
    opacity: 0.8;
    margin-top: 8px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .brand-intro-left,
    .brand-intro-right {
        grid-column: span 12;
    }

    .brand-desc-grid {
        grid-template-columns: 1fr;
    }

    .services-left,
    .services-right {
        grid-column: span 12;
        grid-column-start: auto;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-image {
        order: -1;
        aspect-ratio: 16 / 9;
    }

    .collaboration-features {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-margin-mobile);
    }

    .brand-intro,
    .signature-series,
    .faq-preview,
    .collaboration-section {
        padding-left: var(--spacing-margin-mobile);
        padding-right: var(--spacing-margin-mobile);
    }

    .signature-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .signature-card {
        height: 300px;
    }

    .signature-card:first-child {
        grid-row: auto;
    }

    .brand-badges {
        flex-direction: column;
    }

    .testimonial-quote .quote-mark {
        top: -40px;
        left: -20px;
        font-size: 80px;
    }
}

/* Hero Tagline */
.hero-tagline {
    font-style: italic;
    opacity: 0.9;
}

/* Testimonials Row */
.testimonials-row {
    padding: var(--spacing-section-gap) var(--spacing-margin-desktop);
    background: var(--surface-container);
}

.testimonials-row .container {
    max-width: var(--spacing-container-max);
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-gutter);
}

.testimonial-card {
    background: var(--surface-container-lowest);
    border-radius: var(--radius-xl);
    padding: var(--spacing-stack-lg);
}

.testimonial-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card .quote-icon {
    font-size: 48px;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: var(--spacing-stack-md);
}

.testimonial-card p {
    color: var(--on-surface-variant);
    flex: 1;
    margin-bottom: var(--spacing-stack-lg);
}

.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-stack-md);
}

.testimonial-card .author-divider {
    width: 32px;
    height: 1px;
    background: var(--primary);
}

@media (max-width: 768px) {
    .testimonials-row {
        padding: var(--spacing-margin-mobile);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   PAGE HEADER (Inner Pages)
   ========================================================================== */

.page-header {
    position: relative;
    padding: 200px 0 120px;
    overflow: hidden;
    margin-top: 0;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

.page-header .container {
    position: relative;
    z-index: 10;
    text-align: center;
}

.page-header .eyebrow {
    color: var(--primary-fixed);
    margin-bottom: var(--spacing-stack-md);
    display: block;
}

.page-header h1 {
    color: #ffffff;
    margin-bottom: var(--spacing-stack-md);
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.page-header-dark .page-header-overlay {
    background: linear-gradient(to bottom, rgba(52,80,43,0.7), rgba(52,80,43,0.85));
}

/* ==========================================================================
   TRUST BADGES
   ========================================================================== */

.trust-badges {
    padding: var(--spacing-stack-lg) 0;
    background: var(--surface-container);
    border-bottom: 1px solid var(--outline-variant);
}

.trust-badges .container {
    max-width: var(--spacing-container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-margin-desktop);
}

.badges-grid {
    display: flex;
    justify-content: center;
    gap: var(--spacing-stack-lg);
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-stack-sm);
}

.badge-item .material-symbols-outlined {
    color: var(--primary);
    font-size: 24px;
}

/* ==========================================================================
   PRODUCTS SECTIONS
   ========================================================================== */

.collection-section,
.products-section {
    padding: var(--spacing-section-gap) var(--spacing-margin-desktop);
    background: var(--background);
}

.collection-section .container,
.products-section .container {
    max-width: var(--spacing-container-max);
    margin: 0 auto;
}

.collection-alt,
.section-alt {
    background: var(--surface-container);
}

.section-header,
.collection-header {
    text-align: center;
    margin-bottom: var(--spacing-stack-lg);
}

.section-header .eyebrow,
.collection-header .eyebrow {
    color: var(--primary);
    display: block;
    margin-bottom: var(--spacing-stack-sm);
}

.section-header h2,
.collection-header h2 {
    margin-bottom: var(--spacing-stack-md);
}

.section-intro {
    max-width: 700px;
    margin: 0 auto;
    color: var(--on-surface-variant);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-gutter);
}

.products-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Product Card */
.product-card {
    background: var(--surface-container-lowest);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.product-card.product-card-featured {
    border: 2px solid var(--primary);
}

.product-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: var(--spacing-stack-md);
    left: var(--spacing-stack-md);
    background: var(--primary);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.product-content {
    padding: var(--spacing-stack-lg);
}

.product-content h3 {
    margin-bottom: var(--spacing-stack-sm);
}

.product-specs {
    color: var(--primary);
    margin-bottom: var(--spacing-stack-md);
}

.product-desc {
    color: var(--on-surface-variant);
    margin-bottom: var(--spacing-stack-lg);
}

.product-actions {
    display: flex;
    gap: var(--spacing-stack-md);
    flex-wrap: wrap;
}

.product-price {
    margin-bottom: var(--spacing-stack-md);
}

.product-price .price {
    color: var(--on-surface-variant);
    margin-right: var(--spacing-stack-sm);
}

.product-price .amount {
    color: var(--primary);
}

.product-price .unit {
    color: var(--on-surface-variant);
    margin-left: var(--spacing-stack-sm);
}

/* Pricing Table */
.products-table {
    overflow-x: auto;
    margin-top: var(--spacing-stack-lg);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface-container-lowest);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.pricing-table th,
.pricing-table td {
    padding: var(--spacing-stack-md) var(--spacing-stack-lg);
    text-align: left;
    border-bottom: 1px solid var(--outline-variant);
}

.pricing-table th {
    background: var(--primary);
    color: #ffffff;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tr:hover td {
    background: var(--surface-container);
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */

.features-section {
    padding: var(--spacing-section-gap) var(--spacing-margin-desktop);
    background: var(--surface-container);
}

.features-section .container {
    max-width: var(--spacing-container-max);
    margin: 0 auto;
}

.features-header {
    text-align: center;
    margin-bottom: var(--spacing-stack-lg);
}

.features-header .eyebrow {
    color: var(--primary);
    display: block;
    margin-bottom: var(--spacing-stack-sm);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-gutter);
}

.feature-card {
    text-align: center;
    padding: var(--spacing-stack-lg);
}

.feature-card .material-symbols-outlined {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: var(--spacing-stack-md);
}

.feature-card h3 {
    margin-bottom: var(--spacing-stack-sm);
}

.feature-card p {
    color: var(--on-surface-variant);
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.cta-section {
    padding: var(--spacing-section-gap) var(--spacing-margin-desktop);
    background: var(--primary);
    color: #ffffff;
}

.cta-section .container {
    max-width: var(--spacing-container-max);
    margin: 0 auto;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content .eyebrow {
    color: var(--primary-fixed);
    display: block;
    margin-bottom: var(--spacing-stack-sm);
}

.cta-content h2 {
    color: #ffffff;
    margin-bottom: var(--spacing-stack-md);
}

.cta-content p {
    opacity: 0.9;
    margin-bottom: var(--spacing-stack-lg);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-stack-md);
    flex-wrap: wrap;
}

.cta-dark {
    background: var(--inverse-surface);
}

/* ==========================================================================
   PROJECTS PAGE
   ========================================================================== */

.stats-section {
    padding: var(--spacing-stack-lg) 0;
    background: var(--primary);
    color: #ffffff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-gutter);
    max-width: var(--spacing-container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-margin-desktop);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: clamp(32px, 4vw, 48px);
    color: var(--primary-fixed);
    margin-bottom: var(--spacing-stack-sm);
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
}

.projects-section {
    padding: var(--spacing-section-gap) var(--spacing-margin-desktop);
    background: var(--background);
}

.projects-section .container {
    max-width: var(--spacing-container-max);
    margin: 0 auto;
}

.projects-header {
    text-align: center;
    margin-bottom: var(--spacing-stack-lg);
}

.projects-header .eyebrow {
    color: var(--primary);
    display: block;
    margin-bottom: var(--spacing-stack-sm);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-gutter);
}

.project-card {
    background: var(--surface-container-lowest);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-4px);
}

.project-card-large {
    grid-column: span 2;
    grid-row: span 2;
}

.project-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.project-card-large .project-image {
    aspect-ratio: auto;
    height: 100%;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    padding: var(--spacing-stack-md);
}

.project-category {
    background: var(--primary);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 10px;
}

.project-content {
    padding: var(--spacing-stack-lg);
}

.project-number {
    color: var(--primary);
    display: block;
    margin-bottom: var(--spacing-stack-sm);
}

.project-location {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--on-surface-variant);
    margin-bottom: var(--spacing-stack-sm);
}

.project-location .material-symbols-outlined {
    font-size: 16px;
    color: var(--primary);
}

.project-desc {
    color: var(--on-surface-variant);
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-section {
    padding: var(--spacing-section-gap) var(--spacing-margin-desktop);
    background: var(--background);
}

.contact-section .container {
    max-width: var(--spacing-container-max);
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-section-gap);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-stack-lg);
}

.contact-card {
    padding: var(--spacing-stack-lg);
    background: var(--surface-container);
    border-radius: var(--radius-xl);
}

.contact-card .material-symbols-outlined {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: var(--spacing-stack-md);
}

.contact-card h3 {
    margin-bottom: var(--spacing-stack-sm);
}

.contact-value {
    color: var(--primary);
    text-decoration: none;
    display: block;
    margin-bottom: var(--spacing-stack-sm);
}

.contact-value:hover {
    text-decoration: underline;
}

.contact-card p {
    color: var(--on-surface-variant);
}

.social-links {
    margin-top: var(--spacing-stack-md);
}

.social-links h4 {
    margin-bottom: var(--spacing-stack-md);
}

.social-icons {
    display: flex;
    gap: var(--spacing-stack-md);
}

.social-icon {
    display: flex;
    align-items: center;
    gap: var(--spacing-stack-sm);
    padding: var(--spacing-stack-sm) var(--spacing-stack-md);
    background: var(--surface-container);
    border-radius: var(--radius-lg);
    color: var(--on-surface);
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    color: #ffffff;
}

.contact-form-wrapper {
    position: sticky;
    top: 100px;
}

.contact-form-card {
    background: var(--surface-container-lowest);
    padding: var(--spacing-stack-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
}

.contact-form-card h2 {
    margin-bottom: var(--spacing-stack-md);
}

.contact-form-card > p {
    color: var(--on-surface-variant);
    margin-bottom: var(--spacing-stack-lg);
}

.contact-form .form-group {
    margin-bottom: var(--spacing-stack-md);
}

.contact-form label {
    display: block;
    margin-bottom: var(--spacing-stack-sm);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: var(--spacing-stack-md);
    background: #ffffff;
    border: 1px solid var(--outline-variant);
    border-radius: var(--radius-lg);
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z' fill='%2343483f'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.btn-full {
    width: 100%;
}

.form-note {
    text-align: center;
    color: var(--on-surface-variant);
    margin-top: var(--spacing-stack-md);
}

.service-area {
    padding: var(--spacing-section-gap) var(--spacing-margin-desktop);
    background: var(--surface-container);
}

.service-area .container {
    max-width: var(--spacing-container-max);
    margin: 0 auto;
    text-align: center;
}

.service-area-content h2 {
    margin-bottom: var(--spacing-stack-md);
}

.service-area-content > p {
    color: var(--on-surface-variant);
    margin-bottom: var(--spacing-stack-lg);
}

.service-areas {
    display: flex;
    justify-content: center;
    gap: var(--spacing-stack-lg);
}

.area-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-stack-sm);
    padding: var(--spacing-stack-lg);
    background: var(--surface-container-lowest);
    border-radius: var(--radius-xl);
    min-width: 200px;
}

.area-badge .material-symbols-outlined {
    font-size: 32px;
    color: var(--primary);
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-card-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        position: static;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 150px 0 80px;
    }

    .collection-section,
    .products-section,
    .features-section,
    .cta-section,
    .contact-section,
    .service-area,
    .projects-section {
        padding-left: var(--spacing-margin-mobile);
        padding-right: var(--spacing-margin-mobile);
    }

    .products-grid,
    .products-grid-3 {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card-large {
        grid-column: span 1;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-areas {
        flex-direction: column;
    }

    .trust-badges .container {
        padding: 0 var(--spacing-margin-mobile);
    }

    .badges-grid {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

/* ==========================================================================
   NEW HEADER & FOOTER (Matching Design)
   ========================================================================== */

/* Reset & Base */
.wf-header,
.wf-footer {
    font-family: 'Quattrocento Sans', Arial, sans-serif;
}

.wf-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Header */
.wf-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    overflow: visible;
    background: rgba(252, 249, 244, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(140, 126, 109, 0.15);
}

.wf-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.wf-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    height: 72px;
    position: relative;
    z-index: 1001;
    background: var(--surface, #fcf9f4);
}

/* Logo */
.wf-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--on-surface, #1c1c19);
    z-index: 1002;
}

.wf-logo-img {
    height: auto;
    width: auto;
    max-height: 50px;
}

.wf-logo-icon {
    color: var(--primary, #34502b);
    display: flex;
}

.wf-logo-text {
    font-family: 'Trirong', serif;
    font-size: 20px;
    font-weight: 500;
}

/* Navigation */
.wf-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.wf-nav-list {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.wf-nav-item a {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    color: var(--on-surface-variant, #43483f);
    transition: color 0.2s ease;
}

.wf-nav-item a:hover,
.wf-nav-item.active a {
    color: var(--primary, #34502b);
}

/* Header Actions */
.wf-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.wf-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--on-surface, #1c1c19);
    text-decoration: none;
    transition: background 0.2s ease;
}

.wf-icon-btn:hover {
    background: rgba(52, 80, 43, 0.1);
}

.wf-cart-count {
    position: absolute;
    top: 1px;
    right: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border: 2px solid var(--surface, #fcf9f4);
    border-radius: 999px;
    background: var(--primary, #34502b);
    color: #ffffff;
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
}

.wf-cart-link.is-empty .wf-cart-count {
    display: none;
}

/* Buttons */
.wf-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: var(--primary, #34502b);
    color: #ffffff;
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.wf-btn-primary:hover {
    background: #2a3f23;
}

.wf-btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: #ffffff;
    color: var(--on-surface, #1c1c19);
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.wf-btn-white:hover {
    background: #f5f5f5;
}

.wf-btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: transparent;
    color: #ffffff;
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    transition: background 0.2s ease;
}

.wf-btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

.wf-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: transparent ;
    /* color: var(--primary, #34502b); */
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    border: 1px solid var(--primary, #34502b);
    border-radius: 4px;
    transition: all 0.2s ease;
}

.wf-btn-secondary:hover {
    background: var(--primary, #34502b);
    color: #ffffff;
}

/* Mobile Toggle */
.wf-mobile-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--on-surface, #1c1c19);
}

/* Hero Section */
.wf-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 72px;
}

.wf-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.wf-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wf-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.wf-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 0 32px;
    color: #ffffff;
}

.wf-hero-title {
    font-family: 'Trirong', serif;
    font-size: clamp(40px, 6vw, 69px);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 24px;
}

.wf-hero-title em {
    font-style: italic;
}

.wf-hero-text {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 16px;
}

.wf-hero-tagline {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 18px;
    font-style: italic;
    opacity: 0.8;
    margin-bottom: 32px;
}

.wf-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.wf-hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    opacity: 0.6;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Sections */
.wf-section {
    padding: 100px 0;
}

.wf-eyebrow {
    display: block;
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--primary, #34502b);
    margin-bottom: 16px;
}

.wf-headline-lg {
    font-family: 'Trirong', serif;
    font-size: clamp(30px, 6vw, 60px);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 24px;
}

.wf-headline-md {
    font-family: 'Trirong', serif;
    font-size: clamp(21px, 3vw, 39px);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 16px;
}

.wf-display-lg {
    font-family: 'Trirong', serif;
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 500;
    line-height: 1.1;
}

/* About Section */
.wf-about {
    background: var(--surface, #fcf9f4);
}

.wf-about-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 64px;
}

.wf-about-text p {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--on-surface-variant, #43483f);
    margin-bottom: 16px;
}

.wf-badges {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.wf-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--primary, #34502b);
}

/* Collections Section */
.wf-collections {
    background: #ffffff;
}

.wf-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 16px;
}

.wf-link {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--primary, #34502b);
    text-decoration: none;
}

.wf-link:hover {
    text-decoration: underline;
}

.wf-collection-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 24px;
    height: 500px;
}

.wf-collection-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.wf-collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.wf-collection-card:hover img {
    transform: scale(1.05);
}

.wf-collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #ffffff;
}

.wf-collection-number {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

.wf-collection-overlay h3 {
    font-family: 'Trirong', serif;
    font-size: 24px;
    margin: 8px 0;
}

.wf-collection-overlay p {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

.wf-collection-desc {
    font-size: 12px !important;
    margin-top: 8px !important;
}

.wf-collection-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #ffffff;
    text-decoration: none;
}

/* Services Section */
.wf-services {
    background: var(--primary, #34502b);
    color: #ffffff;
}

.wf-services-grid {
    display: grid;
    grid-template-columns: .78fr 1fr;
    gap: 80px;
}

.wf-services-left .wf-eyebrow {
    color: var(--primary-fixed, #caecbb);
}

.wf-services-left p {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 32px;
}

.wf-service-item {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.wf-service-number {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    opacity: 0.5;
}

.wf-service-item h3 {
    font-family: 'Trirong', serif;
    font-size: 22px;
    margin: 8px 0;
}

.wf-service-item p {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.7;
}

/* FAQ Section */
.wf-faq {
    background: var(--surface, #fcf9f4);
}

.wf-faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.wf-faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.wf-faq-item {
    border-bottom: 1px solid var(--outline-variant, #c3c8bc);
}

.wf-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.wf-faq-question h3 {
    font-family: 'Trirong', serif;
    font-size: 20px;
    font-weight: 400;
}

.wf-faq-question svg {
    flex-shrink: 0;
    color: var(--primary, #34502b);
}

.wf-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.wf-faq-item.active .wf-faq-answer {
    max-height: 300px;
}

.wf-faq-answer p {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--on-surface-variant, #43483f);
    padding-bottom: 24px;
}

.wf-faq-answer p strong {
    color: var(--on-surface, #1c1c19);
}

.wf-faq-cta {
    text-align: center;
    margin-top: 48px;
}

/* Testimonial Section */
.wf-testimonial {
    background: #ffffff;
}

.wf-testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.wf-testimonial-quote {
    position: relative;
}

.wf-quote-mark {
    font-family: 'Trirong', serif;
    font-size: 120px;
    color: var(--primary, #34502b);
    opacity: 0.15;
    position: absolute;
    top: -40px;
    left: -20px;
    line-height: 1;
}

.wf-testimonial-quote blockquote {
    font-family: 'Trirong', serif;
    font-size: 28px;
    font-style: italic;
    line-height: 1.4;
    margin: 0;
    padding-top: 40px;
}

.wf-testimonial-author {
    display: flex;
    /*align-items: center;*/
    gap: 16px;
    margin-top: 32px;
}

.wf-author-line {
    width: 40px;
    height: 1px;
    background: var(--primary, #34502b);
}

.wf-author-name {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin: 0;
}

.wf-author-title {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 14px;
    color: var(--on-surface-variant, #43483f);
    margin: 4px 0 0 0;
}

.wf-testimonial-image {
    border-radius: 8px;
    overflow: hidden;
}

.wf-testimonial-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Collaboration Section */
.wf-collaboration {
    background: var(--surface-container, #f0ede8);
}

.wf-collaboration-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.wf-collaboration-content p {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--on-surface-variant, #43483f);
    margin-bottom: 32px;
}

.wf-collaboration-features {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.wf-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--primary, #34502b);
}

.wf-feature svg {
    color: var(--primary, #34502b);
}

/* Newsletter Section */
.wf-newsletter {
    background: var(--primary, #34502b);
    color: #ffffff;
    text-align: center;
}

.wf-newsletter .wf-eyebrow {
    color: var(--primary-fixed, #caecbb);
}

.wf-newsletter h2 {
    color: #ffffff;
    margin-bottom: 16px;
}

.wf-newsletter p {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 32px;
}

.wf-newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto 16px;
}

.wf-newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 14px;
}

.wf-newsletter-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

.wf-newsletter-form input:focus {
    outline: none;
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.15);
}

.wf-newsletter-note {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 0.1em;
    opacity: 0.6;
    margin: 0;
}

/* Footer */
.wf-footer {
    background: var(--inverse-surface, #31302d);
    color: var(--inverse-on-surface, #f3f0eb);
}

.wf-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.wf-footer-top {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 80px;
    padding: 80px 0 60px;
}

.wf-footer-logo {
    font-family: 'Trirong', serif;
    font-size: 24px;
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.wf-footer-tagline {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 12px;
    letter-spacing: 0.15em;
    color: var(--primary-fixed, #caecbb);
    margin-bottom: 20px;
}

.wf-footer-desc {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.7;
    margin-bottom: 24px;
}

.wf-footer-social {
    display: flex;
    gap: 16px;
}

.wf-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    transition: background 0.2s ease;
}

.wf-footer-social a:hover {
    background: var(--primary, #34502b);
}

.wf-footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.wf-footer-col h4 {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #ffffff;
    margin-bottom: 20px;
}

.wf-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wf-footer-col li {
    margin-bottom: 12px;
}

.wf-footer-col a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.wf-footer-col a:hover {
    color: #ffffff;
}

.wf-footer-col svg {
    opacity: 0.5;
}

.wf-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.wf-footer-bottom p {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 13px;
    opacity: 0.5;
    margin: 0;
}

.wf-footer-legal {
    display: flex;
    gap: 24px;
}

.wf-footer-legal a {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
}

.wf-footer-legal a:hover {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 1024px) {
    .wf-about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .wf-about-left {
        text-align: center;
    }

    .wf-collection-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .wf-collection-card {
        height: 300px;
    }

    .wf-services-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .wf-testimonial-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .wf-testimonial-image {
        order: -1;
    }

    .wf-footer-top {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .wf-footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .wf-container {
        padding: 0 20px;
    }

    .wf-header-inner {
        padding: 0 20px;
    }

    .wf-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--surface, #fcf9f4);
        padding: 24px;
        border-top: 1px solid rgba(140, 126, 109, 0.15);
    }

    .wf-nav.active {
        display: block;
    }

    .wf-nav-list {
        flex-direction: column;
        gap: 16px;
    }

    .wf-mobile-toggle {
        display: block;
    }

    .wf-header-actions .wf-icon-btn {
        display: flex;
    }

    .wf-header-actions .wf-btn-primary {
        display: none;
    }

    .wf-hero-title {
        font-size: 36px;
    }

    .wf-hero-text {
        font-size: 16px;
    }

    .wf-hero-buttons {
        flex-direction: column;
    }

    .wf-section {
        padding: 60px 0;
    }

    .wf-badges {
        flex-direction: column;
        gap: 16px;
    }

    .wf-section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .wf-collaboration-features {
        flex-direction: column;
        gap: 24px;
    }

    .wf-newsletter-form {
        flex-direction: column;
    }

    .wf-footer-links {
        grid-template-columns: 1fr;
    }

    .wf-footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ==========================================================================
   PAGE SPECIFIC STYLES
   ========================================================================== */

/* Page Header */
.wf-page-header {
    position: relative;
    padding: 180px 0 100px;
    text-align: center;
    color: #ffffff;
}

.wf-page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.wf-page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wf-page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

.wf-page-header-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 32px;
}

.wf-page-header-content .wf-eyebrow {
    color: var(--primary-fixed, #caecbb);
}

.wf-page-header-content h1 {
    color: #ffffff;
    margin-bottom: 16px;
}

.wf-page-header-content p {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 18px;
    opacity: 0.9;
}

/* Trust Badges */
.wf-trust-badges {
    padding: 24px 0;
    background: var(--surface-container, #f0ede8);
    border-bottom: 1px solid var(--outline-variant, #c3c8bc);
}

.wf-trust-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.wf-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--primary, #34502b);
}

/* Collection Headers */
.wf-collection-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.wf-collection-header .wf-eyebrow {
    color: var(--primary, #34502b);
}

.wf-collection-header p {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 16px;
    color: var(--on-surface-variant, #43483f);
    margin-top: 16px;
}

.wf-collections-alt {
    background: var(--surface-container, #f0ede8);
}

/* Products Grid */
.wf-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.wf-products-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.wf-product-card {
    background: var(--surface-container-lowest, #ffffff);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wf-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.wf-product-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.wf-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.wf-product-card:hover .wf-product-image img {
    transform: scale(1.05);
}

.wf-product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary, #34502b);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.wf-product-content {
    padding: 24px;
}

.wf-product-content h3 {
    font-family: 'Trirong', serif;
    font-size: 20px;
    margin-bottom: 8px;
}

.wf-product-specs {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 12px;
    color: var(--primary, #34502b);
    margin-bottom: 12px;
}

.wf-product-content p {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 14px;
    color: var(--on-surface-variant, #43483f);
    line-height: 1.6;
    margin-bottom: 16px;
}

.wf-product-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.wf-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: transparent;
    color: var(--primary, #34502b);
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    border: 1px solid var(--primary, #34502b);
    border-radius: 4px;
    transition: all 0.2s ease;
}

.wf-btn-outline:hover {
    background: var(--primary, #34502b);
    color: #ffffff;
}

/* Features Section */
.wf-features {
    background: var(--surface-container, #f0ede8);
}

.wf-features-header {
    text-align: center;
    margin-bottom: 48px;
}

.wf-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.wf-feature-card {
    text-align: center;
    padding: 32px 16px;
}

.wf-feature-card svg {
    color: var(--primary, #34502b);
    margin-bottom: 16px;
}

.wf-feature-card h3 {
    font-family: 'Trirong', serif;
    font-size: 18px;
    margin-bottom: 12px;
}

.wf-feature-card p {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 14px;
    color: var(--on-surface-variant, #43483f);
    line-height: 1.6;
}

/* CTA Section */
.wf-cta {
    background: var(--primary, #34502b);
    color: #ffffff;
    text-align: center;
}

.wf-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.wf-cta-content .wf-eyebrow {
    color: var(--primary-fixed, #caecbb);
}

.wf-cta-content h2 {
    /* color: #ffffff; */
    margin-bottom: 16px;
}

.wf-cta-content p {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.wf-cta-dark {
    background: var(--inverse-surface, #31302d);
}

.wf-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Contact Page */
.wf-contact {
    background: var(--surface, #fcf9f4);
}

.wf-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.wf-contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.wf-contact-card {
    padding: 24px;
    background: var(--surface-container-lowest, #ffffff);
    border-radius: 8px;
}

.wf-contact-card svg {
    color: var(--primary, #34502b);
    margin-bottom: 16px;
}

.wf-contact-card h3 {
    font-family: 'Trirong', serif;
    font-size: 18px;
    margin-bottom: 8px;
}

.wf-contact-value {
    display: block;
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 18px;
    color: var(--primary, #34502b);
    text-decoration: none;
    margin-bottom: 4px;
}

.wf-contact-value:hover {
    text-decoration: underline;
}

.wf-contact-card p {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 14px;
    color: var(--on-surface-variant, #43483f);
}

.wf-social-links {
    margin-top: 16px;
}

.wf-social-links h4 {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.wf-social-icons {
    display: flex;
    gap: 12px;
}

.wf-social-icons a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--surface-container, #f0ede8);
    border-radius: 4px;
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 12px;
    color: var(--on-surface, #1c1c19);
    text-decoration: none;
    transition: background 0.2s ease;
}

.wf-social-icons a:hover {
    background: var(--primary, #34502b);
    color: #ffffff;
}

.wf-contact-form-wrapper {
    position: sticky;
    top: 100px;
    align-self: start;
}

.wf-contact-form-card {
    background: var(--surface-container-lowest, #ffffff);
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.wf-contact-form-card h2 {
    margin-bottom: 8px;
}

.wf-contact-form-card > p {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 14px;
    color: var(--on-surface-variant, #43483f);
    margin-bottom: 24px;
}

.wf-form-group {
    margin-bottom: 20px;
}

.wf-form-group label {
    display: block;
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.wf-form-group input,
.wf-form-group select,
.wf-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: #ffffff;
    border: 1px solid var(--outline-variant, #c3c8bc);
    border-radius: 4px;
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.wf-form-group input:focus,
.wf-form-group select:focus,
.wf-form-group textarea:focus {
    outline: none;
    border-color: var(--primary, #34502b);
}

.wf-form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2343483f' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.wf-btn-full {
    width: 100%;
}

.wf-form-note {
    text-align: center;
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--on-surface-variant, #43483f);
    margin-top: 16px;
}

/* Service Area */
.wf-service-area {
    background: var(--surface-container, #f0ede8);
}

.wf-service-area-content {
    text-align: center;
}

.wf-service-area-content p {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 18px;
    color: var(--on-surface-variant, #43483f);
    margin-bottom: 40px;
}

.wf-service-areas {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.wf-area-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 48px;
    background: var(--surface-container-lowest, #ffffff);
    border-radius: 8px;
}

.wf-area-badge svg {
    color: var(--primary, #34502b);
}

.wf-area-name {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--on-surface, #1c1c19);
}

.wf-area-badge p {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 14px;
    color: var(--on-surface-variant, #43483f);
    margin: 0;
}

/* Projects Stats */
.wf-projects-stats {
    padding: 32px 0;
    background: var(--primary, #34502b);
}

.wf-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.wf-stat-item {
    text-align: center;
}

.wf-stat-number {
    display: block;
    font-family: 'Trirong', serif;
    font-size: 36px;
    color: var(--primary-fixed, #caecbb);
    margin-bottom: 8px;
}

.wf-stat-label {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.8);
}

/* Projects Grid */
.wf-projects-section {
    background: var(--surface, #fcf9f4);
}

.wf-projects-header {
    text-align: center;
    margin-bottom: 48px;
}

.wf-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.wf-project-card {
    background: var(--surface-container-lowest, #ffffff);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.wf-project-card:hover {
    transform: translateY(-4px);
}

.wf-project-large {
    grid-column: span 2;
    grid-row: span 2;
}

.wf-project-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.wf-project-large .wf-project-image {
    height: 100%;
}

.wf-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.wf-project-card:hover .wf-project-image img {
    transform: scale(1.05);
}

.wf-project-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary, #34502b);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.wf-project-content {
    padding: 0 24px;
}

.wf-project-number {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--primary, #34502b);
    display: block;
    margin-bottom: 8px;
}

.wf-project-content h3 {
    font-family: 'Trirong', serif;
    font-size: 20px;
    margin-bottom: 8px;
}

.wf-project-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 14px;
    color: var(--on-surface-variant, #43483f);
    margin-bottom: 12px;
}

.wf-project-location svg {
    color: var(--primary, #34502b);
}

.wf-project-desc {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 14px;
    color: var(--on-surface-variant, #43483f);
    line-height: 1.6;
}

.wf-project-details {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 13px;
    color: var(--on-surface, #1c1c19);
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--outline-variant, #c3c8bc);
}

/* Responsive */
@media (max-width: 1024px) {
    .wf-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wf-products-grid {
        grid-template-columns: 1fr;
    }

    .wf-products-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .wf-contact-grid {
        grid-template-columns: 1fr;
    }

    .wf-contact-form-wrapper {
        position: static;
    }

    .wf-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wf-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wf-project-large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .wf-page-header {
        padding: 140px 0 60px;
    }

    .wf-trust-grid {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .wf-products-grid,
    .wf-products-grid-3 {
        grid-template-columns: 1fr;
    }

    .wf-features-grid {
        grid-template-columns: 1fr;
    }

    .wf-service-areas {
        flex-direction: column;
    }

    .wf-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wf-projects-grid {
        grid-template-columns: 1fr;
    }

    .wf-project-large {
        grid-column: span 1;
    }
}

/* ==========================================================================
   PRICING TABLES & PRODUCT FEATURES
   ========================================================================== */

.wf-pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface-container-lowest, #ffffff);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
}

.wf-pricing-table th,
.wf-pricing-table td {
    padding: 16px 24px;
    text-align: left;
    border-bottom: 1px solid var(--outline-variant, #c3c8bc);
}

.wf-pricing-table th {
    background: var(--primary, #34502b);
    color: #ffffff;
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.wf-pricing-table tr:last-child td {
    border-bottom: none;
}

.wf-pricing-table tr:hover td {
    background: var(--surface-container, #f0ede8);
}

.wf-pricing-table td strong {
    color: var(--primary, #34502b);
    font-size: 18px;
}

.wf-table-note {
    text-align: center;
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 14px;
    color: var(--on-surface-variant, #43483f);
    font-style: italic;
}

.wf-product-featured {
    border: 2px solid var(--primary, #34502b);
}

.wf-product-price {
    margin: 16px 0;
}

.wf-price-label {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--on-surface-variant, #43483f);
}

.wf-price-amount {
    font-family: 'Trirong', serif;
    font-size: 28px;
    color: var(--primary, #34502b);
    margin: 0 8px;
}

.wf-price-unit {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--on-surface-variant, #43483f);
}

/* ==========================================================================
   MOBILE NAVIGATION
   ========================================================================== */

/* Mobile Nav Wrapper - Hidden by default */
.wf-mobile-nav {
    display: none;
}

/* Desktop Navigation */
.wf-nav-desktop {
    display: flex;
}

.wf-nav-desktop .wf-nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.wf-nav-desktop .wf-nav-item a {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--on-surface-variant, #43483f);
    text-decoration: none;
    transition: color 0.2s ease;
}

.wf-nav-desktop .wf-nav-item a:hover,
.wf-nav-desktop .wf-nav-item.active a {
    color: var(--primary, #34502b);
}

/* Mobile Toggle Button */
.wf-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    z-index: 1002;
}

/* Mobile Overlay */
.wf-mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.wf-mobile-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

/* Mobile Breakpoints - 1200px and below */
@media (max-width: 1200px) {
    /* Hide desktop elements */
    .wf-nav-desktop {
        display: none !important;
    }

    .wf-header-actions {
        display: flex !important;
        margin-left: auto;
    }

    .wf-header-actions .wf-btn-primary {
        display: none !important;
    }

    /* Show mobile elements */
    .wf-mobile-nav,
    .wf-mobile-toggle {
        display: block !important;
    }

    .wf-mobile-toggle {
        display: flex !important;
    }

    /* Mobile Nav Wrapper */
    .wf-mobile-nav {
        position: fixed;
        top: 72px;
        right: 0;
        bottom: 0;
        width: 300px;
        max-width: 85vw;
        height: calc(100vh - 72px);
        background: var(--surface, #fcf9f4);
        z-index: 10000;
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: -4px 0 30px rgba(0, 0, 0, 0.2);
    }

    .wf-mobile-nav.active,
    body.menu-open .wf-mobile-nav {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(0) !important;
    }

    /* Mobile Nav Inner */
    .wf-nav-mobile {
        display: block !important;
        padding: 24px 24px 24px;
    }

    .wf-nav-mobile .wf-nav-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .wf-nav-mobile .wf-nav-item {
        border-bottom: 1px solid var(--outline-variant, #c3c8bc);
    }

    .wf-nav-mobile .wf-nav-item:first-child {
        border-top: 1px solid var(--outline-variant, #c3c8bc);
    }

    .wf-nav-mobile .wf-nav-item a {
        display: block;
        padding: 18px 0;
        font-size: 18px;
        font-weight: 400;
        color: var(--on-surface, #1c1c19);
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .wf-nav-mobile .wf-nav-item a:hover,
    .wf-nav-mobile .wf-nav-item.active a {
        color: var(--primary, #34502b);
    }

    /* Mobile Actions */
    .wf-mobile-actions {
        margin-top: 32px;
        padding-top: 24px;
        border-top: 1px solid var(--outline-variant, #c3c8bc);
    }

    .wf-mobile-actions .wf-cart-link {
        width: 100%;
        height: auto;
        min-height: 48px;
        justify-content: flex-start;
        gap: 12px;
        padding: 12px 0;
        border-radius: 0;
        font-family: 'Quattrocento Sans', sans-serif;
        font-size: 16px;
        color: var(--on-surface, #1c1c19);
    }

    .wf-mobile-actions .wf-cart-link::after {
        content: 'Cart';
    }

    .wf-mobile-actions .wf-cart-count {
        position: static;
        margin-left: auto;
        border-color: transparent;
    }

    .wf-mobile-phone {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 0;
        font-size: 16px;
        color: var(--on-surface, #1c1c19);
        text-decoration: none;
    }

    .wf-mobile-actions .wf-btn-primary {
        margin-top: 16px;
        width: 100%;
    }

    /* Body scroll lock */
    body.menu-open {
        overflow: hidden;
    }

    /* Toggle Animation */
    .wf-mobile-toggle .menu-icon {
        display: block;
    }

    .wf-mobile-toggle .close-icon {
        display: none;
    }

    .wf-mobile-toggle.active .menu-icon {
        display: none;
    }

    .wf-mobile-toggle.active .close-icon {
        display: block;
    }
}

/* ==========================================================================
   WOOD FLOORING COLLECTIONS PAGE
   ========================================================================== */

/* Intro Section */
.wf-intro {
    padding: 60px 0;
    text-align: center;
}

.wf-intro-text {
    font-family: 'Trirong', serif;
    font-size: 20px;
    line-height: 1.7;
    color: var(--on-surface, #1c1c19);
    max-width: 800px;
    margin: 0 auto 24px;
}

.wf-badges-row {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
}

.wf-badges-row .wf-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--primary, #34502b);
}

.wf-philosophy {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 14px;
    color: var(--on-surface-variant, #43483f);
    max-width: 600px;
    margin: 0 auto;
}

/* Collections Grid */
.wf-collections-section {
    padding: 40px 0 80px;
}

.wf-collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Collection Card */
.wf-collection-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 8px;
    overflow: hidden;
    background: var(--surface-container-lowest, #ffffff);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wf-collection-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.wf-collection-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.wf-collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.wf-collection-card:hover .wf-collection-image img {
    transform: scale(1.05);
}

.wf-collection-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-top: 1px solid var(--outline-variant, #c3c8bc);
}

.wf-collection-name {
    font-family: 'Trirong', serif;
    font-size: 16px;
    color: var(--on-surface, #1c1c19);
}

.wf-collection-footer svg {
    color: var(--primary, #34502b);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.wf-collection-card:hover .wf-collection-footer svg {
    opacity: 1;
    transform: translateX(0);
}

/* Page Hero */
.wf-page-hero {
    position: relative;
    padding: 160px 0 80px;
    text-align: center;
}

.wf-page-hero .wf-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.wf-page-hero .wf-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wf-page-hero .wf-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

.wf-page-hero .wf-hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 32px;
}

.wf-page-hero h1 {
    font-family: 'Trirong', serif;
    font-size: clamp(36px, 5vw, 51px);
    color: #ffffff;
    margin-bottom: 12px;
}

.wf-hero-subtitle {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 18px;
    color: rgba(255,255,255,0.9);
}

/* Product Rows */
.wf-products-list {
    max-width: 900px;
    margin: 0 auto;
}

.wf-product-row {
    padding: 48px 0;
    border-bottom: 1px solid var(--outline-variant, #c3c8bc);
}

.wf-product-row:last-child {
    border-bottom: none;
}

.wf-product-category {
    display: block;
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--primary, #34502b);
    margin-bottom: 12px;
}

.wf-product-row h2 {
    font-family: 'Trirong', serif;
    font-size: 28px;
    margin-bottom: 16px;
}

.wf-product-row p {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--on-surface-variant, #43483f);
    margin-bottom: 20px;
}

.wf-product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.wf-product-features li {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 14px;
    color: var(--on-surface-variant, #43483f);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.wf-product-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary, #34502b);
    border-radius: 50%;
}

/* Stats Bar */
.wf-stats-bar {
    background: var(--primary, #34502b);
    padding: 24px 0;
}

.wf-stats-row {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.wf-stats-row span {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.8);
}

/* CTA Light */
.wf-cta-light {
    background: var(--surface-container, #f0ede8);
    padding: 80px 0;
}

.wf-cta-light .wf-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.wf-cta-light h2 {
    font-family: 'Trirong', serif;
    font-size: 39px;
    margin-bottom: 16px;
}

.wf-cta-light p {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 16px;
    color: var(--on-surface-variant, #43483f);
    margin-bottom: 32px;
}

.wf-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Service Areas */
.wf-service-area {
    background: var(--surface-container, #f0ede8);
}

.wf-service-area-content {
    text-align: center;
}

.wf-service-area-content h2 {
    font-family: 'Trirong', serif;
    font-size: 32px;
    margin-bottom: 16px;
}

.wf-service-area-content > p {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 16px;
    color: var(--on-surface-variant, #43483f);
    margin-bottom: 40px;
}

.wf-service-areas {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.wf-area-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 32px;
    background: var(--surface-container-lowest, #ffffff);
    border-radius: 8px;
    min-width: 200px;
}

.wf-area-badge svg {
    color: var(--primary, #34502b);
}

.wf-area-name {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--on-surface, #1c1c19);
}

.wf-area-badge p {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 12px;
    color: var(--on-surface-variant, #43483f);
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .wf-collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .wf-collections-grid {
        grid-template-columns: 1fr;
    }

    .wf-badges-row {
        flex-direction: column;
        gap: 16px;
    }

    .wf-stats-row {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .wf-service-areas {
        flex-direction: column;
        align-items: center;
    }
}
