/* ============================================
   BLUE MERMAID NAIL SALON — STYLESHEET
   Bold editorial · Teal + Slate grey
   ============================================ */

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

:root {
    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-200: #99f6e4;
    --teal-300: #5eead4;
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --teal-800: #115e59;
    --teal-900: #134e4a;

    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #080d18;

    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Outfit', system-ui, -apple-system, sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background-color: var(--slate-950);
    color: var(--slate-200);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

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

/* --- LOADER --- */
#page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--slate-950);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
}

#page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.loader-logo {
    color: var(--teal-400);
    animation: loaderPulse 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { opacity: 0.4; transform: scale(0.96); }
    50% { opacity: 1; transform: scale(1); }
}

.loader-text {
    font-family: var(--font-serif);
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--slate-400);
}

/* --- HEADER --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 24px;
    transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

.header.scrolled {
    background: rgba(8, 13, 24, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--slate-100);
    transition: opacity 0.3s;
}

.logo:hover { opacity: 0.8; }

.logo-icon {
    color: var(--teal-400);
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--slate-400);
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--teal-400);
    transition: width 0.3s var(--ease-out-expo);
}

.nav-link:hover { color: var(--slate-100); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
    background: var(--teal-600);
    color: var(--slate-50) !important;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 500;
    transition: background 0.3s, transform 0.3s;
}

.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--teal-500); transform: translateY(-1px); }

/* Mobile toggle */
.mobile-toggle {
    display: none;
    width: 40px;
    height: 40px;
    position: relative;
    align-items: center;
    justify-content: center;
}

.hamburger {
    position: relative;
    width: 20px;
    height: 14px;
    display: block;
}

.hamburger::before,
.hamburger::after,
.hamburger span {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--slate-200);
    transition: transform 0.3s var(--ease-out-expo), opacity 0.3s;
}

.hamburger::before { top: 0; }
.hamburger span { top: 6px; }
.hamburger::after { top: 12px; }

.mobile-toggle[aria-expanded="true"] .hamburger::before {
    transform: translateY(6px) rotate(45deg);
}
.mobile-toggle[aria-expanded="true"] .hamburger span {
    opacity: 0;
}
.mobile-toggle[aria-expanded="true"] .hamburger::after {
    transform: translateY(-6px) rotate(-45deg);
}

/* --- HERO --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 70%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(13, 148, 136, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

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

.hero-eyebrow {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal-400);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--teal-500);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 400;
    line-height: 1.08;
    color: var(--slate-50);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.hero-headline em {
    font-style: italic;
    color: var(--teal-300);
}

.hero-subhead {
    font-size: 17px;
    line-height: 1.7;
    color: var(--slate-400);
    max-width: 440px;
    margin-bottom: 40px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.3s var(--ease-out-expo);
}

.btn-primary {
    background: var(--teal-600);
    color: var(--slate-50);
}

.btn-primary:hover {
    background: var(--teal-500);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(13, 148, 136, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--slate-300);
    border: 1px solid var(--slate-700);
}

.btn-ghost:hover {
    border-color: var(--slate-500);
    color: var(--slate-100);
}

.btn-white {
    background: var(--slate-50);
    color: var(--slate-900);
}

.btn-white:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255,255,255,0.15);
}

.btn-outline-white {
    background: transparent;
    color: var(--slate-200);
    border: 1px solid var(--slate-600);
}

.btn-outline-white:hover {
    border-color: var(--slate-300);
    color: var(--slate-50);
}

.hero-trust {
    display: flex;
    gap: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--slate-500);
}

.trust-item svg {
    color: var(--teal-500);
    flex-shrink: 0;
}

/* Hero visual */
.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 600/750;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.hero-image-wrapper:hover img {
    transform: scale(1.03);
}

.hero-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--teal-700);
    border-radius: 16px;
    z-index: -1;
}

.hero-badge {
    position: absolute;
    bottom: 32px;
    left: -24px;
    background: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: 100px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.badge-label {
    color: var(--slate-500);
    font-weight: 400;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal-400);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.badge-text {
    color: var(--slate-200);
    font-weight: 500;
}

/* --- MARQUEE --- */
.marquee {
    overflow: hidden;
    padding: 20px 0;
    border-top: 1px solid var(--slate-800);
    border-bottom: 1px solid var(--slate-800);
    background: var(--slate-900);
}

.marquee-track {
    display: flex;
    gap: 32px;
    align-items: center;
    animation: marqueeScroll 25s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 400;
    color: var(--slate-500);
    white-space: nowrap;
    letter-spacing: 0.05em;
}

.marquee-dot {
    color: var(--teal-700) !important;
    font-size: 8px !important;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- SECTION COMMON --- */
.section-eyebrow {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal-400);
    margin-bottom: 16px;
}

.section-headline {
    font-family: var(--font-serif);
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--slate-50);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.text-teal { color: var(--teal-400); }

/* --- SERVICES --- */
.services {
    padding: 120px 24px;
}

.services-header {
    max-width: 600px;
    margin-bottom: 64px;
}

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

.service-card {
    background: var(--slate-900);
    border: 1px solid var(--slate-800);
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--teal-600), var(--teal-400));
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover {
    border-color: var(--slate-700);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.service-card:hover::before { opacity: 1; }

.service-number {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 400;
    color: var(--slate-800);
    line-height: 1;
    margin-bottom: 24px;
    transition: color 0.4s;
}

.service-card:hover .service-number { color: var(--slate-700); }

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(13, 148, 136, 0.1);
    border: 1px solid rgba(13, 148, 136, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-400);
    margin-bottom: 24px;
    transition: background 0.4s, border-color 0.4s;
}

.service-card:hover .service-icon {
    background: rgba(13, 148, 136, 0.15);
    border-color: rgba(13, 148, 136, 0.3);
}

.service-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--slate-100);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.service-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--slate-500);
    margin-bottom: 28px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--teal-400);
    transition: gap 0.3s var(--ease-out-expo);
}

.service-link:hover { gap: 10px; }

/* --- ABOUT --- */
.about {
    padding: 120px 24px;
    background: var(--slate-900);
}

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 520/640;
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid var(--slate-900);
    aspect-ratio: 400/300;
    width: 55%;
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    padding: 32px;
    background: var(--slate-950);
    border-radius: 16px;
    border: 1px solid var(--slate-800);
}

.stat {
    flex: 1;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 400;
    color: var(--teal-400);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: var(--slate-500);
    line-height: 1.4;
}

.stat-divider {
    width: 1px;
    background: var(--slate-800);
    align-self: stretch;
}

.about-content { position: relative; }

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

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 36px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--slate-300);
}

.about-feature svg {
    color: var(--teal-500);
    flex-shrink: 0;
}

/* --- GALLERY --- */
.gallery {
    padding: 120px 24px;
}

.gallery-header {
    max-width: 600px;
    margin-bottom: 64px;
}

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

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

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

.gallery-item:hover img { transform: scale(1.05); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,13,24,0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s;
}

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

.gallery-overlay span {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--slate-100);
}

.gallery-item--wide { grid-column: span 7; }
.gallery-item:not(.gallery-item--wide) { grid-column: span 5; }

/* --- TESTIMONIALS --- */
.testimonials {
    padding: 120px 24px;
    background: var(--slate-900);
}

.testimonials-header {
    max-width: 600px;
    margin-bottom: 64px;
}

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

.testimonial-card {
    background: var(--slate-950);
    border: 1px solid var(--slate-800);
    border-radius: 16px;
    padding: 40px 32px;
    transition: border-color 0.4s, transform 0.4s;
    position: relative;
}

.testimonial-card:hover {
    border-color: var(--slate-700);
    transform: translateY(-4px);
}

.testimonial-quote {
    color: var(--teal-600);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--slate-400);
    margin-bottom: 28px;
    font-style: italic;
}

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

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--slate-800);
    border: 1px solid var(--slate-700);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-500);
}

.author-name {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-200);
}

.author-location {
    display: block;
    font-size: 12px;
    color: var(--slate-500);
}

/* --- CTA --- */
.cta {
    padding: 120px 24px;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(13,148,136,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-eyebrow {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal-400);
    margin-bottom: 20px;
}

.cta-headline {
    font-family: var(--font-serif);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--slate-50);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--slate-400);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

/* --- VISIT --- */
.visit {
    padding: 120px 24px;
    background: var(--slate-900);
}

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

.visit-detail {
    display: flex;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px solid var(--slate-800);
}

.visit-detail:first-child { padding-top: 0; }
.visit-detail:last-child { border-bottom: none; }

.visit-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(13, 148, 136, 0.1);
    border: 1px solid rgba(13, 148, 136, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-400);
    flex-shrink: 0;
}

.visit-detail-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-500);
    margin-bottom: 6px;
}

.visit-detail-value {
    font-size: 15px;
    line-height: 1.6;
    color: var(--slate-200);
    transition: color 0.3s;
}

a.visit-detail-value:hover { color: var(--teal-400); }

.visit-map {
    margin-top: 32px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--slate-800);
}

.visit-visual {
    position: relative;
}

.visit-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.visit-floating-card {
    position: absolute;
    bottom: 32px;
    left: -24px;
    background: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.visit-floating-card svg {
    color: var(--teal-400);
    flex-shrink: 0;
}

.floating-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-100);
}

.floating-sublabel {
    display: block;
    font-size: 12px;
    color: var(--slate-500);
}

/* --- FOOTER --- */
.footer {
    padding: 80px 24px 40px;
    border-top: 1px solid var(--slate-800);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    color: var(--slate-500);
    margin-top: 16px;
    max-width: 280px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--slate-500);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--slate-400);
    padding: 6px 0;
    transition: color 0.3s, padding-left 0.3s;
}

.footer-col a:hover {
    color: var(--teal-400);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--slate-800);
    font-size: 13px;
    color: var(--slate-600);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom a {
    color: var(--slate-500);
    transition: color 0.3s;
}

.footer-bottom a:hover { color: var(--teal-400); }

/* --- SCROLL ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* --- MOBILE NAV --- */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(8, 13, 24, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}

.mobile-nav.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav .nav-list {
    flex-direction: column;
    gap: 0;
}

.mobile-nav .nav-link {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 400;
    color: var(--slate-300);
    padding: 16px 0;
    transition: color 0.3s;
}

.mobile-nav .nav-link:hover { color: var(--teal-400); }
.mobile-nav .nav-link::after { display: none; }

.mobile-nav .nav-cta {
    margin-top: 24px;
    font-size: 16px;
    padding: 14px 32px;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual { order: -1; max-width: 480px; }
    .hero-badge { left: 16px; }

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

    .about-grid { gap: 60px; }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 220px);
    }

    .gallery-item--wide { grid-column: span 2; }
    .gallery-item:not(.gallery-item--wide) { grid-column: span 1; }

    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid .testimonial-card:last-child { grid-column: span 2; max-width: 50%; margin: 0 auto; }

    .visit-grid { gap: 60px; }
}

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

    .hero {
        padding: 100px 24px 60px;
        min-height: auto;
    }

    .hero-image-wrapper { aspect-ratio: 4/5; }
    .hero-accent { display: none; }
    .hero-badge { left: 16px; bottom: 16px; }

    .hero-trust { gap: 20px; flex-wrap: wrap; }

    .services { padding: 80px 24px; }
    .services-grid { grid-template-columns: 1fr; }

    .about { padding: 80px 24px; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-img-secondary { right: -16px; bottom: -24px; }
    .about-features { grid-template-columns: 1fr; }

    .gallery { padding: 80px 24px; }
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .gallery-item--wide { grid-column: span 1; }
    .gallery-item:not(.gallery-item--wide) { grid-column: span 1; }
    .gallery-item { aspect-ratio: 4/3; }

    .testimonials { padding: 80px 24px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonials-grid .testimonial-card:last-child { grid-column: span 1; max-width: 100%; }

    .cta { padding: 80px 24px; }
    .cta-actions { flex-direction: column; align-items: center; }

    .visit { padding: 80px 24px; }
    .visit-grid { grid-template-columns: 1fr; gap: 48px; }
    .visit-floating-card { left: 16px; bottom: 16px; }

    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .footer-links { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .header-inner { height: 64px; }
    .logo-text { font-size: 16px; }

    .hero { padding: 88px 20px 48px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }

    .services-grid { gap: 16px; }
    .service-card { padding: 28px 24px; }
    .service-number { font-size: 36px; }

    .about-stats { flex-direction: column; gap: 24px; }
    .stat-divider { width: 100%; height: 1px; }

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