/* ===================================
   RIVOS WEBSITE - LUXURY AUDIO
   =================================== */

/* CSS VARIABLES */
:root {
    /* Colors */
    --color-primary: #1a1a1a;
    --color-secondary: #2c2c2c;
    --color-accent: #c9a961;
    --color-accent-dark: #a08542;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-text-lighter: #999999;
    --color-bg: #ffffff;
    --color-bg-light: #f8f8f8;
    --color-bg-dark: #1a1a1a;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-width: 1200px;

    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    font-size: 16px;
    background: var(--color-bg);
    overflow-x: hidden;
}

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

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

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

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-primary);
}

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

p {
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-text);
}

/* NAVIGATION */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-primary);
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-img-footer {
    height: 50px;
    width: auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    letter-spacing: 0.5px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.cta {
    background: var(--color-primary);
    color: white;
    padding: 10px 24px;
    border-radius: 4px;
}

.nav-link.cta::after {
    display: none;
}

.nav-link.cta:hover {
    background: var(--color-accent);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition-smooth);
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

.hero-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--color-accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 24px;
    opacity: 0.95;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 300;
    margin-bottom: 48px;
    opacity: 0.95;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: white;
    opacity: 0.7;
    z-index: 10;
}

.scroll-indicator span {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: white;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 14px 32px;
}

.btn-outline-light:hover {
    background: white;
    color: var(--color-primary);
}

.btn-primary-large {
    background: var(--color-accent);
    color: white;
    padding: 20px 48px;
    font-size: 1.125rem;
}

.btn-primary-large:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(201, 169, 97, 0.3);
}

/* SECTION UTILITIES */
section {
    padding: var(--section-padding) 0;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--color-accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 24px;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

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

.section-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-light);
    max-width: 800px;
    margin: 0 auto 48px;
}

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

/* EXCLUSIVE SECTION */
.exclusive {
    background: var(--color-bg-light);
    text-align: center;
}

.exclusive-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    margin-top: 64px;
}

.feature-card {
    background: white;
    padding: 48px 32px;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(0,0,0,0.12);
}

.feature-number {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 24px;
    opacity: 0.3;
}

.feature-line {
    width: 60px;
    height: 2px;
    background: var(--color-accent);
    margin-top: 24px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.feature-card p {
    color: var(--color-text-light);
    margin: 0;
}

/* FOUNDER SECTION */
.founder {
    background: white;
}

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

.founder-image {
    position: relative;
}

.founder-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.image-placeholder {
    aspect-ratio: 4/5;
    background: var(--color-bg-light);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-text-lighter);
    font-size: 1.25rem;
    font-weight: 500;
    padding: 32px;
    text-align: center;
}

.placeholder-note {
    font-size: 0.875rem;
    margin-top: 12px;
    opacity: 0.7;
    font-weight: 400;
}

.founder-content h2 {
    margin-bottom: 32px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-accent);
    font-weight: 500;
    margin-top: 24px;
}

.text-link:hover {
    color: var(--color-accent-dark);
    gap: 12px;
}

/* BRAND PHILOSOPHY SECTION */
.brand-philosophy {
    background: var(--color-bg-dark);
    color: white;
}

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

.philosophy-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.3);
}

.philosophy-content h2 {
    color: white;
    margin-bottom: 32px;
}

.philosophy-content .lead {
    color: rgba(255, 255, 255, 0.9);
}

.philosophy-content p {
    color: rgba(255, 255, 255, 0.75);
}

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

/* SERVICES OVERVIEW */
.services-overview {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 48px;
}

