/* =====================================================
   VEYRA AUDIO - Main Stylesheet
   =====================================================
   
   BRAND CUSTOMIZATION
   -------------------
   Edit the CSS variables below to change brand colors
   throughout the entire site.
   
   ===================================================== */

:root {
    /* ===========================================
       PRIMARY BRAND COLORS
       =========================================== */
    --color-accent: #c9a66b;
    --color-warm: #e8d5c4;
    --color-sage: #c5d5cb;
    --color-sky: #c4d4e8;
    --color-blush: #e8c4c4;
    --color-clay: #d4c4b0;
    
    /* ===========================================
       NEUTRAL COLORS
       =========================================== */
    --color-white: #ffffff;
    --color-light: #f8f7f5;
    --color-gray-100: #f2f1ef;
    --color-gray-200: #e5e4e2;
    --color-gray-300: #d1d0ce;
    --color-gray-400: #a8a7a5;
    --color-gray-500: #6e6d6b;
    --color-gray-600: #4a4948;
    --color-gray-700: #2d2c2b;
    --color-dark: #1a1918;
    --color-black: #0d0c0b;
    
    /* ===========================================
       TYPOGRAPHY
       =========================================== */
    --font-primary: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* ===========================================
       BORDER RADIUS
       =========================================== */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
}

/* =====================================================
   BASE STYLES
   ===================================================== */

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    line-height: 1.2;
    margin-top: 0;
}

p {
    margin-top: 0;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-dark);
}

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

/* =====================================================
   NAVIGATION
   ===================================================== */

.navbar {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-dark) !important;
}

.brand-name {
    font-weight: 700;
}

.brand-suffix {
    font-weight: 300;
    opacity: 0.7;
}

.navbar-nav .nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-gray-600) !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-dark) !important;
}

.navbar-nav .nav-link.active {
    position: relative;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--color-dark);
}

.btn-nav {
    padding: 0.625rem 1.5rem !important;
    font-size: 0.875rem !important;
}

/* =====================================================
   BUTTONS
   ===================================================== */

.btn {
    font-family: var(--font-primary);
    font-weight: 500;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-dark) !important;
    border-color: var(--color-dark) !important;
    color: var(--color-white) !important;
}

.btn-primary:hover {
    background-color: var(--color-gray-700) !important;
    border-color: var(--color-gray-700) !important;
    transform: translateY(-2px);
}

.btn-outline-dark {
    background-color: transparent;
    border-color: var(--color-dark);
    color: var(--color-dark);
}

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

.btn-outline-light {
    background-color: transparent;
    border-color: rgba(255,255,255,0.4);
    color: var(--color-white);
}

.btn-outline-light:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    color: var(--color-white);
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1rem;
}

/* =====================================================
   HERO SECTION (Homepage)
   ===================================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--color-light) 0%, var(--color-white) 100%);
}

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

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, var(--color-warm) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, var(--color-sage) 0%, transparent 40%),
                radial-gradient(ellipse at 90% 30%, var(--color-sky) 0%, transparent 30%);
    opacity: 0.4;
}

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

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--color-gray-500);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--color-gray-400);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-gray-300), transparent);
    margin: 0.75rem auto 0;
}

/* Animation classes */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================================
   PAGE HERO (Interior pages)
   ===================================================== */

.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    background: linear-gradient(180deg, var(--color-light) 0%, var(--color-white) 100%);
    position: relative;
}

.page-hero-cool {
    background: linear-gradient(135deg, rgba(196, 212, 232, 0.3) 0%, rgba(197, 213, 203, 0.3) 50%, var(--color-light) 100%);
}

.page-hero-warm {
    background: linear-gradient(135deg, rgba(232, 213, 196, 0.3) 0%, rgba(232, 196, 196, 0.3) 50%, var(--color-light) 100%);
}

.page-hero-content {
    max-width: 900px;
}

.page-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.page-hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-gray-500);
    max-width: 700px;
}

/* =====================================================
   SECTION HEADERS
   ===================================================== */

