/* =============================================
   DOORMONT RIJEKA - Adriatic Modern Craft
   A warm, professional design inspired by
   Croatian coastal elegance
   ============================================= */

/* CSS Custom Properties */
:root {
    /* Primary Colors - from logo */
    --navy: #1a365d;
    --navy-light: #2c4a7c;
    --teal: #3d7a8c;
    --teal-light: #5a9aab;

    /* Warm Neutrals */
    --cream: #faf8f5;
    --cream-dark: #f0ece5;
    --sand: #e8e2d9;
    --taupe: #c4b8a8;

    /* Accent */
    --gold: #c4a35a;
    --gold-dark: #a68942;
    --gold-light: #d4b977;

    /* Text Colors */
    --text-dark: #2d3748;
    --text-medium: #4a5568;
    --text-light: #718096;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;

    /* Transitions */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(26, 54, 93, 0.06);
    --shadow-md: 0 8px 24px rgba(26, 54, 93, 0.08);
    --shadow-lg: 0 16px 48px rgba(26, 54, 93, 0.12);
    --shadow-xl: 0 24px 64px rgba(26, 54, 93, 0.16);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* Skip to Content (Accessibility) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.sr-only:focus {
    position: fixed;
    top: 10px;
    left: 10px;
    width: auto;
    height: auto;
    padding: 1rem 2rem;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    background: var(--navy);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    z-index: 9999;
    box-shadow: var(--shadow-lg);
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

h1 em, h2 em, h3 em {
    font-style: italic;
    font-weight: 500;
    color: var(--teal);
}

p {
    color: var(--text-medium);
}

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

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

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* =============================================
   Navigation
   ============================================= */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    background: linear-gradient(to bottom, rgba(15, 31, 51, 0.85) 0%, rgba(15, 31, 51, 0.5) 60%, transparent 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.4s var(--ease-smooth);
}

.nav.scrolled {
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 0.75rem 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    z-index: 1001;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: all 0.3s var(--ease-smooth);
    filter: brightness(0) invert(1);
}

.nav.scrolled .logo-img {
    height: 45px;
    filter: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    list-style: none;
}

.nav-menu a {
    font-weight: 600;
    font-size: 0.95rem;
    color: white;
    position: relative;
    padding: 0.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s var(--ease-smooth);
}

.nav.scrolled .nav-menu a {
    color: var(--navy);
    text-shadow: none;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s var(--ease-smooth);
}

.nav-menu a:hover {
    color: var(--gold-light);
}

.nav.scrolled .nav-menu a:hover {
    color: var(--gold);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gold) !important;
    color: white !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: var(--radius-md);
    font-weight: 600 !important;
    text-shadow: none !important;
    box-shadow: 0 4px 15px rgba(196, 163, 90, 0.4);
    transition: all 0.3s var(--ease-smooth) !important;
}

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

.nav-cta:hover {
    background: var(--gold-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 163, 90, 0.5);
}

.nav.scrolled .nav-cta {
    background: var(--navy) !important;
    box-shadow: var(--shadow-md);
}

.nav.scrolled .nav-cta:hover {
    background: var(--navy-light) !important;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.3s var(--ease-smooth);
}

.nav.scrolled .nav-toggle span {
    background: var(--navy);
}

/* =============================================
   Hero Section - "The Threshold Moment"
   Immersive, cinematic, conversion-focused
   ============================================= */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--navy);
}

/* Immersive Background */
.hero-backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-backdrop-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(0px);
    transform: scale(1.02);
    animation: heroBackdropReveal 1.5s var(--ease-smooth) forwards;
    opacity: 0;
}

@keyframes heroBackdropReveal {
    0% { opacity: 0; transform: scale(1.1); }
    100% { opacity: 1; transform: scale(1.05); }
}

.hero-backdrop-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center 60%,
        rgba(15, 31, 51, 0.55) 0%,
        rgba(15, 31, 51, 0.68) 30%,
        rgba(15, 31, 51, 0.8) 60%,
        rgba(15, 31, 51, 0.92) 100%
    );
}

.hero-backdrop-grain {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Floating Door Showcase */
.hero-showcase {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    animation: showcaseReveal 1s var(--ease-smooth) 0.5s forwards;
    opacity: 0;
}

@keyframes showcaseReveal {
    0% {
        opacity: 0;
        transform: translateY(-50%) translateX(80px) rotateY(-12deg);
    }
    100% {
        opacity: 1;
        transform: translateY(-50%) translateX(0) rotateY(-3deg);
    }
}

.hero-showcase-frame {
    position: relative;
    perspective: 1200px;
}

.hero-showcase-inner {
    background: linear-gradient(145deg, #ffffff 0%, #f5f5f5 100%);
    padding: 14px;
    border-radius: var(--radius-xl);
    box-shadow:
        0 30px 100px rgba(0, 0, 0, 0.5),
        0 15px 40px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: rotateY(-3deg) rotateX(1deg);
    transition: transform 0.6s var(--ease-smooth), box-shadow 0.6s var(--ease-smooth);
}

.hero-showcase-frame:hover .hero-showcase-inner {
    transform: rotateY(0deg) rotateX(0deg) scale(1.03);
    box-shadow:
        0 40px 120px rgba(0, 0, 0, 0.4),
        0 20px 50px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-showcase-door {
    width: 260px;
    height: auto;
    max-height: 65vh;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
}

.hero-showcase-shadow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 30px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.3) 0%, transparent 70%);
    filter: blur(10px);
}

.hero-showcase-accent {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.15;
    filter: blur(60px);
    z-index: -1;
    top: -50px;
    right: -50px;
    animation: accentPulse 4s ease-in-out infinite;
}

.hero-showcase-accent-2 {
    background: var(--teal);
    top: auto;
    bottom: -100px;
    right: auto;
    left: -100px;
    animation-delay: 2s;
}

@keyframes accentPulse {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.1); opacity: 0.25; }
}

/* Main Content */
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 140px var(--space-md) var(--space-xl);
    text-align: center;
}

.hero-text {
    max-width: 100%;
}

/* Badge Row */
.hero-badge-row {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
    animation: fadeSlideUp 0.8s var(--ease-smooth) 0.3s forwards;
    opacity: 0;
}

@keyframes fadeSlideUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.6rem 1.1rem;
    border-radius: 100px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-badge-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-color: var(--gold);
}

.hero-badge-gold svg {
    animation: starSpin 3s linear infinite;
}

@keyframes starSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hero Title */
.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: white;
    margin-bottom: var(--space-lg);
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 4px 20px rgba(0, 0, 0, 0.4),
        0 8px 40px rgba(0, 0, 0, 0.3);
}

.hero-title-line {
    display: block;
    overflow: hidden;
}

.hero-title-word {
    display: inline-block;
    animation: wordReveal 0.8s var(--ease-smooth) forwards;
    opacity: 0;
    transform: translateY(100%);
}

.hero-title-line:nth-child(1) .hero-title-word:nth-child(1) { animation-delay: 0.4s; }
.hero-title-line:nth-child(1) .hero-title-word:nth-child(2) { animation-delay: 0.5s; }
.hero-title-line:nth-child(2) .hero-title-word { animation-delay: 0.6s; }
.hero-title-line:nth-child(3) .hero-title-word:nth-child(1) { animation-delay: 0.7s; }
.hero-title-line:nth-child(3) .hero-title-word:nth-child(2) { animation-delay: 0.8s; }

@keyframes wordReveal {
    0% { opacity: 0; transform: translateY(100%); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-title-line-accent em {
    font-style: italic;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeSlideUp 0.8s var(--ease-smooth) 0.9s forwards;
    opacity: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-subtitle strong {
    color: white;
    font-weight: 700;
    display: block;
    margin-top: 0.5rem;
}

/* CTA Group */
.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
    animation: fadeSlideUp 0.8s var(--ease-smooth) 1s forwards;
    opacity: 0;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: white;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 1.1rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow:
        0 4px 15px rgba(196, 163, 90, 0.4),
        0 0 0 0 rgba(196, 163, 90, 0.5);
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.hero-cta-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.hero-cta-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 8px 30px rgba(196, 163, 90, 0.5),
        0 0 0 4px rgba(196, 163, 90, 0.2);
}

.hero-cta-primary:hover::before {
    opacity: 1;
}

.hero-cta-arrow {
    display: flex;
    transition: transform 0.3s var(--ease-smooth);
}

.hero-cta-primary:hover .hero-cta-arrow {
    transform: translateX(5px);
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 1.75rem;
    border-radius: var(--radius-lg);
    transition: all 0.3s var(--ease-smooth);
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.hero-cta-icon {
    display: flex;
    animation: phoneRing 2s ease-in-out infinite;
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(-15deg); }
    20% { transform: rotate(15deg); }
    30% { transform: rotate(-10deg); }
    40% { transform: rotate(10deg); }
    50%, 100% { transform: rotate(0deg); }
}

/* Trust Row */
.hero-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    animation: fadeSlideUp 0.8s var(--ease-smooth) 1.1s forwards;
    opacity: 0;
}

.hero-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.125rem;
}

.hero-trust-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.hero-trust-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-trust-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.3), transparent);
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: fadeSlideUp 0.8s var(--ease-smooth) 1.3s forwards;
    opacity: 0;
}

.hero-scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* Decorative Elements */
.hero-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-deco-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
    opacity: 0.1;
    top: -100px;
    left: -100px;
    animation: decoFloat 8s ease-in-out infinite;
}

.hero-deco-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    opacity: 0.1;
    bottom: -50px;
    left: 30%;
    animation: decoFloat 10s ease-in-out infinite reverse;
}

@keyframes decoFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 20px); }
}

/* Buttons - Global */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
}

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

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(196, 163, 90, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-secondary:hover {
    background: var(--navy);
    color: white;
    transform: translateY(-3px);
}

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

.btn-outline:hover {
    border-color: var(--navy);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* =============================================
   Trust Section
   ============================================= */
.trust {
    background: var(--navy);
    padding: var(--space-xl) 0;
    position: relative;
    overflow: hidden;
}

.trust::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(61, 122, 140, 0.2), transparent);
    pointer-events: none;
}

.trust-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
    color: white;
}

.trust-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
    color: var(--gold-light);
}

.trust-label {
    font-size: 0.9rem;
    opacity: 0.9;
    letter-spacing: 0.02em;
}

.trust-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

/* =============================================
   Features Section
   ============================================= */
.features {
    padding: var(--space-2xl) 0;
    background: var(--cream);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.feature-card {
    background: white;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease-smooth);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--sand);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-md);
    color: var(--teal);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--navy);
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =============================================
   Section Headers
   ============================================= */
.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: var(--space-sm);
    position: relative;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--taupe);
}

.section-tag::before { right: calc(100% + 12px); }
.section-tag::after { left: calc(100% + 12px); }

.section-tag-light {
    color: var(--gold-light);
}

.section-tag-light::before,
.section-tag-light::after {
    background: rgba(255, 255, 255, 0.3);
}

.section-header h2 {
    margin-bottom: var(--space-sm);
}

.section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* =============================================
   Catalog Section
   ============================================= */
.catalog {
    padding: var(--space-2xl) 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.catalog-filters {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 1px solid var(--sand);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-medium);
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
}

.filter-btn:hover {
    border-color: var(--navy);
    color: var(--navy);
}

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

.catalog-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.catalog-item {
    flex: 0 0 calc((100% - 2 * var(--space-lg)) / 3);
}

.catalog-item {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease-smooth);
    cursor: pointer;
}

.catalog-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.catalog-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.catalog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

.catalog-item:hover .catalog-image img {
    transform: scale(1.08);
}