.service-card {
    padding: 40px;
    background: var(--color-bg-light);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.service-card:hover {
    background: white;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.service-image {
    width: 100%;
    height: 300px;
    margin-bottom: 24px;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.service-link {
    color: var(--color-accent);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    color: var(--color-accent-dark);
    gap: 12px;
}

/* BURMESTER SECTION */
.burmester-section {
    background: var(--color-bg-dark);
    color: white;
}

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

.burmester-logo {
    width: 200px;
    height: auto;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.burmester-content h2 {
    color: white;
    margin-bottom: 32px;
}

.burmester-content .lead {
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
}

.heritage-list {
    list-style: none;
    margin: 32px 0;
}

.heritage-list li {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.heritage-list strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--color-accent);
}

.heritage-list span {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.burmester-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

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

/* EXPERIENCE CTA */
.experience-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    text-align: center;
}

.cta-content.center h2 {
    color: white;
    margin-bottom: 24px;
}

.cta-content.center p {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto 48px;
}

.cta-buttons {
    margin-bottom: 24px;
}

.cta-note {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

/* FOOTER */
.footer {
    background: var(--color-primary);
    color: rgba(255,255,255,0.8);
    padding: 80px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

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

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

.footer-col a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition-smooth);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

/* ABOUT PAGE STYLES */
.page-hero {
    background: var(--color-bg-light);
    padding: 160px 0 80px;
    text-align: center;
}

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

.page-hero h1 {
    margin-bottom: 24px;
}

.content-section {
    background: white;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
}

.content-main h2 {
    margin-bottom: 32px;
}

.content-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-card {
    background: var(--color-bg-light);
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid var(--color-accent);
}

.sidebar-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.sidebar-card p {
    margin: 0;
    color: var(--color-text-light);
}

.philosophy-section.dark {
    background: var(--color-bg-dark);
    color: white;
}

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

.philosophy-content-centered h2 {
    color: white;
    margin-bottom: 32px;
}

.philosophy-content-centered .lead {
    color: rgba(255,255,255,0.9);
    font-size: 1.5rem;
    margin-bottom: 32px;
}

.philosophy-content-centered p {
    color: rgba(255,255,255,0.75);
    font-size: 1.125rem;
    margin-bottom: 24px;
}

.philosophy-content-centered p.highlight {
    color: white;
    font-size: 1.25rem;
    font-weight: 500;
    margin-top: 48px;
}

.founder-story {
    background: white;
}

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

.story-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.story-content h2 {
    margin-bottom: 32px;
}

.story-content p.highlight {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-accent);
    margin: 32px 0;
}

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

.audience-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.audience-content h2 {
    margin-bottom: 32px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-top: 64px;
    text-align: left;
}

.audience-insight {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.audience-insight h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--color-accent);
}

.audience-insight p {
    margin-bottom: 16px;
}

.audience-insight p:last-child {
    margin-bottom: 0;
}

.difference-section {
    background: white;
}

.difference-section .tagline {
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-top: 16px;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 64px;
}

.difference-card {
    text-align: center;
    padding: 40px 32px;
}

.difference-number {
    font-size: 4rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-accent);
    opacity: 0.2;
    margin-bottom: 24px;
}

.difference-card h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--color-primary);
}

.difference-card p {
    color: var(--color-text-light);
    margin: 0;
}

.exclusive-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
}

/* BURMESTER PAGE STYLES */
.page-hero.dark {
    background: var(--color-bg-dark);
    color: white;
}

.page-hero.dark h1 {
    color: white;
}

.page-hero.dark .lead {
    color: rgba(255,255,255,0.9);
}

.brand-name-large {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 8px;
    color: white;
    text-align: center;
    margin: 0 auto 40px;
    display: block;
    opacity: 0.95;
}

.brand-logo-large {
    max-width: 450px;
    width: 100%;
    height: auto;
    margin: 0 auto 40px;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

@media (max-width: 768px) {
    .brand-logo-large {
        max-width: 280px;
    }
}

/* Services Page */
.service-detail {
    padding: var(--section-padding) 0;
    background: white;
}

.service-detail.dark {
    background: var(--color-bg-dark);
    color: white;
}

.service-detail.dark .section-badge {
    background: rgba(255,255,255,0.1);
    color: white;
}

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

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

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

.service-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-top: 48px;
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

.service-content h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.process-list {
    list-style: none;
    padding: 0;
    margin: 32px 0;
}

.process-list li {
    margin-bottom: 32px;
    padding-left: 0;
}

.process-list strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--color-primary);
    font-family: var(--font-body);
    font-weight: 600;
}

.service-detail.dark .process-list strong {
    color: var(--color-gold);
}

.process-list span {
    display: block;
    opacity: 0.8;
    line-height: 1.6;
}

.service-features {
    margin-top: 48px;
    display: grid;
    gap: 32px;
}

.feature-item {
    border-left: 2px solid var(--color-primary);
    padding-left: 24px;
}

.service-detail.dark .feature-item {
    border-left-color: var(--color-gold);
}

