/* ============================================
   BEAT BY TWIGGY - Professional MUA
   Design: Dark luxury, mauve #9B6B8C + gold #C9A66B
   Template: A (Gallery Focus) based on Girly Henna
   Location: New Jersey, USA
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    /* Primary - Mauve/Dusty Rose */
    --color-primary: #9B6B8C;
    --color-primary-light: #B5859A;
    --color-primary-dark: #7A5470;

    /* Secondary - Gold */
    --color-secondary: #C9A66B;
    --color-secondary-light: #D4B77D;
    --color-secondary-dark: #A8854A;

    /* Accent - Soft Pink */
    --color-accent: #D4A5B8;
    --color-accent-light: #E8C4D0;
    --color-accent-dark: #C08898;

    /* Backgrounds - Dark Warm */
    --color-bg: #0F0D0E;
    --color-bg-elevated: #161413;
    --color-bg-hover: #1E1B1C;
    --color-surface: #131112;

    /* Text - Warm White */
    --color-text: #FAF8F5;
    --color-text-secondary: #E8E5E0;
    --color-text-dim: #A09A90;
    --color-text-muted: #6B665C;

    /* Borders */
    --border-subtle: rgba(155, 107, 140, 0.08);
    --border-default: rgba(155, 107, 140, 0.12);
    --border-accent: rgba(155, 107, 140, 0.25);
    --border-gold: rgba(201, 166, 107, 0.4);

    /* Glows */
    --glow-primary: rgba(155, 107, 140, 0.2);
    --glow-gold: rgba(201, 166, 107, 0.3);

    /* Typography */
    --font-display: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Cormorant Garamond', 'Georgia', serif;

    /* Radius */
    --radius: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    /* Transitions */
    --ease-elegant: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-dramatic: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-base: 0.4s var(--ease-elegant);
    --transition-slow: 0.6s var(--ease-dramatic);
}

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

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

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary-dark), var(--color-primary), var(--color-accent), var(--color-primary), var(--color-primary-dark));
    z-index: 10000;
}

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

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

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

/* ---------- Page Loader ---------- */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s var(--ease-elegant), visibility 0.6s;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.05em;
    color: var(--color-text);
    margin-bottom: 24px;
}

.loader-logo span {
    display: block;
    font-size: 0.9rem;
    font-style: normal;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-top: 8px;
}

.loader-bar {
    width: 120px;
    height: 2px;
    background: var(--border-subtle);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-bar::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
    animation: loaderSlide 1.2s ease-in-out infinite;
}

@keyframes loaderSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-base);
}

.nav.scrolled {
    background: rgba(15, 13, 14, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    padding: 16px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-logo-main {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.05em;
    color: var(--color-text);
}

.nav-logo-sub {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: var(--transition-base);
    position: relative;
    letter-spacing: 0.01em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-primary);
    transition: var(--transition-base);
}

@media (hover: hover) {
    .nav-link:hover {
        color: var(--color-text);
    }

    .nav-link:hover::after {
        width: 100%;
    }
}

.nav-cta {
    padding: 11px 26px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-bg);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition-base);
    letter-spacing: 0.01em;
}

@media (hover: hover) {
    .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px var(--glow-gold);
    }
}

/* Mobile Nav */
.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition-base);
}

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

    .nav-mobile-toggle {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 13, 14, 0.98);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--border-subtle);
    }
}

/* ---------- Hero Section ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?w=1920&q=80') center/cover;
    filter: grayscale(100%) brightness(0.3);
    opacity: 0.7;
    animation: slowZoom 30s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(155, 107, 140, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 60%, rgba(212, 165, 184, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 40%, rgba(155, 107, 140, 0.12) 0%, transparent 35%),
        radial-gradient(ellipse at 50% 100%, rgba(15, 13, 14, 1) 0%, transparent 50%),
        linear-gradient(180deg, transparent 0%, var(--color-bg) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
}

/* Hero Badges */
.hero-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
    animation: fadeInUp 1.2s var(--ease-dramatic) 0.2s both;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(155, 107, 140, 0.1);
    border: 1px solid var(--border-accent);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.hero-badge svg {
    width: 14px;
    height: 14px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 1.2s var(--ease-dramatic) 0.4s both;
}

