/* ===== Modern Rudy Coffe - Design System ===== */
:root {
    --color-bg-dark: #0d0a07;
    --color-bg-mid: #1a1410;
    --color-bg-warm: #251c14;
    --color-cream: #faf7f2;
    --color-cream-soft: #ebe4d9;
    --color-accent: #b8956b;
    --color-accent-light: #d4b896;
    --color-accent-glow: rgba(184, 149, 107, 0.25);
    --color-text: #1a1410;
    --color-text-muted: #5c5246;
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 32px 64px -12px rgba(0, 0, 0, 0.2);
    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

/* Lenis smooth scroll - varsayılan scroll'u devre dışı bırak */
html.lenis,
html.lenis-smooth {
    scroll-behavior: auto;
}

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

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    transform: translateY(0);
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2.5rem;
    background: rgba(13, 10, 7, 0.72);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(184, 149, 107, 0.08);
    transition: var(--transition);
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 44px;
}

.nav-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    position: relative;
    color: var(--color-cream-soft);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: color var(--transition-fast);
}

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

.nav-links a:hover {
    color: var(--color-accent-light);
}

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

.nav-cta {
    padding: 0.65rem 1.4rem;
    background: var(--color-accent);
    color: var(--color-bg-dark) !important;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all var(--transition);
}

.nav-cta:hover {
    background: var(--color-accent-light);
    transform: scale(1.02);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--color-cream);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-mobile-cta {
    display: none;
}

