/* =================================================================
   Lemur Cafe & Bistro
   Irish pub · koyu yeşil + antik altın tema
   ================================================================= */

:root {
    --green-950: #090f0c;
    --green-900: #0e1712;
    --green-850: #122019;
    --green-800: #17281f;
    --green-700: #1e3428;
    --green-600: #274536;

    --gold-700: #8a6d2b;
    --gold-600: #a9873a;
    --gold:     #c8a34a;
    --gold-300: #e3c77e;
    --gold-100: #f2e2b8;

    --cream:    #f1e7d6;
    --muted:    rgba(241, 231, 214, .66);
    --muted-2:  rgba(241, 231, 214, .42);
    --line:     rgba(200, 163, 74, .22);

    --font-display: "Cinzel", Georgia, "Times New Roman", serif;
    --font-body: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    --wrap: 1180px;
    --radius: 4px;

    --ease-out: cubic-bezier(.22, 1, .36, 1);
    --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ----------------------------- reset ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    background-color: var(--green-900);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: .01em;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--gold-300); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--gold-100); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; margin: 0; letter-spacing: .02em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 999;
    background: var(--gold); color: var(--green-950); padding: 12px 20px; font-weight: 600;
}
.skip-link:focus { left: 12px; top: 12px; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* aged paper / leather dokusu */
body::before {
    content: "";
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    opacity: .35; mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

/* ============================ header ============================ */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    transition: box-shadow .35s var(--ease), border-color .35s var(--ease);
    background: linear-gradient(to bottom, rgba(9, 15, 12, .72), rgba(9, 15, 12, 0));
    border-bottom: 1px solid transparent;
}
/* Bulaniklik katmani ::before uzerinde tutulur: backdrop-filter dogrudan
   header'a verilirse iceren blok kurali geregi fixed konumlu mobil menuyu
   header'in icine hapseder (mobilde menu bozulur). */
.site-header::before {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: rgba(14, 23, 18, .92);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    opacity: 0; transition: opacity .35s var(--ease);
}
.site-header.scrolled::before { opacity: 1; }
.site-header.scrolled {
    border-bottom-color: var(--line);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .35);
}

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

.brand { display: flex; align-items: center; gap: 12px; color: var(--cream); }
.brand img { width: 46px; height: 46px; border-radius: 50%; box-shadow: 0 0 0 1px var(--line), 0 6px 18px rgba(0,0,0,.45); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-display); font-size: 21px; font-weight: 700; letter-spacing: .12em; color: var(--gold-300); }
.brand-sub { font-size: 10.5px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted-2); }

.nav { display: flex; align-items: center; gap: 30px; }
.nav > a:not(.btn) {
    position: relative; color: var(--cream); font-size: 14.5px; font-weight: 400;
    letter-spacing: .09em; text-transform: uppercase; padding: 6px 0;
}
.nav > a:not(.btn)::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
    background: var(--gold); transform: scaleX(0); transform-origin: right;
    transition: transform .35s var(--ease-out);
}
.nav > a:not(.btn):hover::after { transform: scaleX(1); transform-origin: left; }

.nav-toggle {
    display: none; background: none; border: 1px solid var(--line); color: var(--gold-300);
    width: 44px; height: 44px; border-radius: var(--radius); cursor: pointer; padding: 9px;
    transition: background-color .2s var(--ease);
}
.nav-toggle:hover { background: rgba(200, 163, 74, .1); }

/* ============================ buttons ============================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    padding: 14px 28px; border: 1px solid transparent; border-radius: var(--radius);
    font-family: var(--font-body); font-size: 14px; font-weight: 500;
    letter-spacing: .13em; text-transform: uppercase; cursor: pointer;
    transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out),
                background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
    will-change: transform;
}
.btn:active { transform: translateY(1px) scale(.99); }

.btn-gold {
    background: linear-gradient(160deg, var(--gold-300), var(--gold-600));
    color: #14201a; border-color: var(--gold-600);
    box-shadow: 0 8px 24px rgba(169, 135, 58, .28), inset 0 1px 0 rgba(255, 255, 255, .35);
}
.btn-gold:hover { color: #0f1a14; transform: translateY(-2px); box-shadow: 0 14px 34px rgba(169, 135, 58, .4), inset 0 1px 0 rgba(255,255,255,.45); }

.btn-outline { background: transparent; color: var(--gold-300); border-color: var(--gold-600); }
.btn-outline:hover { background: rgba(200, 163, 74, .12); color: var(--gold-100); transform: translateY(-2px); }

.btn-sm { padding: 10px 18px; font-size: 12.5px; }
.btn-block { width: 100%; }

.icon { width: 24px; height: 24px; flex: none; }
.icon-sm { width: 18px; height: 18px; }
.icon-xs { width: 15px; height: 15px; }

/* ============================ ornament ============================ */
.ornament {
    display: flex; align-items: center; justify-content: center; gap: 14px;
    color: var(--gold-600); margin: 22px 0;
}
.ornament-line { display: block; height: 1px; width: min(110px, 22vw); background: linear-gradient(90deg, transparent, var(--gold-600)); }
.ornament-line:last-child { background: linear-gradient(90deg, var(--gold-600), transparent); }
.ornament-mark { width: 34px; height: 17px; flex: none; }
.section-head .ornament, .hero-plaque .ornament { margin-left: auto; margin-right: auto; }

