/* ============================================
   BLUSH NAIL AND SALON STUDIOS
   Vibrant Modern — Emerald & Cream
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --emerald-900: #064e3b;
    --emerald-800: #065f46;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --emerald-500: #10b981;
    --emerald-400: #34d399;
    --emerald-300: #6ee7b7;
    --emerald-200: #a7f3d0;
    --emerald-100: #d1fae5;
    --emerald-50:  #ecfdf5;

    --cream-50:  #fefdf8;
    --cream-100: #fefce8;
    --cream-200: #fef9c3;
    --cream-300: #fde68a;
    --cream-400: #fcd34d;

    --blush-300: #fda4af;
    --blush-400: #fb7185;
    --blush-500: #f43f5e;

    --surface: #fafaf5;
    --surface-alt: #f5f5f0;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #717171;
    --white: #ffffff;
    --black: #0a0a0a;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.08);
    --shadow-xl: 0 24px 60px rgba(0,0,0,0.15), 0 8px 20px rgba(0,0,0,0.1);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

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

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

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

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

ul { list-style: none; }

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

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

/* --- Background Shapes --- */
.bg-shape {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}
.bg-shape.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--emerald-400);
    top: -200px;
    right: -200px;
}
.bg-shape.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--blush-400);
    bottom: 20%;
    left: -100px;
}
.bg-shape.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--emerald-300);
    bottom: -100px;
    right: 10%;
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 245, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(16, 185, 129, 0.08);
    transition: var(--transition);
}
.header.scrolled {
    background: rgba(250, 250, 245, 0.95);
    box-shadow: var(--shadow-sm);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--emerald-800);
}
.logo-light { color: var(--cream-100); }
.logo-icon {
    width: 36px;
    height: 36px;
    color: var(--emerald-600);
}
.logo-light .logo-icon { color: var(--emerald-300); }
.logo-text { letter-spacing: -0.02em; }

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-link {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.938rem;
    color: var(--text-secondary);
    transition: var(--transition);
}
.nav-link:hover {
    color: var(--emerald-700);
    background: var(--emerald-50);
}
.nav-cta {
    padding: 10px 22px;
    background: var(--emerald-700);
    color: var(--white) !important;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.938rem;
    transition: var(--transition);
    margin-left: 8px;
}
.nav-cta:hover {
    background: var(--emerald-800);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.nav-toggle:hover { background: var(--emerald-50); }
.hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    position: relative;
    transition: var(--transition);
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}
.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;
    justify-content: center;
    overflow: hidden;
    padding: 120px 24px 80px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--emerald-900) 0%, var(--emerald-700) 30%, var(--emerald-600) 60%, #0d9488 100%);
}
.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 24px 24px;
}
.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.geo-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.1);
}
.geo-circle--1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -100px;
    background: rgba(255,255,255,0.03);
    animation: float 8s ease-in-out infinite;
}
.geo-circle--2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -60px;
    background: rgba(255,255,255,0.04);
    animation: float 10s ease-in-out infinite reverse;
}
.geo-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 104px solid rgba(253, 164, 175, 0.15);
    top: 20%;
    right: 10%;
    animation: spin 20s linear infinite;
}
.geo-square {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    bottom: 25%;
    right: 15%;
    transform: rotate(45deg);
    animation: float 6s ease-in-out infinite;
}
.geo-dots {
    position: absolute;
    width: 120px;
    height: 120px;
    bottom: 30%;
    left: 8%;
    background-image: radial-gradient(rgba(255,255,255,0.2) 2px, transparent 2px);
    background-size: 16px 16px;
    animation: float 7s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-xl);
    color: var(--cream-200);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}
.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--emerald-400);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.title-accent {
    color: var(--blush-300);
    font-style: italic;
}
.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.8);
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
}
.stat {
    text-align: center;
}
.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--white);
}
.stat-label {
    font-size: 0.813rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    z-index: 1;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.938rem;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--emerald-600);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.3);
}
.btn-primary:hover {
    background: var(--emerald-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.4);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}
.btn-white {
    background: var(--white);
    color: var(--emerald-800);
    box-shadow: var(--shadow-md);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}
.btn-full {
    width: 100%;
    justify-content: center;
}

/* --- Section Shared --- */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--emerald-100);
    color: var(--emerald-700);
    border-radius: var(--radius-xl);
    font-size: 0.813rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}
.section-tag.light {
    background: rgba(255,255,255,0.15);
    color: var(--cream-200);
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
}

/* --- Services --- */
.services {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid rgba(0,0,0,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(--emerald-500), var(--emerald-300));
    opacity: 0;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card:hover::before { opacity: 1; }
.service-card-accent {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: var(--emerald-50);
    border-radius: 50%;
    transition: var(--transition);
    opacity: 0;
}
.service-card:hover .service-card-accent {
    opacity: 1;
    transform: scale(1.5);
}
.service-icon {
    width: 56px;
    height: 56px;
    background: var(--emerald-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-700);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--emerald-700);
    color: var(--white);
}
.service-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}
.service-desc {
    font-size: 0.938rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}
.service-list {
    position: relative;
    z-index: 1;
}
.service-list li {
    padding: 6px 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}
.service-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--emerald-400);
    border-radius: 50%;
    flex-shrink: 0;
}

/* --- About --- */
.about {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    background: var(--surface-alt);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-visual {
    position: relative;
}
.about-img-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
}
.about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-floating-card {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 16px;
}
.floating-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--emerald-600);
    line-height: 1;
}
.floating-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.4;
}
.about-shape {
    position: absolute;
    top: -32px;
    left: -32px;
    width: 120px;
    height: 120px;
    background: var(--emerald-200);
    border-radius: var(--radius-lg);
    transform: rotate(15deg);
    z-index: 0;
}
.about-content { position: relative; z-index: 1; }
.about-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}
.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}
.value-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.value-icon {
    width: 48px;
    height: 48px;
    background: var(--emerald-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-700);
    flex-shrink: 0;
}
.value-item strong {
    display: block;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}
