/* ===========================================================================
   Uma Alaçatı — Ana Stil
   1. Token'lar  2. Reset/Temel  3. Tipografi  4. Yerleşim  5. Butonlar
   6. Header/Nav 7. Mobil menü   8. Hero       9. Bölümler/Kartlar
   10. Galeri/Lightbox  11. Form  12. Footer    13. Animasyon  14. Responsive
   =========================================================================== */

/* ---- 1. Token'lar -------------------------------------------------------- */
:root {
    /* Renkler */
    --c-cream: #EFE8DA;
    --c-cream-2: #F6F1E7;
    --c-sand: #E3D8C3;
    --c-charcoal: #1A1815;
    --c-charcoal-2: #33302B;
    --c-muted: #6B655B;
    --c-bronze: #A6763C;
    --c-bronze-deep: #8A5E2C;
    --c-teal: #3E6B62;
    --c-white: #FFFFFF;
    --c-overlay: rgba(26, 24, 21, .45);
    --c-overlay-soft: rgba(26, 24, 21, .28);
    --c-line: rgba(26, 24, 21, .14);
    --c-line-light: rgba(246, 241, 231, .22);

    /* Tipografi */
 
    --font-sans: 'Outfit', system-ui, -apple-system, Segoe UI, sans-serif;
    --font-body: 'Jost', system-ui, -apple-system, Segoe UI, sans-serif;

    --fs-hero: clamp(3rem, 8vw, 6.5rem);
    --fs-h1: clamp(2.4rem, 5vw, 4rem);
    --fs-h2: clamp(1.9rem, 3.5vw, 2.8rem);
    --fs-h3: 1.45rem;
    --fs-lead: 1.2rem;
    --fs-body: 1.0625rem;
    --fs-small: .875rem;
    --fs-eyebrow: .78rem;

    /* Aralık */
    --s-1: .5rem;  --s-2: 1rem;  --s-3: 1.5rem;  --s-4: 2rem;
    --s-5: 3rem;   --s-6: 4rem;  --s-7: 6rem;    --s-8: 8rem;

    --maxw: 1240px;
    --maxw-text: 760px;
    --header-h: 84px;
    --radius: 2px;
    --shadow-soft: 0 18px 50px rgba(26, 24, 21, .12);
    --shadow-card: 0 14px 40px rgba(26, 24, 21, .10);
    --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---- 2. Reset / Temel ---------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: 300;
    line-height: 1.7;
    color: var(--c-charcoal);
    background: var(--c-cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

.skip-link {
    position: absolute; left: -999px; top: 0; z-index: 2000;
    background: var(--c-charcoal); color: var(--c-cream);
    padding: .75rem 1.25rem; border-radius: var(--radius);
}
.skip-link:focus { left: 1rem; top: 1rem; }

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

/* ---- 3. Tipografi -------------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.12; letter-spacing: -.01em; }
p { max-width: 68ch; }

.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--fs-eyebrow);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: var(--c-bronze);
    margin-bottom: var(--s-2);
}
.eyebrow--light { color: var(--c-cream); opacity: .85; }

.section-title { font-size: var(--fs-h2); margin-bottom: var(--s-3); }
.lead { font-size: var(--fs-lead); color: var(--c-charcoal-2); font-weight: 300; }
.muted { color: var(--c-muted); }

/* Süslü ince ayraç */
.rule { width: 60px; height: 1px; background: var(--c-bronze); margin: var(--s-3) 0; border: 0; }
.rule--center { margin-left: auto; margin-right: auto; }

/* ---- 4. Yerleşim --------------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--s-4); }
.section { padding: var(--s-8) 0; }
.section--sm { padding: var(--s-6) 0; }
.section--cream-2 { background: var(--c-cream-2); }
.section--sand { background: var(--c-sand); }
.text-center { text-align: center; }
.narrow { max-width: var(--maxw-text); margin-left: auto; margin-right: auto; }
.narrow p { margin-left: auto; margin-right: auto; }

.grid { display: grid; gap: var(--s-4); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

/* İki kolonlu görsel + metin */
.feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-6);
    align-items: center;
}
.feature--reverse .feature__media { order: 2; }
.feature__media img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-soft); aspect-ratio: 4 / 3; }
/* Dikey (portre) görsel için */
.feature__media--portrait { max-width: 440px; margin-inline: auto; }
.feature__media--portrait img { aspect-ratio: 2 / 3; }
.feature__body { max-width: 520px; }