.section-header {
    margin-bottom: 3rem;
}

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

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

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-gray-500);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* =====================================================
   PHILOSOPHY SECTION (Homepage)
   ===================================================== */

.philosophy-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-light) 100%);
}

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

.philosophy-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    margin-bottom: 2rem;
}

.philosophy-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-dark);
    margin-bottom: 2rem;
}

.philosophy-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-gray-500);
    max-width: 700px;
    margin: 0 auto;
}

/* =====================================================
   DIFFERENCE SECTION (Homepage)
   ===================================================== */

.difference-section {
    padding: 100px 0;
    background: var(--color-white);
}

.difference-visual {
    background: linear-gradient(135deg, var(--color-warm) 0%, var(--color-sage) 100%);
    border-radius: 20px;
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.difference-visual svg {
    width: 100%;
    max-width: 280px;
    height: auto;
}

.difference-content .section-eyebrow {
    margin-bottom: 1rem;
}

.difference-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.difference-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-gray-500);
    margin-bottom: 1.5rem;
}

.difference-text:last-child {
    margin-bottom: 0;
}

/* =====================================================
   ADVANTAGES SECTION (Homepage)
   ===================================================== */

.advantages-section {
    padding: 100px 0;
    background: var(--color-light);
}

.advantages-header {
    text-align: center;
    margin-bottom: 4rem;
}

.advantages-header .section-eyebrow {
    margin-bottom: 0.75rem;
}

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

.advantage-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.advantage-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--color-dark);
}

.advantage-icon svg {
    width: 32px;
    height: 32px;
}

.advantage-icon-warm { background: var(--color-warm); }
.advantage-icon-sage { background: var(--color-sage); }
.advantage-icon-sky { background: var(--color-sky); }
.advantage-icon-blush { background: var(--color-blush); }
.advantage-icon-clay { background: var(--color-clay); }

.advantage-card h3,
.advantage-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.advantage-card p,
.advantage-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-gray-500);
    margin-bottom: 0;
}

/* =====================================================
   PRODUCTS SECTION (Homepage)
   ===================================================== */

.products-section {
    padding: 100px 0;
    background: var(--color-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--color-light);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.product-card.product-featured {
    border: 2px solid var(--color-accent);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-dark);
    color: var(--color-white);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
    z-index: 10;
}

