/* ==========================================================================
   Caesar Et Lounge — Ana Tema
   Koyu, fine-dining restoran teması. Bağımlılık yok, saf CSS.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokenlar
   -------------------------------------------------------------------------- */
:root {
    --c-bg: #000000;
    --c-bg-alt: #0f0f0f;
    --c-bg-soft: #141414;
    --c-light: #fbf9f9;
    --c-accent: #ef2853;
    --c-accent-dark: #c81f43;
    --c-beige: #c3beb6;
    --c-text: #cccccc;
    --c-muted: #a6a6a6;
    --c-line: rgba(255, 255, 255, .14);
    --c-line-dark: rgba(0, 0, 0, .12);

    --f-display: "Cinzel", "Times New Roman", serif;
    --f-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --container: 1300px;
    --gutter: 30px;
    --header-h: 110px;
    --header-h-sticky: 80px;

    --ease: cubic-bezier(.25, .46, .45, .94);
    --ease-out: cubic-bezier(.16, 1, .3, 1);
    --dur: .5s;
}

/* --------------------------------------------------------------------------
   2. Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--c-bg);
    color: var(--c-text);
    font-family: var(--f-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.is-locked { overflow: hidden; }

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

a {
    color: inherit;
    text-decoration: none;
    transition: color .3s var(--ease);
}

button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }

ul, ol { margin: 0; padding: 0; list-style: none; }

p { margin: 0 0 1.4em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--c-accent); color: #fff; }

/* --------------------------------------------------------------------------
   3. Tipografi
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 .5em;
    color: #fff;
    font-weight: 400;
    line-height: 1.15;
    text-transform: uppercase;
}

h1, h2, h3 { font-family: var(--f-display); }

h1 {
    font-size: clamp(44px, 6.2vw, 86px);
    letter-spacing: .055em;
    line-height: 1.08;
}

h2 {
    font-size: clamp(34px, 4.6vw, 70px);
    letter-spacing: .05em;
}

h3 {
    font-size: clamp(28px, 3.6vw, 55px);
    letter-spacing: .05em;
}

h4 {
    font-family: var(--f-body);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: .03em;
}

h5 {
    font-family: var(--f-body);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .06em;
}

h6, .subtitle {
    display: block;
    margin: 0 0 18px;
    font-family: var(--f-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--c-accent);
}

.subtitle--light { color: var(--c-beige); }

.lead {
    font-size: 17px;
    line-height: 1.75;
    color: var(--c-text);
}

.text-center { text-align: center; }
.text-light { color: var(--c-light); }

/* Serif italik vurgu — büyük başlıklarda kelime öne çıkarmak için */
.accent-word {
    color: var(--c-accent);
    font-style: italic;
}

/* --------------------------------------------------------------------------
   4. Layout
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.container--wide { max-width: 1660px; }
.container--narrow { max-width: 900px; }

.section { position: relative; padding: 110px 0; }
.section--sm { padding: 80px 0; }
.section--lg { padding: 150px 0; }
.section--flush-top { padding-top: 0; }
.section--flush-bottom { padding-bottom: 0; }
.section--alt { background: var(--c-bg-alt); }
.section--light { background: var(--c-light); }

.section--light h1,
.section--light h2,
.section--light h3,
.section--light h4,
.section--light h5 { color: #111; }

.section--light { color: #4a4a4a; }
.section--light .subtitle { color: var(--c-accent); }

.grid { display: grid; gap: 30px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.section-head {
    max-width: 760px;
    margin: 0 auto 70px;
    text-align: center;
}

.section-head p {
    margin-top: 22px;
    color: var(--c-muted);
}

.section-head--left {
    margin-left: 0;
    text-align: left;
}

/* --------------------------------------------------------------------------
   5. Butonlar
   -------------------------------------------------------------------------- */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 45px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    overflow: hidden;
    isolation: isolate;
    transition: color .4s var(--ease), border-color .4s var(--ease);
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--c-accent);
    transform: scaleY(0);
    transform-origin: bottom center;
    transition: transform .45s var(--ease-out);
    z-index: -1;
}