/* ---- 5. Butonlar --------------------------------------------------------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    font-family: var(--font-body); font-size: .82rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: .14em;
    padding: 1rem 2.2rem; border: 1px solid transparent; border-radius: var(--radius);
    transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
    white-space: nowrap;
}
.btn--sm { padding: .7rem 1.4rem; font-size: .74rem; }
.btn--solid { background: var(--c-charcoal); color: var(--c-cream); }
.btn--solid:hover { background: var(--c-bronze); color: var(--c-white); }
.btn--outline { background: transparent; border-color: currentColor; color: var(--c-cream); }
.btn--outline:hover { background: var(--c-bronze); border-color: var(--c-bronze); color: var(--c-white); }
.btn--dark-outline { background: transparent; border-color: var(--c-charcoal); color: var(--c-charcoal); }
.btn--dark-outline:hover { background: var(--c-charcoal); color: var(--c-cream); }

/* Ok bağlantısı */
.arrow-link {
    display: inline-flex; align-items: center; gap: .5rem;
    font-size: .8rem; font-weight: 500; text-transform: uppercase; letter-spacing: .14em;
    color: var(--c-bronze);
}
.arrow-link span { transition: transform .3s var(--ease); }
.arrow-link:hover { color: var(--c-bronze-deep); }
.arrow-link:hover span { transform: translateX(5px); }
.arrow-link--light { color: var(--c-cream); }
.arrow-link--light:hover { color: var(--c-white); }

/* ---- 6. Header / Nav ----------------------------------------------------- */
.site-header {
    position: fixed; top: 0; left: 0; width: 100%; height: var(--header-h); z-index: 1000;
    display: flex; align-items: center;
    transition: background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.header__inner {
    width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--s-4);
    display: flex; align-items: center; justify-content: space-between; gap: var(--s-3);
}
.header__logo { display: flex; align-items: center; gap: .65rem; }
.header__logo .logo { width: auto; height: 48px; transition: opacity .4s var(--ease); }
.header__wordmark {
    font-family: var(--font-display); font-size: 1.5rem; font-weight: 500;
    letter-spacing: .04em; line-height: 1; transition: color .4s var(--ease);
}
.header__wordmark span { font-style: italic; }

.header__nav ul { display: flex; align-items: center; gap: var(--s-3); }
.header__nav a {
    font-size: .8rem; font-weight: 400; text-transform: uppercase; letter-spacing: .1em;
    padding: .4rem 0; position: relative; transition: color .3s var(--ease);
}
.header__nav a::after {
    content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
    background: var(--c-bronze); transition: width .3s var(--ease);
}
.header__nav a:hover::after, .header__nav a.is-current::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: var(--s-2); }

/* Dil seçimi (dropdown) */
.lang-switch { position: relative; }
.lang-switch__btn { display: flex; align-items: center; gap: .35rem; font-size: .78rem; font-weight: 500; text-transform: uppercase; letter-spacing: .08em; padding: .4rem .3rem; color: inherit; transition: color .3s var(--ease); }
.lang-switch__chev { transition: transform .3s var(--ease); }
.lang-switch.open .lang-switch__chev { transform: rotate(180deg); }
.header--overlay .lang-switch__btn { color: var(--c-cream); }
.header--solid .lang-switch__btn,
.site-header.is-scrolled .lang-switch__btn { color: var(--c-charcoal); }
.lang-switch__menu {
    position: absolute; top: calc(100% + 12px); right: 0; min-width: 156px;
    background: var(--c-cream); border: 1px solid var(--c-line); border-radius: var(--radius);
    box-shadow: var(--shadow-card); padding: .4rem 0; list-style: none;
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
    z-index: 1001;
}
.lang-switch.open .lang-switch__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-switch__menu a { display: block; padding: .55rem 1.2rem; font-size: .85rem; color: var(--c-charcoal); letter-spacing: .03em; transition: background .2s var(--ease), color .2s var(--ease); }
.lang-switch__menu a:hover { background: var(--c-cream-2); color: var(--c-bronze); }
.lang-switch__menu a.is-current { color: var(--c-bronze); font-weight: 500; }

/* Mobil menü dil satırı */
.mobile-menu__lang { display: flex; gap: var(--s-1); align-items: center; }
.mobile-menu__lang a { font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--c-muted); padding: .25rem .55rem; transition: color .3s var(--ease); }
.mobile-menu__lang a.is-current { color: var(--c-bronze); border-bottom: 1px solid var(--c-bronze); }

