/* ============================================
   UltimateGlow — Beauty & Hair Salon
   Classic & Elegant | Plum + Amber Palette
   ============================================ */

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

:root {
    /* Plum palette */
    --plum-50:  #f9f3fb;
    --plum-100: #f3e5f7;
    --plum-200: #e8c8ee;
    --plum-300: #d4a0de;
    --plum-400: #c07ecf;
    --plum-500: #a855b8;
    --plum-600: #8a3d96;
    --plum-700: #6e2f79;
    --plum-800: #4a1e52;
    --plum-900: #2d1231;
    --plum-950: #1a0a1c;

    /* Amber palette */
    --amber-50:  #fdf8ef;
    --amber-100: #fef3e0;
    --amber-200: #fce5be;
    --amber-300: #f8cc8a;
    --amber-400: #f3a84e;
    --amber-500: #e8872a;
    --amber-600: #c9783c;
    --amber-700: #a65f2b;
    --amber-800: #7a4420;
    --amber-900: #522e15;

    /* Neutrals */
    --cream:    #faf8f5;
    --warm-gray:#f5f0eb;
    --stone:    #e8e0d8;
    --mid:      #9e9490;
    --dark:     #2a2220;
    --charcoal: #1a1614;

    /* Typography */
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-pad: clamp(4rem, 10vw, 8rem);
    --container:   1200px;
}

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

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark);
    background-color: var(--cream);
    overflow-x: hidden;
}

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

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

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    border: 2px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-primary {
    background: linear-gradient(135deg, var(--plum-700), var(--plum-600));
    color: #fff;
    border-color: var(--plum-600);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--plum-800), var(--plum-700));
    border-color: var(--plum-800);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(110, 47, 121, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--plum-800);
    border-color: var(--plum-300);
}

.btn-outline:hover {
    background: var(--plum-50);
    border-color: var(--plum-600);
    transform: translateY(-2px);
}

.btn-ghost {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-color: rgba(255,255,255,0.35);
    backdrop-filter: blur(4px);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-2px);
}

.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.875rem; }
.btn-lg { padding: 0.875rem 1.75rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--stone);
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 24px rgba(42, 34, 32, 0.08);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
}

.logo-mark {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--plum-600), var(--amber-600));
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.logo-mark::after {
    content: '';
    position: absolute;
    inset: 8px;
    background: var(--cream);
    border-radius: 50%;
    opacity: 0.3;
}

.logo-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--plum-900);
    letter-spacing: 0.01em;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 0.25rem;
}

.nav a {
    display: block;
    padding: 0.5rem 0.875rem;
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--dark);
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav a:hover {
    color: var(--plum-700);
    background: var(--plum-50);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid var(--stone);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(26, 22, 20, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.mobile-nav-inner {
    background: var(--cream);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    max-width: 320px;
    width: 90%;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.mobile-nav.open .mobile-nav-inner {
    transform: translateY(0);
}

.mobile-nav-link {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    color: var(--dark);
    padding: 0.625rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    width: 100%;
    text-align: center;
}

.mobile-nav-link:hover {
    color: var(--plum-700);
    background: var(--plum-50);
}

.mobile-nav-cta {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
    justify-content: center;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(26, 18, 28, 0.95) 0%,
            rgba(45, 18, 49, 0.88) 40%,
            rgba(74, 30, 82, 0.80) 70%,
            rgba(110, 47, 121, 0.72) 100%
        ),
        url('https://images.pexels.com/photos/35844822/pexels-photo-35844822.png?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center/cover no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 60%, rgba(201, 120, 60, 0.15) 0%, transparent 60%);
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.hero-card {
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    color: var(--amber-300);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
    backdrop-filter: blur(8px);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--amber-500);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--amber-500);
    animation: pulse-dot 2s ease-in-out infinite;
}

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

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 500;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

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

.hero-sub {
    font-size: 1.125rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.72);
    margin-bottom: 2.25rem;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-actions .btn-outline {
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}

.hero-actions .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

/* Floating Stat Cards */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    animation: float-in 0.8s ease-out both;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    border-radius: 4px 0 0 4px;
}

.stat-card--1::before { background: var(--plum-400); }
.stat-card--2::before { background: var(--amber-500); }
.stat-card--3::before { background: var(--plum-300); }

.stat-card--1 { animation-delay: 0.2s; }
.stat-card--2 { animation-delay: 0.4s; }
.stat-card--3 { animation-delay: 0.6s; }

@keyframes float-in {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.stat-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.stat-card-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

.stat-card-value {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
}

.stat-card-sub {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.55);
}

/* ---------- Section Shared ---------- */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto clamp(3rem, 6vw, 4.5rem);
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--amber-700);
    margin-bottom: 0.875rem;
    position: relative;
    padding: 0 0 0.5rem;
}