.btn:hover { color: #fff; border-color: var(--c-accent); }
.btn:hover::before { transform: scaleY(1); transform-origin: top center; }

.btn--filled { background: var(--c-accent); border-color: var(--c-accent); }
.btn--filled::before { background: #fff; }
.btn--filled:hover { color: #111; }

.btn--dark { border-color: #111; color: #111; }
.btn--dark:hover { color: #fff; border-color: var(--c-accent); }

.btn--sm { padding: 14px 32px; font-size: 12px; }
.btn--block { display: flex; width: 100%; }

/* Alt çizgili metin link — "VIEW MORE" tipi */
.link-arrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 4px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
}

.link-arrow::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(1);
    transform-origin: right center;
    transition: transform .45s var(--ease-out);
}

.link-arrow:hover { color: var(--c-accent); }
.link-arrow:hover::after { transform: scaleX(0); transform-origin: left center; }

.link-arrow svg { width: 14px; height: 10px; }

/* --------------------------------------------------------------------------
   6. Preloader
   -------------------------------------------------------------------------- */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--c-bg);
    transition: opacity .7s var(--ease), visibility .7s var(--ease);
}

.preloader.is-done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader__mark {
    font-family: var(--f-display);
    font-size: 26px;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: #fff;
    padding-left: .4em;
}

.preloader__bar {
    position: absolute;
    left: 50%;
    bottom: 32%;
    width: 180px;
    height: 1px;
    margin-left: -90px;
    background: rgba(255, 255, 255, .18);
    overflow: hidden;
}

.preloader__bar span {
    display: block;
    height: 100%;
    width: 0;
    background: var(--c-accent);
    transition: width .3s linear;
}

/* --------------------------------------------------------------------------
   7. Header
   -------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-h);
    z-index: 900;
    display: flex;
    align-items: center;
    transition: height .4s var(--ease), background-color .4s var(--ease), box-shadow .4s var(--ease);
}

.header::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, .1);
    opacity: 1;
    transition: opacity .4s var(--ease);
}

.header.is-stuck {
    height: var(--header-h-sticky);
    background: rgba(0, 0, 0, .92);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .5);
}

.header.is-stuck::after { opacity: 0; }

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
    max-width: 1660px;
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Logo, boğa + yazının üst üste dizildiği bir kilit; küçük yükseklikte
   yazı okunmaz olduğu için başlık yüksekliğinin çoğunu kullanır. */
.brand img { max-height: 82px; width: auto; transition: max-height .4s var(--ease); }
.header.is-stuck .brand img { max-height: 58px; }

.brand__text {
    font-family: var(--f-display);
    font-size: 22px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
}

.brand__text small {
    display: block;
    font-family: var(--f-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .42em;
    color: var(--c-accent);
    margin-top: 3px;
}

/* Ana menü */
.nav { display: flex; align-items: center; height: 100%; }

.nav__list { display: flex; align-items: center; gap: 38px; height: 100%; }

.nav__item { position: relative; display: flex; align-items: center; height: 100%; }

.nav__link {
    position: relative;
    display: inline-block;
    padding: 6px 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
}

.nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--c-accent);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform .4s var(--ease-out);
}

.nav__link:hover::after,
.nav__item.is-active > .nav__link::after { transform: scaleX(1); transform-origin: left center; }

.nav__item.is-active > .nav__link { color: var(--c-accent); }

/* Açılır alt menü */
.nav__sub {
    position: absolute;
    top: 100%;
    left: -24px;
    min-width: 220px;
    padding: 18px 0;
    background: rgba(10, 10, 10, .97);
    border-top: 2px solid var(--c-accent);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}

.nav__item:hover > .nav__sub { opacity: 1; visibility: visible; transform: translateY(0); }

.nav__sub a {
    display: block;
    padding: 9px 26px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--c-text);
}

.nav__sub a:hover { color: var(--c-accent); padding-left: 32px; }

/* Sağ aksiyonlar */
.header__actions { display: flex; align-items: center; gap: 22px; flex-shrink: 0; }

.header__phone {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .06em;
    color: #fff;
}

.header__phone svg { width: 15px; height: 15px; fill: var(--c-accent); }
.header__phone:hover { color: var(--c-accent); }

/* Hamburger */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 34px;
    height: 34px;
}

.burger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: #fff;
    transition: transform .35s var(--ease), opacity .25s var(--ease);
}

.burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobil tam ekran menü */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 890;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 30px 60px;
    background: rgba(0, 0, 0, .98);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity .45s var(--ease), visibility .45s;
}

.mobile-nav.is-open { opacity: 1; visibility: visible; }

.mobile-nav__list { display: flex; flex-direction: column; gap: 4px; }

.mobile-nav__list > li {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}

.mobile-nav.is-open .mobile-nav__list > li { opacity: 1; transform: translateY(0); }

.mobile-nav__link {
    display: block;
    padding: 12px 0;
    font-family: var(--f-display);
    font-size: 28px;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #fff;
}

.mobile-nav__link:hover { color: var(--c-accent); }

.mobile-nav__sub { padding: 0 0 12px 18px; }
.mobile-nav__sub a {
    display: block;
    padding: 7px 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--c-muted);
}
.mobile-nav__sub a:hover { color: var(--c-accent); }

.mobile-nav__foot {
    margin-top: 46px;
    padding-top: 26px;
    border-top: 1px solid var(--c-line);
    font-size: 13px;
    letter-spacing: .06em;
    color: var(--c-muted);
}