.hero-title span {
    display: block;
}

.hero-title .accent {
    font-style: italic;
    color: var(--color-primary);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.75;
    animation: fadeInUp 1.2s var(--ease-dramatic) 0.6s both;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s var(--ease-dramatic) 0.8s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: var(--radius);
    transition: var(--transition-base);
}

@media (hover: hover) {
    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 32px var(--glow-primary);
    }
}

.btn-secondary {
    padding: 15px 32px;
    background: transparent;
    border: 1px solid var(--border-accent);
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    border-radius: var(--radius);
    transition: var(--transition-base);
}

@media (hover: hover) {
    .btn-secondary:hover {
        background: rgba(155, 107, 140, 0.1);
        border-color: var(--color-primary);
        color: var(--color-text);
    }
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: fadeInUp 1.2s var(--ease-dramatic) 1s both;
}

.hero-scroll span {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-dim);
}

.hero-scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, var(--color-primary), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ---------- Sections Base ---------- */
.section {
    padding: 120px 0;
    position: relative;
}

.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 24px;
}

.section-title em {
    font-style: italic;
    color: var(--color-primary);
}

/* ---------- About Section ---------- */
.about {
    background: var(--color-bg-elevated);
    position: relative;
    overflow: hidden;
}

/* Layer 1: Grayscale background image */
.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?w=1920&q=80') center/cover no-repeat;
    filter: grayscale(100%);
    opacity: 0.05;
    z-index: 0;
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

/* Layer 2: Radial gradients */
.about::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(155, 107, 140, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(212, 165, 184, 0.06) 0%, transparent 40%);
    z-index: 1;
    pointer-events: none;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: grayscale(30%);
    transition: var(--transition-slow);
}

@media (hover: hover) {
    .about-image-wrapper:hover .about-image img {
        filter: grayscale(0%);
        transform: scale(1.02);
    }
}

.about-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 180px;
    height: 180px;
    border: 1px solid var(--color-primary);
    border-radius: var(--radius-md);
    opacity: 0.3;
    z-index: -1;
}

.about-content {
    padding: 20px 0;
}

.about-text {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 48px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border-subtle);
}

.about-stat {
    display: flex;
    flex-direction: column;
}

.about-stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--color-primary);
    line-height: 1;
}

.about-stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-dim);
    margin-top: 8px;
}

/* ---------- Services Section ---------- */
.services {
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

/* Layer 1: Grayscale background image */
.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1487412720507-e7ab37603c6f?w=1920&q=80') center/cover no-repeat;
    filter: grayscale(100%);
    opacity: 0.05;
    z-index: 0;
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

/* Layer 2: Radial gradients */
.services::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 20%, rgba(155, 107, 140, 0.1) 0%, transparent 45%),
        radial-gradient(ellipse at 30% 80%, rgba(201, 166, 107, 0.06) 0%, transparent 40%);
    z-index: 1;
    pointer-events: none;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-intro {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    padding: 40px;
    background: var(--color-bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

@media (hover: hover) {
    .service-card:hover {
        background: var(--color-bg-hover);
        border-color: var(--color-primary);
        transform: translateY(-4px);
    }
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(155, 107, 140, 0.1);
    border: 1px solid var(--border-accent);
    border-radius: 50%;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-primary);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--color-text-dim);
    line-height: 1.7;
}

/* ---------- Gallery Section ---------- */
.gallery {
    background: var(--color-bg-elevated);
    position: relative;
    overflow: hidden;
}

/* Layer 1: Grayscale background image */
.gallery::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1516914943479-89db7d9ae7f2?w=1920&q=80') center/cover no-repeat;
    filter: grayscale(100%);
    opacity: 0.05;
    z-index: 0;
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