.product-image {
    aspect-ratio: 1;
    background: linear-gradient(180deg, var(--color-gray-100) 0%, var(--color-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.product-featured .product-image {
    background: linear-gradient(180deg, var(--color-warm) 0%, var(--color-light) 100%);
}

.product-info {
    padding: 2rem;
    text-align: center;
}

.product-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.product-tagline {
    font-size: 1rem;
    color: var(--color-gray-500);
    margin-bottom: 1.5rem;
}

/* Speaker visuals */
.speaker-visual {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.speaker-visual .speaker-body {
    width: 60px;
    height: 120px;
    background: var(--color-gray-200);
    border-radius: 4px;
    position: relative;
}

.speaker-visual .speaker-driver {
    width: 40px;
    height: 40px;
    border: 3px solid var(--color-gray-400);
    border-radius: 50%;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-white);
}

.speaker-visual .speaker-driver::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border: 2px solid var(--color-gray-400);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.speaker-visual .speaker-driver-2 {
    width: 28px;
    height: 28px;
    border: 3px solid var(--color-gray-400);
    border-radius: 50%;
    position: absolute;
    top: 75px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-white);
}

@media (max-width: 991px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   AUDIENCE SECTIONS (Homepage teasers)
   ===================================================== */

.audience-section {
    padding: 100px 0;
}

.audience-designers {
    background: linear-gradient(135deg, var(--color-warm) 0%, rgba(232, 196, 196, 0.5) 100%);
}

.audience-engineers {
    background: linear-gradient(135deg, var(--color-sage) 0%, rgba(196, 212, 232, 0.5) 100%);
}

.audience-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.audience-visual svg {
    width: 100%;
    max-width: 350px;
    height: auto;
    color: var(--color-dark);
    opacity: 0.5;
}

.audience-content {
    padding: 3rem;
}

.audience-content .section-eyebrow {
    color: var(--color-gray-600);
}

.audience-title {
    font-size: 2rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.audience-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-gray-600);
    margin-bottom: 2rem;
}

/* =====================================================
   QUOTE SECTION
   ===================================================== */

.quote-section {
    padding: 100px 0;
    background: var(--color-dark);
}

.quote-block {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-style: italic;
    line-height: 1.6;
    color: var(--color-white);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* =====================================================
   CONTENT SECTIONS (Interior pages)
   ===================================================== */

.content-section {
    padding: 80px 0;
}

.content-section.bg-light {
    background: var(--color-light);
}

.content-block {
    max-width: 800px;
    margin: 0 auto;
}

.content-block p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-gray-600);
    margin-bottom: 1.5rem;
}

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

.lead-text {
    font-size: 1.25rem !important;
    font-weight: 400;
    color: var(--color-dark) !important;
    margin-bottom: 2rem !important;
}

.highlight-quote {
    font-size: 1.125rem !important;
    font-weight: 500;
    color: var(--color-dark) !important;
    padding-left: 1.5rem;
    border-left: 3px solid var(--color-accent);
    margin: 2rem 0 !important;
}

.closing-statement {
    font-size: 1.125rem !important;
    font-style: italic;
    color: var(--color-gray-500) !important;
    margin-top: 2rem !important;
}

/* =====================================================
   FEATURE SECTIONS (Split layout with visual)
   ===================================================== */

.feature-section {
    overflow: hidden;
}

.feature-section .row {
    min-height: 500px;
}

.feature-visual {
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-sky) 100%);
}

.feature-visual-cool {
    background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-sky) 100%);
}

.feature-visual-warm {
    background: linear-gradient(135deg, var(--color-warm) 0%, var(--color-blush) 100%);
}

.feature-visual-sage {
    background: linear-gradient(135deg, var(--color-sky) 0%, var(--color-sage) 100%);
}

.feature-visual svg {
    width: 100%;
    max-width: 350px;
    height: auto;
}

.feature-content {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.feature-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

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

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

@media (max-width: 991px) {
    .feature-section .row {
        min-height: auto;
    }
    
    .feature-visual {
        min-height: 350px;
    }
    
    .feature-content {
        padding: 3rem 2rem;
    }
}

/* =====================================================
   BENEFITS SECTION (4-card grid)
   ===================================================== */

.benefits-section {
    padding: 100px 0;
    background: var(--color-light);
}

.benefits-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem !important;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.benefit-number {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-gray-500);
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 575px) {
    .benefits-grid {
        grid-template-columns: 1fr !important;
    }
}

/* =====================================================
   INFO CARDS (Designer/Engineer pages)
   ===================================================== */

.info-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    height: 100%;
}

.info-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--color-white);
}

.info-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.info-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-gray-500);
    margin-bottom: 0;
}

/* =====================================================
   CTA SECTIONS
   ===================================================== */

.cta-section {
    padding: 100px 0;
    background: var(--color-dark);
    color: var(--color-white);
}

.cta-section.cta-cool {
    background: linear-gradient(135deg, var(--color-gray-700) 0%, var(--color-dark) 100%);
}

.cta-section.cta-warm {
    background: linear-gradient(135deg, #4a4540 0%, var(--color-dark) 100%);
}

.cta-section .cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-section .cta-text {
    font-size: 1.125rem;
    color: var(--color-gray-300);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* =====================================================
   PRODUCTS PAGE - Detail Sections
   ===================================================== */

.products-detail-section {
    padding: 80px 0;
}

.products-detail-section.bg-light {
    background: var(--color-light);
}

.product-detail {
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--color-gray-200);
}

.product-detail:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.product-detail-image {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--color-light) 0%, var(--color-gray-100) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-detail-image.featured {
    background: linear-gradient(135deg, var(--color-warm) 0%, var(--color-sage) 100%);
}

.product-detail-image.amp-image {
    background: linear-gradient(135deg, var(--color-sky) 0%, var(--color-sage) 100%);
}

.product-detail-content {
    padding: 2rem 0;
}

.product-detail-name {
    font-size: 2rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.product-detail-tagline {
    font-size: 1.125rem;
    color: var(--color-accent);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.product-detail-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-gray-600);
    margin-bottom: 2rem;
}

.product-specs {
    margin-bottom: 2rem;
}

.product-specs h4 {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gray-400);
    margin-bottom: 1rem;
}

.product-specs dl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 2rem;
}

.product-specs dt {
    font-size: 0.9375rem;
    color: var(--color-gray-500);
}

.product-specs dd {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-dark);
    margin: 0;
}

.capacity-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.capacity-list li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--color-gray-600);
    border-bottom: 1px solid var(--color-gray-200);
}

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

.product-capacity h4,
.product-specs h4 {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gray-400);
    margin-bottom: 1rem;
}

.product-note {
    font-size: 0.9375rem;
    color: var(--color-gray-500);
    font-style: italic;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--color-light);
    border-radius: 8px;
}

/* =====================================================
   ACCESSORIES SECTION
   ===================================================== */

.accessories-section {
    padding: 80px 0;
}

.accessories-content {
    padding: 2rem 0;
}

.accessories-intro {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-gray-600);
    margin-bottom: 2rem;
}

.accessories-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.accessories-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--color-gray-600);
}

.accessories-list li svg {
    flex-shrink: 0;
    color: var(--color-accent);
}

.accessories-visual {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--color-warm) 0%, var(--color-clay) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.accessories-visual svg {
    max-width: 300px;
    height: auto;
}

/* Amp visual */
.amp-visual {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.amp-visual svg {
    max-width: 200px;
    height: auto;
}

/* =====================================================
   CONTACT PAGE STYLES
   Add these to your style.css file
   ===================================================== */

/* -----------------------------------------------------
   CONTACT HERO
   ----------------------------------------------------- */

.contact-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f8f7f5 0%, #fff 100%);
    z-index: 0;
}

.contact-hero-blob {
    position: absolute;
    top: -30%;
    right: -15%;
    width: 60%;
    height: 160%;
    background: radial-gradient(ellipse at center, rgba(197, 213, 203, 0.3) 0%, transparent 70%);
    z-index: 0;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
}

.contact-hero .hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #c9a66b;
    margin-bottom: 1.5rem;
}

.contact-hero-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.1;
    color: #1a1918;
    margin-bottom: 1.5rem;
}

.contact-hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #6e6d6b;
    max-width: 600px;
}

/* -----------------------------------------------------
   CONTACT INTRO SECTION
   ----------------------------------------------------- */

.contact-intro {
    padding: 60px 0 80px;
    background: #fff;
}

.contact-intro-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #6e6d6b;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-intro-text strong {
    color: #1a1918;
    font-weight: 500;
}

/* -----------------------------------------------------
   CONTACT FORM SECTION
   ----------------------------------------------------- */

.contact-form-section {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #f8f7f5 0%, #fff 100%);
    position: relative;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e5e4e2, transparent);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form-header .section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #c9a66b;
    margin-bottom: 0.75rem;
}

.contact-form-header h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
    color: #1a1918;
    margin-bottom: 0.75rem;
}

.contact-form-header p {
    font-size: 1rem;
    color: #6e6d6b;
    margin: 0;
}

