/* ========================================
   MICOLONIA — Premium Dark Luxury
   Burgundy + Blush + Gold Palette
   ======================================== */

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

:root {
    --bg-primary: #0D0A0C;
    --bg-secondary: #141013;
    --bg-tertiary: #1C161A;
    --bg-card: #1A1418;
    
    --burgundy-deep: #4A0E1C;
    --burgundy: #7B2D3B;
    --burgundy-light: #9B3D4B;
    --burgundy-glow: #C44555;
    
    --blush: #F2D0C4;
    --blush-light: #F7DFD7;
    --blush-muted: #D4A89A;
    
    --gold: #C9A84C;
    --gold-light: #E0C070;
    --gold-muted: #A08030;
    
    --text-primary: #F5EDE8;
    --text-secondary: #C4B8B0;
    --text-muted: #8A7E78;
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul { list-style: none; }

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

/* --- Skip Link --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--gold);
    color: var(--bg-primary);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    z-index: 9999;
    transition: top var(--transition);
}
.skip-link:focus {
    top: 16px;
}

/* --- Section Labels --- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.text-gold {
    color: var(--gold);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.7;
}

.section-header--center {
    text-align: center;
}
.section-header--center .section-subtitle {
    margin: 0 auto;
}
.section-header--center .section-label::before {
    display: none;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-deep) 100%);
    color: var(--text-primary);
    border: 1px solid var(--burgundy-light);
    box-shadow: 0 4px 20px rgba(123, 45, 59, 0.3);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--burgundy-light) 0%, var(--burgundy) 100%);
    box-shadow: 0 6px 28px rgba(123, 45, 59, 0.45);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(245, 237, 232, 0.2);
}
.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.06);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1rem;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
}
.navbar.scrolled {
    background: rgba(13, 10, 12, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
}
.nav-logo:hover { color: var(--gold); }

.nav-logo-text {
    letter-spacing: 0.02em;
}

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

.nav-links a {
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--text-secondary);
    transition: color var(--transition);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    padding: 10px 22px !important;
    border: 1px solid rgba(201, 168, 76, 0.4) !important;
    border-radius: 50px;
    color: var(--gold) !important;
    font-weight: 500 !important;
    transition: all var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    background: rgba(201, 168, 76, 0.1) !important;
    border-color: var(--gold) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}
.nav-toggle-bar {
    width: 100%;
    height: 1.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition);
    transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-primary);
}

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

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

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, 
            rgba(13, 10, 12, 0.7) 0%, 
            rgba(13, 10, 12, 0.4) 40%,
            rgba(13, 10, 12, 0.6) 70%,
            rgba(13, 10, 12, 0.95) 100%),
        linear-gradient(135deg, 
            rgba(74, 14, 28, 0.5) 0%, 
            transparent 50%),
        linear-gradient(225deg, 
            rgba(123, 45, 59, 0.3) 0%, 
            transparent 50%);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 32px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 24px;
}

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

.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
}

.hero-stat-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-top: 4px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(201, 168, 76, 0.2);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

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

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ========================================
   ABOUT
   ======================================== */
.about {
    padding: 120px 0;
    background: var(--bg-primary);
}

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

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

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

.about-image {
    width: 100%;
    height: 750px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-image-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--gold);
    border-radius: var(--radius-md);
    opacity: 0.3;
    z-index: -1;
}

.about-floating-card {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--bg-tertiary);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: var(--radius-md);
    padding: 20px 28px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.floating-card-number {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
}

.floating-card-text {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.about-text-col {
    padding-left: 16px;
}

.about-body {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: var(--radius-sm);
}

.feature-title {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.feature-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ========================================
   SPECIALTIES
   ======================================== */
.specialties {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
}
.specialties::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.15), transparent);
}

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

.specialty-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all var(--transition);
}
.specialty-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 168, 76, 0.15);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.specialty-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.specialty-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.specialty-card:hover .specialty-card-image img {
    transform: scale(1.06);
}

.specialty-card-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
}

.specialty-card-tag {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(13, 10, 12, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
}

.specialty-card-content {
    padding: 28px;
}

.specialty-card-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.specialty-card-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   PROCESS
   ======================================== */
.process {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(123, 45, 59, 0.08) 0%, transparent 70%);
    transform: translateY(-50%);
    pointer-events: none;
}

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

.process-content { order: 1; }
.process-image-col { order: 2; }

.process-body {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 48px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.process-step:first-child { padding-top: 0; }
.process-step:last-child { border-bottom: none; }

.step-number {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.5;
    min-width: 44px;
    padding-top: 2px;
}

.step-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.step-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.process-image-stack {
    position: relative;
    height: 600px;
}

.process-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.process-img-float {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 240px;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 3px solid var(--bg-primary);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
}
.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.15), transparent);
}

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

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all var(--transition);
    position: relative;
}
.testimonial-card:hover {
    border-color: rgba(201, 168, 76, 0.12);
    background: var(--bg-tertiary);
}

.testimonial-quote-mark {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    right: 28px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

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

.testimonial-avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.08);
    border-radius: 50%;
    flex-shrink: 0;
}

.testimonial-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-location {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ========================================
   CTA
   ======================================== */
.cta {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.cta-inner {
    position: relative;
    background: linear-gradient(135deg, var(--burgundy-deep) 0%, var(--burgundy) 50%, #5A1525 100%);
    border-radius: var(--radius-xl);
    padding: 80px 64px;
    text-align: center;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.1);
}

.cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: 
        radial-gradient(circle at 20% 30%, var(--gold) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, var(--gold) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, var(--gold) 0.5px, transparent 0.5px);
    background-size: 60px 60px, 80px 80px, 40px 40px;
    pointer-events: none;
}

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

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.05rem;
    color: var(--blush);
    line-height: 1.75;
    max-width: 520px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
    font-weight: 600;
}
.cta .btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

.cta .btn-ghost {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
}
.cta .btn-ghost:hover {
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
}

/* ========================================
   VISIT
   ======================================== */
.visit {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
}
.visit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.15), transparent);
}

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

.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.visit-detail:first-of-type { padding-top: 0; }
.visit-detail:last-of-type { border-bottom: none; }

.visit-detail-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: var(--radius-sm);
}

.visit-detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.visit-detail-value {
    display: block;
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.visit-link {
    color: var(--gold);
    transition: color var(--transition);
}
.visit-link:hover { color: var(--gold-light); }

.visit-map {
    margin-top: 32px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.visit-image-col {
    height: 100%;
}

.visit-image-main {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 64px 0 32px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.footer-logo:hover { color: var(--gold); }

.footer-tagline {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 280px;
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-contact p,
.footer-hours p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.footer-link {
    color: var(--gold);
    transition: color var(--transition);
}
.footer-link:hover { color: var(--gold-light); }

.footer-legal {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
}

.footer-legal p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========================================
   MOBILE NAV
   ======================================== */
@media (max-width: 900px) {
    .nav-toggle { display: flex; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        padding: 40px;
        transition: right var(--transition);
        border-left: 1px solid rgba(201, 168, 76, 0.1);
    }
    .nav-links.open { right: 0; }
    .nav-links a { font-size: 1rem; }
    
    .mobile-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 999;
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition);
    }
    .mobile-overlay.active {
        opacity: 1;
        pointer-events: all;
    }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
    .about-grid,
    .process-inner,
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .process-content { order: 2; }
    .process-image-col { order: 1; }
    .process-image-stack { height: 400px; }
    .process-img-float { width: 180px; height: 135px; left: -20px; bottom: -20px; }
    
    .specialties-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats { gap: 20px; }
    .hero-stat-number { font-size: 1.3rem; }
    
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-legal {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .about-text-col { padding-left: 0; }
    .about-image { height: 500px; }
    .about-floating-card { left: 16px; bottom: -16px; }
    
    .cta-inner { padding: 60px 32px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    
    .hero-content { padding: 100px 16px 60px; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .hero-stat-divider { width: 40px; height: 1px; }
    
    .about, .specialties, .process, .testimonials, .cta, .visit {
        padding: 80px 0;
    }
    
    .visit-image-main { min-height: 320px; }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}