.section-tag::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--plum-400), var(--amber-500));
    border-radius: 2px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.section-desc {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--mid);
}

/* ---------- Services ---------- */
.services {
    padding: var(--section-pad) 0;
    background: var(--cream);
}

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

.service-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--stone);
    transition: all 0.35s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(42, 34, 32, 0.12);
    border-color: var(--plum-200);
}

.service-card-img {
    height: 200px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
    transform: scale(1.06);
}

.service-card-content {
    padding: 1.75rem;
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--plum-50), var(--amber-50));
    border: 1px solid var(--plum-100);
    border-radius: 12px;
    margin-bottom: 1rem;
    color: var(--plum-700);
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.625rem;
}

.service-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--mid);
}

/* ---------- About ---------- */
.about {
    padding: var(--section-pad) 0;
    background: var(--warm-gray);
    overflow: hidden;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(42, 34, 32, 0.15);
}

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

.about-img-secondary {
    position: absolute;
    bottom: -2rem;
    right: -1.5rem;
    width: 55%;
    border-radius: 16px;
    overflow: hidden;
    border: 6px solid var(--warm-gray);
    box-shadow: 0 16px 32px rgba(42, 34, 32, 0.12);
}

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

.about-accent-bar {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--plum-400), var(--amber-500));
    border-radius: 20px;
    opacity: 0.2;
    z-index: -1;
}

.about-content {
    padding: 1rem 0;
}

.about-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #5a4a46;
    margin-bottom: 1.25rem;
}

.about-signature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--stone);
}

.about-signature-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--plum-500), var(--amber-500));
    border-radius: 2px;
}

.about-signature-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--plum-700);
}

/* ---------- Gallery ---------- */
.gallery {
    padding: var(--section-pad) 0;
    background: var(--cream);
}

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

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 18, 28, 0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-item-overlay span {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: #fff;
    font-style: italic;
}

.gallery-item--large {
    grid-column: 1 / 7;
    grid-row: 1 / 2;
    min-height: 400px;
}

.gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
    grid-column: span 3;
    min-height: 250px;
}

.gallery-item--wide {
    grid-column: 7 / 13;
    min-height: 250px;
}

/* ---------- Testimonials ---------- */
.testimonials {
    padding: var(--section-pad) 0;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 184, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials .section-tag {
    color: var(--amber-400);
}

.testimonials .section-tag::after {
    background: linear-gradient(90deg, var(--amber-500), var(--plum-400));
}

.testimonials .section-title {
    color: #fff;
}

.testimonials .section-desc {
    color: rgba(255,255,255,0.55);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
}

.testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.18);
    transform: translateY(-4px);
}

.testimonial-quote-mark {
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1;
    color: var(--plum-500);
    opacity: 0.5;
    margin-bottom: -0.5rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.75rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.testimonial-author-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--plum-600), var(--amber-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    flex-shrink: 0;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.testimonial-author-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: #fff;
}

