/* ============================================
   FIZAMEHNDI - Birmingham Henna Artist
   Design: Dark elegant, warm henna browns
   24 Years Experience - World's Fastest Henna Artist 2005
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    /* Primary - Henna Brown */
    --color-primary: #C47D4E;
    --color-primary-light: #D4956A;
    --color-primary-dark: #A86A3D;

    /* Secondary - Warm Gold */
    --color-secondary: #D4A574;
    --color-secondary-light: #E4B584;
    --color-secondary-dark: #B8896A;

    /* Accent - Deep Bronze */
    --color-accent: #8B5E3C;
    --color-accent-light: #A67B52;
    --color-accent-dark: #6E4A2F;

    /* Background - Dark */
    --color-bg: #0A0A0C;
    --color-bg-elevated: #121214;
    --color-bg-card: #18181B;
    --color-surface: #1E1E22;

    /* Text */
    --color-text: #FAFAFA;
    --color-text-secondary: #E4E4E7;
    --color-text-dim: #A1A1AA;
    --color-text-muted: #71717A;

    /* Borders */
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-default: rgba(255, 255, 255, 0.1);
    --border-accent: rgba(196, 125, 78, 0.3);

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

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1200px;

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

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

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

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

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.8s var(--ease-elegant), visibility 0.8s;
}

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

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

.loader-logo {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--color-text);
}

.loader-logo span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-top: 12px;
}

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

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

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

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

.nav.scrolled {
    background: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 48px;
    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.4rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--color-text);
}

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

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

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-dim);
    position: relative;
    transition: var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    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: 12px 24px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-bg);
    border-radius: 4px;
    transition: var(--transition-base);
}

@media (hover: hover) {
    .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(196, 125, 78, 0.3);
    }
}

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

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

@media (max-width: 768px) {
    .nav-container {
        padding: 0 24px;
    }
    .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: var(--color-bg-elevated);
        padding: 32px 24px;
        gap: 24px;
        border-bottom: 1px solid var(--border-subtle);
    }
    .nav-links.active .nav-link {
        color: var(--color-text);
    }
    .nav-links.active .nav-cta {
        text-align: center;
    }
}

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

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

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1596704017254-9b121068fb31?w=1600&q=80') center/cover no-repeat;
    filter: grayscale(100%) brightness(0.35);
    opacity: 0.6;
    animation: slowZoom 30s ease-in-out infinite alternate;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(196, 125, 78, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 70% 50% at 20% 80%, rgba(212, 165, 116, 0.15) 0%, transparent 55%),
        radial-gradient(ellipse 60% 40% at 80% 70%, rgba(139, 94, 60, 0.12) 0%, transparent 50%),
        linear-gradient(180deg, var(--color-bg) 0%, transparent 20%, transparent 80%, var(--color-bg) 100%);
    animation: pulseGlow 8s ease-in-out infinite alternate;
}

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

@keyframes pulseGlow {
    0% { opacity: 0.85; }
    100% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(196, 125, 78, 0.15);
    border: 1px solid var(--border-accent);
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary-light);
    margin-bottom: 32px;
    animation: fadeIn 1s var(--ease-out) 0.2s both;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: 0.02em;
    color: var(--color-text);
    margin-bottom: 12px;
    animation: fadeIn 1s var(--ease-out) 0.3s both;
}

.hero-tagline {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 24px;
    animation: fadeIn 1s var(--ease-out) 0.4s both;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--color-text-dim);
    line-height: 1.8;
    max-width: 550px;
    margin: 0 auto 32px;
    animation: fadeIn 1s var(--ease-out) 0.5s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 32px;
    animation: fadeIn 1s var(--ease-out) 0.55s both;
}

.hero-stat {
    text-align: center;
}

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

.hero-stat-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-top: 8px;
}

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--color-text-dim);
    margin-bottom: 40px;
    animation: fadeIn 1s var(--ease-out) 0.6s both;
}

.hero-location svg {
    color: var(--color-primary);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeIn 1s var(--ease-out) 0.7s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition-base);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-bg);
    box-shadow: 0 4px 20px rgba(196, 125, 78, 0.3);
}

@media (hover: hover) {
    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 32px rgba(196, 125, 78, 0.4);
    }
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--border-default);
}

@media (hover: hover) {
    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: var(--color-primary);
    }
}

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

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

.hero-scroll-line {
    width: 1px;
    height: 60px;
    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.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

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

@media (max-width: 768px) {
    .hero {
        padding: 100px 24px 60px;
    }
    .hero-stats {
        gap: 32px;
    }
    .hero-stat-value {
        font-size: 2rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* ---------- Section Base ---------- */
.section {
    padding: var(--section-padding) 48px;
    position: relative;
}

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

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--color-primary);
}

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

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

.section-header {
    max-width: var(--container-max);
    margin: 0 auto 60px;
    text-align: center;
}

.section-desc {
    font-size: 1rem;
    color: var(--color-text-dim);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1604654894610-df63bc536371?w=1200&q=80') center/cover no-repeat;
    filter: grayscale(100%);
    opacity: 0.04;
    z-index: 0;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 15%, rgba(0,0,0,0.5) 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 15%, rgba(0,0,0,0.5) 85%, transparent 100%);
}