@media (max-width: 768px) {
    .nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        padding: 1.5rem 2rem;
        background: rgba(13, 10, 7, 0.95);
        backdrop-filter: blur(20px);
        gap: 1rem;
        border-bottom: 1px solid rgba(184, 149, 107, 0.1);
    }

    .nav-links.active {
        display: flex !important;
    }

    .nav-mobile-cta {
        display: list-item;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-mobile-cta a {
        color: var(--color-accent) !important;
        font-weight: 600;
        font-size: 1rem;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7rem 2rem 5rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 60% at 50% -10%, var(--color-accent-glow) 0%, transparent 55%),
        radial-gradient(ellipse 100% 100% at 50% 100%, rgba(37, 28, 20, 0.5) 0%, transparent 70%),
        linear-gradient(175deg, rgba(13, 10, 7, 0.85) 0%, rgba(26, 20, 16, 0.6) 40%, rgba(37, 28, 20, 0.75) 100%),
        url(images/yatay-1.webp) center center / cover no-repeat;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(184, 149, 107, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184, 149, 107, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 20%, transparent 70%);
    pointer-events: none;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.02'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* ===== Cafe Atmosphere Animation ===== */
.hero-atmosphere {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Steam wisps - rising from bottom like hot coffee */
.hero-steam {
    position: absolute;
    bottom: 15%;
    width: 80px;
    height: 120px;
    background: radial-gradient(ellipse 50% 80% at 50% 100%, rgba(235, 228, 217, 0.35) 0%, rgba(235, 228, 217, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    transform-origin: center bottom;
    opacity: 0;
    animation: steamRise 8s ease-in-out infinite;
}

.hero-steam-1 {
    left: 18%;
    animation-delay: 0s;
    width: 55px;
    height: 95px;
}

.hero-steam-2 {
    left: 32%;
    animation-delay: 1.5s;
    width: 75px;
    height: 130px;
    filter: blur(22px);
}

.hero-steam-3 {
    left: calc(50% - 35px);
    animation-delay: 3s;
    width: 70px;
    height: 115px;
}

.hero-steam-4 {
    left: 63%;
    animation-delay: 4.5s;
    width: 80px;
    height: 125px;
}

.hero-steam-5 {
    left: 78%;
    animation-delay: 6s;
    width: 60px;
    height: 105px;
}

@keyframes steamRise {
    0% {
        opacity: 0;
        transform: translateY(0) translateX(0) scaleX(1);
    }

    8% {
        opacity: 0.5;
    }

    45% {
        opacity: 0.35;
        transform: translateY(-45vh) translateX(8px) scaleX(1.15);
    }

    92% {
        opacity: 0.08;
    }

    100% {
        opacity: 0;
        transform: translateY(-95vh) translateX(-5px) scaleX(0.85);
    }
}

.hero-steam-2 {
    animation: steamRise 10s ease-in-out infinite;
    animation-delay: 2s;
}

.hero-steam-4 {
    animation: steamRise 9s ease-in-out infinite;
    animation-delay: 5s;
}

/* Floating particles - ambient cafe dust */
.hero-particles {
    position: absolute;
    inset: 0;
}

.hero-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(235, 228, 217, 0.5);
    border-radius: 50%;
    animation: particleFloat 12s ease-in-out infinite;
}

.hero-particles span:nth-child(1) {
    left: 15%;
    top: 30%;
    animation-delay: 0s;
    animation-duration: 14s;
}

.hero-particles span:nth-child(2) {
    left: 25%;
    top: 60%;
    animation-delay: 2s;
    animation-duration: 11s;
    width: 3px;
    height: 3px;
}

.hero-particles span:nth-child(3) {
    left: 45%;
    top: 25%;
    animation-delay: 4s;
    animation-duration: 15s;
}

.hero-particles span:nth-child(4) {
    left: 55%;
    top: 70%;
    animation-delay: 1s;
    animation-duration: 13s;
    width: 2px;
    height: 2px;
    opacity: 0.7;
}

.hero-particles span:nth-child(5) {
    left: 70%;
    top: 40%;
    animation-delay: 3s;
    animation-duration: 12s;
}

.hero-particles span:nth-child(6) {
    left: 85%;
    top: 55%;
    animation-delay: 5s;
    animation-duration: 16s;
    width: 3px;
    height: 3px;
}

.hero-particles span:nth-child(7) {
    left: 10%;
    top: 75%;
    animation-delay: 2.5s;
    animation-duration: 11s;
}

.hero-particles span:nth-child(8) {
    left: 90%;
    top: 20%;
    animation-delay: 4.5s;
    animation-duration: 14s;
}

.hero-particles span:nth-child(9) {
    left: 40%;
    top: 85%;
    animation-delay: 1.5s;
    animation-duration: 13s;
    width: 2px;
    height: 2px;
}

.hero-particles span:nth-child(10) {
    left: 60%;
    top: 15%;
    animation-delay: 3.5s;
    animation-duration: 15s;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }

    25% {
        transform: translate(15px, -20px) scale(1.1);
        opacity: 0.8;
    }

    50% {
        transform: translate(-10px, -40px) scale(0.9);
        opacity: 0.6;
    }

    75% {
        transform: translate(20px, -25px) scale(1.05);
        opacity: 0.7;
    }
}

/* Warm ambient glow pulse */
.hero-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 60%;
    background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(184, 149, 107, 0.12) 0%, transparent 60%);
    animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.05);
    }
}

@media (prefers-reduced-motion: reduce) {
    .gallery-item {
        opacity: 1;
    }

    .hero-steam,
    .hero-particles span {
        display: none;
    }

    .hero-glow {
        animation: none;
        opacity: 0.7;
    }

    .hero-title .char {
        opacity: 1;
        transform: none;
    }

    .hero-title .char.revealed {
        transform: none;
    }

    .reveal-el {
        opacity: 1;
        transform: none;
    }

    .reveal-el.revealed {
        opacity: 1;
        transform: none;
    }
}

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

.hero-tagline {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1.25rem;
    opacity: 0;
    transform: translateY(20px);
}

.hero-tagline.animated {
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.25rem, 11vw, 5.5rem);
    font-weight: 600;
    color: var(--color-cream);
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 1.25rem;
    overflow: hidden;
}

.hero-title-line {
    display: block;
    overflow: hidden;
}

.hero-title .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-title .char.revealed {
    opacity: 1;
    transform: translateY(0);
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 450;
    color: var(--color-cream-soft);
    opacity: 0;
    margin-bottom: 2.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    transform: translateY(24px);
}

