/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #2D1F2D;
    background: #FFF8F8;
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ========== CUSTOM PROPERTIES ========== */
:root {
    --burgundy: #7B2D3B;
    --burgundy-dark: #5C1F2B;
    --burgundy-light: #9B3D4E;
    --blush: #F4A8B8;
    --blush-light: #FDDDE6;
    --blush-pale: #FFF0F4;
    --cream: #FFF8F8;
    --dark: #1A0A10;
    --text: #2D1F2D;
    --text-muted: #6B5260;
    --white: #FFFFFF;
    --radius: 16px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(123, 45, 59, 0.10);
    --shadow-lg: 0 12px 48px rgba(123, 45, 59, 0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 800; line-height: 1.15; }
.text-accent { color: var(--burgundy); }
.text-blush { color: var(--blush); }

/* ========== SECTION LABELS ========== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--burgundy);
    background: var(--blush-pale);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.section-label::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--burgundy);
    border-radius: 50%;
    display: inline-block;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark);
    margin-bottom: 16px;
}
.section-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.7;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--burgundy);
    color: var(--white);
    border-color: var(--burgundy);
}
.btn-primary:hover {
    background: var(--burgundy-dark);
    border-color: var(--burgundy-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--burgundy);
    transform: translateY(-2px);
}
.btn-blush {
    background: var(--blush);
    color: var(--dark);
    border-color: var(--blush);
}
.btn-blush:hover {
    background: #f09aab;
    border-color: #f09aab;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--burgundy);
    transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ========== NAV ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 248, 248, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(123, 45, 59, 0.08);
    transition: var(--transition);
}
.nav.scrolled {
    box-shadow: 0 2px 20px rgba(123, 45, 59, 0.1);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--burgundy);
}
.nav-logo-icon {
    width: 36px;
    height: 36px;
    background: var(--burgundy);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--burgundy);
    transition: var(--transition);
}
.nav-links a:hover { color: var(--burgundy); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    background: var(--burgundy) !important;
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    background: var(--burgundy-dark) !important;
    transform: translateY(-1px);
}
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--burgundy);
    padding: 8px;
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 50%, #3D1520 100%);
    overflow: hidden;
    padding-top: 72px;
}
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.geo-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}
.geo-circle--1 {
    width: 600px;
    height: 600px;
    background: var(--blush);
    top: -200px;
    right: -100px;
}
.geo-circle--2 {
    width: 300px;
    height: 300px;
    background: var(--blush-light);
    bottom: -80px;
    left: 10%;
}
.geo-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 60px 104px 60px;
    border-color: transparent transparent var(--blush) transparent;
    opacity: 0.06;
    top: 20%;
    left: 5%;
    transform: rotate(-15deg);
}
.geo-square {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--blush-light);
    opacity: 0.06;
    border-radius: 20px;
    bottom: 20%;
    right: 15%;
    transform: rotate(30deg);
}
.geo-dots {
    position: absolute;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, var(--blush) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    opacity: 0.15;
    top: 15%;
    right: 5%;
}
.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-content { color: var(--white); }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244, 168, 184, 0.2);
    border: 1px solid rgba(244, 168, 184, 0.3);
    color: var(--blush-light);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 28px;
}
.hero-headline {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.08;
}
.hero-headline br { display: none; }
.hero-sub {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* HERO CARDS */
.hero-cards {
    position: relative;
    height: 520px;
}
.stat-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.stat-card--main {
    width: 280px;
    height: 380px;
    top: 20px;
    right: 40px;
}
.stat-card--main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.stat-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 10, 16, 0.85) 0%, rgba(26, 10, 16, 0.2) 50%, transparent 100%);
}
.stat-card-content {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    color: var(--white);
}
.stat-card-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--blush);
    margin-bottom: 4px;
    font-weight: 600;
}
.stat-card-value {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}
.stat-card-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}
.stat-card--float {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.stat-card--1 {
    width: 180px;
    top: 0;
    left: 0;
    animation: float1 6s ease-in-out infinite;
}
.stat-card--2 {
    width: 180px;
    bottom: 80px;
    left: -10px;
    animation: float2 7s ease-in-out infinite;
}
.stat-card--3 {
    width: 180px;
    bottom: 0;
    right: 0;
    animation: float3 5s ease-in-out infinite;
}
.stat-card-icon {
    width: 44px;
    height: 44px;
    background: var(--blush-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    margin-bottom: 4px;
}
.stat-card-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--burgundy);
    line-height: 1;
}
.stat-card--float .stat-card-label {
    color: var(--text-muted);
    font-size: 0.78rem;
    text-transform: none;
    letter-spacing: 0;
}

/* HERO WAVE */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    color: var(--cream);
}
.hero-wave svg { width: 100%; height: 80px; display: block; }

/* FLOAT ANIMATIONS */
@keyframes float1 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}
@keyframes float2 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-16px); }
}
@keyframes float3 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* ========== SERVICES ========== */
.services {
    position: relative;
    padding: 100px 0;
    background: var(--cream);
    overflow: hidden;
}
.services-geo {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.geo-dot {
    position: absolute;
    border-radius: 50%;
}
.geo-dot--1 {
    width: 12px;
    height: 12px;
    background: var(--blush);
    top: 20%;
    left: 5%;
    opacity: 0.5;
}
.geo-dot--2 {
    width: 8px;
    height: 8px;
    background: var(--burgundy);
    top: 60%;
    right: 8%;
    opacity: 0.3;
}
.geo-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--blush), transparent);
    opacity: 0.2;
}
.services .container { position: relative; z-index: 1; }
.services .section-sub { margin-bottom: 56px; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    border: 1px solid rgba(123, 45, 59, 0.06);
    transition: var(--transition);
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--burgundy), var(--blush));
    opacity: 0;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card:hover::before { opacity: 1; }
.service-card-accent {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: var(--blush-pale);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}
.service-card:hover .service-card-accent { opacity: 0.5; }
.service-icon {
    width: 60px;
    height: 60px;
    background: var(--blush-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    margin-bottom: 20px;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--burgundy);
    color: var(--white);
    transform: scale(1.05);
}
.service-card h3 {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 10px;
}
.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ========== ABOUT ========== */
.about {
    position: relative;
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}
.about-bg-block {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(135deg, var(--blush-pale) 0%, rgba(244,168,184,0.15) 100%);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}
.about .container { position: relative; z-index: 1; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-visual {
    position: relative;
}
.about-img-main {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 600px; object-fit: cover; }
.about-img-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 4px solid var(--white);
}
.about-img-accent img { width: 100%; height: 200px; object-fit: cover; }
.about-exp-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--burgundy);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.about-exp-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}
.about-exp-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blush);
    margin-top: 4px;
    font-weight: 600;
}
.about-content .section-sub { margin-bottom: 24px; }
.about-content > p {
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 16px;
    font-size: 1rem;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--text);
}
.about-feature-icon {
    width: 32px;
    height: 32px;
    background: var(--blush-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    flex-shrink: 0;
}
.about-content .btn { margin-top: 8px; }

/* ========== GALLERY ========== */
.gallery {
    padding: 100px 0;
    background: var(--cream);
}
.gallery .container { position: relative; z-index: 1; }
.gallery .section-sub { margin-bottom: 56px; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 16px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(123, 45, 59, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item--large { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 3.5; }
.gallery-item:nth-child(3) { grid-column: span 3.5; }
.gallery-item:nth-child(4) { grid-column: span 3.5; }
.gallery-item:nth-child(5) { grid-column: span 3.5; }

/* ========== CTA BANNER ========== */
.cta-banner {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    overflow: hidden;
    text-align: center;
}
.cta-geo {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.cta-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
}
.cta-circle--1 {
    width: 400px;
    height: 400px;
    background: var(--blush);
    top: -150px;
    left: -100px;
}
.cta-circle--2 {
    width: 250px;
    height: 250px;
    background: var(--blush-light);
    bottom: -80px;
    right: -50px;
}
.cta-dots {
    position: absolute;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(circle, var(--blush) 1.5px, transparent 1.5px);
    background-size: 18px 18px;
    opacity: 0.2;
    top: 10%;
    right: 10%;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 16px;
}
.cta-text {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== CONTACT ========== */
.contact {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}
.contact-geo {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.contact .container { position: relative; z-index: 1; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.contact-info .section-sub { margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-item {
    display: flex;
    gap: 20px;
}
.contact-item-icon {
    width: 56px;
    height: 56px;
    background: var(--blush-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    flex-shrink: 0;
}
.contact-item strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--burgundy);
    margin-bottom: 4px;
    font-weight: 700;
}
.contact-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}
.contact-item a {
    color: var(--text);
    transition: var(--transition);
}
.contact-item a:hover { color: var(--burgundy); }
.contact-form-wrap {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid rgba(123, 45, 59, 0.06);
}
.contact-form h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 28px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(123, 45, 59, 0.15);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--burgundy);
    box-shadow: 0 0 0 3px rgba(123, 45, 59, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #E8F5E9;
    border-radius: var(--radius-sm);
    color: #2E7D32;
    font-weight: 500;
    margin-top: 16px;
}
.form-success svg { flex-shrink: 0; }

/* ========== FOOTER ========== */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 72px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-logo-icon {
    width: 36px;
    height: 36px;
    background: var(--burgundy);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}
.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}
.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    font-weight: 700;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--blush); }
.footer-contact p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 4px;
}
.footer-contact a {
    transition: var(--transition);
}
.footer-contact a:hover { color: var(--blush); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    top: 72px;
    background: rgba(255, 248, 248, 0.98);
    backdrop-filter: blur(16px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition);
}
.mobile-menu a:hover { color: var(--burgundy); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-cards { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { max-width: 500px; margin: 0 auto; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .hero { min-height: auto; padding: 120px 0 100px; }
    .hero-headline br { display: block; }
    .hero-headline { font-size: clamp(2.2rem, 8vw, 3.2rem); }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .gallery-item--large { grid-column: span 2; grid-row: span 1; }
    .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; }
    .gallery-item img { height: 200px; }
    .about-img-main img { height: 400px; }
    .about-img-accent { width: 140px; right: -10px; bottom: -15px; }
    .about-exp-badge { left: -10px; top: -10px; padding: 14px 18px; }
    .about-exp-number { font-size: 1.6rem; }
    .about-features { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: center; }
    .btn { width: 100%; justify-content: center; }
    .cta-actions { flex-direction: column; align-items: center; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item--large { grid-column: span 1; }
}

/* ========== SCROLL REVEAL (progressive enhancement) ========== */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}
