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

:root {
    --midnight: #0a1628;
    --midnight-light: #132038;
    --midnight-mid: #1a2d4a;
    --mint: #3dd9b8;
    --mint-light: #5eead4;
    --mint-dark: #2bc4a0;
    --mint-pale: #d0f5ed;
    --white: #ffffff;
    --off-white: #f4f9f7;
    --gray-100: #e8eef0;
    --gray-200: #c8d3d9;
    --gray-400: #8fa3b0;
    --gray-600: #5a7180;
    --gray-800: #2c3e50;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.15; color: var(--midnight); }

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mint-dark);
    background: var(--mint-pale);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    margin-bottom: 20px;
}

.text-mint { color: var(--mint-dark); }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 100px;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}

.btn-primary {
    background: var(--mint);
    color: var(--midnight);
    box-shadow: 0 4px 20px rgba(61, 217, 184, 0.35);
}
.btn-primary:hover {
    background: var(--mint-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(61, 217, 184, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--midnight);
    border: 2px solid var(--gray-200);
}
.btn-outline:hover {
    border-color: var(--mint);
    color: var(--mint-dark);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--midnight);
    border: 2px solid var(--midnight);
}
.btn-outline-light:hover {
    background: var(--midnight);
    color: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--midnight);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-full { width: 100%; justify-content: center; }

/* ── Header ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--gray-100);
    transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
    box-shadow: 0 2px 24px rgba(10, 22, 40, 0.08);
}

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

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--midnight);
}
.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--mint);
    border-radius: 10px;
    color: var(--midnight);
}

.logo-light { color: var(--white); }

.nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav a {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: 8px;
    transition: all 0.2s ease;
}
.nav a:hover { color: var(--midnight); background: var(--gray-100); }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}
.mobile-toggle span {
    display: block;
    height: 2.5px;
    background: var(--midnight);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

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

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

.shape-circle-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(61, 217, 184, 0.12) 0%, transparent 70%);
    top: -150px;
    right: -100px;
}

.shape-circle-2 {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(61, 217, 184, 0.08) 0%, transparent 70%);
    bottom: -80px;
    left: 10%;
}

.shape-line-1 {
    position: absolute;
    width: 2px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, rgba(61, 217, 184, 0.3), transparent);
    top: 15%;
    left: 8%;
    transform: rotate(25deg);
}

.shape-line-2 {
    position: absolute;
    width: 120px;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(61, 217, 184, 0.25), transparent);
    bottom: 25%;
    right: 5%;
    transform: rotate(-15deg);
}

.shape-dots {
    position: absolute;
    width: 80px;
    height: 80px;
    bottom: 18%;
    right: 12%;
    background-image: radial-gradient(circle, rgba(61, 217, 184, 0.3) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    opacity: 0.6;
}

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

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(61, 217, 184, 0.12);
    border: 1px solid rgba(61, 217, 184, 0.25);
    color: var(--mint-light);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
}
.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--mint);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-headline {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-headline .highlight {
    color: var(--mint);
    position: relative;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero-ctas .btn-primary {
    background: var(--mint);
    color: var(--midnight);
}
.hero-ctas .btn-outline {
    border-color: rgba(255,255,255,0.2);
    color: var(--white);
}
.hero-ctas .btn-outline:hover {
    border-color: var(--mint);
    color: var(--mint);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}
.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.stat-num {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--mint);
}
.stat-label {
    font-size: 0.8rem;
    color: var(--gray-400);
    line-height: 1.4;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
}

.hero-img-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.img-card-primary {
    width: 320px;
    height: 400px;
}
.img-card-secondary {
    width: 240px;
    height: 160px;
    border-radius: 14px;
    margin-top: -40px;
    margin-right: 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.hero-img-card img, .hero-img-card-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-accent-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--midnight);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 100px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    margin-top: 8px;
    margin-right: 30px;
}

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

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

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

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
    border: 1px solid var(--gray-100);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(10, 22, 40, 0.1);
    border-color: var(--mint);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--mint);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mint-pale);
    color: var(--mint-dark);
    border-radius: 14px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.service-card:hover .service-icon {
    background: var(--mint);
    color: var(--midnight);
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--midnight);
}

.service-card p {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 16px;
}

.service-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--midnight);
    background: var(--mint);
    padding: 4px 10px;
    border-radius: 6px;
}

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

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

.about-visual {
    position: relative;
}

.about-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.12);
}
.about-img-main img { width: 100%; height: 480px; object-fit: cover; }

.about-img-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(10, 22, 40, 0.15);
    border: 4px solid var(--white);
}
.about-img-accent img { width: 100%; height: 200px; object-fit: cover; }

.about-pattern {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, var(--mint) 2px, transparent 2px);
    background-size: 14px 14px;
    opacity: 0.3;
    z-index: -1;
}

.about-content { max-width: 480px; }
.about-content > p {
    font-size: 1.02rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.value-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mint-pale);
    color: var(--mint-dark);
    border-radius: 12px;
}
.value-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--midnight);
    margin-bottom: 2px;
}
.value-item span {
    font-size: 0.88rem;
    color: var(--gray-600);
}

/* ── Gallery ── */
.gallery {
    padding: 100px 0;
    background: var(--midnight);
    position: relative;
    overflow: hidden;
}
.gallery .section-tag { background: rgba(61, 217, 184, 0.15); color: var(--mint-light); }
.gallery .section-title { color: var(--white); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-item:nth-child(1) { grid-column: 1 / 6; grid-row: 1 / 2; }
.gallery-item:nth-child(2) { grid-column: 6 / 9; grid-row: 1 / 3; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1 / 2; }
.gallery-item:nth-child(4) { grid-column: 1 / 4; grid-row: 2 / 3; }
.gallery-item:nth-child(5) { grid-column: 4 / 9; grid-row: 2 / 3; }

/* ── Visit ── */
.visit {
    padding: 100px 0;
    background: var(--off-white);
}

.visit-card {
    background: var(--midnight);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}

.visit-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.visit-circle-1 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(61, 217, 184, 0.1) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}
.visit-circle-2 {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(61, 217, 184, 0.07) 0%, transparent 70%);
    bottom: -60px;
    left: 20%;
}
.visit-stripe {
    position: absolute;
    width: 200%;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(61, 217, 184, 0.15), transparent);
    bottom: 30%;
    left: -50%;
    transform: rotate(-10deg);
}