/* ============================ hero ============================ */
.hero {
    position: relative; min-height: 100vh; min-height: 100svh;
    display: flex; align-items: center;
    padding: 120px 0 90px; overflow: hidden; isolation: isolate;
}
.hero-bg {
    position: absolute; inset: 0; z-index: -2;
    background:
        radial-gradient(120% 90% at 50% 0%, rgba(39, 69, 54, .95) 0%, rgba(14, 23, 18, 1) 62%),
        var(--green-950);
}
.hero-bg::before {
    content: ""; position: absolute; inset: -2%;
    background: url("../img/mekan/dis-gunduz.jpg") center 30% / cover no-repeat;
    opacity: .28; filter: saturate(.85);
}
.hero-bg::after {
    content: ""; position: absolute; inset: 0; opacity: .5;
    background-image:
        repeating-linear-gradient(45deg, rgba(200,163,74,.045) 0 2px, transparent 2px 26px),
        repeating-linear-gradient(-45deg, rgba(200,163,74,.035) 0 2px, transparent 2px 26px);
}
.hero-vignette {
    position: absolute; inset: 0; z-index: -1;
    background: radial-gradient(70% 60% at 50% 45%, transparent 30%, rgba(6, 11, 8, .85) 100%);
}

.hero-inner { display: flex; justify-content: center; }

.hero-plaque { width: 100%; max-width: 860px; }
.plaque-frame {
    position: relative; text-align: center;
    padding: clamp(34px, 6vw, 64px) clamp(22px, 5vw, 60px);
    border: 1px solid rgba(200, 163, 74, .45);
    border-radius: 10px;
    background: linear-gradient(165deg, rgba(23, 40, 31, .72), rgba(9, 15, 12, .82));
    box-shadow: 0 40px 90px rgba(0, 0, 0, .55), inset 0 0 60px rgba(0, 0, 0, .35);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}
.plaque-frame::before {
    content: ""; position: absolute; inset: 9px; border: 1px solid rgba(200, 163, 74, .25);
    border-radius: 6px; pointer-events: none;
}

.hero-logo {
    width: clamp(140px, 22vw, 200px); height: auto; margin: 0 auto 22px;
    filter: drop-shadow(0 18px 34px rgba(0, 0, 0, .6));
    border-radius: 50%;
}

.hero-eyebrow {
    margin: 0 0 12px; font-size: clamp(11px, 1.6vw, 13px); letter-spacing: .42em;
    text-transform: uppercase; color: var(--gold); font-weight: 400;
}
.hero-title {
    font-size: clamp(30px, 6vw, 58px); color: var(--gold-100); margin: 0;
    text-shadow: 0 4px 26px rgba(0, 0, 0, .6);
}
.hero-sub {
    max-width: 620px; margin: 0 auto; color: var(--muted); font-size: clamp(15px, 1.9vw, 18px);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 32px; }

.hero-meta {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px;
    margin-top: 30px; font-size: 13.5px; color: var(--muted-2); letter-spacing: .06em;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 7px; }
.hero-meta .dot { color: var(--gold-700); }

.scroll-cue {
    position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
    width: 26px; height: 42px; border: 1px solid rgba(200, 163, 74, .5); border-radius: 14px;
    display: flex; justify-content: center; padding-top: 8px;
}
.scroll-cue span { display: block; width: 3px; height: 7px; border-radius: 2px; background: var(--gold); animation: cue 1.9s var(--ease) infinite; }
@keyframes cue { 0% { opacity: 0; transform: translateY(-4px); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(12px); } }

/* ============================ sections ============================ */
.section { position: relative; padding: clamp(72px, 10vw, 128px) 0; z-index: 1; }