/* Form Messages */
.form-message {
        display: flex;
        align-items: center;
        padding: 16px 20px;
        border-radius: 8px;
        margin-bottom: 32px;
        font-size: 15px;
        font-weight: 500;
    }
    
    .form-message-success {
        background: #e8f5e9;
        color: #2e7d32;
        border: 1px solid #c8e6c9;
    }
    
    .form-message-error {
        background: #ffebee;
        color: #c62828;
        border: 1px solid #ffcdd2;
    }
    
    .form-success-state {
        text-align: center;
        padding: 60px 20px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .form-success-state .success-icon {
        width: 80px;
        height: 80px;
        background: var(--color-sage);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 24px;
    }
    
    .form-success-state .success-icon svg {
        color: white;
    }
    
    .form-success-state h3 {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 16px;
        color: var(--color-text);
    }
    
    .form-success-state p {
        font-size: 16px;
        color: var(--color-text-light);
        line-height: 1.6;
        margin-bottom: 32px;
    }

/* -----------------------------------------------------
   MODERN FORM STYLES
   ----------------------------------------------------- */

.modern-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

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

.form-field {
    position: relative;
}

.form-field label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1a1918;
    margin-bottom: 0.5rem;
}

.form-field label .required {
    color: #c9a66b;
    margin-left: 2px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-family: inherit;
    color: #1a1918;
    background: #fff;
    border: 1px solid #e5e4e2;
    border-radius: 12px;
    transition: all 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
    border-color: #d4d3d1;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #c9a66b;
    box-shadow: 0 0 0 3px rgba(201, 166, 107, 0.1);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #a8a7a5;
}

.form-field select {
    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='%236e6d6b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 18px;
    padding-right: 3rem;
    cursor: pointer;
}

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

/* Turnstile Widget */
.turnstile-wrapper {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

/* Form Divider */
.form-divider {
    display: flex;
    align-items: center;
    margin: 2.5rem 0;
    gap: 1.5rem;
}

.form-divider::before,
.form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e4e2;
}

.form-divider span {
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #a8a7a5;
}

/* Submit Button */
.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.125rem 3rem;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    background: #1a1918;
    border: 2px solid #1a1918;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.btn-submit:hover {
    background: #2d2c2b;
    border-color: #2d2c2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 25, 24, 0.15);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-submit svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

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




/* -----------------------------------------------------
   CONTACT INFO CARDS
   ----------------------------------------------------- */

.contact-info-section {
    padding: 80px 0;
    background: #fff;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 767px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info-item {
    text-align: center;
    padding: 2rem;
}

.contact-info-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8d5c4 0%, #c5d5cb 100%);
    border-radius: 16px;
    color: #1a1918;
}

.contact-info-icon svg {
    width: 28px;
    height: 28px;
}

.contact-info-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1918;
    margin-bottom: 0.5rem;
}

.contact-info-item p {
    font-size: 1rem;
    color: #6e6d6b;
    margin: 0;
}

.contact-info-item a {
    color: #c9a66b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info-item a:hover {
    color: #b8955a;
}

/* -----------------------------------------------------
   FAQ SECTION
   ----------------------------------------------------- */

.contact-faq-section {
    padding: 100px 0;
    background: #f8f7f5;
}

.contact-faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-faq-header .section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #c9a66b;
    margin-bottom: 0.75rem;
}

.contact-faq-header h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
    color: #1a1918;
    margin: 0;
}

/* Modern Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #1a1918;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: #fafaf9;
}

.faq-question-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a66b;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-question-icon {
    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;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #6e6d6b;
}

/* -----------------------------------------------------
   CONTACT CTA SECTION
   ----------------------------------------------------- */

.contact-cta-section {
    padding: 80px 0;
    background: #1a1918;
    text-align: center;
}

.contact-cta-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
    color: #fff;
    margin-bottom: 1rem;
}

.contact-cta-text {
    font-size: 1.0625rem;
    color: #a8a7a5;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.contact-cta-email {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 500;
    color: #c9a66b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-cta-email:hover {
    color: #d9b67b;
}

.contact-cta-email svg {
    width: 24px;
    height: 24px;
}


/* =====================================================
   ABOUT PAGE STYLES
   Add these to your style.css file
   ===================================================== */

/* -----------------------------------------------------
   ABOUT HERO
   ----------------------------------------------------- */