.feature-item h4 {
    margin-top: 0;
}

.feature-item p {
    margin: 0;
    opacity: 0.8;
}

/* Consultation Section */
.consultation-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-dark);
    color: white;
    text-align: center;
}

.consultation-content {
    max-width: 1000px;
    margin: 0 auto;
}

.consultation-content h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.consultation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-top: 64px;
    text-align: left;
}

.consultation-step {
    position: relative;
}

.step-number {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 300;
    color: var(--color-gold);
    margin-bottom: 24px;
    opacity: 0.6;
}

.consultation-step h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.consultation-step p {
    opacity: 0.8;
    line-height: 1.6;
}

/* Why Rivos */
.why-rivos {
    padding: var(--section-padding) 0;
    background: var(--color-bg-light);
}

.why-rivos h2 {
    font-size: 3rem;
    margin-bottom: 64px;
}

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

.why-card {
    text-align: left;
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    font-family: var(--font-heading);
    color: var(--color-primary);
}

.why-card p {
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
}

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

.content-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

/* Experience Page */
.showroom-section {
    padding: var(--section-padding) 0;
    background: white;
}

.showroom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.showroom-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.showroom-content h3 {
    font-size: 1.5rem;
    margin-top: 48px;
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

.showroom-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.experience-list {
    list-style: none;
    padding: 0;
    margin: 32px 0;
}

.experience-list li {
    margin-bottom: 32px;
}

.experience-list strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--color-primary);
    font-family: var(--font-body);
    font-weight: 600;
}

.experience-list span {
    display: block;
    opacity: 0.8;
    line-height: 1.6;
}

.listening-session {
    padding: var(--section-padding) 0;
    background: var(--color-bg-dark);
    color: white;
}

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

.session-content h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.session-structure {
    margin-top: 64px;
    text-align: left;
}

.session-phase {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

.phase-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 300;
    color: var(--color-gold);
}

.phase-content h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.phase-content p {
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
}

.expectations-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-light);
}

.expectations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-top: 48px;
}

.expectation-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    font-family: var(--font-heading);
    color: var(--color-primary);
}

.expectation-card p {
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
}

.award-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-dark);
    color: white;
    text-align: center;
}

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

.award-content h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.location-section {
    padding: var(--section-padding) 0;
    background: white;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.location-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.location-details {
    margin-top: 48px;
    display: grid;
    gap: 32px;
}

.detail-item h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-family: var(--font-heading);
    color: var(--color-primary);
}

.detail-item p {
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
}

.detail-item a {
    color: var(--color-primary);
    text-decoration: none;
}

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

.map-placeholder {
    width: 100%;
    height: 500px;
    background: var(--color-bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.1);
}

.map-placeholder p {
    opacity: 0.5;
    font-style: italic;
}

/* Contact Page */
.contact-options {
    padding: var(--section-padding) 0;
    background: var(--color-bg-light);
}

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

.option-card {
    text-align: center;
    padding: 48px 32px;
    background: white;
    border-radius: 8px;
}

.option-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-family: var(--font-heading);
    color: var(--color-primary);
}

.option-card p {
    margin: 8px 0;
}

.option-card a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
}

.option-card a:hover {
    color: var(--color-primary);
}

.option-note {
    font-size: 0.9rem;
    opacity: 0.6;
    font-style: italic;
}

.contact-form-section {
    padding: var(--section-padding) 0;
    background: white;
}

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

.form-header {
    text-align: center;
    margin-bottom: 48px;
}

.form-header h2 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.form-header p {
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: var(--color-bg-light);
    padding: 48px;
    border-radius: 8px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-label span {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
}

.form-actions {
    text-align: center;
    margin-top: 32px;
}

.form-note {
    margin-top: 16px;
    font-size: 0.9rem;
    opacity: 0.6;
    font-style: italic;
}

.alternative-contact {
    padding: var(--section-padding) 0;
    background: var(--color-bg-light);
    text-align: center;
}

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

.alt-contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.direct-contact {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.faq-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-dark);
    color: white;
}

.faq-section h2 {
    font-size: 3rem;
    margin-bottom: 64px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    text-align: left;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    font-family: var(--font-heading);
    color: var(--color-gold);
}

.faq-item p {
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
}