.section-about   { background: linear-gradient(180deg, var(--green-900), var(--green-850)); }
.section-features{ background: var(--green-850); }
.section-gallery { background: linear-gradient(180deg, var(--green-850), var(--green-900)); }
.section-contact {
    background:
        linear-gradient(rgba(11, 18, 14, .93), rgba(9, 15, 12, .97)),
        url("../img/mekan/dis-gece.jpg") center / cover no-repeat;
}

.section-head { text-align: center; max-width: 700px; margin: 0 auto clamp(40px, 6vw, 64px); }
.section-title { font-size: clamp(26px, 4.2vw, 42px); color: var(--gold-100); }
.eyebrow {
    margin: 0 0 10px; font-size: 12px; letter-spacing: .38em; text-transform: uppercase;
    color: var(--gold); font-weight: 400;
}

/* ---------------------------- about ---------------------------- */
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 6vw, 76px); align-items: center; }

.about-media { position: relative; }
.frame-gold {
    position: relative; border: 1px solid rgba(200, 163, 74, .45); border-radius: 8px;
    padding: 10px; background: rgba(9, 15, 12, .5);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .5);
}
.frame-gold img { border-radius: 4px; width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; }

.est-badge {
    position: absolute; right: -14px; bottom: -18px;
    width: 92px; height: 92px; border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: linear-gradient(155deg, var(--gold-300), var(--gold-700));
    color: #131f18; font-family: var(--font-display); line-height: 1;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .45); border: 2px solid rgba(255, 255, 255, .25);
}
.est-badge span { font-size: 10px; letter-spacing: .22em; }
.est-badge strong { font-size: 21px; letter-spacing: .04em; margin-top: 3px; }

.about-text .ornament { margin-left: 0; justify-content: flex-start; }
.about-text .ornament .ornament-line:first-child { display: none; }
.prose { color: var(--muted); font-size: 16.5px; }

.about-facts { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 30px; }
.fact {
    display: flex; align-items: center; gap: 13px; flex: 1 1 210px;
    padding: 15px 18px; border: 1px solid var(--line); border-radius: var(--radius);
    background: rgba(30, 52, 40, .35);
}
.fact svg { color: var(--gold); }
.fact strong { display: block; font-family: var(--font-display); font-size: 15px; color: var(--cream); }
.fact span { font-size: 13.5px; color: var(--muted-2); }