.testimonial-author-location {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.45);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
    position: relative;
    padding: clamp(4rem, 10vw, 7rem) 0;
    background: var(--plum-900);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(45, 18, 49, 0.95) 0%,
            rgba(74, 30, 82, 0.88) 50%,
            rgba(110, 47, 121, 0.82) 100%
        ),
        url('https://images.pexels.com/photos/12115016/pexels-photo-12115016.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=600') center/cover no-repeat;
}

.cta-container {
    position: relative;
    text-align: center;
    max-width: 700px;
}

.cta-tag {
    color: var(--amber-400);
}

.cta-tag::after {
    background: linear-gradient(90deg, var(--amber-500), var(--plum-400));
}

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-desc {
    font-size: 1.125rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2.25rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ---------- Contact ---------- */
.contact {
    padding: var(--section-pad) 0;
    background: var(--cream);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: start;
}

.contact-info {
    padding-top: 0.5rem;
}

.contact-desc {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--mid);
    margin-bottom: 2.25rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.25rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--plum-50);
    border: 1px solid var(--plum-100);
    border-radius: 12px;
    color: var(--plum-700);
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 22px;
    height: 22px;
}

.contact-detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 0.25rem;
}

.contact-detail-value {
    font-size: 1rem;
    color: var(--dark);
    line-height: 1.6;
}

.contact-detail a.contact-detail-value {
    color: var(--plum-700);
    transition: color 0.2s ease;
}

.contact-detail a.contact-detail-value:hover {
    color: var(--plum-500);
    text-decoration: underline;
}

.contact-map {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--stone);
    box-shadow: 0 8px 24px rgba(42, 34, 32, 0.08);
}

/* Contact Form */
.contact-form-wrap {
    background: #fff;
    border: 1px solid var(--stone);
    border-radius: 20px;
    padding: clamp(2rem, 4vw, 2.75rem);
    box-shadow: 0 12px 32px rgba(42, 34, 32, 0.07);
}

.contact-form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 1.75rem;
}

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

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--dark);
    background: var(--cream);
    border: 1.5px solid var(--stone);
    border-radius: 10px;
    outline: none;
    transition: all 0.2s ease;
    appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--mid);
    opacity: 0.7;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--plum-400);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(168, 85, 184, 0.1);
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239e9490' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

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

/* Form Success */
.form-success {
    text-align: center;
    padding: 2rem 1rem;
}

.form-success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--plum-100), var(--amber-100));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-700);
}

.form-success-icon svg {
    width: 32px;
    height: 32px;
}

.form-success-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.form-success-text {
    font-size: 1rem;
    color: var(--mid);
    line-height: 1.7;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--charcoal);
    padding: clamp(3rem, 6vw, 5rem) 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-name {
    color: #fff;
}

.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.5);
    margin-top: 1rem;
    max-width: 280px;
}

.footer-nav-label,
.footer-contact .footer-nav-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 1rem;
}

.footer-nav ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-nav a,
.footer-contact a {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.65);
    transition: color 0.2s ease;
}

.footer-nav a:hover,
.footer-contact a:hover {
    color: var(--amber-400);
}

.footer-contact span {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.35);
}

.footer-location {
    color: rgba(255,255,255,0.25) !important;
}

/* ---------- Scroll Reveal (progressive enhancement) ---------- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.revealed {
        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; }
}

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

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 2rem;
    }

    .stat-card {
        flex: 1;
        min-width: 200px;
    }

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

    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-images {
        max-width: 500px;
    }

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .nav, .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 3rem;
    }

    .hero-headline {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
    }

    .stat-card {
        min-width: auto;
    }

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

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

    .gallery-item--large {
        grid-column: 1 / -1;
        min-height: 280px;
    }

    .gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
        grid-column: span 1;
        min-height: 200px;
    }

    .gallery-item--wide {
        grid-column: 1 / -1;
        min-height: 200px;
    }

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-img-secondary {
        right: -0.5rem;
        bottom: -1rem;
        width: 60%;
    }

    .about-accent-bar {
        display: none;
    }
}