.about::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 30%, rgba(196, 125, 78, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 80% 70%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 40% 35% at 50% 50%, rgba(139, 94, 60, 0.08) 0%, transparent 45%);
    z-index: 1;
    pointer-events: none;
}

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

.about-image {
    position: relative;
}

.about-image-main {
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 4px;
}

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

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

.about-image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 200px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    z-index: -1;
    border-radius: 4px;
}

.about-content {
    max-width: 520px;
}

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

.about-highlight {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--color-bg-card);
    border-left: 3px solid var(--color-primary);
    margin-top: 32px;
    border-radius: 0 4px 4px 0;
}

.about-highlight-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 125, 78, 0.15);
    border-radius: 50%;
    color: var(--color-primary);
}

.about-highlight-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--color-text);
    margin-bottom: 2px;
}

.about-highlight-text span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-image-accent {
        display: none;
    }
    .about-content {
        max-width: 100%;
    }
}

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

.accolade::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1583939003579-730e3918a45a?w=1200&q=80') center/cover no-repeat;
    filter: grayscale(100%);
    opacity: 0.05;
    z-index: 0;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 15%, rgba(0,0,0,0.5) 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 15%, rgba(0,0,0,0.5) 85%, transparent 100%);
}

.accolade::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% 30%, rgba(196, 125, 78, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 55% 45% at 30% 70%, rgba(212, 165, 116, 0.14) 0%, transparent 45%),
        radial-gradient(ellipse 45% 40% at 70% 80%, rgba(139, 94, 60, 0.1) 0%, transparent 40%);
    z-index: 1;
    pointer-events: none;
}

.accolade-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.accolade-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    margin-bottom: 24px;
}

.accolade-badge svg {
    width: 36px;
    height: 36px;
    color: var(--color-bg);
}

.accolade-year {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.accolade-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--color-text);
    margin-bottom: 24px;
}

.accolade-desc {
    font-size: 1.05rem;
    color: var(--color-text-dim);
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto 48px;
}

.accolade-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-subtle);
}

.accolade-stat {
    text-align: center;
}

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

.accolade-stat-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-top: 10px;
}

@media (max-width: 600px) {
    .accolade-stats {
        flex-direction: column;
        gap: 32px;
    }
}

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

.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1596704017254-9b121068fb31?w=1200&q=80') center/cover no-repeat;
    filter: grayscale(100%);
    opacity: 0.04;
    z-index: 0;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 15%, rgba(0,0,0,0.5) 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 15%, rgba(0,0,0,0.5) 85%, transparent 100%);
}

.services::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 45% at 80% 20%, rgba(196, 125, 78, 0.12) 0%, transparent 45%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(212, 165, 116, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse 40% 35% at 50% 50%, rgba(139, 94, 60, 0.06) 0%, transparent 45%);
    z-index: 1;
    pointer-events: none;
}

.services .section-header,
.services .services-grid {
    position: relative;
    z-index: 2;
}

.services-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.service-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    transition: var(--transition-slow);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(10, 10, 12, 0.95) 100%);
    z-index: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-base);
    z-index: 2;
}

@media (hover: hover) {
    .service-card:hover .service-card-bg {
        filter: grayscale(0%);
        transform: scale(1.05);
    }
    .service-card:hover::after {
        transform: scaleX(1);
    }
}

.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    z-index: 2;
}

.service-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 125, 78, 0.2);
    border: 1px solid var(--border-accent);
    border-radius: 50%;
    color: var(--color-primary);
    margin-bottom: 20px;
}

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

.service-card-desc {
    font-size: 0.9rem;
    color: var(--color-text-dim);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

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

.gallery::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1611042553484-d61f84d22784?w=1200&q=80') center/cover no-repeat;
    filter: grayscale(100%);
    opacity: 0.04;
    z-index: 0;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 15%, rgba(0,0,0,0.5) 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 15%, rgba(0,0,0,0.5) 85%, transparent 100%);
}

.gallery::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 30% 20%, rgba(196, 125, 78, 0.14) 0%, transparent 45%),
        radial-gradient(ellipse 55% 45% at 70% 80%, rgba(212, 165, 116, 0.12) 0%, transparent 45%),
        radial-gradient(ellipse 45% 35% at 50% 50%, rgba(139, 94, 60, 0.08) 0%, transparent 40%);
    z-index: 1;
    pointer-events: none;
}

.gallery .section-header,
.gallery .gallery-grid {
    position: relative;
    z-index: 2;
}

.gallery-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 12, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition-base);
}