.about-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f8f7f5 0%, #fff 50%, #f8f7f5 100%);
    z-index: 0;
}

.about-hero-blob-warm {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(ellipse at center, rgba(232, 213, 196, 0.4) 0%, transparent 70%);
    z-index: 0;
}

.about-hero-blob-sage {
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(197, 213, 203, 0.3) 0%, transparent 70%);
    z-index: 0;
}

.about-hero-decoration {
    position: absolute;
    right: 5%;
    top: 20%;
    width: 300px;
    height: 300px;
    opacity: 0.1;
    z-index: 0;
}

.about-hero-content {
    position: relative;
    z-index: 1;
}

.about-hero .hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #c9a66b;
    margin-bottom: 1.5rem;
}

.about-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.1;
    color: #1a1918;
    margin-bottom: 1.5rem;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #6e6d6b;
    max-width: 600px;
}

/* -----------------------------------------------------
   FOCUS SECTION
   ----------------------------------------------------- */

.focus-section {
    padding: 100px 0;
    background: #fff;
}

.focus-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: start;
}

.focus-accent {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0.5rem;
}

.focus-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #e8d5c4 0%, #c5d5cb 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.focus-icon svg {
    width: 24px;
    height: 24px;
}

.focus-line {
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, #c9a66b, transparent);
}

.focus-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #c9a66b;
    margin-bottom: 1rem;
}

.focus-title {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    line-height: 1.6;
    color: #1a1918;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.focus-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #6e6d6b;
    margin: 0;
}

@media (max-width: 767px) {
    .focus-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .focus-accent {
        flex-direction: row;
        gap: 1rem;
    }
    
    .focus-line {
        width: 60px;
        height: 2px;
        background: linear-gradient(to right, #c9a66b, transparent);
    }
}

/* -----------------------------------------------------
   ABOUT FEATURE SECTIONS (Split layout)
   ----------------------------------------------------- */

.about-feature-section {
    overflow: hidden;
}

.about-feature-visual {
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.about-feature-visual svg {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.about-feature-visual-warm {
    background: linear-gradient(135deg, #e8d5c4 0%, #e8c4c4 100%);
}

.about-feature-visual-cool {
    background: linear-gradient(135deg, #c5d5cb 0%, #c4d4e8 100%);
}

.about-feature-visual-mixed {
    background: linear-gradient(135deg, #c4d4e8 0%, #d4c4b0 100%);
}

.about-feature-content {
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.about-feature-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #c9a66b;
    margin-bottom: 1rem;
}

.about-feature-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 500;
    line-height: 1.2;
    color: #1a1918;
    margin-bottom: 1.5rem;
}

.about-feature-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #6e6d6b;
    margin-bottom: 1rem;
}

.about-feature-text:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .about-feature-visual {
        min-height: 400px;
    }
    
    .about-feature-content {
        padding: 3rem 2rem;
    }
}

/* -----------------------------------------------------
   PROMISE SECTION
   ----------------------------------------------------- */

.promise-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8f7f5 0%, #fff 50%, #f8f7f5 100%);
    position: relative;
}

.promise-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 166, 107, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.promise-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.promise-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #c9a66b;
    margin-bottom: 2rem;
}

.promise-quote-wrapper {
    position: relative;
    padding: 0 2rem;
}

.promise-quote-mark {
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 6rem;
    color: #e5e4e2;
    font-family: Georgia, serif;
    line-height: 1;
}

.promise-quote {
    margin: 0;
}

.promise-quote p {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 400;
    line-height: 1.6;
    color: #1a1918;
    font-style: italic;
    margin: 0;
}

.promise-divider {
    margin-top: 2.5rem;
}

.promise-divider-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #c9a66b, #e8d5c4);
    margin: 0 auto;
}

/* -----------------------------------------------------
   STATS SECTION
   ----------------------------------------------------- */

.stats-section {
    padding: 80px 0;
    background: #1a1918;
}

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