.mobile-nav__foot a { display: block; margin-bottom: 8px; color: #fff; }

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

.hero__slides { position: absolute; inset: 0; }

.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s var(--ease), visibility 1.2s;
}

.hero__slide.is-active { opacity: 1; visibility: visible; }

.hero__media { position: absolute; inset: 0; overflow: hidden; }

.hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .55) 45%, rgba(0, 0, 0, .3) 100%);
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.12);
    transition: transform 8s linear;
}

.hero__slide.is-active .hero__media img { transform: scale(1); }

.hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1660px;
    margin: 0 auto;
    padding: calc(var(--header-h) + 40px) var(--gutter) 130px;
}

.hero__content { max-width: 660px; }

.hero__content .subtitle,
.hero__content h1,
.hero__content p,
.hero__content .btn {
    opacity: 0;
    transform: translateY(38px);
    transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}

.hero__slide.is-active .hero__content .subtitle { opacity: 1; transform: none; transition-delay: .25s; }
.hero__slide.is-active .hero__content h1 { opacity: 1; transform: none; transition-delay: .4s; }
.hero__slide.is-active .hero__content p { opacity: 1; transform: none; transition-delay: .6s; }
.hero__slide.is-active .hero__content .btn { opacity: 1; transform: none; transition-delay: .78s; }

.hero__content p {
    max-width: 540px;
    margin: 26px 0 40px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--c-text);
}

/* Slider kontrolleri */
.hero__dots {
    position: absolute;
    left: var(--gutter);
    bottom: 60px;
    z-index: 3;
    display: flex;
    gap: 14px;
}

.hero__inner .hero__dots { left: 0; }

.hero__dot {
    position: relative;
    width: 46px;
    height: 2px;
    background: rgba(255, 255, 255, .3);
    overflow: hidden;
}

.hero__dot::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--c-accent);
    transform: scaleX(0);
    transform-origin: left center;
}

.hero__dot.is-active::after { animation: heroProgress 6s linear forwards; }

@keyframes heroProgress {
    to { transform: scaleX(1); }
}

.hero__arrows {
    position: absolute;
    right: var(--gutter);
    bottom: 52px;
    z-index: 3;
    display: flex;
    gap: 12px;
}

.hero__arrow {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .28);
    color: #fff;
    transition: background-color .35s var(--ease), border-color .35s var(--ease);
}

.hero__arrow:hover { background: var(--c-accent); border-color: var(--c-accent); }
.hero__arrow svg { width: 16px; height: 12px; }

.hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 34px;
    z-index: 3;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
}

.hero__scroll i {
    display: block;
    width: 1px;
    height: 46px;
    background: linear-gradient(to bottom, var(--c-accent), transparent);
    animation: scrollPulse 2s var(--ease) infinite;
}

@keyframes scrollPulse {
    0% { transform: scaleY(0); transform-origin: top; }
    45% { transform: scaleY(1); transform-origin: top; }
    55% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* İç sayfa başlığı */
.page-hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 62vh;
    padding: calc(var(--header-h) + 80px) 0 90px;
    overflow: hidden;
}

.page-hero__media { position: absolute; inset: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .75), rgba(0, 0, 0, .55));
}

.page-hero__inner { position: relative; z-index: 2; }

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--c-muted);
}

.breadcrumb a:hover { color: var(--c-accent); }
.breadcrumb span.sep { color: var(--c-accent); }

/* --------------------------------------------------------------------------
   9. Kategori kartları
   -------------------------------------------------------------------------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }

.cat-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 560px;
    padding: 50px 38px;
    overflow: hidden;
    text-align: center;
    align-items: center;
}

.cat-card__media { position: absolute; inset: 0; }

.cat-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease-out);
}

.cat-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .35) 55%, rgba(0, 0, 0, .2) 100%);
    transition: background .5s var(--ease);
}

.cat-card:hover .cat-card__media img { transform: scale(1.08); }

.cat-card:hover .cat-card__media::after {
    background: linear-gradient(to top, rgba(239, 40, 83, .78) 0%, rgba(0, 0, 0, .55) 70%, rgba(0, 0, 0, .3) 100%);
}

.cat-card__body { position: relative; z-index: 2; }

.cat-card__title {
    margin: 0 0 14px;
    font-family: var(--f-display);
    font-size: 28px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
}

.cat-card__text {
    margin: 0 0 26px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .78);
}

.cat-card .link-arrow {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .45s var(--ease-out), transform .45s var(--ease-out);
}

.cat-card:hover .link-arrow { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   10. Split (görsel + metin)
   -------------------------------------------------------------------------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.split--reverse .split__media { order: 2; }

.split__media { position: relative; }

.split__media img { width: 100%; object-fit: cover; }

.split__media--stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: start;
}

.split__media--stack img:nth-child(2) { margin-top: 60px; }

.split__body { max-width: 540px; }

.split__body h2 { margin-bottom: 26px; }

.split__body .btn { margin-top: 34px; }

/* Sayı rozeti / dekoratif etiket */
.badge-year {
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 160px;
    height: 160px;
    display: grid;
    place-items: center;
    background: var(--c-accent);
    text-align: center;
}