/* ---------------------------- features ---------------------------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }

.feature-card {
    position: relative; padding: 34px 28px; border: 1px solid var(--line); border-radius: 6px;
    background: linear-gradient(165deg, rgba(30, 52, 40, .55), rgba(14, 23, 18, .55));
    overflow: hidden;
    transition: transform .4s var(--ease-out), border-color .35s var(--ease), box-shadow .4s var(--ease-out);
}
.feature-card::before {
    content: ""; position: absolute; inset: 0; opacity: 0;
    background: radial-gradient(120% 80% at 50% 0%, rgba(200, 163, 74, .16), transparent 70%);
    transition: opacity .4s var(--ease);
}
.feature-card:hover {
    transform: translateY(-6px); border-color: rgba(200, 163, 74, .5);
    box-shadow: 0 24px 50px rgba(0, 0, 0, .45);
}
.feature-card:hover::before { opacity: 1; }
.feature-card > * { position: relative; }

.feature-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 56px; height: 56px; margin-bottom: 20px; border-radius: 50%;
    color: var(--gold-300); border: 1px solid rgba(200, 163, 74, .4);
    background: rgba(9, 15, 12, .55);
    transition: transform .4s var(--ease-out), color .3s var(--ease);
}
.feature-card:hover .feature-icon { transform: scale(1.06) rotate(-4deg); color: var(--gold-100); }
.feature-card h3 { font-size: 20px; color: var(--cream); margin-bottom: 10px; }
.feature-card p { color: var(--muted); font-size: 15.5px; margin: 0; }

.features-cta {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 20px;
    margin-top: 52px; padding-top: 40px; border-top: 1px solid var(--line); text-align: center;
}
.features-cta p { margin: 0; color: var(--muted); }

/* ---------------------------- gallery ---------------------------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }

.gallery-item {
    position: relative; padding: 0; border: 1px solid var(--line); border-radius: 5px;
    background: var(--green-850); cursor: pointer; overflow: hidden; aspect-ratio: 4 / 5;
    transition: transform .4s var(--ease-out), border-color .3s var(--ease), box-shadow .4s var(--ease-out);
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s var(--ease-out), filter .4s var(--ease);
    filter: saturate(.92) brightness(.92);
}
.gallery-item::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(6, 11, 8, .8), transparent 55%);
    opacity: .75; transition: opacity .35s var(--ease);
}
.gallery-item:hover { transform: translateY(-4px); border-color: rgba(200, 163, 74, .55); box-shadow: 0 20px 40px rgba(0,0,0,.45); }
.gallery-item:hover img { transform: scale(1.07); filter: saturate(1) brightness(1); }
.gallery-item:hover::after { opacity: .45; }

.gallery-caption {
    position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
    padding: 14px 16px; text-align: left; color: var(--cream);
    font-family: var(--font-display); font-size: 15px; letter-spacing: .03em;
}

/* ---------------------------- contact ---------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 5vw, 56px); align-items: start; }

.info-list { display: grid; gap: 14px; margin-bottom: 24px; }
.info-list li {
    display: flex; gap: 15px; padding: 18px 20px;
    border: 1px solid var(--line); border-radius: var(--radius);
    background: linear-gradient(160deg, rgba(30, 52, 40, .4), rgba(14, 23, 18, .4));
    transition: border-color .3s var(--ease), transform .3s var(--ease-out);
}
.info-list li:hover { border-color: rgba(200, 163, 74, .45); transform: translateX(3px); }
.info-list svg { color: var(--gold); flex: none; }
.info-list strong { display: block; font-family: var(--font-display); font-size: 14px; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-300); margin-bottom: 3px; }
.info-list span, .info-list a { font-size: 16px; color: var(--cream); }
.inline-link { display: inline-block; margin-top: 6px; font-size: 13.5px !important; color: var(--gold-300) !important; border-bottom: 1px solid var(--line); }

.map-frame {
    border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
    height: 260px; background: var(--green-800);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.35) contrast(1.05) brightness(.88); }

.contact-form-wrap {
    padding: clamp(24px, 4vw, 38px);
    border: 1px solid rgba(200, 163, 74, .3); border-radius: 8px;
    background: linear-gradient(165deg, rgba(30, 52, 40, .5), rgba(9, 15, 12, .6));
    box-shadow: 0 30px 70px rgba(0, 0, 0, .4);
}

.field-row { display: flex; flex-wrap: wrap; gap: 14px; }
.field { display: block; flex: 1 1 180px; margin-bottom: 16px; }
.field-narrow { flex: 0 1 110px; }
.field > span {
    display: block; margin-bottom: 7px; font-size: 12.5px; letter-spacing: .15em;
    text-transform: uppercase; color: var(--muted-2);
}
.field input, .field textarea {
    width: 100%; padding: 13px 15px; font-family: var(--font-body); font-size: 15.5px;
    color: var(--cream); background: rgba(6, 11, 8, .55);
    border: 1px solid rgba(241, 231, 214, .16); border-radius: var(--radius);
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(241, 231, 214, .3); }
.field input:focus, .field textarea:focus {
    outline: none; border-color: var(--gold-600);
    box-shadow: 0 0 0 3px rgba(200, 163, 74, .16);
    background: rgba(6, 11, 8, .75);
}
.field input[type="date"], .field input[type="time"] { color-scheme: dark; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-note { margin: 16px 0 0; font-size: 13.5px; color: var(--muted-2); line-height: 1.6; }

.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px; font-size: 15px; }
.alert p { margin: 0 0 4px; }
.alert p:last-child { margin: 0; }
.alert-ok { background: rgba(88, 150, 92, .16); border: 1px solid rgba(120, 190, 125, .45); color: #cfe9cf; }
.alert-err { background: rgba(180, 70, 60, .16); border: 1px solid rgba(200, 100, 90, .45); color: #f0cfc9; }

/* ============================ footer ============================ */
.site-footer {
    position: relative; z-index: 1;
    background: var(--green-950);
    border-top: 1px solid var(--line);
    padding: clamp(52px, 7vw, 80px) 0 32px;
}
.footer-top { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand img { border-radius: 50%; margin-bottom: 14px; box-shadow: 0 0 0 1px var(--line); }
.footer-tagline { margin: 0 0 6px; color: var(--gold-300); font-size: 14px; letter-spacing: .1em; }
.footer-est { margin: 0; font-size: 12px; letter-spacing: .3em; color: var(--muted-2); }

.footer-col h4 {
    font-size: 13px; letter-spacing: .22em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 14px;
}
.footer-col p { margin: 0 0 7px; color: var(--muted); font-size: 15px; }
.footer-hours { color: var(--cream) !important; font-family: var(--font-display); font-size: 17px !important; }

.social-row { display: flex; gap: 10px; margin-bottom: 18px; }
.social-row a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%;
    color: var(--gold-300);
    transition: transform .3s var(--ease-out), background-color .3s var(--ease), border-color .3s var(--ease);
}
.social-row a:hover { transform: translateY(-3px); background: rgba(200, 163, 74, .14); border-color: var(--gold-600); }