.catalog-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 54, 93, 0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: var(--space-md);
    opacity: 0;
    transition: opacity 0.4s var(--ease-smooth);
}

.catalog-item:hover .catalog-overlay {
    opacity: 1;
}

.catalog-overlay span {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-md);
    transform: translateY(20px);
    transition: transform 0.4s var(--ease-smooth);
}

.catalog-item:hover .catalog-overlay span {
    transform: translateY(0);
}

.catalog-info {
    padding: var(--space-md);
    text-align: center;
}

.catalog-info h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.catalog-info p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.catalog-cta {
    text-align: center;
}

.catalog-cta p {
    margin-bottom: var(--space-sm);
    font-size: 0.95rem;
}

/* =============================================
   Gallery Section
   ============================================= */
.gallery {
    background: var(--navy);
    padding: var(--space-2xl) 0;
    overflow: hidden;
}

.gallery-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.gallery-header h2 {
    color: white;
}

.gallery-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.gallery-showcase {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 var(--space-md);
}

.gallery-track {
    display: flex;
    gap: var(--space-md);
    transition: transform 0.5s var(--ease-smooth);
}

.gallery-slide {
    flex: 0 0 300px;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s var(--ease-smooth);
    box-shadow: var(--shadow-lg);
}

.gallery-slide:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

.gallery-slide:hover img {
    transform: scale(1.1);
}

.gallery-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.gallery-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-smooth);
}

.gallery-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.1);
}

.gallery-dots {
    display: flex;
    gap: 0.5rem;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
}

.gallery-dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* =============================================
   About Section
   ============================================= */
/* =============================================
   About Section
   ============================================= */
.about {
    padding: var(--space-2xl) 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.about-deco-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.about-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.about-header h2 {
    margin-bottom: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-content {
    max-width: 540px;
}

.about-lead {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.about-pullquote {
    position: relative;
    margin: var(--space-md) 0;
    padding: var(--space-sm) var(--space-md) var(--space-sm) calc(var(--space-md) + 0.5rem);
    border-left: 3px solid var(--gold);
}

.about-pullquote-mark {
    position: absolute;
    top: -0.75rem;
    left: 0.5rem;
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.2;
    pointer-events: none;
}

.about-pullquote blockquote {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    font-style: italic;
    line-height: 1.4;
    color: var(--navy);
}

.about-content > p {
    margin-bottom: var(--space-sm);
    line-height: 1.75;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem var(--space-md);
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--sand);
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.value-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(196, 163, 90, 0.3);
}

.about-images {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: var(--space-sm);
    height: 100%;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-1 {
    grid-column: 1;
    grid-row: 1 / 3;
}

.about-image-1 img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

.about-image-2 {
    grid-column: 2;
    grid-row: 1;
    margin-top: var(--space-xl);
}

.about-image-2 img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

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

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 140px;
    height: 140px;
    border: 2px solid var(--gold);
    border-radius: var(--radius-xl);
    opacity: 0.15;
    z-index: -1;
}

/* =============================================
   Service Areas Section
   ============================================= */
.areas {
    padding: var(--space-2xl) 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.areas::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(61, 122, 140, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.areas-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: var(--space-2xl);
    align-items: center;
}

.areas-map {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.areas-map img {
    width: 100%;
    max-width: 420px;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(196, 163, 90, 0.15));
    animation: mapFloat 6s ease-in-out infinite;
}

@keyframes mapFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.areas-content {
    color: white;
}

.areas-title {
    color: white;
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: var(--space-md);
}

.areas-title em {
    color: var(--gold-light);
}

.areas-lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-xl);
    max-width: 500px;
}

.areas-regions {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.areas-region h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: var(--space-sm);
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.area-tag {
    padding: 0.4rem 0.875rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s var(--ease-smooth);
}

.area-tag:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: white;
}

.areas-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

/* =============================================
   Contact Section
   ============================================= */
.contact {
    padding: var(--space-2xl) 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
    opacity: 0.15;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-2xl);
    align-items: start;
}