.badge-year strong {
    display: block;
    font-family: var(--f-display);
    font-size: 40px;
    color: #fff;
    line-height: 1;
}

.badge-year span {
    display: block;
    margin-top: 6px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .85);
}

/* --------------------------------------------------------------------------
   11. Menü kalemleri
   -------------------------------------------------------------------------- */
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 54px 70px; }

.menu-item {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 26px;
    align-items: start;
}

.menu-item__media {
    position: relative;
    width: 130px;
    height: 130px;
    overflow: hidden;
}

.menu-item__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .9s var(--ease-out);
}

.menu-item:hover .menu-item__media img { transform: scale(1.1); }

.menu-item__head {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 8px;
}

.menu-item__name {
    margin: 0;
    font-family: var(--f-display);
    font-size: 22px;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: #fff;
    transition: color .35s var(--ease);
}

.menu-item:hover .menu-item__name { color: var(--c-accent); }

.menu-item__dots {
    flex: 1;
    height: 1px;
    background-image: linear-gradient(to right, var(--c-line) 45%, transparent 0%);
    background-size: 7px 1px;
    background-repeat: repeat-x;
    transform: translateY(-4px);
}

.menu-item__price {
    font-family: var(--f-display);
    font-size: 22px;
    letter-spacing: .04em;
    color: var(--c-accent);
    white-space: nowrap;
}

.menu-item__sub {
    display: block;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--c-beige);
}

.menu-item__text {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--c-muted);
}

.menu-item__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }

.tag {
    padding: 4px 12px;
    border: 1px solid var(--c-line);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--c-beige);
}

.section--light .tag { border-color: var(--c-line-dark); color: #7a7a7a; }
.section--light .menu-item__name { color: #111; }
.section--light .menu-item__text { color: #6a6a6a; }
.section--light .menu-item__dots { background-image: linear-gradient(to right, rgba(0,0,0,.18) 45%, transparent 0%); }

/* Menü kategori sekmeleri */
.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 64px;
}

.menu-tab {
    padding: 13px 30px;
    border: 1px solid var(--c-line);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--c-text);
    transition: all .35s var(--ease);
}

.menu-tab:hover { color: #fff; border-color: rgba(255, 255, 255, .5); }

.menu-tab.is-active {
    background: var(--c-accent);
    border-color: var(--c-accent);
    color: #fff;
}

.menu-panel { display: none; }
.menu-panel.is-active { display: block; animation: fadeUp .6s var(--ease-out); }

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

/* İmza tabak kartı (büyük görselli) */
.dish-card { position: relative; overflow: hidden; }

.dish-card__media { position: relative; overflow: hidden; aspect-ratio: 3 / 4; }

.dish-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease-out);
}

.dish-card:hover .dish-card__media img { transform: scale(1.07); }

.dish-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .9), transparent 62%);
}

.dish-card__body {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 34px 30px;
    z-index: 2;
}

.dish-card__price {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 2;
    padding: 9px 16px;
    background: var(--c-accent);
    font-family: var(--f-display);
    font-size: 16px;
    letter-spacing: .04em;
    color: #fff;
}

.dish-card__title {
    margin: 0 0 10px;
    font-family: var(--f-display);
    font-size: 24px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
}

.dish-card__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .74);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .55s var(--ease-out), opacity .45s var(--ease), margin-top .55s var(--ease-out);
}

.dish-card:hover .dish-card__text { max-height: 130px; opacity: 1; margin-top: 4px; }

/* --------------------------------------------------------------------------
   12. Rezervasyon formu
   -------------------------------------------------------------------------- */
.reservation {
    position: relative;
    padding: 130px 0;
    overflow: hidden;
}

.reservation__bg { position: absolute; inset: 0; }
.reservation__bg img { width: 100%; height: 100%; object-fit: cover; }
.reservation__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .74);
}

.reservation__inner { position: relative; z-index: 2; }

.res-form {
    max-width: 980px;
    margin: 0 auto;
    padding: 56px 54px;
    background: rgba(10, 10, 10, .82);
    border: 1px solid var(--c-line);
    backdrop-filter: blur(6px);
}

.res-form__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.field { display: flex; flex-direction: column; gap: 9px; }

.field--full { grid-column: 1 / -1; }

.field label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--c-beige);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 15px 16px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--c-line);
    color: #fff;
    font-size: 14.5px;
    transition: border-color .3s var(--ease), background-color .3s var(--ease);
}