.hero-subtitle.animated {
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.25rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 100px;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    position: relative;
    overflow: hidden;
    background: var(--color-accent);
    color: var(--color-bg-dark);
    opacity: 0;
    transform: translateY(20px);
}

.btn-primary.animated {
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover .btn-shine {
    left: 100%;
}

.btn-primary:hover {
    background: var(--color-accent-light);
    transform: translateY(-3px);
    box-shadow: 0 16px 32px -8px var(--color-accent-glow);
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-cream-soft);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 18px;
    height: 18px;
    border-right: 2px solid var(--color-accent);
    border-bottom: 2px solid var(--color-accent);
    transform: rotate(45deg);
    animation: scrollBounce 2.5s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: rotate(45deg) translateY(0);
        opacity: 0.8;
    }

    50% {
        transform: rotate(45deg) translateY(6px);
        opacity: 1;
    }
}

/* ===== Container ===== */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== Scroll Reveal Animations ===== */
.reveal-el {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-el[data-delay="50"] {
    transition-delay: 50ms;
}

.reveal-el[data-delay="100"] {
    transition-delay: 100ms;
}

.reveal-el[data-delay="150"] {
    transition-delay: 150ms;
}

.reveal-el[data-delay="200"] {
    transition-delay: 200ms;
}

.reveal-el[data-delay="250"] {
    transition-delay: 250ms;
}

/* ===== Section Titles ===== */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: 600;
    color: var(--color-bg-dark);
    text-align: center;
    margin-bottom: 3.5rem;
    letter-spacing: -0.02em;
}

/* ===== About ===== */
.about {
    padding: 8rem 0;
    background: var(--color-cream);
}

.about-content {
    margin-bottom: 4.5rem;
}

.about-intro,
.about-text,
.about-closing {
    font-size: 1.1rem;
    font-weight: 450;
    color: var(--color-text);
    margin-bottom: 1.75rem;
    line-height: 1.8;
}

.about-intro {
    font-size: 1.2rem;
    font-weight: 500;
}

.about-closing {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 500;
    color: var(--color-bg-warm);
    margin-bottom: 0;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.feature {
    position: relative;
    padding: 2.5rem 2rem;
    background: linear-gradient(145deg, #ffffff 0%, #faf8f5 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(184, 149, 107, 0.12);
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.04),
        0 10px 20px -5px rgba(13, 10, 7, 0.06);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
    opacity: 0;
    transition: opacity var(--transition);
}

.feature::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(184, 149, 107, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.feature:hover {
    transform: translateY(-8px);
    border-color: rgba(184, 149, 107, 0.25);
    box-shadow:
        0 25px 50px -12px rgba(13, 10, 7, 0.12),
        0 0 0 1px rgba(184, 149, 107, 0.08);
}

.feature:hover::before {
    opacity: 1;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(184, 149, 107, 0.15) 0%, rgba(184, 149, 107, 0.06) 100%);
    border-radius: 16px;
    color: var(--color-accent);
    border: 1px solid rgba(184, 149, 107, 0.2);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature:hover .feature-icon {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    color: var(--color-bg-dark);
    transform: scale(1.05);
    box-shadow: 0 8px 20px -4px var(--color-accent-glow);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    transition: transform 0.4s ease;
}

.feature:hover .feature-icon svg {
    transform: scale(1.08);
}

.feature h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-bg-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.feature p {
    font-size: 0.95rem;
    font-weight: 450;
    color: var(--color-text-muted);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .about-features {
        grid-template-columns: 1fr;
    }
}

/* ===== Gallery ===== */
.gallery {
    padding: 8rem 0;
    background: var(--color-bg-warm);
}

.gallery .section-title {
    color: var(--color-cream);
}

.gallery-subtitle {
    text-align: center;
    color: var(--color-cream-soft);
    font-size: 1rem;
    font-weight: 500;
    margin-top: -2.5rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.gallery .container {
    max-width: 1100px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
}

.gallery-item {
    position: relative;
    display: block;
    border-radius: var(--radius);
    opacity: 0;
    overflow: hidden;
    background: var(--color-bg-mid);
}

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

.gallery-item {
    position: relative;
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 10, 7, 0.5) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition);
    z-index: 1;
    border-radius: var(--radius);
    pointer-events: none;
}

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

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

/* Standart kare: 1 sütun 1 satır */
.gallery-item {
    grid-row: span 1;
    grid-column: span 1;
}

/* Dikey fotoğraf: 1 sütun 2 satır */
.gallery-item-tall {
    grid-row: span 2;
}

/* Yatay fotoğraf: 2 sütun 1 satır */
.gallery-item-wide {
    grid-column: span 2;
}

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

    .gallery-item-tall {
        grid-row: span 2;
    }

    .gallery-item-wide {
        grid-column: span 2;
    }
}