/* Layer 2: Radial gradients */
.gallery::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(155, 107, 140, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 70%, rgba(212, 165, 184, 0.05) 0%, transparent 35%),
        radial-gradient(ellipse at 80% 60%, rgba(201, 166, 107, 0.04) 0%, transparent 30%);
    z-index: 1;
    pointer-events: none;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.gallery-header {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
}

.gallery-tab {
    padding: 10px 24px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-dim);
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    transition: var(--transition-base);
}

.gallery-tab.active,
.gallery-tab:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-bg);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    aspect-ratio: 1;
    transition: var(--transition-base);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(155, 107, 140, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: var(--transition-base);
}

.gallery-category {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text);
}

@media (hover: hover) {
    .gallery-item:hover img {
        filter: grayscale(0%);
        transform: scale(1.05);
    }
    .gallery-item:hover .gallery-overlay {
        opacity: 1;
    }
}

/* Mobile active state */
.gallery-item.mobile-active img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.gallery-item.mobile-active .gallery-overlay {
    opacity: 1;
}

/* ---------- Testimonials Section ---------- */
.testimonials {
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

/* Layer 1: Grayscale background image */
.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1487412720507-e7ab37603c6f?w=1920&q=80') center/cover no-repeat;
    filter: grayscale(100%);
    opacity: 0.04;
    z-index: 0;
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

/* Layer 2: Radial gradients */
.testimonials::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 60% 40%, rgba(201, 166, 107, 0.06) 0%, transparent 45%),
        radial-gradient(ellipse at 25% 70%, rgba(155, 107, 140, 0.05) 0%, transparent 35%);
    z-index: 1;
    pointer-events: none;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.testimonial-card {
    padding: 40px;
    background: var(--color-bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: var(--color-secondary);
}

.testimonial-text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: 600;
    color: var(--color-text);
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--color-text-dim);
}

/* ---------- Contact Section ---------- */
.contact {
    background: var(--color-bg-elevated);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Layer 1: Grayscale background image */
.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1519699047748-de8e457a634e?w=1920&q=80') center/cover no-repeat;
    filter: grayscale(100%);
    opacity: 0.05;
    z-index: 0;
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

/* Layer 2: Radial gradients */
.contact::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(155, 107, 140, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 30%, rgba(212, 165, 184, 0.06) 0%, transparent 40%);
    z-index: 1;
    pointer-events: none;
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}

.contact-title em {
    font-style: italic;
    color: var(--color-primary);
}

.contact-text {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-actions {
    margin-bottom: 48px;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-detail-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-dim);
}

.contact-detail-value {
    font-size: 1rem;
    color: var(--color-text);
}

.contact-detail-value a {
    color: var(--color-primary);
    transition: var(--transition-base);
}

@media (hover: hover) {
    .contact-detail-value a:hover {
        color: var(--color-primary-light);
    }
}

/* ---------- Footer ---------- */
.footer {
    padding: 80px 0;
    background: var(--color-bg);
    text-align: center;
    border-top: 1px solid var(--border-subtle);
}

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

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--color-text-dim);
    margin-bottom: 32px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.footer-social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-accent);
    border-radius: 50%;
    color: var(--color-text-dim);
    transition: var(--transition-base);
}

@media (hover: hover) {
    .footer-social-link:hover {
        border-color: var(--color-primary);
        color: var(--color-primary);
        background: rgba(155, 107, 140, 0.1);
    }
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ---------- Reveal Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-dramatic), transform 0.8s var(--ease-dramatic);
}

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

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .section {
        padding: 100px 0;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-image img {
        height: 400px;
    }

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

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

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

@media (max-width: 600px) {
    .section {
        padding: 80px 0;
    }

    .hero-badges {
        flex-direction: column;
        gap: 12px;
    }

    .gallery-tabs {
        flex-wrap: wrap;
    }

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

    .about-stats {
        flex-direction: column;
        gap: 24px;
    }

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