/* ============================================
   SARA AL-SHAIJII - Beauty Bahrain
   Design: Dark elegant, warm rose gold accents
   Palette: #C8A087 primary, #B8847A secondary
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    /* Primary - Warm Rose Gold */
    --color-primary: #C8A087;
    --color-primary-light: #D8B49D;
    --color-primary-dark: #A8826B;

    /* Secondary - Deep Rose */
    --color-secondary: #B8847A;
    --color-secondary-light: #C99890;
    --color-secondary-dark: #9A6A60;

    /* Accent */
    --color-accent: #E8D5C4;
    --color-accent-light: #F5EBE0;

    /* Background - Dark */
    --color-bg: #0D0D0F;
    --color-bg-elevated: #141417;
    --color-bg-secondary: #1A1A1E;
    --color-surface: #1E1E22;

    /* Text */
    --color-text: #FAFAFA;
    --color-text-secondary: #D4D4D8;
    --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-primary: rgba(200, 160, 135, 0.3);

    /* Typography */
    --font-display: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 140px;
    --container-max: 1400px;

    /* 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;
}

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: 2rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--color-text);
    text-transform: uppercase;
}

.loader-logo span {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: var(--color-primary);
    margin-top: 12px;
}

.loader-bar {
    width: 80px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 32px auto 0;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    display: block;
    width: 30%;
    height: 100%;
    background: var(--color-primary);
    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(13, 13, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 0;
    box-shadow: 0 1px 0 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.3rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text);
}

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

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

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    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 28px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--color-primary);
    color: var(--color-bg);
    transition: var(--transition-base);
}

@media (hover: hover) {
    .nav-cta:hover {
        background: var(--color-primary-light);
        transform: translateY(-2px);
    }
}

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

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

@media (max-width: 900px) {
    .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-cta {
        text-align: center;
    }
}

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

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

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

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

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 25% 15%, rgba(200, 160, 135, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 70% 50% at 75% 85%, rgba(184, 132, 122, 0.15) 0%, transparent 55%),
        radial-gradient(circle at 50% 50%, transparent 30%, rgba(0, 0, 0, 0.4) 100%),
        linear-gradient(180deg, transparent 0%, var(--color-bg) 100%);
    animation: pulseGlow 8s ease-in-out infinite alternate;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 120px 48px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    animation: fadeIn 1s var(--ease-dramatic) 0.2s both;
}

.hero-badge-line {
    width: 40px;
    height: 1px;
    background: var(--color-primary);
}

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

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

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

.hero-tagline {
    font-size: 1.1rem;
    color: var(--color-text-dim);
    max-width: 500px;
    line-height: 1.7;
    margin-bottom: 48px;
    animation: fadeIn 1s var(--ease-dramatic) 0.4s both;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border-subtle);
    animation: fadeIn 1s var(--ease-dramatic) 0.5s both;
}

.hero-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-meta-label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.hero-meta-value {
    font-size: 0.9rem;
    color: var(--color-text);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    margin-top: 48px;
    animation: fadeIn 1s var(--ease-dramatic) 0.6s both;
}

.hero-cta-btn {
    padding: 16px 36px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-bg);
    transition: var(--transition-base);
    box-shadow: 0 4px 20px rgba(200, 160, 135, 0.3);
}

@media (hover: hover) {
    .hero-cta-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(200, 160, 135, 0.4);
    }
}

.hero-cta-link {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-dim);
    position: relative;
    padding-bottom: 4px;
}

.hero-cta-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: var(--transition-base);
}

@media (hover: hover) {
    .hero-cta-link:hover {
        color: var(--color-text);
    }
    .hero-cta-link:hover::after {
        transform: scaleX(1);
        transform-origin: left;
    }
}

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

@media (max-width: 768px) {
    .hero-content {
        padding: 140px 24px 80px;
    }
    .hero-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

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

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

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

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

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

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

/* ---------- 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-1560066984-138dadb4c035?w=1200&q=80') center/cover no-repeat;
    filter: grayscale(100%);
    opacity: 0.06;
    z-index: 0;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
}

.about::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 15% 20%, rgba(200, 160, 135, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse 70% 50% at 85% 80%, rgba(184, 132, 122, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, transparent 30%, rgba(13, 13, 15, 0.3) 100%);
    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: 100px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-image {
    position: relative;
}

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

.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: -40px;
    right: -40px;
    width: 200px;
    height: 250px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    z-index: -1;
    opacity: 0.3;
}

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

.about-quote {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-style: italic;
    line-height: 1.4;
    color: var(--color-text);
    margin-bottom: 32px;
    position: relative;
    padding-left: 32px;
}

.about-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: var(--color-primary);
    line-height: 1;
}

.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-surface);
    border-left: 3px solid var(--color-primary);
    margin-top: 40px;
}

.about-highlight-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-elevated);
    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-dim);
}

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

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

.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1487412947147-5cebf100ffc2?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.6) 30%, rgba(0,0,0,0.6) 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.6) 30%, rgba(0,0,0,0.6) 70%, transparent 100%);
}

.services::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 80% 20%, rgba(200, 160, 135, 0.15) 0%, transparent 55%),
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(184, 132, 122, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, transparent 40%, rgba(20, 20, 23, 0.4) 100%);
    z-index: 1;
    pointer-events: none;
}

.services-header {
    max-width: var(--container-max);
    margin: 0 auto 80px;
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border-subtle);
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.service-item {
    padding: 48px 40px;
    border-right: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition-base);
    position: relative;
}

.service-item:last-child {
    border-right: none;
}

.service-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transition: var(--transition-base);
}

@media (hover: hover) {
    .service-item:hover {
        background: rgba(200, 160, 135, 0.05);
    }
    .service-item:hover::before {
        width: 100%;
    }
}

.service-number {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--color-text);
}

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

@media (max-width: 1000px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-item:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-item {
        border-right: none;
        padding: 32px 24px;
    }
}

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

.gallery::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, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}

.gallery::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 30% 30%, rgba(200, 160, 135, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 70% 50% at 70% 70%, rgba(184, 132, 122, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, transparent 35%, rgba(13, 13, 15, 0.25) 100%);
    z-index: 1;
    pointer-events: none;
}

.gallery-header {
    max-width: var(--container-max);
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/5;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item:nth-child(6) {
    grid-column: span 2;
}

.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 60%, rgba(13, 13, 15, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    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: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-item:nth-child(n) {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 4/5;
    }
    .gallery-item:nth-child(1) {
        grid-column: span 2;
        aspect-ratio: 16/9;
    }
}

@media (max-width: 500px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item:nth-child(n) {
        grid-column: span 1;
    }
}

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

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(200, 160, 135, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(184, 132, 122, 0.1) 0%, transparent 50%);
    z-index: 0;
    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: 400;
    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-secondary);
    line-height: 1.7;
    margin-bottom: 48px;
}

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

@media (hover: hover) {
    .contact-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(200, 160, 135, 0.4);
    }
}

.contact-phone {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 48px;
    letter-spacing: 0.1em;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--color-text-dim);
    transition: var(--transition-base);
}

.contact-link svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
}

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

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

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text);
}

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

@media (max-width: 600px) {
    .footer {
        padding: 32px 24px;
    }
    .footer-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

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

    

    

    

    
}

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

    

    

    

    

    

    

    
}

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

    

    
}

/* ---------- Scroll Reveal - Cinematic ---------- */

/* Base reveal */
.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);
}

/* Stagger delays */
.reveal:nth-child(1) { transition-delay: 0s; }
.reveal:nth-child(2) { transition-delay: 0.15s; }
.reveal:nth-child(3) { transition-delay: 0.3s; }
.reveal:nth-child(4) { transition-delay: 0.45s; }
.reveal:nth-child(5) { transition-delay: 0.6s; }
.reveal:nth-child(6) { transition-delay: 0.75s; }
.reveal:nth-child(7) { transition-delay: 0.9s; }
.reveal:nth-child(8) { transition-delay: 1.05s; }
.reveal:nth-child(9) { transition-delay: 1.2s; }
.reveal:nth-child(10) { transition-delay: 1.35s; }

/* About image - dramatic 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.3s,
        transform 1.7s cubic-bezier(0.22, 1, 0.36, 1) 0.3s,
        filter 1.3s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

.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 items - slide up with stagger */
.service-item.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-item.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* Headers & containers */
.gallery-header.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);
}

.gallery-header.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;
}