.field textarea { min-height: 120px; resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--c-accent);
    background: rgba(255, 255, 255, .07);
}

.field input::placeholder,
.field textarea::placeholder { color: rgba(255, 255, 255, .32); }

.field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%23ef2853' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 11px;
    padding-right: 40px;
}

.field select option { background: #111; color: #fff; }

.field input[type="date"],
.field input[type="time"] { color-scheme: dark; }

.form-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 32px;
}

.form-note {
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--c-muted);
    max-width: 420px;
}

/* Form geri bildirimi */
.form-msg {
    display: none;
    margin-top: 22px;
    padding: 15px 20px;
    border-left: 2px solid var(--c-accent);
    background: rgba(239, 40, 83, .08);
    font-size: 14px;
}

.form-msg.is-visible { display: block; animation: fadeUp .45s var(--ease-out); }
.form-msg.is-ok { border-color: #3ea76a; background: rgba(62, 167, 106, .1); }

/* Açık zeminde form */
.section--light .field label { color: #8a8a8a; }
.section--light .field input,
.section--light .field select,
.section--light .field textarea {
    background: #fff;
    border-color: rgba(0, 0, 0, .14);
    color: #111;
}
.section--light .field input::placeholder,
.section--light .field textarea::placeholder { color: #b0b0b0; }

/* --------------------------------------------------------------------------
   13. Blog
   -------------------------------------------------------------------------- */
.post-card { position: relative; }

.post-card__media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; margin-bottom: 26px; }

.post-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease-out);
}

.post-card:hover .post-card__media img { transform: scale(1.07); }

.post-card__date {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    padding: 14px 18px;
    background: var(--c-accent);
    text-align: center;
    line-height: 1.1;
}

.post-card__date strong {
    display: block;
    font-family: var(--f-display);
    font-size: 24px;
    color: #fff;
}

.post-card__date span {
    display: block;
    margin-top: 3px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .88);
}

.post-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--c-accent);
}

.post-card__title {
    margin: 0 0 16px;
    font-family: var(--f-display);
    font-size: 22px;
    line-height: 1.35;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #fff;
    transition: color .35s var(--ease);
}

.post-card:hover .post-card__title { color: var(--c-accent); }

.post-card__excerpt {
    margin: 0 0 22px;
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--c-muted);
}

/* Yazı detayı */
.post-body {
    font-size: 16.5px;
    line-height: 1.9;
    color: var(--c-text);
}

.post-body h2 {
    margin: 48px 0 20px;
    font-size: clamp(26px, 3vw, 38px);
}

.post-body h3 { margin: 38px 0 16px; font-size: clamp(22px, 2.4vw, 30px); }

.post-body img { margin: 34px 0; }

.post-body blockquote {
    margin: 40px 0;
    padding: 30px 34px;
    border-left: 2px solid var(--c-accent);
    background: var(--c-bg-alt);
    font-family: var(--f-display);
    font-size: 20px;
    line-height: 1.6;
    color: #fff;
}

.post-body ul, .post-body ol { margin: 0 0 1.4em 1.2em; }
.post-body ul li { list-style: disc; margin-bottom: 10px; }
.post-body ol li { list-style: decimal; margin-bottom: 10px; }
.post-body a { color: var(--c-accent); text-decoration: underline; text-underline-offset: 4px; }

.post-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: 70px;
    padding-top: 34px;
    border-top: 1px solid var(--c-line);
}

/* --------------------------------------------------------------------------
   14. Galeri
   -------------------------------------------------------------------------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.gallery-grid--masonry { grid-auto-rows: 12px; }

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

.gallery-item--tall { aspect-ratio: 3 / 4; }
.gallery-item--wide { aspect-ratio: 4 / 3; }

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

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

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    background: rgba(239, 40, 83, .82);
    text-align: center;
    opacity: 0;
    transition: opacity .45s var(--ease);
}

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

.gallery-item__overlay strong {
    font-family: var(--f-display);
    font-size: 20px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
}

.gallery-item__overlay span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .85);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 950;
    display: grid;
    place-items: center;
    padding: 60px 30px;
    background: rgba(0, 0, 0, .95);
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s var(--ease), visibility .4s;
}

.lightbox.is-open { opacity: 1; visibility: visible; }

.lightbox img {
    max-width: 100%;
    max-height: 84vh;
    object-fit: contain;
    transform: scale(.94);
    transition: transform .5s var(--ease-out);
}

.lightbox.is-open img { transform: scale(1); }

.lightbox__caption {
    margin-top: 18px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--c-beige);
}

.lightbox__close,
.lightbox__nav {
    position: absolute;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    transition: background-color .3s var(--ease), border-color .3s var(--ease);
}

.lightbox__close:hover,
.lightbox__nav:hover { background: var(--c-accent); border-color: var(--c-accent); }

.lightbox__close { top: 28px; right: 28px; font-size: 22px; line-height: 1; }
.lightbox__nav--prev { left: 28px; top: 50%; margin-top: -26px; }
.lightbox__nav--next { right: 28px; top: 50%; margin-top: -26px; }

/* --------------------------------------------------------------------------
   15. Parallax CTA
   -------------------------------------------------------------------------- */