.contact-info {
    color: white;
}

.contact-info h2 {
    color: white;
    margin-bottom: var(--space-md);
}

.contact-info h2 em {
    color: var(--gold-light);
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: var(--space-xl);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s var(--ease-smooth);
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(8px);
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    background: var(--gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

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

.contact-method-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.125rem;
}

.contact-method-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid var(--sand);
    border-radius: var(--radius-md);
    background: var(--cream);
    color: var(--text-dark);
    transition: all 0.3s var(--ease-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    background: white;
    box-shadow: 0 0 0 4px rgba(61, 122, 140, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

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

.contact-form .btn {
    margin-top: var(--space-sm);
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: var(--space-md);
}

.form-hint {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-medium);
    background: var(--cream-dark);
    border-left: 3px solid var(--gold);
    padding: 0.875rem 1rem;
    margin-top: var(--space-md);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* =============================================
   Social Media Section
   ============================================= */
.social {
    padding: var(--space-2xl) 0;
    background: var(--cream-dark);
}

.social-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.social-header h2 {
    margin-bottom: var(--space-sm);
}

.social-header p {
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto;
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.social-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s var(--ease-smooth);
    display: block;
}

.social-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.social-card-image {
    position: relative;
    overflow: hidden;
}

.social-card-instagram .social-card-image {
    aspect-ratio: 4/3;
}

.social-card-facebook .social-card-image {
    aspect-ratio: 16/9;
}

.social-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

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

.social-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 54, 93, 0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: var(--space-md);
    opacity: 0;
    transition: opacity 0.4s var(--ease-smooth);
}

.social-card:hover .social-card-overlay {
    opacity: 1;
}

.social-card-cta {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-md);
    transform: translateY(10px);
    transition: transform 0.4s var(--ease-smooth);
}

.social-card:hover .social-card-cta {
    transform: translateY(0);
}

.social-card-info {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-md);
}

.social-card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.social-card-instagram .social-card-icon {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-card-facebook .social-card-icon {
    background: #1877F2;
}

.social-card-text {
    flex: 1;
    min-width: 0;
}

.social-card-handle {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy);
}

.social-card-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.125rem;
}

.social-card-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    flex-shrink: 0;
    transition: all 0.3s var(--ease-smooth);
}

.social-card:hover .social-card-arrow {
    background: var(--navy);
    color: white;
}

/* =============================================
   Footer
   ============================================= */
.footer {
    background: #0f1f33;
    padding: var(--space-xl) 0 var(--space-lg);
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-logo {
    height: 40px;
    margin-bottom: var(--space-md);
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: var(--space-md);
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s var(--ease-smooth);
}

.footer-links a:hover {
    color: white;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.footer-bottom {
    padding-top: var(--space-lg);
    text-align: center;
}

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

/* =============================================
   Lightbox
   ============================================= */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-smooth);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s var(--ease-smooth);
}

.lightbox-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
}

.lightbox-nav:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.lightbox-prev { left: var(--space-md); }
.lightbox-next { right: var(--space-md); }

/* =============================================
   Responsive Design
   ============================================= */
@media (max-width: 1200px) {
    .hero-showcase {
        right: 2%;
    }

    .hero-showcase-door {
        width: 240px;
    }
}