/* Overlay (hero üzerinde, sayfa tepesinde) */
.header--overlay { background: transparent; }
.header--overlay .header__wordmark,
.header--overlay .header__nav a { color: var(--c-cream); }
.header--overlay .logo--dark { opacity: 0; position: absolute; }
.header--overlay .logo--light { opacity: 1; }

/* Solid (iç sayfa veya kaydırılmış) */
.header--solid,
.site-header.is-scrolled {
    background: var(--c-cream);
    box-shadow: 0 1px 0 var(--c-line), 0 8px 30px rgba(26, 24, 21, .06);
}
.header--solid .header__wordmark,
.site-header.is-scrolled .header__wordmark,
.header--solid .header__nav a,
.site-header.is-scrolled .header__nav a { color: var(--c-charcoal); }
.header--solid .logo--light,
.site-header.is-scrolled .logo--light { opacity: 0; position: absolute; }
.header--solid .logo--dark,
.site-header.is-scrolled .logo--dark { opacity: 1; position: static; }
.site-header.is-scrolled .header__logo .logo { width: auto; height: 42px; }

/* Hamburger */
.header__toggle { display: none; width: 30px; height: 22px; position: relative; }
.header__toggle span {
    position: absolute; left: 0; width: 100%; height: 1.5px; background: currentColor;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.header__toggle span:nth-child(1) { top: 0; }
.header__toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.header__toggle span:nth-child(3) { bottom: 0; }
.header--overlay .header__toggle { color: var(--c-cream); }
.header--solid .header__toggle,
.site-header.is-scrolled .header__toggle { color: var(--c-charcoal); }

/* ---- 7. Mobil menü ------------------------------------------------------- */
.mobile-menu {
    position: fixed; inset: 0; z-index: 1100; background: var(--c-cream);
    display: flex; flex-direction: column; justify-content: flex-start; align-items: stretch;
    padding: clamp(86px, 15vh, 130px) clamp(28px, 8vw, 56px) var(--s-4);
    opacity: 0; visibility: hidden; transform: translateY(-12px);
    transition: opacity .4s var(--ease), transform .4s var(--ease), visibility .4s;
}
body.menu-open { overflow: hidden; }
body.menu-open .mobile-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu__close { position: absolute; top: 24px; right: 28px; display: inline-flex; align-items: center; gap: .4rem; font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; line-height: 1; color: var(--c-charcoal); }
.mobile-menu__close span { font-size: 1.4rem; line-height: 0; }
.mobile-menu__nav ul { display: flex; flex-direction: column; align-items: flex-start; gap: var(--s-3); text-align: left; }
.mobile-menu__nav a {
    font-family: var(--font-display); font-size: 1.5rem; color: var(--c-charcoal);
    opacity: 0; transform: translateY(14px);
}
.mobile-menu__nav a.is-current { color: var(--c-bronze); font-style: italic; }
body.menu-open .mobile-menu__nav li a {
    animation: menuItemIn .5s var(--ease) forwards;
    animation-delay: calc(.12s + var(--i) * .05s);
}
@keyframes menuItemIn { to { opacity: 1; transform: translateY(0); } }
.mobile-menu__foot { position: absolute; right: clamp(28px, 8vw, 56px); bottom: 40px; display: flex; flex-direction: column; align-items: flex-end; gap: var(--s-2); text-align: right; }
.mobile-menu__phone { font-size: 1.1rem; letter-spacing: .05em; }
.mobile-menu__lang { display: flex; gap: var(--s-2); }
.mobile-menu__social { display: flex; justify-content: flex-end; gap: var(--s-3); font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--c-muted); }

/* ---- 8. Hero ------------------------------------------------------------- */
.hero {
    position: relative; min-height: 100svh; display: flex; align-items: flex-end; justify-content: flex-start;
    text-align: left; color: var(--c-cream); overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; }
.hero--kenburns .hero__media img { animation: kenburns 22s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.1); } }
/* Metin alt-sağ köşede (denizin üzerinde) okunsun diye katmanlı koyu degrade */
.hero::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(26,24,21,.30) 0%, rgba(26,24,21,.18) 35%, rgba(26,24,21,.62) 100%); }
.hero__inner {
    width: 100%; max-width: 600px; margin-left: auto;   /* geniş ekranda sağa, denizin üzerine */
    padding: 0 clamp(var(--s-4), 7vw, var(--s-6)) clamp(112px, 17vh, 168px);
}
.hero__title { font-size: var(--fs-hero); font-weight: 500; line-height: 1.04; margin: var(--s-2) 0 var(--s-3); }
.hero__sub { font-size: 1.12rem; font-weight: 300; max-width: 430px; margin: 0 0 var(--s-4); color: rgba(246,241,231,.92); }
.hero__cta { display: flex; flex-direction: column; align-items: flex-start; gap: var(--s-3); }
.hero__cta .btn { justify-content: space-between; gap: var(--s-4); min-width: 252px; }
.hero__cta .btn svg { width: 18px; height: 18px; flex: none; }

