/* ============================================
   STRUCTURA ROOFING CO. — Bauhaus Theme
   Geometric Simplicity · Primary Shapes · Form Follows Function
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
    --bauhaus-red: #D32F2F;
    --bauhaus-yellow: #F9A825;
    --bauhaus-blue: #1565C0;
    --primary-dark: #1a1a1a;
    --primary-darker: #111111;
    --white: #ffffff;
    --off-white: #f5f5f0;
    --light-gray: #e8e8e4;
    --medium-gray: #999999;
    --text-dark: #1a1a1a;
    --text-body: #444444;
    --text-light: #777777;
    --font-heading: 'DM Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
    --radius: 0px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }

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

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

ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* --- Bauhaus Geometric Decorations --- */
.geo-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.geo-rect {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.geo-triangle {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
    z-index: 0;
}

/* --- Bauhaus Section Label --- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--bauhaus-red);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background: var(--bauhaus-red);
}

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

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    line-height: 1.8;
}

.section-subtitle.centered {
    margin: 0 auto;
}

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

.section-header .section-label {
    justify-content: center;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--primary-dark);
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-logo-shapes {
    display: flex;
    gap: 3px;
    align-items: center;
}

.nav-logo-shapes span:nth-child(1) {
    width: 14px;
    height: 14px;
    background: var(--bauhaus-red);
}

.nav-logo-shapes span:nth-child(2) {
    width: 14px;
    height: 14px;
    background: var(--bauhaus-yellow);
    border-radius: 50%;
}

.nav-logo-shapes span:nth-child(3) {
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 14px solid var(--bauhaus-blue);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dark);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--bauhaus-red);
    transition: width 0.3s ease;
}

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

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--primary-dark);
    color: var(--white) !important;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
    background: var(--bauhaus-red);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--primary-dark);
    transition: var(--transition);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 16px 36px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
}

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

.btn-primary:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-dark:hover {
    background: var(--bauhaus-blue);
    transform: translateY(-2px);
}

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

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

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

.btn-white:hover {
    background: var(--bauhaus-yellow);
    transform: translateY(-2px);
}

.btn-yellow {
    background: var(--bauhaus-yellow);
    color: var(--primary-dark);
}

.btn-yellow:hover {
    background: #f57f17;
    color: var(--white);
    transform: translateY(-2px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 76px;
    overflow: hidden;
    background: var(--off-white);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    padding: 40px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--white);
    border: 2px solid var(--primary-dark);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--bauhaus-red);
    border-radius: 50%;
}

.hero h1 {
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    line-height: 1.05;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero h1 .highlight {
    color: var(--bauhaus-red);
}

.hero-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 36px;
    max-width: 480px;
    line-height: 1.8;
}

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

.hero-image-wrapper {
    position: relative;
}

.hero-image-wrapper img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.hero-geo-1 {
    width: 120px;
    height: 120px;
    background: var(--bauhaus-yellow);
    top: -30px;
    right: -30px;
    opacity: 0.9;
}

.hero-geo-2 {
    width: 80px;
    height: 80px;
    background: var(--bauhaus-blue);
    bottom: -20px;
    left: -20px;
    border-radius: 50%;
    opacity: 0.9;
}

.hero-geo-3 {
    bottom: 60px;
    right: -40px;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid var(--bauhaus-red);
    opacity: 0.8;
}

.hero-stat-float {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--primary-dark);
    color: var(--white);
    padding: 20px 28px;
    z-index: 3;
}

.hero-stat-float .stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--bauhaus-yellow);
    line-height: 1;
}

.hero-stat-float .stat-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-top: 4px;
}

/* Bauhaus BG decorations for hero */
.hero::before {
    content: '';
    position: absolute;
    top: 15%;
    left: -60px;
    width: 200px;
    height: 200px;
    border: 4px solid var(--bauhaus-yellow);
    opacity: 0.15;
    border-radius: 50%;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 100px;
    height: 100px;
    background: var(--bauhaus-blue);
    opacity: 0.06;
    z-index: 0;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    background: var(--primary-dark);
    padding: 0;
    position: relative;
}

.trust-bar .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    text-align: center;
    padding: 36px 20px;
    color: var(--white);
    border-right: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.trust-item:last-child {
    border-right: none;
}

.trust-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--bauhaus-yellow);
    line-height: 1;
    margin-bottom: 6px;
}