.cta {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 560px;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

.cta__bg {
    position: absolute;
    top: -12%;
    left: 0;
    width: 100%;
    height: 124%;
    will-change: transform;
}

.cta__bg img { width: 100%; height: 100%; object-fit: cover; }

.cta__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .68);
}

.cta__inner { position: relative; z-index: 2; max-width: 900px; padding: 0 var(--gutter); }

.cta__inner h2 { margin-bottom: 40px; }

/* --------------------------------------------------------------------------
   16. Marquee (kayan yazı şeridi)
   -------------------------------------------------------------------------- */
.marquee {
    position: relative;
    padding: 42px 0;
    background: var(--c-accent);
    overflow: hidden;
    white-space: nowrap;
}

.marquee--dark { background: var(--c-bg-alt); }
.marquee--outline { background: transparent; border-block: 1px solid var(--c-line); }

.marquee__track {
    display: inline-flex;
    align-items: center;
    gap: 60px;
    animation: marquee 28s linear infinite;
}

.marquee:hover .marquee__track { animation-play-state: paused; }

.marquee__item {
    display: inline-flex;
    align-items: center;
    gap: 60px;
    font-family: var(--f-display);
    font-size: clamp(26px, 3vw, 42px);
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
}

.marquee--outline .marquee__item {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .4);
}

.marquee__item i {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: currentColor;
    transform: rotate(45deg);
    -webkit-text-stroke: 0;
}

.marquee--outline .marquee__item i { background: var(--c-accent); }

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   17. Yatay kaydırmalı slider (öne çıkanlar)
   -------------------------------------------------------------------------- */
.carousel { position: relative; }

.carousel__viewport { overflow: hidden; }

.carousel__track {
    display: flex;
    gap: 30px;
    transition: transform .7s var(--ease-out);
    will-change: transform;
}

.carousel__slide { flex: 0 0 calc((100% - 90px) / 4); }

.carousel__nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
}

.carousel__btn {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border: 1px solid var(--c-line);
    color: #fff;
    transition: background-color .35s var(--ease), border-color .35s var(--ease), opacity .3s;
}

.carousel__btn:hover { background: var(--c-accent); border-color: var(--c-accent); }
.carousel__btn[disabled] { opacity: .3; pointer-events: none; }
.carousel__btn svg { width: 16px; height: 12px; }

/* --------------------------------------------------------------------------
   18. Sayaçlar / istatistik
   -------------------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }

.stat__value {
    display: block;
    font-family: var(--f-display);
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1;
    color: var(--c-accent);
}

.stat__label {
    display: block;
    margin-top: 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--c-beige);
}

/* Değer kutuları */
.value-card {
    padding: 40px 34px;
    border: 1px solid var(--c-line);
    transition: background-color .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease-out);
}

.value-card:hover {
    background: var(--c-bg-alt);
    border-color: var(--c-accent);
    transform: translateY(-6px);
}

.value-card h4 {
    margin-bottom: 14px;
    font-family: var(--f-display);
    font-size: 20px;
    letter-spacing: .1em;
}

.value-card p { margin: 0; font-size: 14.5px; line-height: 1.75; color: var(--c-muted); }

/* Ekip */
.team-card__media { position: relative; overflow: hidden; aspect-ratio: 3 / 4; margin-bottom: 24px; }
.team-card__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); transition: transform 1.1s var(--ease-out), filter .6s var(--ease); }
.team-card:hover .team-card__media img { transform: scale(1.06); filter: grayscale(0); }
.team-card h4 { margin-bottom: 6px; font-family: var(--f-display); font-size: 22px; letter-spacing: .08em; }
.team-card__role { display: block; margin-bottom: 14px; font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--c-accent); }
.team-card p { margin: 0; font-size: 14.5px; color: var(--c-muted); }

/* --------------------------------------------------------------------------
   19. İletişim
   -------------------------------------------------------------------------- */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }

.info-card { padding: 42px 36px; border: 1px solid var(--c-line); text-align: center; }

.info-card__icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 22px;
    border: 1px solid var(--c-accent);
    color: var(--c-accent);
}

.info-card__icon svg { width: 22px; height: 22px; fill: currentColor; }

.info-card h4 {
    margin-bottom: 14px;
    font-family: var(--f-display);
    font-size: 19px;
    letter-spacing: .12em;
}

.info-card p, .info-card a { font-size: 14.5px; line-height: 1.85; color: var(--c-muted); }
.info-card a:hover { color: var(--c-accent); }

.hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 13px 0;
    border-bottom: 1px dashed var(--c-line);
    font-size: 14.5px;
}

.hours-list li:last-child { border-bottom: 0; }
.hours-list strong { color: #fff; font-weight: 500; }
.hours-list span { color: var(--c-accent); font-weight: 600; }

.map-embed { position: relative; width: 100%; aspect-ratio: 16 / 7; background: var(--c-bg-alt); filter: grayscale(1) contrast(1.15); }
.map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* --------------------------------------------------------------------------
   20. Instagram şeridi
   -------------------------------------------------------------------------- */
.insta { position: relative; }

.insta__grid { display: grid; grid-template-columns: repeat(6, 1fr); }

.insta__item { position: relative; aspect-ratio: 1 / 1; overflow: hidden; }

.insta__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }

.insta__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(239, 40, 83, .72);
    opacity: 0;
    transition: opacity .4s var(--ease);
}

.insta__item:hover img { transform: scale(1.09); }
.insta__item:hover::after { opacity: 1; }

.insta__handle {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    transform: translate(-50%, -50%);
    padding: 20px 40px;
    background: var(--c-bg);
    font-family: var(--f-display);
    font-size: clamp(18px, 2vw, 26px);
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
    pointer-events: none;
}

/* --------------------------------------------------------------------------
   21. Footer
   -------------------------------------------------------------------------- */
.footer { background: var(--c-bg-alt); padding: 90px 0 0; }

.footer__top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer__brand { margin-bottom: 24px; }
.footer__brand img { max-height: 110px; width: auto; }

.footer p, .footer li { font-size: 14.5px; line-height: 1.85; color: var(--c-muted); }

.footer h5 {
    margin-bottom: 24px;
    font-family: var(--f-display);
    font-size: 17px;
    font-weight: 400;
    letter-spacing: .14em;
    color: #fff;
}

.footer__links li { margin-bottom: 10px; }
.footer__links a:hover { color: var(--c-accent); padding-left: 6px; }
.footer__links a { display: inline-block; transition: color .3s var(--ease), padding-left .3s var(--ease); }

.socials { display: flex; gap: 12px; margin-top: 26px; }

.socials a {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--c-line);
    color: #fff;
    transition: background-color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease-out);
}

.socials a:hover { background: var(--c-accent); border-color: var(--c-accent); transform: translateY(-4px); }
.socials svg { width: 16px; height: 16px; fill: currentColor; }

.footer__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 28px 0;
    border-top: 1px solid var(--c-line);
    font-size: 13px;
    color: var(--c-muted);
}

.footer__bottom a:hover { color: var(--c-accent); }

/* Yukarı çık */
.to-top {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 800;
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    background: var(--c-accent);
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: opacity .4s var(--ease), visibility .4s, transform .4s var(--ease-out), background-color .3s;
}

.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: #fff; color: var(--c-accent); }
.to-top svg { width: 14px; height: 14px; }

/* WhatsApp hızlı erişim */
.wa-float {
    position: fixed;
    left: 28px;
    bottom: 28px;
    z-index: 800;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    box-shadow: 0 10px 30px rgba(37, 211, 102, .35);
    transition: transform .35s var(--ease-out);
}

.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 26px; height: 26px; fill: currentColor; }

/* --------------------------------------------------------------------------
   22. Animasyon yardımcıları
   -------------------------------------------------------------------------- */

/* Scroll reveal — JS .is-in sınıfı ekler */
[data-anim] {
    opacity: 0;
    transition: opacity .9s var(--ease-out), transform .9s var(--ease-out), clip-path 1.1s var(--ease-out);
    transition-delay: var(--anim-delay, 0s);
}

[data-anim="fade"] { }
[data-anim="up"] { transform: translateY(46px); }
[data-anim="down"] { transform: translateY(-38px); }
[data-anim="left"] { transform: translateX(-52px); }
[data-anim="right"] { transform: translateX(52px); }
[data-anim="zoom"] { transform: scale(.92); }

[data-anim="mask"] {
    opacity: 1;
    clip-path: inset(0 0 100% 0);
}

[data-anim="mask-x"] {
    opacity: 1;
    clip-path: inset(0 100% 0 0);
}

[data-anim].is-in {
    opacity: 1;
    transform: none;
    clip-path: inset(0 0 0 0);
}

/* Görsel maskeli açılış — img sarmalayıcı */
.reveal-img { position: relative; overflow: hidden; }

.reveal-img::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: var(--c-accent);
    transform: scaleX(1);
    transform-origin: left center;
}

.reveal-img img { transform: scale(1.18); transition: transform 1.4s var(--ease-out); }

.reveal-img.is-in::before {
    animation: revealWipe 1.2s var(--ease-out) forwards;
}