.footer-bottom { text-align: center; color: var(--muted-2); font-size: 13.5px; }
.footer-bottom p { margin: 0 0 4px; }
.footer-bottom .copy { font-size: 12.5px; opacity: .8; }

/* ============================ floating whatsapp ============================ */
.float-wa {
    position: fixed; right: 20px; bottom: 20px; z-index: 90;
    width: 54px; height: 54px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(155deg, #2fb457, #1c8a41); color: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .45);
    transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.float-wa:hover { transform: translateY(-3px) scale(1.05); color: #fff; box-shadow: 0 18px 40px rgba(0, 0, 0, .5); }

/* ============================ lightbox ============================ */
.lightbox {
    position: fixed; inset: 0; z-index: 200;
    display: flex; align-items: center; justify-content: center;
    background: rgba(6, 11, 8, .94);
    -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
    opacity: 0; transition: opacity .3s var(--ease);
    padding: 60px 20px;
}
.lightbox[hidden] { display: none; }
.lightbox.acik { opacity: 1; }
.lightbox img {
    max-width: 100%; max-height: 100%; border-radius: 4px;
    border: 1px solid rgba(200, 163, 74, .4);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .7);
    transform: scale(.96); transition: transform .35s var(--ease-out);
}
.lightbox.acik img { transform: scale(1); }
.lightbox-close, .lightbox-nav {
    position: absolute; background: rgba(14, 23, 18, .8); color: var(--gold-300);
    border: 1px solid var(--line); border-radius: 50%; cursor: pointer;
    width: 46px; height: 46px; display: flex; align-items: center; justify-content: center;
    font-size: 26px; line-height: 1; transition: background-color .25s var(--ease), transform .25s var(--ease-out);
}
.lightbox-close { top: 18px; right: 18px; padding: 11px; }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(200, 163, 74, .2); transform: scale(1.06); }

/* ============================ reveal ============================ */
.reveal { opacity: 0; transform: translateY(22px); }
.reveal.gorunur {
    opacity: 1; transform: none;
    transition: opacity .7s var(--ease-out) var(--d, 0ms), transform .7s var(--ease-out) var(--d, 0ms);
}

/* ============================ responsive ============================ */
@media (max-width: 980px) {
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .est-badge { right: 12px; bottom: -22px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

body.menu-acik { overflow: hidden; }

@media (max-width: 820px) {
    .nav {
        position: fixed; inset: 0 0 0 auto; z-index: 110;
        width: min(320px, 84vw);
        flex-direction: column; align-items: flex-start; justify-content: center; gap: 26px;
        padding: 90px 34px calc(34px + env(safe-area-inset-bottom));
        background: var(--green-850);
        border-left: 1px solid var(--line); box-shadow: -20px 0 60px rgba(0, 0, 0, .5);
        transform: translateX(102%); transition: transform .4s var(--ease-out);
        visibility: hidden; transition: transform .4s var(--ease-out), visibility 0s .4s;
        overflow-y: auto;
    }
    .nav.acik { transform: none; visibility: visible; transition: transform .4s var(--ease-out), visibility 0s; }
    .nav > a:not(.btn) { font-size: 17px; }
    .nav-menu-btn { width: 100%; }
    .nav-toggle { display: flex; align-items: center; justify-content: center; position: relative; z-index: 120; }
}

@media (max-width: 640px) {
    body { font-size: 16px; }
    /* dokunma hedeflerini buyut */
    .info-list a, .footer-col a, .inline-link { display: inline-block; padding: 6px 0; }
    .hero-meta { gap: 8px 12px; }
    .hero { padding: 106px 0 80px; }
    .hero-actions .btn { width: 100%; }
    .footer-top { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .footer-brand img { margin-inline: auto; }
    .social-row { justify-content: center; }
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
    .lightbox-nav { width: 40px; height: 40px; }
    .float-wa { width: 50px; height: 50px; right: 14px; bottom: 14px; }
}

/* ============================ reduced motion ============================ */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .01ms !important; animation-iteration-count: 1 !important;
        transition-duration: .01ms !important; scroll-behavior: auto !important;
    }
    .reveal { opacity: 1; transform: none; }
}

/* ============================ print ============================ */
@media print {
    .site-header, .float-wa, .scroll-cue, .lightbox, .contact-form-wrap { display: none !important; }
    body { background: #fff; color: #000; }
}