.trust-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

.trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
}

.trust-item:nth-child(1)::before { background: var(--bauhaus-red); }
.trust-item:nth-child(2)::before { background: var(--bauhaus-yellow); }
.trust-item:nth-child(3)::before { background: var(--bauhaus-blue); }
.trust-item:nth-child(4)::before { background: var(--bauhaus-red); }

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

.service-card {
    padding: 48px 36px;
    background: var(--white);
    border: 1px solid var(--light-gray);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

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

.service-card-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--light-gray);
    line-height: 1;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-card-number {
    color: var(--bauhaus-red);
    opacity: 0.3;
}

.service-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-icon .shape-red {
    width: 40px;
    height: 40px;
    background: var(--bauhaus-red);
}

.service-card-icon .shape-yellow {
    width: 40px;
    height: 40px;
    background: var(--bauhaus-yellow);
    border-radius: 50%;
}

.service-card-icon .shape-blue {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 36px solid var(--bauhaus-blue);
}

.service-card-icon .shape-dark {
    width: 40px;
    height: 40px;
    background: var(--primary-dark);
}

.service-card-icon .shape-red-circle {
    width: 40px;
    height: 40px;
    background: var(--bauhaus-red);
    border-radius: 50%;
}

.service-card-icon .shape-blue-rect {
    width: 40px;
    height: 40px;
    background: var(--bauhaus-blue);
}

.service-card h3 {
    margin-bottom: 12px;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card .card-link {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-card .card-link:hover {
    color: var(--bauhaus-red);
}

.service-card .card-link svg {
    transition: transform 0.3s ease;
}

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

/* Color accent top border per card */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    transition: height 0.3s ease;
}

.service-card:nth-child(1)::before { background: var(--bauhaus-red); }
.service-card:nth-child(2)::before { background: var(--bauhaus-yellow); }
.service-card:nth-child(3)::before { background: var(--bauhaus-blue); }
.service-card:nth-child(4)::before { background: var(--bauhaus-yellow); }
.service-card:nth-child(5)::before { background: var(--bauhaus-red); }
.service-card:nth-child(6)::before { background: var(--bauhaus-blue); }

.service-card:hover::before {
    height: 6px;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us {
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.why-us .section-label {
    color: var(--bauhaus-yellow);
}

.why-us .section-label::before {
    background: var(--bauhaus-yellow);
}

.why-us .section-title {
    color: var(--white);
}

.why-us .section-subtitle {
    color: rgba(255,255,255,0.6);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.why-card {
    padding: 44px 32px;
    border-right: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.why-card:last-child {
    border-right: none;
}

.why-card:hover {
    background: rgba(255,255,255,0.05);
}

.why-card-shape {
    width: 50px;
    height: 50px;
    margin-bottom: 24px;
}

.why-card h3 {
    color: var(--white);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.why-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Bauhaus background shapes */
.why-us::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    border: 3px solid rgba(255,255,255,0.05);
    border-radius: 50%;
}

.why-us::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 10%;
    width: 120px;
    height: 120px;
    background: var(--bauhaus-red);
    opacity: 0.06;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
    background: var(--off-white);
    position: relative;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    counter-reset: step;
}

.process-step {
    padding: 44px 32px;
    text-align: center;
    position: relative;
    background: var(--white);
    border: 1px solid var(--light-gray);
}

.process-step-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--light-gray);
    line-height: 1;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.process-step:hover .process-step-number {
    color: var(--bauhaus-blue);
}

.process-step-shape {
    width: 60px;
    height: 4px;
    margin: 0 auto 20px;
}

.process-step:nth-child(1) .process-step-shape { background: var(--bauhaus-red); }
.process-step:nth-child(2) .process-step-shape { background: var(--bauhaus-yellow); }
.process-step:nth-child(3) .process-step-shape { background: var(--bauhaus-blue); }
.process-step:nth-child(4) .process-step-shape { background: var(--bauhaus-red); }

.process-step h3 {
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    position: relative;
}

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

.testimonial-card {
    padding: 40px 32px;
    background: var(--white);
    border: 2px solid var(--light-gray);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--primary-dark);
    box-shadow: var(--shadow-md);
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 8px;
}

.testimonial-card:nth-child(1) .testimonial-quote { color: var(--bauhaus-red); }
.testimonial-card:nth-child(2) .testimonial-quote { color: var(--bauhaus-yellow); }
.testimonial-card:nth-child(3) .testimonial-quote { color: var(--bauhaus-blue); }

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 24px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.testimonial-card:nth-child(1) .testimonial-avatar { background: rgba(211,47,47,0.1); color: var(--bauhaus-red); }
.testimonial-card:nth-child(2) .testimonial-avatar { background: rgba(249,168,37,0.15); color: #c17900; }
.testimonial-card:nth-child(3) .testimonial-avatar { background: rgba(21,101,192,0.1); color: var(--bauhaus-blue); }

.testimonial-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-light);
}

.testimonial-disclaimer {
    text-align: center;
    margin-top: 30px;
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
    background: var(--off-white);
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    align-items: stretch;
}

.pricing-card {
    padding: 48px 36px;
    background: var(--white);
    border: 2px solid var(--light-gray);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.pricing-card.featured {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: scaleY(1.02);
}

.pricing-card.featured:hover {
    transform: scaleY(1.02) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -1px;
    right: 24px;
    background: var(--bauhaus-yellow);
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
}

.pricing-tier {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.pricing-card.featured .pricing-tier {
    color: var(--bauhaus-yellow);
}

.pricing-price {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.pricing-card.featured .pricing-price {
    color: var(--white);
}

.pricing-period {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 2px solid var(--light-gray);
}

.pricing-card.featured .pricing-period {
    color: rgba(255,255,255,0.5);
    border-color: rgba(255,255,255,0.15);
}

.pricing-features {
    flex: 1;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.pricing-card.featured .pricing-features li {
    color: rgba(255,255,255,0.8);
}

.pricing-features li::before {
    content: '';
    width: 8px;
    height: 8px;
    min-width: 8px;
    background: var(--bauhaus-red);
    margin-top: 8px;
}

.pricing-card:nth-child(2) .pricing-features li::before { background: var(--bauhaus-yellow); }
.pricing-card:nth-child(3) .pricing-features li::before { background: var(--bauhaus-blue); }

.pricing-card .btn {
    width: 100%;
}

.pricing-card.featured .btn-dark {
    background: var(--bauhaus-yellow);
    color: var(--primary-dark);
}

.pricing-card.featured .btn-dark:hover {
    background: var(--white);
}

/* ============================================
   SERVICE AREAS
   ============================================ */
.service-areas {
    position: relative;
}

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

.area-item {
    padding: 24px;
    background: var(--off-white);
    border-left: 4px solid var(--primary-dark);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
}

.area-item:hover {
    background: var(--primary-dark);
    color: var(--white);
    border-left-color: var(--bauhaus-red);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    background: var(--off-white);
}

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

.faq-item {
    background: var(--white);
    border: 2px solid var(--light-gray);
    margin-bottom: 12px;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--primary-dark);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    gap: 16px;
}

.faq-question:hover {
    color: var(--bauhaus-red);
}

.faq-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--off-white);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    background: var(--bauhaus-red);
    color: var(--white);
}

.faq-icon svg {
    transition: transform 0.3s ease;
}

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

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

.faq-answer-inner {
    padding: 0 28px 22px;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: var(--bauhaus-red);
    position: relative;
    overflow: hidden;
}

.cta-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-top: 70px;
    padding-bottom: 70px;
    position: relative;
    z-index: 2;
}

.cta-banner h2 {
    color: var(--white);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    text-transform: uppercase;
    max-width: 600px;
}

.cta-banner p {
    color: rgba(255,255,255,0.8);
    margin-top: 8px;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -30px;
    right: 10%;
    width: 150px;
    height: 150px;
    border: 3px solid rgba(255,255,255,0.15);
    border-radius: 50%;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 5%;
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.08);
}

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

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-brand .nav-logo-shapes span:nth-child(1) { width: 12px; height: 12px; }
.footer-brand .nav-logo-shapes span:nth-child(2) { width: 12px; height: 12px; }
.footer-brand .nav-logo-shapes span:nth-child(3) { border-left-width: 6px; border-right-width: 6px; border-bottom-width: 12px; }

.footer-brand-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-contact-item svg {
    min-width: 16px;
    margin-top: 3px;
    opacity: 0.6;
}

.footer h4 {
    color: var(--white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
}

.footer-grid > div:nth-child(2) h4::after { background: var(--bauhaus-red); }
.footer-grid > div:nth-child(3) h4::after { background: var(--bauhaus-yellow); }
.footer-grid > div:nth-child(4) h4::after { background: var(--bauhaus-blue); }

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

.footer-links a {
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
    font-size: 0.8rem;
    gap: 16px;
    flex-wrap: wrap;
}

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

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

/* ============================================
   LEAD POPUP MODAL
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--white);
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-header {
    background: var(--primary-dark);
    padding: 28px 32px;
    color: var(--white);
    position: relative;
}

.modal-header h3 {
    color: var(--white);
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-header p {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 0;
    margin-top: 4px;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--bauhaus-red);
}

.modal-body {
    padding: 32px;
}

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

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border: 2px solid var(--light-gray);
    background: var(--white);
    color: var(--text-dark);
    transition: var(--transition);
    outline: none;
}

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

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    accent-color: var(--bauhaus-red);
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
    cursor: pointer;
}

.form-checkbox label a {
    color: var(--bauhaus-blue);
    text-decoration: underline;
}

.modal-body .btn {
    width: 100%;
}

/* Success State */
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.active {
    display: block;
}

.form-success-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--bauhaus-red);
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-success-icon svg {
    color: var(--white);
}

.form-success h3 {
    margin-bottom: 8px;
}

.form-success p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ============================================
   COOKIE CONSENT
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary-dark);
    color: var(--white);
    z-index: 9998;
    padding: 20px 0;
    display: none;
    border-top: 4px solid var(--bauhaus-yellow);
}

.cookie-banner.active {
    display: block;
}

.cookie-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.85;
}

.cookie-text a {
    color: var(--bauhaus-yellow);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-accept {
    padding: 10px 24px;
    background: var(--bauhaus-yellow);
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-accept:hover {
    background: var(--white);
}

.cookie-decline {
    padding: 10px 24px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition);
}

.cookie-decline:hover {
    border-color: var(--white);
}

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
    padding: 160px 0 80px;
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.page-hero h1 {
    color: var(--white);
    text-transform: uppercase;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 12px;
}

.page-hero p {
    color: rgba(255,255,255,0.6);
    font-size: 1.05rem;
    max-width: 560px;
}

.page-hero .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.page-hero .breadcrumb a {
    color: rgba(255,255,255,0.5);
}

.page-hero .breadcrumb a:hover {
    color: var(--bauhaus-yellow);
}

.page-hero .breadcrumb .sep {
    color: rgba(255,255,255,0.3);
}

.page-hero .breadcrumb .current {
    color: var(--bauhaus-yellow);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 8%;
    width: 180px;
    height: 180px;
    border: 3px solid rgba(255,255,255,0.05);
    border-radius: 50%;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: 20%;
    width: 80px;
    height: 80px;
    background: var(--bauhaus-red);
    opacity: 0.1;
}

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

.about-story-image {
    position: relative;
}

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

.about-story-image .geo-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--bauhaus-yellow);
    z-index: -1;
}

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

.value-card {
    padding: 48px 36px;
    text-align: center;
    border: 1px solid var(--light-gray);
    transition: var(--transition);
}