.value-item span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* --- Gallery --- */
.gallery {
    padding: 100px 0 80px;
    position: relative;
    z-index: 1;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 260px);
    gap: 16px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 78, 59, 0.8), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}
.gallery-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}
.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--wide { grid-column: span 5; }

/* --- Testimonials --- */
.testimonials {
    padding: 100px 0;
    background: var(--emerald-900);
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.testimonials .section-tag {
    background: rgba(255,255,255,0.1);
    color: var(--emerald-300);
}
.testimonials .section-title { color: var(--white); }
.testimonials .section-title .title-accent { color: var(--blush-300); }

.testimonials-track {
    overflow: hidden;
    margin-bottom: 32px;
}
.testimonials-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial {
    min-width: 100%;
    text-align: center;
    padding: 0 40px;
}
.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1;
    color: var(--emerald-600);
    margin-bottom: -20px;
}
.testimonial p {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    max-width: 680px;
    margin: 0 auto 24px;
    font-weight: 300;
}
.testimonial-author {
    font-style: normal;
    color: var(--emerald-400);
    font-weight: 500;
    font-size: 0.938rem;
}
.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2) !important;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.slider-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.4) !important;
}
.slider-dots {
    display: flex;
    gap: 8px;
}
.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}
.slider-dot.active {
    background: var(--emerald-400);
    transform: scale(1.2);
}

/* --- CTA --- */
.cta {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: linear-gradient(135deg, var(--emerald-800), var(--emerald-600));
}
.cta-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 20px 20px;
}
.cta-shapes { position: absolute; inset: 0; overflow: hidden; }
.cta-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.08);
}
.cta-circle--1 { width: 400px; height: 400px; top: -200px; left: -100px; }
.cta-circle--2 { width: 200px; height: 200px; bottom: -80px; right: 10%; background: rgba(253,164,175,0.1); }
.cta-square {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    top: 15%;
    right: 8%;
    transform: rotate(30deg);
}
.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
}
.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}
.cta-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    line-height: 1.7;
}
.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Contact --- */
.contact {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    background: var(--surface-alt);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}
.contact-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.7;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}
.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-icon {
    width: 52px;
    height: 52px;
    background: var(--emerald-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-700);
    flex-shrink: 0;
}
.contact-item strong {
    display: block;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.contact-item p {
    font-size: 0.938rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.contact-item a {
    color: var(--emerald-700);
    transition: var(--transition);
}
.contact-item a:hover { color: var(--emerald-500); }
.contact-hours {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    border: 1px solid rgba(0,0,0,0.06);
}
.contact-hours strong {
    display: block;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.contact-hours p {
    font-size: 0.938rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

/* --- Contact Form --- */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.06);
}
.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    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.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.938rem;
    color: var(--text-primary);
    background: var(--cream-50);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--emerald-500);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    background: var(--white);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px;
    text-align: center;
    background: var(--emerald-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--emerald-200);
    margin-top: 20px;
}
.form-success svg {
    color: var(--emerald-600);
}
.form-success p {
    color: var(--emerald-800);
    font-weight: 500;
}

/* --- Footer --- */
.footer {
    background: var(--emerald-900);
    color: var(--cream-100);
    padding: 64px 0 0;
    position: relative;
    z-index: 1;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}
.footer-brand p {
    margin-top: 16px;
    font-size: 0.938rem;
    color: rgba(254, 253, 248, 0.6);
    line-height: 1.7;
    max-width: 280px;
}
.footer-links strong,
.footer-contact strong {
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--emerald-300);
    margin-bottom: 20px;
}
.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a {
    font-size: 0.938rem;
    color: rgba(254, 253, 248, 0.6);
    transition: var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-contact address {
    font-style: normal;
    font-size: 0.938rem;
    color: rgba(254, 253, 248, 0.6);
    line-height: 1.7;
    margin-bottom: 12px;
}
.footer-contact a {
    color: var(--emerald-400);
    transition: var(--transition);
}
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.813rem;
    color: rgba(254, 253, 248, 0.4);
}

/* --- Animations --- */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}
@keyframes scrollLine {
    0% { opacity: 1; height: 40px; }
    50% { opacity: 0.3; height: 20px; }
    100% { opacity: 1; height: 40px; }
}

/* --- Scroll reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .gallery-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(3, 200px);
    }
    .gallery-item--large { grid-column: span 6; grid-row: span 1; }
    .gallery-item--wide { grid-column: span 3; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 250, 245, 0.98);
        backdrop-filter: blur(20px);
        padding: 24px;
        border-bottom: 1px solid rgba(0,0,0,0.06);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
    }
    .nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }
    .nav-link { padding: 12px 16px; }
    .nav-cta {
        text-align: center;
        margin-left: 0;
        margin-top: 8px;
    }

    .hero { padding: 100px 20px 60px; min-height: auto; }
    .hero-stats { gap: 24px; }
    .hero-scroll { display: none; }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-floating-card {
        bottom: -16px;
        right: 16px;
    }
    .about-shape { display: none; }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .gallery-item--large { grid-column: span 2; }
    .gallery-item--wide { grid-column: span 2; }
    .gallery-item { height: 220px; }

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

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 2.2rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .stat-divider { width: 40px; height: 1px; }
    .cta-actions { flex-direction: column; }
    .cta-actions .btn { width: 100%; justify-content: center; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item--large,
    .gallery-item--wide { grid-column: span 1; }
}