/* Aşağı kaydır göstergesi (fare ikonu + etiket) */
.hero__scroll {
    position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: .5rem; color: var(--c-cream);
}
.hero__scroll-icon { width: 22px; height: 34px; animation: bobY 2s ease-in-out infinite; }
.hero__scroll-label { font-family: var(--font-sans); font-size: .66rem; font-weight: 500; text-transform: uppercase; letter-spacing: .2em; color: rgba(246,241,231,.85); }
@keyframes bobY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* Kompakt sayfa başlığı (iç sayfalar) */
.page-hero {
    position: relative; min-height: 62vh; display: flex; align-items: center; justify-content: center;
    text-align: center; color: var(--c-cream); overflow: hidden;
}
.page-hero__media { position: absolute; inset: 0; z-index: -2; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ''; position: absolute; inset: 0; z-index: -1; background: var(--c-overlay); }
.page-hero__inner { padding: calc(var(--header-h) + var(--s-4)) var(--s-4) var(--s-4); max-width: 760px; }
.page-hero__title { font-size: var(--fs-h1); margin-top: var(--s-1); }
.page-hero__sub { font-size: 1.1rem; font-weight: 300; margin-top: var(--s-2); color: rgba(246,241,231,.9); }

/* ---- 9. Bölümler / Kartlar ----------------------------------------------- */
.section-head { max-width: var(--maxw-text); margin: 0 auto var(--s-6); text-align: center; }
.section-head p { margin: 0 auto; }

/* Teaser / içerik kartı */
.card { background: var(--c-cream-2); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.card:hover { transform: translateY(-6px); box-shadow: 0 22px 55px rgba(26,24,21,.16); }
.card__media { overflow: hidden; aspect-ratio: 3 / 2; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: var(--s-4); display: flex; flex-direction: column; gap: var(--s-2); flex: 1; }
.card__title { font-size: var(--fs-h3); }
.card__body p { font-size: .98rem; color: var(--c-charcoal-2); flex: 1; }
.card__body .arrow-link { margin-top: var(--s-1); }

/* Değer / ikon sütunu */
.value { text-align: center; padding: var(--s-3); }
.value__icon { width: 46px; height: 46px; margin: 0 auto var(--s-2); color: var(--c-bronze); }
.value__icon svg { width: 100%; height: 100%; }
.value h3 { font-size: 1.5rem; margin-bottom: var(--s-1); }
.value p { font-size: .98rem; color: var(--c-charcoal-2); margin: 0 auto; }

/* Tam genişlik görsel şerit (alıntılı) */
.band {
    position: relative; min-height: 56vh; display: flex; align-items: center; justify-content: center;
    text-align: center; color: var(--c-cream); overflow: hidden;
}
.band__media { position: absolute; inset: 0; z-index: -2; }
.band__media img { width: 100%; height: 100%; object-fit: cover; }
.band--fixed .band__media img { will-change: transform; }
.band::after { content: ''; position: absolute; inset: 0; z-index: -1; background: var(--c-overlay-soft); }
.band__quote { font-family: var(--font-display); font-style: italic; font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 400; max-width: 760px; padding: 0 var(--s-4); }

/* CTA bandı (charcoal) */
.cta-band { background: var(--c-charcoal); color: var(--c-cream); text-align: center; padding: var(--s-7) var(--s-4); }
.cta-band h2 { font-size: var(--fs-h2); margin-bottom: var(--s-2); }
.cta-band p { color: rgba(246,241,231,.82); max-width: 540px; margin: 0 auto var(--s-4); }
.cta-band .eyebrow { color: var(--c-bronze); }

/* Localar — kaydırmalı slider (otomatik döner) */
.slider { position: relative; }
.slider__viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    cursor: grab;
}
.slider__viewport::-webkit-scrollbar { display: none; }
.slider__viewport.is-dragging { cursor: grabbing; scroll-behavior: auto; scroll-snap-type: none; }
.slider__viewport.is-dragging .loc-card { pointer-events: none; }
.slider__track { display: flex; gap: var(--s-3); padding: var(--s-1) 0; }
.loc-card {
    position: relative; flex: 0 0 auto; width: 300px; max-width: 78vw;
    scroll-snap-align: start; border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-card);
}
.loc-card__media { aspect-ratio: 4 / 5; overflow: hidden; }
.loc-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.loc-card:hover .loc-card__media img { transform: scale(1.06); }
.loc-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26,24,21,0) 38%, rgba(26,24,21,.72) 100%); }
/* Galeri varyantı — isim/etiket yok, sade fotoğraf */
.loc-card--photo { margin: 0; }
.loc-card--photo::after { display: none; }
.loc-card__badge {
    position: absolute; top: var(--s-2); left: var(--s-2); z-index: 2;
    background: var(--c-bronze); color: var(--c-white);
    font-size: .66rem; font-weight: 500; text-transform: uppercase; letter-spacing: .14em;
    padding: .35rem .8rem; border-radius: 2px;
}
.loc-card__body { position: absolute; left: 0; bottom: 0; z-index: 2; padding: var(--s-3); color: var(--c-cream); }
.loc-card__body h3 { font-size: 1.7rem; color: var(--c-cream); margin: 0; }
.loc-card__body p { font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; opacity: .85; margin-top: .25rem; }

.slider__btn {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--c-cream); color: var(--c-charcoal); border: 1px solid var(--c-line);
    box-shadow: var(--shadow-card);
    display: grid; place-items: center; font-size: 1.6rem; line-height: 1;
    transition: background .3s var(--ease), color .3s var(--ease), opacity .3s var(--ease);
}
.slider__btn:hover { background: var(--c-charcoal); color: var(--c-cream); border-color: var(--c-charcoal); }
.slider__prev { left: -10px; }
.slider__next { right: -10px; }
.slider__btn:disabled { opacity: 0; pointer-events: none; }

/* Menü listesi (restoran) */
.menu-group { margin-bottom: var(--s-5); }
.menu-group__title { font-size: 1.8rem; color: var(--c-bronze-deep); margin-bottom: var(--s-3); padding-bottom: var(--s-2); border-bottom: 1px solid var(--c-line); }
.menu-item { display: flex; justify-content: space-between; align-items: baseline; gap: var(--s-2); padding: .7rem 0; border-bottom: 1px dotted var(--c-line); }
.menu-item__name { font-size: 1.05rem; }
.menu-item__name em { display: block; font-style: normal; font-size: .85rem; color: var(--c-muted); margin-top: 2px; }
.menu-item__price { font-family: var(--font-display); font-size: 1.2rem; color: var(--c-charcoal); white-space: nowrap; }

/* Bilgi / olanak listesi */
.spec-list { columns: 2; column-gap: var(--s-5); max-width: 700px; }
.spec-list li { break-inside: avoid; padding: .55rem 0; border-bottom: 1px solid var(--c-line); display: flex; align-items: center; gap: .6rem; }
.spec-list li::before { content: ''; width: 6px; height: 6px; background: var(--c-bronze); border-radius: 50%; flex: none; }

/* Saatler mini blok */
.hours-block { display: inline-grid; gap: .4rem; text-align: left; }
.hours-block li { display: flex; justify-content: space-between; gap: var(--s-4); padding: .35rem 0; border-bottom: 1px solid var(--c-line); }
.hours-block span { font-weight: 400; }
.hours-block em { font-style: normal; color: var(--c-muted); }

/* ---- 10. Galeri / Lightbox ----------------------------------------------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--s-2); }
.gallery a { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 1; display: block; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gallery a:hover img { transform: scale(1.08); }
.gallery a::after { content: ''; position: absolute; inset: 0; background: rgba(26,24,21,0); transition: background .3s var(--ease); }
.gallery a:hover::after { background: rgba(26,24,21,.18); }

/* Galeri teaser (anasayfa) */
.gallery-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-2); }
.gallery-strip a { aspect-ratio: 1; overflow: hidden; border-radius: var(--radius); }
.gallery-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gallery-strip a:hover img { transform: scale(1.07); }