@media (max-width: 1024px) {
    /* Hero responsive */
    .hero-showcase {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin: var(--space-xl) auto 0;
        animation: fadeSlideUp 0.8s var(--ease-smooth) 1.2s forwards;
    }

    .hero-content {
        padding-top: 100px;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-badge-row {
        justify-content: center;
    }

    .hero-title {
        font-size: clamp(2.2rem, 6vw, 3.5rem);
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-showcase-inner {
        transform: none;
    }

    .hero-showcase-door {
        width: 220px;
        max-height: 50vh;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .catalog-item {
        flex: 0 0 calc((100% - var(--space-lg)) / 2);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .about-content {
        max-width: 100%;
        text-align: center;
    }

    .about-pullquote {
        text-align: left;
    }

    .about-values {
        max-width: 440px;
        margin: var(--space-xl) auto 0;
        text-align: left;
    }

    .about-image-2 {
        margin-top: 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .contact-info {
        text-align: center;
    }

    .contact-methods {
        max-width: 400px;
        margin: 0 auto;
    }

    .areas-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .areas-map img {
        max-width: 300px;
    }

    .areas-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .areas-list {
        justify-content: center;
    }

    .areas-note {
        text-align: center;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-lg);
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-smooth);
        box-shadow: var(--shadow-xl);
    }

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

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

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

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

    /* Hero mobile */
    .hero {
        min-height: auto;
        padding-bottom: var(--space-xl);
    }

    .hero-content {
        padding-top: 90px;
        padding-bottom: 0;
    }

    .hero-title {
        font-size: clamp(1.9rem, 8vw, 2.8rem);
    }

    .hero-badge-row {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 0.875rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-subtitle br {
        display: none;
    }

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

    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-trust {
        flex-wrap: wrap;
        gap: var(--space-sm);
    }

    .hero-trust-divider {
        display: none;
    }

    .hero-trust-item {
        flex: 0 0 calc(33% - var(--space-sm));
        text-align: center;
    }

    .hero-trust-number {
        font-size: 1.5rem;
    }

    .hero-trust-label {
        font-size: 0.7rem;
    }

    .hero-showcase {
        margin-top: var(--space-lg);
    }

    .hero-showcase-door {
        width: 180px;
    }

    .hero-scroll {
        display: none;
    }

    .hero-deco {
        display: none;
    }

    .trust-grid {
        flex-direction: column;
        gap: var(--space-md);
    }

    .trust-divider {
        width: 50px;
        height: 1px;
    }

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

    .catalog-item {
        flex: 0 0 100%;
        max-width: 400px;
    }

    .gallery-slide {
        flex: 0 0 280px;
        height: 350px;
    }

    .about-images {
        grid-template-columns: 1fr 1fr;
    }

    .about-image-1 {
        grid-row: auto;
    }

    .about-image-1 img {
        min-height: 280px;
    }

    .about-image-2 img {
        height: 280px;
    }

    .about-pullquote blockquote {
        font-size: 1.3rem;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

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

    .social-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

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

    .footer-contact li {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    :root {
        --space-xl: 3rem;
        --space-2xl: 4rem;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        padding: 0.875rem 1.5rem;
    }

    .section-tag::before,
    .section-tag::after {
        display: none;
    }

    .gallery-slide {
        flex: 0 0 260px;
        height: 320px;
    }

    .contact-form-wrapper {
        padding: var(--space-lg);
    }

    .lightbox-nav {
        width: 44px;
        height: 44px;
    }
}

/* =============================================
   Animations - Scroll Reveal
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-smooth);
}

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

/* Staggered animations for grid items */
.catalog-item:nth-child(1) { transition-delay: 0.1s; }
.catalog-item:nth-child(2) { transition-delay: 0.2s; }
.catalog-item:nth-child(3) { transition-delay: 0.3s; }
.catalog-item:nth-child(4) { transition-delay: 0.4s; }
.catalog-item:nth-child(5) { transition-delay: 0.5s; }
.catalog-item:nth-child(6) { transition-delay: 0.6s; }

.feature-card:nth-child(1) { transition-delay: 0.1s; }
.feature-card:nth-child(2) { transition-delay: 0.2s; }
.feature-card:nth-child(3) { transition-delay: 0.3s; }
.feature-card:nth-child(4) { transition-delay: 0.4s; }

/* Print styles */
@media print {
    .nav,
    .hero-scroll,
    .gallery-controls,
    .lightbox {
        display: none !important;
    }

    body {
        background: white;
    }

    .hero {
        min-height: auto;
        padding: var(--space-lg) 0;
    }
}