.reveal-img.is-in img { transform: scale(1); }

@keyframes revealWipe {
    0% { transform: scaleX(0); transform-origin: left center; }
    45% { transform: scaleX(1); transform-origin: left center; }
    55% { transform: scaleX(1); transform-origin: right center; }
    100% { transform: scaleX(0); transform-origin: right center; }
}

/* Başlık satır satır açılış */
.split-line { display: block; overflow: hidden; }

.split-line > span {
    display: block;
    transform: translateY(110%);
    transition: transform 1s var(--ease-out);
    transition-delay: var(--line-delay, 0s);
}

.is-in .split-line > span,
.split-line.is-in > span { transform: none; }

/* Parallax katmanı */
[data-parallax] { will-change: transform; }

/* Hover'da yavaş kayan görsel */
.tilt { transition: transform .6s var(--ease-out); will-change: transform; }

/* Ayırıcı süs */
.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0 auto 20px;
    color: var(--c-accent);
}

.ornament::before,
.ornament::after {
    content: "";
    width: 46px;
    height: 1px;
    background: currentColor;
    opacity: .55;
}

.ornament i {
    width: 7px;
    height: 7px;
    background: currentColor;
    transform: rotate(45deg);
}

/* Hareket azaltma tercihi */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
    [data-anim] { opacity: 1 !important; transform: none !important; clip-path: none !important; }
    .split-line > span { transform: none !important; }
    .reveal-img::before { display: none; }
    .reveal-img img { transform: none !important; }
}

/* --------------------------------------------------------------------------
   23. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1280px) {
    .nav__list { gap: 26px; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .carousel__slide { flex-basis: calc((100% - 60px) / 3); }
    .insta__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
    :root { --header-h: 84px; --header-h-sticky: 70px; }

    .nav, .header__phone { display: none; }
    .burger { display: flex; }

    .section { padding: 84px 0; }
    .section--lg { padding: 100px 0; }

    .split { grid-template-columns: 1fr; gap: 48px; }
    .split--reverse .split__media { order: 0; }
    .split__body { max-width: none; }

    .menu-grid { grid-template-columns: 1fr; gap: 40px; }
    .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .info-grid { grid-template-columns: 1fr; }
    .stats { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
    .carousel__slide { flex-basis: calc((100% - 30px) / 2); }

    .footer__top { grid-template-columns: repeat(2, 1fr); gap: 44px; }

    .res-form { padding: 40px 28px; }
    .res-form__grid { grid-template-columns: repeat(2, 1fr); }

    .badge-year { width: 120px; height: 120px; right: -12px; bottom: -12px; }
    .badge-year strong { font-size: 30px; }
}

@media (max-width: 640px) {
    :root { --gutter: 20px; }

    .section { padding: 64px 0; }
    .section-head { margin-bottom: 44px; }

    /* Dar ekranda başlıktaki rezervasyon butonu hamburgerle birlikte taşıyor;
       aynı bağlantı mobil menünün içinde zaten var. */
    .header__actions > .btn { display: none; }
    .header__actions { gap: 14px; }

    .hero__inner { padding-bottom: 150px; }
    .hero__content p { font-size: 15px; }
    .hero__arrows { display: none; }
    .hero__dots { bottom: 90px; }
    .hero__scroll { display: none; }

    .page-hero { min-height: 46vh; padding-bottom: 54px; }

    .cat-grid { grid-template-columns: 1fr; }
    .cat-card { min-height: 420px; padding: 40px 26px; }

    .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .carousel__slide { flex-basis: 100%; }
    .insta__grid { grid-template-columns: repeat(2, 1fr); }

    .menu-item { grid-template-columns: 92px 1fr; gap: 18px; }
    .menu-item__media { width: 92px; height: 92px; }
    .menu-item__name { font-size: 18px; }
    .menu-item__price { font-size: 18px; }
    .menu-tabs { gap: 8px; margin-bottom: 40px; }
    .menu-tab { padding: 11px 20px; font-size: 11px; }

    .res-form__grid { grid-template-columns: 1fr; }
    .form-actions { flex-direction: column; align-items: stretch; }
    .form-actions .btn { width: 100%; }

    .footer__top { grid-template-columns: 1fr; gap: 36px; }
    .footer__bottom { flex-direction: column; text-align: center; }

    .split__media--stack { gap: 14px; }
    .split__media--stack img:nth-child(2) { margin-top: 30px; }
    .badge-year { display: none; }

    .to-top { right: 18px; bottom: 18px; width: 44px; height: 44px; }
    .wa-float { left: 18px; bottom: 18px; width: 48px; height: 48px; }

    .lightbox__nav { width: 42px; height: 42px; }
    .lightbox__nav--prev { left: 12px; }
    .lightbox__nav--next { right: 12px; }
}