.lightbox {
    position: fixed; inset: 0; z-index: 1200; background: rgba(20,18,16,.92);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__figure { max-width: 90vw; max-height: 86vh; margin: 0; text-align: center; }
.lightbox__img { max-width: 90vw; max-height: 80vh; object-fit: contain; border-radius: var(--radius); }
.lightbox__caption { color: var(--c-cream); font-size: .9rem; margin-top: var(--s-2); letter-spacing: .04em; }
.lightbox__close { position: absolute; top: 22px; right: 30px; font-size: 2.6rem; line-height: 1; color: var(--c-cream); }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); font-size: 3rem; color: var(--c-cream); padding: 0 var(--s-3); opacity: .8; transition: opacity .3s; }
.lightbox__nav:hover { opacity: 1; }
.lightbox__prev { left: 6px; }
.lightbox__next { right: 6px; }

/* Menü popup */
.menu-modal {
    position: fixed; inset: 0; z-index: 1200; background: rgba(20,18,16,.92);
    display: flex; align-items: center; justify-content: center; padding: var(--s-3);
    opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s;
}
.menu-modal.is-open { opacity: 1; visibility: visible; }
.menu-modal__backdrop { position: absolute; inset: 0; cursor: pointer; }
.menu-modal__dialog {
    position: relative; z-index: 1; display: flex; flex-direction: column;
    width: min(920px, 100%); height: min(86vh, 100%);
    background: var(--c-cream); border-radius: var(--radius); overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.menu-modal__head {
    display: flex; align-items: center; gap: var(--s-3);
    padding: .8rem var(--s-3); border-bottom: 1px solid var(--c-line); background: var(--c-white);
}
.menu-modal__title { font-family: var(--font-display); font-size: 1.3rem; color: var(--c-charcoal); margin-right: auto; }
.menu-modal__ext { font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; color: var(--c-bronze-deep); }
.menu-modal__ext:hover { color: var(--c-charcoal); }
.menu-modal__close { font-size: 2rem; line-height: 1; color: var(--c-charcoal-2); padding: 0 .3rem; }
.menu-modal__close:hover { color: var(--c-charcoal); }
.menu-modal__frame { flex: 1; width: 100%; border: 0; background: var(--c-cream); }

/* Beach galeri — dikey (portre) kareler + ince üst-bilgi katmanı */
.gallery--portrait { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: var(--s-3); }
.gallery--portrait a { aspect-ratio: 3 / 4; }
.gallery--portrait a::before {
    content: ''; position: absolute; inset: 0; z-index: 1; opacity: 0;
    background: linear-gradient(180deg, rgba(26,24,21,0) 55%, rgba(26,24,21,.55) 100%);
    transition: opacity .4s var(--ease);
}
.gallery--portrait a:hover::before { opacity: 1; }
.gallery--portrait .gallery__zoom {
    position: absolute; z-index: 2; right: var(--s-2); bottom: var(--s-2);
    width: 38px; height: 38px; display: grid; place-items: center;
    background: rgba(246,241,231,.92); color: var(--c-charcoal); border-radius: 50%;
    opacity: 0; transform: translateY(8px) scale(.9); transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.gallery--portrait a:hover .gallery__zoom { opacity: 1; transform: translateY(0) scale(1); }
.gallery--portrait .gallery__zoom svg { width: 18px; height: 18px; }

/* Galeri filtre */
.gallery-filter { display: flex; flex-wrap: wrap; gap: var(--s-2); justify-content: center; margin-bottom: var(--s-4); }
.gallery-filter button { font-size: .76rem; text-transform: uppercase; letter-spacing: .14em; padding: .5rem 1.1rem; border: 1px solid var(--c-line); border-radius: var(--radius); color: var(--c-charcoal-2); transition: all .3s var(--ease); }
.gallery-filter button.is-active, .gallery-filter button:hover { background: var(--c-charcoal); color: var(--c-cream); border-color: var(--c-charcoal); }

/* ---- 11. Form / İletişim ------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: var(--s-6); align-items: start; }
.contact-info h3 { font-size: 1.6rem; margin-bottom: var(--s-2); }
.contact-info__list { display: grid; gap: var(--s-3); margin: var(--s-3) 0; }
.contact-info__item { display: flex; gap: var(--s-2); }
.contact-info__item .ico { color: var(--c-bronze); flex: none; width: 22px; }
.contact-info__item strong { display: block; font-weight: 500; font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--c-muted); margin-bottom: 2px; }
.contact-social { display: flex; gap: var(--s-2); margin-top: var(--s-3); }
.contact-social a { width: 42px; height: 42px; border: 1px solid var(--c-line); border-radius: 50%; display: grid; place-items: center; color: var(--c-charcoal); transition: all .3s var(--ease); }
.contact-social a:hover { background: var(--c-bronze); border-color: var(--c-bronze); color: var(--c-white); }

.form-card { background: var(--c-cream-2); padding: var(--s-5); border-radius: var(--radius); box-shadow: var(--shadow-card); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }
.field { margin-bottom: var(--s-3); }
.field label { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--c-muted); margin-bottom: .4rem; }
.field input, .field select, .field textarea {
    width: 100%; padding: .85rem 1rem; background: var(--c-white);
    border: 1px solid var(--c-line); border-radius: var(--radius); color: var(--c-charcoal);
    transition: border-color .3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--c-bronze); }
.field textarea { resize: vertical; min-height: 120px; }
.field-error { color: #9c3b2e; font-size: .8rem; margin-top: .35rem; min-height: 1em; display: block; }
.field input.invalid, .field select.invalid, .field textarea.invalid { border-color: #9c3b2e; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-note { font-size: .82rem; color: var(--c-muted); margin-top: var(--s-2); }

/* Bildirim banner */
.banner { padding: var(--s-3) var(--s-4); border-radius: var(--radius); margin-bottom: var(--s-4); font-size: .98rem; display: flex; align-items: center; gap: .6rem; }
.banner--ok { background: rgba(62,107,98,.12); color: #2c5249; border: 1px solid rgba(62,107,98,.3); }
.banner--err { background: rgba(156,59,46,.1); color: #9c3b2e; border: 1px solid rgba(156,59,46,.3); }

/* Harita */
.map-block { margin-top: var(--s-6); }
.map-block__head { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--s-4); flex-wrap: wrap; margin-bottom: var(--s-3); }
.map-block__intro .eyebrow { display: block; margin-bottom: .4rem; }
.map-block__title { font-size: 1.6rem; margin-bottom: .5rem; }
.map-block__addr { display: flex; align-items: center; gap: .5rem; margin: 0; color: var(--c-muted); font-size: .95rem; }
.map-block__addr svg { flex: none; color: var(--c-bronze); }
.map-block__dir { flex: none; }
.map-block__dir svg { transition: transform .35s var(--ease); }
.map-block__dir:hover svg { transform: translateX(3px) rotate(0deg); }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); line-height: 0; }
.map-wrap iframe { width: 100%; height: 460px; border: 0; filter: grayscale(.2) contrast(1.05); transition: filter .4s var(--ease); }
.map-wrap:hover iframe { filter: grayscale(0) contrast(1); }

@media (max-width: 640px) {
    .map-block__head { align-items: stretch; }
    .map-block__dir { width: 100%; }
}

/* ---- 12. Footer ---------------------------------------------------------- */
.site-footer { background: var(--c-charcoal); color: rgba(246,241,231,.8); padding: var(--s-7) 0 var(--s-4); }
.footer__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--s-4); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1.3fr; gap: var(--s-5); }
.footer__logo { width: auto; height: 64px; margin-bottom: var(--s-2); }
.footer__tagline { font-family: var(--font-display); font-size: 1.4rem; font-style: italic; color: var(--c-cream); margin-bottom: var(--s-2); }
.footer__about { font-size: .92rem; }
.footer__heading { font-family: var(--font-body); font-size: .78rem; text-transform: uppercase; letter-spacing: .16em; color: var(--c-cream); margin-bottom: var(--s-3); font-weight: 500; }
.footer__heading--sm { margin-top: var(--s-3); }
.footer__links li { margin-bottom: .6rem; }
.footer__links a, .footer__contact a { font-size: .92rem; }
.footer__links a:hover, .footer__contact a:hover { color: var(--c-bronze); }
.footer__contact p { margin-bottom: .5rem; font-size: .92rem; font-style: normal; }
.footer__hours li { display: flex; flex-direction: column; margin-bottom: .5rem; font-size: .88rem; }
.footer__hours span { color: var(--c-cream); }
.footer__hours em { font-style: normal; color: rgba(246,241,231,.65); }
.footer__social { display: flex; gap: var(--s-2); margin-top: var(--s-2); }
.footer__social a { width: 40px; height: 40px; border: 1px solid var(--c-line-light); border-radius: 50%; display: grid; place-items: center; color: var(--c-cream); transition: all .3s var(--ease); }
.footer__social a:hover { background: var(--c-bronze); border-color: var(--c-bronze); }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-6); padding-top: var(--s-3); border-top: 1px solid var(--c-line-light); font-size: .82rem; color: rgba(246,241,231,.6); }