.form-success-message {
    background: #f0f9f4;
    border: 2px solid #48bb78;
    border-radius: 8px;
    padding: 48px;
    text-align: center;
    margin-top: 32px;
}

.success-content svg {
    color: #48bb78;
    margin: 0 auto 24px;
    display: block;
}

.success-content h3 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.success-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

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

.timeline {
    max-width: 900px;
    margin: 64px auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-accent);
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
    align-items: center;
}

.timeline-item:nth-child(even) .timeline-year {
    order: 2;
    text-align: left;
}

.timeline-item:nth-child(even) .timeline-content {
    order: 1;
    text-align: right;
}

.timeline-year {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-accent);
    text-align: right;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.timeline-content p {
    color: var(--color-text-light);
    margin: 0;
}

.craftsmanship-section.dark {
    background: var(--color-bg-dark);
    color: white;
}

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

.craftsmanship-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.3);
}

.craftsmanship-content h2 {
    color: white;
    margin-bottom: 32px;
}

.craftsmanship-content .lead {
    color: rgba(255,255,255,0.9);
}

.craftsmanship-content p {
    color: rgba(255,255,255,0.75);
    margin-bottom: 24px;
}

.craftsmanship-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.stat {
    text-align: center;
    padding: 24px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}

.stat-number {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.7);
}

.automotive-section {
    background: white;
}

.automotive-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.automotive-card {
    padding: 48px 40px;
    background: var(--color-bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--color-accent);
    transition: var(--transition-smooth);
}

.automotive-card:hover {
    background: white;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.automotive-card h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: var(--color-accent);
}

.automotive-card p {
    margin: 0;
    color: var(--color-text-light);
}

.product-lines {
    background: var(--color-bg-light);
}

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

.product-category {
    background: white;
    padding: 48px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    text-align: center;
    transition: var(--transition-smooth);
}

.product-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(0,0,0,0.12);
}

.product-category h3 {
    font-size: 1.75rem;
    margin-bottom: 24px;
    color: var(--color-accent);
}

.product-category p {
    margin: 0;
    color: var(--color-text-light);
}

.partnership-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    text-align: center;
}

.partnership-content {
    max-width: 900px;
    margin: 0 auto;
}

.partnership-content h2 {
    color: white;
    margin-bottom: 32px;
}

.partnership-content .lead {
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
}

.partnership-content p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
}

.section-badge.light {
    background: rgba(255,255,255,0.2);
    color: white;
}


/* ===================================
   DARK SECTION TEXT OVERRIDES
   Uses !important to guarantee text is readable on dark backgrounds
   =================================== */

.service-detail.dark h1,
.service-detail.dark h2,
.service-detail.dark h3,
.service-detail.dark h4,
.service-detail.dark h5,
.service-detail.dark h6 {
    color: white !important;
}

.service-detail.dark p,
.service-detail.dark li,
.service-detail.dark span {
    color: rgba(255, 255, 255, 0.85) !important;
}

.service-detail.dark .lead {
    color: rgba(255, 255, 255, 0.9) !important;
}

.service-detail.dark strong,
.service-detail.dark .process-list strong {
    color: white !important;
}

/* Philosophy dark section */
.philosophy-section.dark h1,
.philosophy-section.dark h2,
.philosophy-section.dark h3,
.philosophy-section.dark h4 {
    color: white !important;
}

.philosophy-section.dark p,
.philosophy-section.dark li,
.philosophy-section.dark span {
    color: rgba(255, 255, 255, 0.85) !important;
}