.visit-content {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.visit-content .section-title { margin-bottom: 36px; color: var(--white); }

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

.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.visit-detail-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(61, 217, 184, 0.12);
    color: var(--mint);
    border-radius: 12px;
}
.visit-detail strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 2px;
}
.visit-detail span {
    font-size: 0.88rem;
    color: var(--gray-400);
}

.visit-map {
    position: relative;
    z-index: 1;
}
.visit-map iframe {
    width: 100%;
    height: 100%;
    min-height: 520px;
}
.visit-map .btn-light {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 0.85rem;
    padding: 10px 20px;
}

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

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

.contact-info { max-width: 440px; }
.contact-info > p {
    font-size: 1.02rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--off-white);
    border-radius: 14px;
    font-size: 0.95rem;
    color: var(--midnight);
    font-weight: 500;
    transition: all 0.2s ease;
}
.contact-method:hover {
    background: var(--mint-pale);
    transform: translateX(4px);
}
.contact-method-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--mint-dark);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    flex-shrink: 0;
}

/* Form */
.contact-form-wrap {
    background: var(--off-white);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--gray-100);
}
.contact-form-wrap h3 {
    font-size: 1.4rem;
    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: 0.85rem;
    font-weight: 600;
    color: var(--midnight);
    margin-bottom: 6px;
    font-family: var(--font-heading);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-100);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-800);
    background: var(--white);
    transition: border-color 0.2s ease;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--mint);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
    text-align: center;
    padding: 40px 20px;
}
.success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mint-pale);
    color: var(--mint-dark);
    border-radius: 50%;
}
.form-success h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}
.form-success p {
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* ── Footer ── */
.footer {
    background: var(--midnight);
    padding: 60px 0 0;
}

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

.footer-brand p {
    color: var(--gray-400);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a,
.footer-contact a {
    font-size: 0.9rem;
    color: var(--gray-400);
    transition: color 0.2s ease;
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--mint-light); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.82rem;
    color: var(--gray-600);
}

/* ── Mobile Nav ── */
@media (max-width: 900px) {
    .mobile-toggle { display: flex; }
    .nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--gray-100);
        padding: 16px 24px;
        box-shadow: 0 12px 32px rgba(0,0,0,0.1);
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.4s var(--ease-out);
        pointer-events: none;
    }
    .nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav ul {
        flex-direction: column;
        gap: 4px;
        width: 100%;
    }
    .nav a {
        display: block;
        padding: 12px 16px;
        width: 100%;
    }
    .nav .btn-sm {
        margin-top: 8px;
        text-align: center;
        justify-content: center;
    }
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .hero-layout { grid-template-columns: 1fr; gap: 48px; }
    .hero-content { max-width: 100%; }
    .hero-visual { align-items: stretch; }
    .hero-img-card-primary { width: 100%; height: 300px; }
    .hero-img-card-secondary { display: none; }
    .hero-accent-badge { margin-right: 0; }

    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-layout { grid-template-columns: 1fr; gap: 48px; }
    .about-img-main img { height: 360px; }
    .about-img-accent { right: -10px; bottom: -20px; }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .gallery-item:nth-child(1) { grid-column: 1 / 2; grid-row: auto; }
    .gallery-item:nth-child(2) { grid-column: 2 / 3; grid-row: auto; }
    .gallery-item:nth-child(3) { grid-column: 1 / 2; grid-row: auto; }
    .gallery-item:nth-child(4) { grid-column: 2 / 3; grid-row: auto; }
    .gallery-item:nth-child(5) { grid-column: 1 / 3; grid-row: auto; }
    .gallery-item:nth-child(2) img { height: 280px; }
    .gallery-item img { height: 200px; }

    .visit-card { grid-template-columns: 1fr; }
    .visit-content { padding: 40px 30px; }
    .visit-map iframe { min-height: 300px; height: 300px; }
    .visit-map .btn-light { position: relative; bottom: auto; left: auto; margin-top: 12px; display: inline-flex; }

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

@media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { width: 100%; justify-content: center; }
    .hero-stats { flex-direction: column; gap: 16px; align-items: flex-start; }
    .stat-divider { width: 40px; height: 1px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px 20px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item:nth-child(5) { grid-column: auto; }
}

/* ── Scroll Reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }
