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

:root {
    --burgundy: #8B1A4A;
    --burgundy-dark: #6B1038;
    --burgundy-light: #A82260;
    --blush: #F8D0D4;
    --blush-light: #FDE8EA;
    --blush-dark: #E8A0A8;
    --cream: #FFF8F0;
    --dark: #1A0A10;
    --dark-soft: #2D1520;
    --gray: #6B5060;
    --gray-light: #A89098;
    --white: #FFFFFF;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(139, 26, 74, 0.10);
    --shadow-lg: 0 12px 48px rgba(139, 26, 74, 0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--cream);
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Syne', sans-serif; line-height: 1.15; font-weight: 800; }

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

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

ul { list-style: none; }

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--burgundy);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius);
    z-index: 9999;
    font-weight: 600;
}
.skip-link:focus { top: 16px; }

.text-accent { color: var(--burgundy); }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15px;
    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-nav {
    background: var(--blush);
    color: var(--burgundy);
    border-color: var(--blush);
    padding: 10px 22px;
    font-size: 14px;
}
.btn-nav:hover {
    background: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline-white:hover {
    background: var(--white);
    color: var(--burgundy);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--burgundy);
    border-color: var(--white);
}
.btn-white:hover {
    background: var(--blush-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 18px 36px; font-size: 17px; }

/* ── Section shared ── */
.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--burgundy);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(28px, 5vw, 48px);
    color: var(--dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 560px;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-header .section-subtitle { margin: 0 auto; }

/* ── Header ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 248, 240, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(139, 26, 74, 0.08);
    transition: var(--transition);
}
.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(139, 26, 74, 0.10);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--dark);
}

.logo-mark { width: 36px; height: 36px; flex-shrink: 0; }

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-accent { color: var(--burgundy); }

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a:not(.btn) {
    padding: 8px 16px;
    font-weight: 500;
    font-size: 15px;
    color: var(--dark);
    border-radius: 50px;
    transition: var(--transition);
}
.main-nav a:not(.btn):hover {
    color: var(--burgundy);
    background: var(--blush-light);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger { margin: 0 auto; position: relative; }
.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark);
    overflow: hidden;
    padding: 100px 0 60px;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.geo-circle {
    position: absolute;
    border-radius: 50%;
}
.geo-circle--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 26, 74, 0.35) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}
.geo-circle--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(248, 208, 212, 0.12) 0%, transparent 70%);
    bottom: -100px;
    left: -50px;
}

.geo-tri {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 120px 120px;
    border-color: transparent transparent rgba(194, 24, 91, 0.25) transparent;
    top: 15%;
    left: 8%;
    transform: rotate(-15deg);
}

.geo-dots {
    position: absolute;
    bottom: 12%;
    right: 18%;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, rgba(248, 208, 212, 0.4) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    opacity: 0.7;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(248, 208, 212, 0.15);
    border: 1px solid rgba(248, 208, 212, 0.25);
    color: var(--blush);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}
.hero-badge svg { width: 14px; height: 14px; }

.hero-title {
    font-size: clamp(36px, 5.5vw, 68px);
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 24px;
    align-items: center;
}

.stat {
    display: flex;
    flex-direction: column;
}
.stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--blush);
    line-height: 1;
}
.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.hero-visual {
    position: relative;
}

.hero-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.hero-img-wrap img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
}

.hero-img-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--burgundy);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.6;
}

.hero-float-card {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}
.hero-float-card svg {
    width: 32px;
    height: 32px;
    color: var(--burgundy);
    flex-shrink: 0;
}
.hero-float-card strong {
    display: block;
    font-size: 14px;
    color: var(--dark);
}
.hero-float-card span {
    font-size: 12px;
    color: var(--gray);
}

/* ── Services ── */
.services {
    padding: 100px 0;
    background: var(--cream);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--burgundy), var(--blush), var(--burgundy));
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid rgba(139, 26, 74, 0.07);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--burgundy);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background: var(--blush-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--burgundy);
}

.service-card h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

/* ── Gallery ── */
.gallery {
    padding: 100px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 26, 74, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.gallery .section-tag { color: var(--blush); }
.gallery .section-title { color: var(--white); }
.gallery .section-subtitle { color: rgba(255,255,255,0.6); }

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

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:nth-child(1) img,
.gallery-item:nth-child(3) img,
.gallery-item:nth-child(5) img { height: 340px; }
.gallery-item:nth-child(2) img,
.gallery-item:nth-child(4) img,
.gallery-item:nth-child(6) img { height: 340px; }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 10, 16, 0.85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ── About ── */
.about {
    padding: 100px 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: var(--blush);
    border-radius: 50%;
    opacity: 0.3;
    pointer-events: none;
}

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

.about-visual {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.about-img-main img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.about-img-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream);
}
.about-img-float img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.about-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--burgundy);
    color: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}
.about-badge-num {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 800;
}
.about-badge-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.8;
}

.about-content .section-tag { margin-bottom: 12px; }
.about-content .section-title { margin-bottom: 24px; }

.about-text {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--dark);
    font-weight: 500;
}
.about-features svg {
    width: 20px;
    height: 20px;
    color: var(--burgundy);
    flex-shrink: 0;
}

/* ── FAQ ── */
.faq {
    padding: 100px 0;
    background: var(--white);
}

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

.faq-left { position: sticky; top: 100px; }
.faq-intro {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 28px;
    line-height: 1.7;
}
.faq-left .btn-lg { margin-top: 8px; }

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid rgba(139, 26, 74, 0.10);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover { border-color: rgba(139, 26, 74, 0.20); }

.faq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    gap: 16px;
}
.faq-btn:hover { color: var(--burgundy); }

.faq-toggle {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}
.faq-toggle::before, .faq-toggle::after {
    content: '';
    position: absolute;
    background: var(--burgundy);
    border-radius: 2px;
    transition: transform 0.3s ease;
}
.faq-toggle::before {
    width: 14px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.faq-toggle::after {
    width: 2px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.faq-btn[aria-expanded="true"] .faq-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-a p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

/* ── CTA Banner ── */
.cta-banner {
    padding: 80px 0;
    background: var(--burgundy);
    position: relative;
    overflow: hidden;
}

.cta-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.cta-shape {
    position: absolute;
    opacity: 0.12;
}
.cta-shape--circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 3px solid var(--white);
    top: -80px;
    left: -60px;
}
.cta-shape--square {
    width: 120px;
    height: 120px;
    background: var(--blush);
    border-radius: var(--radius);
    bottom: -30px;
    right: 10%;
    transform: rotate(25deg);
}
.cta-shape--dot {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    top: 20%;
    right: 25%;
    box-shadow:
        20px 30px 0 var(--white),
        40px 10px 0 var(--white),
        10px 50px 0 var(--white);
}

.cta-banner-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
}

.cta-title {
    font-size: clamp(24px, 4vw, 40px);
    color: var(--white);
    margin-bottom: 16px;
}

.cta-text {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    max-width: 400px;
}

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

/* ── Contact ── */
.contact {
    padding: 100px 0;
    background: var(--cream);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blush), var(--burgundy), var(--blush));
}

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

.contact-intro {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: var(--blush-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-icon svg {
    width: 22px;
    height: 22px;
    color: var(--burgundy);
}

.contact-item strong {
    display: block;
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 4px;
}
.contact-item p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
}
.contact-item a {
    color: var(--burgundy);
    font-weight: 500;
    transition: color 0.2s;
}
.contact-item a:hover { color: var(--burgundy-dark); }

.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(139, 26, 74, 0.06);
}

.form-title {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 28px;
}

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

.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(139, 26, 74, 0.15);
    border-radius: var(--radius);
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: var(--dark);
    background: var(--cream);
    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(139, 26, 74, 0.10);
    background: var(--white);
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 18px;
    background: #E8F5E9;
    border-radius: var(--radius);
    color: #2E7D32;
    font-size: 14px;
}
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ── Footer ── */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.70);
    padding: 64px 0 0;
}

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

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}

.footer-logo .logo-mark { width: 32px; height: 32px; }
.footer-logo .logo-text { font-size: 18px; }

.footer-links h4,
.footer-contact h4 {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.60);
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--blush); }

.footer-contact p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 4px;
}
.footer-contact a {
    color: rgba(255, 255, 255, 0.60);
    transition: color 0.2s;
}
.footer-contact a:hover { color: var(--blush); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.40);
    flex-wrap: wrap;
    gap: 12px;
}

/* ── Mobile Nav Overlay ── */
.main-nav.open {
    display: flex;
    position: fixed;
    inset: 0;
    top: 72px;
    background: rgba(255, 248, 240, 0.98);
    backdrop-filter: blur(12px);
    z-index: 999;
    padding: 40px 24px;
    animation: slideDown 0.3s ease;
}
.main-nav.open ul {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
}
.main-nav.open a:not(.btn) {
    font-size: 20px;
    padding: 14px 20px;
    border-radius: var(--radius);
}
.main-nav.open .btn-nav {
    align-self: center;
    margin-top: 16px;
    padding: 16px 32px;
    font-size: 16px;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-grid { gap: 40px; }
    .hero-img-wrap img { height: 460px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 40px; }
    .faq-layout { grid-template-columns: 1fr; }
    .faq-left { position: static; margin-bottom: 20px; }
    .cta-banner-inner { grid-template-columns: 1fr; text-align: center; }
    .cta-actions { justify-content: center; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

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

    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-visual { order: -1; }
    .hero-img-wrap img { height: 360px; }
    .hero-float-card { left: 10px; bottom: 20px; }
    .hero-title { font-size: clamp(32px, 8vw, 48px); }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
    .hero-stats { gap: 16px; }
    .stat-num { font-size: 22px; }

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

    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item img { height: 240px; }

    .about-grid { grid-template-columns: 1fr; }
    .about-img-main img { height: 360px; }
    .about-img-float { width: 160px; right: -10px; bottom: -20px; }
    .about-img-float img { height: 180px; }
    .about-badge { top: -10px; left: -10px; padding: 12px 14px; }

    .cta-banner { padding: 60px 0; }

    .contact-form-wrap { padding: 28px; }
    .form-row { grid-template-columns: 1fr; }

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

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item img { height: 280px; }
    .hero-float-card { display: none; }
}