.value-card:hover {
    background: var(--off-white);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.value-card h3 {
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

.credentials-strip {
    background: var(--primary-dark);
    padding: 50px 0;
}

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

.credential-item {
    color: var(--white);
}

.credential-item .cred-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 16px;
    border: 2px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.credential-item h4 {
    color: var(--white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.credential-item p {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 4px;
}

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

.service-detail:nth-child(even) {
    direction: rtl;
}

.service-detail:nth-child(even) > * {
    direction: ltr;
}

.service-detail-image {
    position: relative;
}

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

.service-detail-content .section-label {
    justify-content: flex-start;
}

.service-detail-content h2 {
    text-transform: uppercase;
    margin-bottom: 16px;
}

.service-detail-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    margin-bottom: 28px;
}

.service-features li {
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '';
    width: 8px;
    height: 8px;
    min-width: 8px;
    background: var(--bauhaus-red);
}

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

.contact-info-cards {
    display: grid;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--off-white);
    border-left: 4px solid var(--primary-dark);
}

.contact-info-card:nth-child(1) { border-left-color: var(--bauhaus-red); }
.contact-info-card:nth-child(2) { border-left-color: var(--bauhaus-yellow); }
.contact-info-card:nth-child(3) { border-left-color: var(--bauhaus-blue); }

.contact-info-card svg {
    min-width: 20px;
    margin-top: 2px;
}

.contact-info-card h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-info-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.contact-hours h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--light-gray);
}

.hours-list .day {
    font-weight: 600;
    color: var(--text-dark);
}

.contact-form-wrapper {
    padding: 40px;
    background: var(--white);
    border: 2px solid var(--light-gray);
}

.contact-form-wrapper h3 {
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.contact-form-wrapper > p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

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

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 24px;
}

.legal-content h2 {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 48px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--light-gray);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.15rem;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-content p {
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0 24px 20px;
}

.legal-content ul li {
    list-style: disc;
    padding: 4px 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-body);
}

.legal-content a {
    color: var(--bauhaus-blue);
    text-decoration: underline;
}

.legal-date {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 32px;
    font-style: italic;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26,26,26,0);
    transition: background 0.3s ease;
}

.gallery-item:hover::after {
    background: rgba(26,26,26,0.2);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image-wrapper { display: none; }

    .hero-content { text-align: center; }
    .hero-text { margin: 0 auto 36px; }
    .hero-buttons { justify-content: center; }

    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .why-card { border-bottom: 1px solid rgba(255,255,255,0.1); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-4px); }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .areas-grid { grid-template-columns: repeat(3, 1fr); }
    .about-story { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .credentials-grid { grid-template-columns: repeat(2, 1fr); }
    .service-detail { grid-template-columns: 1fr; }
    .service-detail:nth-child(even) { direction: ltr; }
    .contact-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section-padding { padding: 70px 0; }

    .nav-links { display: none; }
    .nav-toggle { display: flex; }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 76px;
        left: 0;
        width: 100%;
        background: var(--white);
        border-bottom: 3px solid var(--primary-dark);
        padding: 24px;
        gap: 16px;
    }

    .nav-links.active .nav-cta {
        text-align: center;
        justify-content: center;
    }

    .hero { min-height: auto; padding: 120px 0 60px; }

    .trust-bar .container { grid-template-columns: repeat(2, 1fr); }
    .trust-item { padding: 24px 16px; }

    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .why-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .process-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: 1fr; }
    .credentials-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }

    .cta-banner .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; text-align: center; }

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

    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; max-width: 300px; }
}

@media (max-width: 480px) {
    .trust-bar .container { grid-template-columns: 1fr; }
    .areas-grid { grid-template-columns: 1fr; }
    .credentials-grid { grid-template-columns: 1fr; }
    .cookie-banner .container { flex-direction: column; text-align: center; }
}

/* ============================================
   BLOG — LISTING PAGE
   ============================================ */

/* Filter bar */
.blog-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 48px;
}

.blog-filter-btn {
    padding: 10px 22px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--light-gray);
    cursor: pointer;
    transition: var(--transition);
}

.blog-filter-btn:hover {
    border-color: var(--primary-dark);
    background: var(--off-white);
}

.blog-filter-btn.active {
    background: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
}

/* Blog grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Blog card */
.blog-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    animation: fadeUp 0.5s ease both;
}

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

.blog-card:hover {
    border-color: var(--primary-dark);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.blog-card-image-wrap {
    position: relative;
    overflow: hidden;
    display: block;
    aspect-ratio: 16 / 10;
}

.blog-card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image-wrap img {
    transform: scale(1.04);
}

.blog-card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 5px 14px;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    z-index: 2;
}