/* ===== Contact ===== */
.contact {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--color-bg-mid) 0%, var(--color-bg-dark) 100%);
}

.contact .section-title {
    color: var(--color-cream);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}

.contact-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(184, 149, 107, 0.15);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(184, 149, 107, 0.3);
    transform: translateY(-4px);
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    text-decoration: none;
    color: var(--color-cream);
}

.contact-icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(184, 149, 107, 0.15);
    border-radius: var(--radius);
    color: var(--color-accent-light);
}

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

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-card p {
    font-size: 0.95rem;
    font-weight: 450;
    color: var(--color-cream-soft);
    line-height: 1.5;
    opacity: 0.9;
    margin: 0;
}

.contact-map-col {
    display: flex;
}

.contact-map {
    width: 100%;
    min-height: 350px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(184, 149, 107, 0.15);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.contact-invite {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-cream-soft);
    opacity: 0.9;
}

@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .contact-link {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== Footer ===== */
.footer {
    padding: 2.5rem 2rem;
    background: var(--color-bg-dark);
    text-align: center;
    border-top: 1px solid rgba(184, 149, 107, 0.08);
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

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

/* ===== Lightbox ===== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(13, 10, 7, 0.95);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    margin-top: 1rem;
    color: var(--color-cream-soft);
    font-size: 0.95rem;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--color-cream);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: all var(--transition);
}

.lightbox-close:hover {
    background: var(--color-accent);
    color: var(--color-bg-dark);
    transform: rotate(90deg);
}

/* ===== Preloader ===== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--color-bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}

.preloader-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
}

.preloader-logo {
    height: 64px;
    width: auto;
    object-fit: contain;
    opacity: 0;
    transform: translateY(16px);
}

.preloader-bar {
    width: 180px;
    height: 1.5px;
    background: rgba(184, 149, 107, 0.2);
    border-radius: 100px;
    overflow: hidden;
}

.preloader-fill {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
    transform: scaleX(0);
    transform-origin: left;
    border-radius: 100px;
}

/* ===== Custom Cursor ===== */
.cursor-dot,
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    border-radius: 50%;
    z-index: 9998;
    opacity: 0;
    will-change: transform;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    margin-top: -3px;
    margin-left: -3px;
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(184, 149, 107, 0.55);
    margin-top: -18px;
    margin-left: -18px;
}

@media (hover: none),
(max-width: 768px) {

    .cursor-dot,
    .cursor-ring {
        display: none;
    }
}

/* ===== Scroll Progress Bar ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
    border-radius: 0 2px 2px 0;
    pointer-events: none;
    transition: width 0.08s linear;
}

/* ===== Feature Card 3D Tilt ===== */
.about-features {
    perspective: 1000px;
}

/* ===== Gallery Caption Overlay ===== */
.gallery-item::after {
    content: attr(data-caption);
    position: absolute;
    bottom: 1rem;
    left: 1.25rem;
    right: 1.25rem;
    color: var(--color-cream);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transform: translateY(8px);
    opacity: 0;
    transition: opacity var(--transition), transform var(--transition);
    z-index: 2;
    pointer-events: none;
}

.gallery-item:hover::after {
    opacity: 1;
    transform: translateY(0);
}