.philosophy-section.dark .lead {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Burmester section */
.burmester-section h1,
.burmester-section h2,
.burmester-section h3,
.burmester-section h4 {
    color: white !important;
}

.burmester-section p,
.burmester-section li,
.burmester-section span {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Craftsmanship dark section */
.craftsmanship-section.dark h1,
.craftsmanship-section.dark h2,
.craftsmanship-section.dark h3,
.craftsmanship-section.dark h4 {
    color: white !important;
}

.craftsmanship-section.dark p,
.craftsmanship-section.dark li {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Brand philosophy */
.brand-philosophy h1,
.brand-philosophy h2,
.brand-philosophy h3,
.brand-philosophy h4 {
    color: white !important;
}

.brand-philosophy p,
.brand-philosophy li,
.brand-philosophy .lead {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Consultation section */
.consultation-section h1,
.consultation-section h2,
.consultation-section h3,
.consultation-section h4 {
    color: white !important;
}

.consultation-section p,
.consultation-section li,
.consultation-section .lead {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Listening session */
.listening-session h1,
.listening-session h2,
.listening-session h3,
.listening-session h4 {
    color: white !important;
}

.listening-session p,
.listening-session li,
.listening-session .lead {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Award section */
.award-section h1,
.award-section h2,
.award-section h3,
.award-section h4 {
    color: white !important;
}

.award-section p,
.award-section li,
.award-section .lead {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* FAQ section */
.faq-section h1,
.faq-section h2,
.faq-section h3,
.faq-section h4 {
    color: white !important;
}

.faq-section p,
.faq-section li,
.faq-section .lead {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Page hero dark variant */
.page-hero.dark h1,
.page-hero.dark h2,
.page-hero.dark h3,
.page-hero.dark p,
.page-hero.dark .lead {
    color: rgba(255, 255, 255, 0.9) !important;
}


/* Additional dark section text overrides */
.brand-philosophy h1,
.brand-philosophy h2,
.brand-philosophy h3,
.brand-philosophy h4,
.brand-philosophy h5,
.brand-philosophy h6 {
    color: white;
}

.brand-philosophy p,
.brand-philosophy li,
.brand-philosophy .lead {
    color: rgba(255, 255, 255, 0.85);
}

.consultation-section h1,
.consultation-section h2,
.consultation-section h3,
.consultation-section h4 {
    color: white;
}

.consultation-section p,
.consultation-section li,
.consultation-section .lead {
    color: rgba(255, 255, 255, 0.85);
}

.listening-session h1,
.listening-session h2,
.listening-session h3,
.listening-session h4 {
    color: white;
}

.listening-session p,
.listening-session li,
.listening-session .lead {
    color: rgba(255, 255, 255, 0.85);
}

.award-section h1,
.award-section h2,
.award-section h3,
.award-section h4 {
    color: white;
}

.award-section p,
.award-section li,
.award-section .lead {
    color: rgba(255, 255, 255, 0.85);
}

.faq-section h1,
.faq-section h2,
.faq-section h3,
.faq-section h4 {
    color: white;
}

.faq-section p,
.faq-section li,
.faq-section .lead {
    color: rgba(255, 255, 255, 0.85);
}

/* RESPONSIVE */
@media (max-width: 968px) {
    :root {
        --section-padding: 80px;
    }

    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    /* Mobile nav menu - shows when hamburger is clicked */
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 16px 24px 24px;
        gap: 4px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.12);
        z-index: 999;
        border-top: 1px solid rgba(0,0,0,0.08);
    }

    .nav-menu.active li {
        width: 100%;
    }

    .nav-menu.active .nav-link {
        display: block;
        padding: 14px 16px;
        font-size: 1rem;
        border-radius: 6px;
        text-align: left;
    }

    .nav-menu.active .nav-link:hover {
        background: var(--color-bg-light);
    }

    .nav-menu.active .nav-link.cta {
        margin-top: 8px;
        text-align: center;
        padding: 14px 24px;
    }

    /* Hamburger animation when active */
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .founder-grid,
    .burmester-grid,
    .story-grid,
    .content-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .content-sidebar {
        position: static;
    }

    .audience-grid,
    .difference-grid,
    .automotive-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .craftsmanship-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .timeline::before {
        left: 0;
        transform: none;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .timeline-item:nth-child(even) .timeline-year,
    .timeline-item:nth-child(even) .timeline-content {
        order: 0;
        text-align: left;
    }

    .timeline-year {
        text-align: left;
        font-size: 2rem;
    }

    .craftsmanship-stats {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .service-grid.reverse {
        direction: ltr;
    }

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

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

    .showroom-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .expectations-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .session-phase {
        grid-template-columns: 60px 1fr;
        gap: 24px;
    }

    .phase-icon {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .options-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .direct-contact {
        flex-direction: column;
        align-items: center;
    }

    .direct-contact .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .nav-brand .logo-img {
        height: 32px;
    }

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

@media (max-width: 640px) {
    :root {
        --section-padding: 60px;
    }

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

    .page-hero {
        padding: 100px 0 48px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1.05rem;
    }

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

    .exclusive-features {
        grid-template-columns: 1fr;
    }

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

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

    .why-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .service-content h2 {
        font-size: 2rem;
    }

    .consultation-content h2 {
        font-size: 2rem;
    }

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

    .form-header h2 {
        font-size: 2rem;
    }

    .alt-contact-content h2 {
        font-size: 2rem;
    }

    .faq-section h2 {
        font-size: 2rem;
    }
}

/* Insights/Blog Pages */
.featured-article {
    padding: var(--section-padding) 0;
    background: var(--color-bg-light);
}

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

.article-featured .article-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.article-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.article-category {
    padding: 4px 12px;
    background: var(--color-primary);
    color: white;
    border-radius: 4px;
    font-weight: 500;
}

.article-date {
    opacity: 0.6;
}

.article-reading-time {
    opacity: 0.6;
}

.article-featured h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.article-featured h2 a {
    color: var(--color-text);
    text-decoration: none;
}

.article-featured h2 a:hover {
    color: var(--color-primary);
}

.article-excerpt {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 24px;
}

.article-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}

.article-link:hover {
    text-decoration: underline;
}

.articles-section {
    padding: var(--section-padding) 0;
    background: white;
}

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

.article-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.article-card:hover {
    transform: translateY(-4px);
}

.article-card-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.article-card-content {
    padding: 32px;
}

.article-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.article-card h3 a {
    color: var(--color-text);
    text-decoration: none;
}

.article-card h3 a:hover {
    color: var(--color-primary);
}

/* Article Page */
.article-page {
    padding: var(--section-padding) 0;
    background: white;
}

.article-header {
    max-width: 800px;
    margin: 0 auto 64px;
    text-align: center;
}

.article-header h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    line-height: 1.2;
}

.article-lead {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.8;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-content h2 {
    font-size: 2.5rem;
    margin-top: 64px;
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

.article-content h3 {
    font-size: 1.8rem;
    margin-top: 48px;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.article-content p {
    margin-bottom: 24px;
}

.article-content strong {
    font-weight: 600;
    color: var(--color-primary);
}

.article-footer {
    max-width: 800px;
    margin: 64px auto 0;
    padding-top: 64px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.article-cta {
    background: var(--color-bg-light);
    padding: 48px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 32px;
}

.article-cta h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.article-cta p {
    margin-bottom: 24px;
    opacity: 0.8;
}

.article-back a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}

.article-back a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .article-featured {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .article-header h1 {
        font-size: 2.5rem;
    }

    .article-content h2 {
        font-size: 2rem;
    }

    .article-content h3 {
        font-size: 1.5rem;
    }

    .article-cta {
        padding: 32px 24px;
    }
}

/* ===================================
   PHOTO GALLERY STRIP
   =================================== */

.photo-gallery-strip {
    width: 100%;
    overflow: hidden;
    background: #000;
    line-height: 0;
}

.gallery-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 380px;
}

.gallery-strip-item {
    overflow: hidden;
    position: relative;
}

.gallery-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9);
}

.gallery-strip-item:hover img {
    transform: scale(1.06);
    filter: brightness(1);
}

@media (max-width: 768px) {
    .gallery-strip-inner {
        grid-template-columns: repeat(2, 1fr);
        height: 420px;
    }
}

@media (max-width: 480px) {
    .gallery-strip-inner {
        grid-template-columns: 1fr 1fr;
        height: 320px;
    }
}

/* ===================================
   PRODUCT LINE IMAGES (Burmester page)
   =================================== */

.product-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 24px;
    background: #f0f0f0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.product-image.product-image-room img {
    object-position: left center;
}

.product-category:hover .product-image img {
    transform: scale(1.04);
}

/* ===================================
   SERVICE / SHOWROOM / STORY IMAGES
   Make sure real photos display well
   =================================== */

.service-image img,
.story-image img,
.showroom-image img,
.craftsmanship-image img,
.burmester-image img,
.philosophy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
}

/* Ensure containers have a defined height so object-fit works */
.service-image,
.story-image,
.showroom-image,
.craftsmanship-image {
    overflow: hidden;
    min-height: 400px;
}

.burmester-image,
.philosophy-image {
    overflow: hidden;
    min-height: 360px;
}