.blog-card-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.blog-card-dot {
    width: 4px;
    height: 4px;
    background: var(--bauhaus-red);
    border-radius: 50%;
    display: inline-block;
}

.blog-card-title {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-card-title a {
    color: var(--text-dark);
}

.blog-card-title a:hover {
    color: var(--bauhaus-red);
}

.blog-card-excerpt {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

/* Empty state */
.blog-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 80px 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.blog-empty-shape {
    width: 60px;
    height: 60px;
    background: var(--light-gray);
    border-radius: 50%;
}

/* ============================================
   BLOG — ARTICLE DETAIL PAGE
   ============================================ */

/* Article hero */
.article-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    padding-top: 76px;
    overflow: hidden;
}

.article-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 0.6s ease;
}

.article-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(17,17,17,0.5) 0%,
        rgba(17,17,17,0.75) 60%,
        rgba(17,17,17,0.92) 100%
    );
}

.article-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
    padding-top: 40px;
}

.article-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
    transition: var(--transition);
}

.article-back:hover {
    color: var(--bauhaus-yellow);
}

.article-meta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.article-category-badge {
    padding: 4px 14px;
    background: var(--bauhaus-red);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.article-meta-row time,
.article-meta-row span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-meta-sep {
    color: rgba(255,255,255,0.3);
}

.article-hero-title {
    color: var(--white);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    text-transform: uppercase;
    max-width: 800px;
    margin-bottom: 20px;
}

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

.article-byline .byline-avatar {
    width: 40px;
    height: 40px;
    background: var(--bauhaus-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--white);
}

.article-byline div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.article-byline strong {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-byline span {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
}

/* Article layout: content + sidebar */
.article-layout {
    padding: 80px 0 100px;
    background: var(--off-white);
}

.article-layout-inner {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

/* Article body */
.article-body {
    background: var(--white);
    border: 2px solid var(--light-gray);
    padding: 56px;
}

.article-content p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-body);
    margin-bottom: 20px;
}

.article-content h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 40px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--light-gray);
    color: var(--text-dark);
}

.article-content h3:first-child {
    margin-top: 0;
}

.article-content ul {
    margin: 12px 0 20px 0;
    padding: 0;
}

.article-content ul li {
    padding: 6px 0 6px 20px;
    font-size: 0.97rem;
    line-height: 1.7;
    color: var(--text-body);
    position: relative;
}

.article-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: var(--bauhaus-red);
}

/* Article tags */
.article-tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 2px solid var(--light-gray);
}

/* Article share */
.article-share {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.article-share span {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
}

.share-btn-dark {
    padding: 9px 20px;
    background: var(--primary-dark);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.share-btn-dark:hover {
    background: var(--bauhaus-blue);
    color: var(--white);
}

/* Tags shared style */
.blog-tag {
    display: inline-block;
    padding: 5px 14px;
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    transition: var(--transition);
}

.blog-tag:hover {
    background: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
}

/* Sidebar */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 96px;
}

.sidebar-cta {
    background: var(--primary-dark);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
}

.sidebar-cta-shape {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: var(--bauhaus-red);
    opacity: 0.3;
}

.sidebar-cta h4 {
    color: var(--white);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    position: relative;
}

.sidebar-cta p {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
}

.sidebar-box {
    background: var(--white);
    border: 2px solid var(--light-gray);
    padding: 28px;
}

.sidebar-box-title {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--bauhaus-red);
    display: inline-block;
}

.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* More articles */
.more-post {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
    transition: var(--transition);
}

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

.more-post:hover {
    opacity: 0.8;
}

.more-post img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    flex-shrink: 0;
}

.more-post div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.more-post-category {
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bauhaus-red);
}

.more-post-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

/* ============================================
   BLOG RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .article-layout-inner { grid-template-columns: 1fr; }
    .article-sidebar { position: static; }
}

@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .article-body { padding: 32px 24px; }
    .blog-filter-bar { gap: 6px; }
    .blog-filter-btn { padding: 8px 14px; font-size: 0.7rem; }
}