.stat-number {
    display: block;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    color: #c9a66b;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9375rem;
    color: #a8a7a5;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* -----------------------------------------------------
   ADVANTAGES SECTION (About page version)
   ----------------------------------------------------- */

.about-advantages-section {
    padding: 100px 0;
    background: #f8f7f5;
}

.about-advantages-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-advantages-header .section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #c9a66b;
    margin-bottom: 0.75rem;
}

.about-advantages-header .section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 500;
    line-height: 1.2;
    color: #1a1918;
    margin-bottom: 0;
}

.about-advantage-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.about-advantage-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: #1a1918;
}

.about-advantage-icon svg {
    width: 32px;
    height: 32px;
}

.about-advantage-icon-warm { background: #e8d5c4; }
.about-advantage-icon-sage { background: #c5d5cb; }
.about-advantage-icon-sky { background: #c4d4e8; }
.about-advantage-icon-blush { background: #e8c4c4; }
.about-advantage-icon-clay { background: #d4c4b0; }

.about-advantage-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1918;
    margin-bottom: 0.75rem;
}

.about-advantage-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #6e6d6b;
    margin-bottom: 0;
}

/* -----------------------------------------------------
   CTA SECTION LIGHT (Gradient version)
   ----------------------------------------------------- */

.cta-section-light {
    padding: 100px 0;
    background: linear-gradient(135deg, #e8d5c4 0%, #c5d5cb 100%);
    position: relative;
    overflow: hidden;
}

.cta-decoration-1 {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(26, 25, 24, 0.1);
    border-radius: 50%;
}

.cta-decoration-2 {
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(26, 25, 24, 0.1);
    border-radius: 50%;
}

.cta-section-light .cta-content {
    position: relative;
    z-index: 1;
}

.cta-section-light .cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 500;
    color: #1a1918;
    margin-bottom: 1rem;
}

.cta-section-light .cta-text {
    font-size: 1.125rem;
    color: #4a4948;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-section-light .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section-light .btn-primary {
    background-color: #1a1918;
    border-color: #1a1918;
    color: #fff;
    padding: 1rem 2.25rem;
    border-radius: 50px;
}

.cta-section-light .btn-primary:hover {
    background-color: #2d2c2b;
    border-color: #2d2c2b;
}

.cta-section-light .btn-outline {
    background-color: transparent;
    border: 2px solid #1a1918;
    color: #1a1918;
    padding: 1rem 2.25rem;
    border-radius: 50px;
}

.cta-section-light .btn-outline:hover {
    background-color: #1a1918;
    color: #fff;
}

@media (max-width: 575px) {
    .cta-section-light .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-section-light .cta-buttons .btn-primary,
    .cta-section-light .cta-buttons .btn-outline {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}



/* =====================================================
   FOOTER
   ===================================================== */

.site-footer {
    padding: 80px 0 40px;
    background: var(--color-dark);
    color: var(--color-white);
}

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

.footer-logo {
    font-size: 1.5rem;
    color: var(--color-white) !important;
    text-decoration: none;
}

.footer-logo .brand-name {
    font-weight: 700;
}

.footer-logo .brand-suffix {
    font-weight: 300;
    opacity: 0.7;
}

.footer-tagline {
    color: var(--color-gray-400);
    margin-top: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-white);
    margin-bottom: 1.25rem;
}

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

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: var(--color-gray-400);
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--color-gray-500);
    font-size: 0.875rem;
    margin: 0;
}

@media (max-width: 991px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 575px) {
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
}

/* =====================================================
   RESPONSIVE GLOBAL
   ===================================================== */

@media (max-width: 991px) {
    .page-hero {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .philosophy-section,
    .advantages-section,
    .products-section,
    .audience-section,
    .quote-section,
    .benefits-section {
        padding: 60px 0;
    }
    
    .content-section {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .hero-content {
        padding: 100px 0 60px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    .audience-visual,
    .audience-content {
        padding: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* =====================================================
   UTILITY CLASSES
   ===================================================== */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}