.gallery-item-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: italic;
    color: var(--color-text);
    transform: translateY(10px);
    transition: var(--transition-base);
}

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

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

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

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1200&q=80') center/cover no-repeat;
    filter: grayscale(100%);
    opacity: 0.04;
    z-index: 0;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 15%, rgba(0,0,0,0.5) 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 15%, rgba(0,0,0,0.5) 85%, transparent 100%);
}

.contact::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 65% 55% at 50% 30%, rgba(196, 125, 78, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 20% 70%, rgba(212, 165, 116, 0.12) 0%, transparent 45%),
        radial-gradient(ellipse 45% 35% at 80% 60%, rgba(139, 94, 60, 0.08) 0%, transparent 40%);
    z-index: 1;
    pointer-events: none;
}

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

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

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

.contact-desc {
    font-size: 1.05rem;
    color: var(--color-text-dim);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 48px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-bg);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    box-shadow: 0 4px 24px rgba(196, 125, 78, 0.3);
    transition: var(--transition-base);
    margin-bottom: 48px;
}

@media (hover: hover) {
    .contact-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 32px rgba(196, 125, 78, 0.4);
    }
}

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

.contact-info-item {
    text-align: center;
}

.contact-info-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 6px;
}

.contact-info-value {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

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

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

@media (max-width: 600px) {
    .contact-info {
        flex-direction: column;
        gap: 24px;
    }
}

/* ---------- Footer ---------- */
.footer {
    background: var(--color-bg-elevated);
    padding: 60px 48px 40px;
    border-top: 1px solid var(--border-subtle);
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    text-align: center;
}

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

.footer-tagline {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.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;
    background: var(--color-bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    color: var(--color-text-dim);
    transition: var(--transition-base);
}

@media (hover: hover) {
    .footer-social-link:hover {
        background: rgba(196, 125, 78, 0.15);
        border-color: var(--color-primary);
        color: var(--color-primary);
    }
}

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

@media (max-width: 768px) {
    .footer {
        padding: 48px 24px 32px;
    }
}

/* Tablet */
@media (max-width: 900px) {
    

    

    

    

    
}

/* Mobile */
@media (max-width: 680px) {
    

    

    

    

    

    

    

    
}

/* Small Mobile */
@media (max-width: 380px) {
    

    

    
}

/* ---------- Scroll Reveal Animations ---------- */
.reveal {
    opacity: 0;
    transform: perspective(1000px) rotateX(25deg) translateY(100px) scale(0.9);
    filter: blur(12px);
    transform-origin: center bottom;
    transition:
        opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1.6s cubic-bezier(0.22, 1, 0.36, 1),
        filter 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: perspective(1000px) rotateX(0deg) translateY(0) scale(1);
    filter: blur(0);
}

/* About image - slide from left */
.about-image.reveal {
    opacity: 0;
    transform: perspective(1200px) rotateY(15deg) translateX(-120px) scale(0.85);
    filter: blur(15px);
    transform-origin: right center;
    transition:
        opacity 1.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1.8s cubic-bezier(0.22, 1, 0.36, 1),
        filter 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-image.revealed {
    opacity: 1;
    transform: perspective(1200px) rotateY(0deg) translateX(0) scale(1);
    filter: blur(0);
}

/* About content - slide from right */
.about-content.reveal {
    opacity: 0;
    transform: perspective(1200px) rotateY(-10deg) translateX(80px);
    filter: blur(10px);
    transform-origin: left center;
    transition:
        opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1) 0.2s,
        transform 1.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s,
        filter 1.3s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.about-content.revealed {
    opacity: 1;
    transform: perspective(1200px) rotateY(0deg) translateX(0);
    filter: blur(0);
}

/* Gallery items - rise up with 3D tilt */
.gallery-item.reveal {
    opacity: 0;
    transform: perspective(800px) rotateX(35deg) translateY(120px) scale(0.8);
    filter: blur(15px) brightness(0.7);
    transform-origin: center bottom;
    transition:
        opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1.6s cubic-bezier(0.22, 1, 0.36, 1),
        filter 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item.revealed {
    opacity: 1;
    transform: perspective(800px) rotateX(0deg) translateY(0) scale(1);
    filter: blur(0) brightness(1);
}

/* Service cards - slide up */
.service-card.reveal {
    opacity: 0;
    transform: translateY(80px) scale(0.92);
    filter: blur(10px);
    transition:
        opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1.4s cubic-bezier(0.22, 1, 0.36, 1),
        filter 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* Headers & containers */
.section-header.reveal,
.accolade-container.reveal,
.contact-container .reveal {
    opacity: 0;
    transform: translateY(50px);
    filter: blur(8px);
    transition:
        opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1.4s cubic-bezier(0.22, 1, 0.36, 1),
        filter 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-header.revealed,
.accolade-container.revealed,
.contact-container .revealed {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* ---------- Utilities ---------- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