/* ---- 12b. Sabit iletişim butonları (sol alt) ----------------------------- */
.floating-contact {
    position: fixed;
    left: clamp(14px, 2vw, 26px);
    bottom: clamp(18px, 4vh, 32px);
    z-index: 990;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.floating-contact__btn {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    box-shadow: 0 10px 26px rgba(26, 24, 21, .28);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.floating-contact__btn svg { width: 30px; height: 30px; fill: #fff; }
.floating-contact__btn--wa  { background: #25D366; }
.floating-contact__btn--tel { background: var(--c-bronze); }
.floating-contact__btn:hover,
.floating-contact__btn:focus-visible {
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 16px 36px rgba(26, 24, 21, .34);
}

/* Açılır etiket (tooltip) */
.floating-contact__label {
    position: absolute;
    left: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%) translateX(-8px);
    background: var(--c-charcoal);
    color: var(--c-cream);
    padding: .5rem .85rem;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: .85rem;
    font-weight: 400;
    letter-spacing: .01em;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 8px 22px rgba(26, 24, 21, .22);
    transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.floating-contact__label::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: var(--c-charcoal);
}
.floating-contact__btn:hover .floating-contact__label,
.floating-contact__btn:focus-visible .floating-contact__label {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* WhatsApp nabız efekti */
.floating-contact__btn--wa::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    pointer-events: none;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .5);
    animation: fc-pulse 2.4s var(--ease) infinite;
}
@keyframes fc-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, .45); }
    70%  { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media (prefers-reduced-motion: reduce) {
    .floating-contact__btn--wa::after { animation: none; }
}

/* ---- 13. Scroll-reveal animasyon ----------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .2s; }
[data-reveal][data-delay="3"] { transition-delay: .3s; }

/* ---- 14. Responsive ------------------------------------------------------ */
@media (max-width: 1100px) {
    .header__nav { gap: var(--s-2); }
    .header__nav a { font-size: .72rem; letter-spacing: .06em; }
}
@media (max-width: 992px) {
    :root { --header-h: 72px; }
    /* Mobil header: hamburger SOL (akışta) · logo ORTA (absolute) · dil SAĞ (absolute) */
    .header__nav, .header__cta { display: none; }
    .header__inner { position: relative; }
    .header__toggle { display: flex; align-items: center; }
    .header__logo { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); gap: .45rem; }
    .header__logo .logo { width: auto; height: 38px; }
    .header__wordmark { font-size: 1.25rem; }
    .header__actions { position: absolute; right: var(--s-4); top: 50%; transform: translateY(-50%); display: flex; align-items: center; width: auto; gap: 0; }
    .lang-switch { display: block; }
    .lang-switch__btn { padding: .4rem 0; gap: .25rem; }
    .lang-switch__btn > svg:first-child { display: none; } /* mobilde globe ikonu gizli */
    .feature { grid-template-columns: 1fr; gap: var(--s-4); }
    .feature--reverse .feature__media { order: 0; }
    .contact-grid { grid-template-columns: 1fr; gap: var(--s-5); }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--s-5); }
    .gallery-strip { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
    .section { padding: var(--s-6) 0; }
    .section--sm { padding: var(--s-5) 0; }
    .spec-list { columns: 1; }
    .form-row { grid-template-columns: 1fr; }
    .footer__bottom { justify-content: center; text-align: center; }
    .slider__btn { display: none; } /* mobilde kaydırma ile */
    /* Hero metnini ekranın sağına yasla */
    .hero { text-align: right; }
    .hero__sub { margin-left: auto; margin-right: 0; }
    .hero__cta { align-items: flex-end; }
    .floating-contact { gap: 12px; }
    .floating-contact__btn { width: 52px; height: 52px; }
    .floating-contact__btn svg { width: 27px; height: 27px; }
    .floating-contact__label { display: none; } /* dokunmatikte etiket gizli */
}
@media (max-width: 600px) {
    .footer__grid { grid-template-columns: 1fr; gap: var(--s-4); text-align: center; }
    .footer__brand { display: flex; flex-direction: column; align-items: center; }
    .footer__social { justify-content: center; }
    .footer__hours li { align-items: center; }
    .gallery-strip { grid-template-columns: repeat(2, 1fr); }
    .menu-item { flex-wrap: wrap; }
}
@media (max-width: 480px) {
    .hero__cta { flex-direction: column; width: 100%; }
    .hero__cta .btn { width: 100%; }
    .btn { padding: .9rem 1.6rem; }
}

/* Hareket azaltma tercihi */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
    [data-reveal] { opacity: 1; transform: none; }
    .hero--kenburns .hero__media img { animation: none; }
}
