/* El Garden Hotel & Spa: stil dosyası
   Arayüz dili Carsten referansından; renkler logodaki yeşillerden türetildi. */

:root {
  --orman-derin: #0f1d16;
  --orman: #14261d;
  --cam: #26473a;
  --cam-koyu: #1c372c;
  --yosun: #5d6f5b;
  --acik-yosun: #b9c6b4;
  --sis: #f3f5f1;
  --sis-koyu: #e6ece3;
  --beyaz: #ffffff;
  --murekkep: #17231c;
  --murekkep-2: #4c5a51;
  --pirinc: #bfa273;
  --cizgi: rgba(23, 35, 28, 0.16);
  --cizgi-acik: rgba(243, 245, 241, 0.26);

  /* Tema: açık zeminli bölümler bu değişkenlerle boyanır; koyu tema yalnızca bunları değiştirir.
     Koyu yeşil bölümler (vitrin, spa, iletişim, alt bilgi) iki temada da aynı kalır. */
  --zemin: var(--beyaz);
  --zemin-2: var(--sis);
  --zemin-3: var(--sis-koyu);
  --metin: var(--murekkep);
  --metin-2: var(--murekkep-2);
  --vurgu: var(--yosun);
  --vurgu-2: var(--cam);
  --alan-cizgi: rgba(23, 35, 28, 0.45);

  --f-baslik: "Cormorant Garamond", "Times New Roman", serif;
  --f-metin: "Manrope", "Helvetica Neue", Arial, sans-serif;

  --kap: 1320px;
  --kenar: clamp(20px, 5vw, 64px);
  --bolum: clamp(88px, 10vw, 150px);
  --ust-h: 96px;
  --gecis: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 899px) {
  :root { --ust-h: 68px; }
}

/* Koyu tema: başlıktaki ay / güneş düğmesiyle açılır, seçim tarayıcıda saklanır */
:root[data-tema="koyu"] {
  color-scheme: dark;
  --zemin: #0b130f;
  --zemin-2: #111b16;
  --zemin-3: #18261f;
  --metin: #e9eee7;
  --metin-2: #a7b4a9;
  --vurgu: #a3b8a0;
  --vurgu-2: #d3e0cf;
  --cizgi: rgba(233, 238, 231, 0.14);
  --alan-cizgi: rgba(233, 238, 231, 0.4);
}

/* ---------- Temel ---------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--ust-h);
}
/* Fare ve trackpad'de sayfa uçlarındaki esneme kapalı: sayfanın en üstünde Magic Mouse'un küçük kaydırmaları
   içeriği sabit başlığın altından aşağı itip fotoğrafı "boşlukta" oynatıyordu. Dokunmatikte yenileme hareketi kalsın. */
@media (hover: hover) and (pointer: fine) {
  html { overscroll-behavior-y: none; }
}

body {
  margin: 0;
  font-family: var(--f-metin);
  font-size: 16px;
  line-height: 1.7;
  color: var(--metin);
  background: var(--zemin);
  -webkit-font-smoothing: antialiased;
}

img, video { display: block; max-width: 100%; height: auto; }
figure { margin: 0; }
a { color: inherit; }
button, input, select { font: inherit; color: inherit; }
h1, h2, h3 { margin: 0; font-family: var(--f-baslik); font-weight: 400; line-height: 1.08; }
p, ul, dl, dd { margin: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.atla {
  position: fixed; left: 16px; top: -60px; z-index: 100;
  padding: 12px 18px; background: var(--beyaz); color: var(--murekkep);
  text-decoration: none; transition: top 0.2s;
}
.atla:focus { top: 16px; }

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

.ikon-seti { display: none; }
.ikon {
  width: 20px; height: 20px; flex: none;
  fill: none; stroke: currentColor; stroke-width: 1.4;
  stroke-linecap: round; stroke-linejoin: round;
}

.kap { width: min(100% - 2 * var(--kenar), var(--kap)); margin-inline: auto; }

.baslik-buyuk {
  font-size: clamp(38px, 4.8vw, 68px); font-weight: 300;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--vurgu);
}
.baslik-buyuk--acik { color: var(--acik-yosun); }

.etiket {
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
}

/* ---------- Düğmeler ---------- */

.dugme {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 56px; padding: 0 34px;
  border: 1px solid transparent; background: none;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: background-color 0.25s, color 0.25s, border-color 0.25s;
}
.dugme--dolu { background: var(--cam); color: var(--beyaz); }
.dugme--dolu:hover { background: var(--cam-koyu); }
.dugme--cizgi { border-color: var(--metin); color: var(--metin); }
.dugme--cizgi:hover { background: var(--metin); color: var(--zemin); }
.dugme--cizgi-acik { border-color: rgba(243, 245, 241, 0.5); color: var(--sis); }
.dugme--cizgi-acik:hover { background: var(--sis); border-color: var(--sis); color: var(--orman); }

.metin-dugme {
  display: inline-block; padding: 10px 2px 8px;
  border: 0; background: linear-gradient(currentColor, currentColor) 0 100% / 100% 1px no-repeat;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; color: var(--metin);
  transition: color 0.25s;
}
.metin-dugme:hover { color: var(--vurgu-2); animation: cizgi-yeniden 0.9s cubic-bezier(0.57, 0.39, 0, 0.86); }
@keyframes cizgi-yeniden {
  0% { background-size: 100% 1px; background-position: 100% 100%; }
  45% { background-size: 0 1px; background-position: 100% 100%; }
  46% { background-size: 0 1px; background-position: 0 100%; }
  100% { background-size: 100% 1px; background-position: 0 100%; }
}
.metin-dugme--acik { color: var(--sis); }
.metin-dugme--acik:hover { color: var(--acik-yosun); }

.ok-dugme {
  width: 54px; height: 54px; display: grid; place-items: center;
  border: 1px solid var(--cizgi); background: none; cursor: pointer;
  color: var(--metin); transition: border-color 0.25s, background-color 0.25s, opacity 0.25s;
}
.ok-dugme:hover { border-color: var(--metin); }
.ok-dugme:disabled { opacity: 0.35; cursor: default; }
.ok-dugme--acik { border-color: rgba(243, 245, 241, 0.45); color: var(--sis); background: rgba(15, 29, 22, 0.35); }
.ok-dugme--acik:hover { border-color: var(--sis); }

/* ---------- Üst menü ---------- */

.ust {
  position: fixed; inset: 0 0 auto; z-index: 50;
  height: var(--ust-h); color: var(--sis);
  transition: background-color 0.35s, backdrop-filter 0.35s;
}
.sayfa-ana .ust { background: linear-gradient(rgba(15, 29, 22, 0.55), rgba(15, 29, 22, 0)); }
.sayfa-ana .ust--dolu,
.sayfa-ic .ust { background: rgba(20, 38, 29, 0.94); backdrop-filter: blur(8px); }

.ust__ic {
  height: 100%;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding-inline: var(--kenar);
}
.ust__menu, .ust__rez {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 0; border: 0; background: none; cursor: pointer;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
}
.ust__menu { justify-self: start; }
.cizgiler { position: relative; display: block; width: 31px; height: 10px; }
.cizgiler span { position: absolute; left: 0; height: 1px; width: 100%; background: currentColor; }
.cizgiler span:first-child { top: 0; }
.cizgiler span:last-child { bottom: 0; width: 19px; }
.ust__menu:hover .cizgiler span { animation: ciz-soldan 0.9s cubic-bezier(0.57, 0.39, 0, 0.86) both; }
.ust__menu:hover .cizgiler span:last-child { animation-name: ciz-sagdan; animation-delay: 0.15s; }
@keyframes ciz-soldan {
  0% { transform: scaleX(1); transform-origin: 100% 50%; }
  45% { transform: scaleX(0); transform-origin: 100% 50%; }
  46% { transform: scaleX(0); transform-origin: 0 50%; }
  100% { transform: scaleX(1); transform-origin: 0 50%; }
}
@keyframes ciz-sagdan {
  0% { transform: scaleX(1); transform-origin: 0 50%; }
  45% { transform: scaleX(0); transform-origin: 0 50%; }
  46% { transform: scaleX(0); transform-origin: 100% 50%; }
  100% { transform: scaleX(1); transform-origin: 100% 50%; }
}
.ust__logo img { height: 62px; width: auto; }
.ust__sag { justify-self: end; display: flex; align-items: center; gap: 28px; }
.ust__tel {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; letter-spacing: 0.04em; text-decoration: none;
}
.ust__rez { padding-left: 28px; border-left: 1px solid var(--cizgi-acik); }
.ust__tema {
  display: grid; place-items: center; width: 40px; height: 40px; margin-right: -10px; padding: 0;
  border: 0; border-radius: 50%; background: none; color: inherit; cursor: pointer;
  transition: background-color 0.25s;
}
.ust__tema:hover { background: rgba(243, 245, 241, 0.12); }
.ust__tema .tema-gunes, [data-tema="koyu"] .ust__tema .tema-ay { display: none; }
[data-tema="koyu"] .ust__tema .tema-gunes { display: block; }
.ust__tema.degisti .ikon { animation: tema-don 0.5s var(--gecis); }
@keyframes tema-don { from { opacity: 0; transform: rotate(-80deg) scale(0.6); } }

@media (max-width: 1099px) {
  .ust__tel span { display: none; }
}
@media (max-width: 899px) {
  .ust__logo img { height: 44px; }
  .ust__menu > span:not(.cizgiler), .ust__rez > span, .ust__tel { display: none; }
  .ust__rez { padding: 8px; border: 0; }
  .ust__rez .ikon { width: 24px; height: 24px; }
}

/* ---------- Tam ekran menü ---------- */

dialog { padding: 0; border: 0; max-width: none; max-height: none; }
dialog::backdrop { background: rgba(15, 29, 22, 0.62); }

.menu {
  width: 100%; height: 100%;
  background: var(--orman); color: var(--sis);
  overflow-y: auto;
}
.menu[open] { animation: belir 0.3s ease; }
.menu__ust {
  height: var(--ust-h);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding-inline: var(--kenar);
}
.menu__kapat {
  justify-self: start; padding: 6px; margin-left: -6px;
  border: 0; background: none; color: inherit; cursor: pointer;
}
.menu__kapat .ikon { width: 30px; height: 30px; stroke-width: 1.1; }
.menu__logo { height: 62px; width: auto; }
.menu__govde {
  min-height: calc(100% - var(--ust-h));
  display: grid; grid-template-columns: 1fr 1px 1fr; align-items: center;
  gap: clamp(32px, 6vw, 96px);
  padding: clamp(24px, 5vh, 64px) var(--kenar) clamp(40px, 8vh, 96px);
}
.menu__nav ul { list-style: none; padding: 0; display: grid; gap: 4px; text-align: right; }
.menu__nav a {
  font-family: var(--f-baslik); font-size: clamp(34px, 4.6vw, 60px); font-weight: 300; line-height: 1.2;
  text-transform: uppercase; text-decoration: none;
  background: linear-gradient(currentColor, currentColor) 100% 92% / 0 1px no-repeat;
  transition: background-size 0.5s var(--gecis), color 0.25s;
}
.menu__nav a:hover, .menu__nav a:focus-visible { background-size: 100% 1px; color: var(--acik-yosun); }
.menu__cizgi { align-self: stretch; position: relative; background: var(--cizgi-acik); }
.menu__cizgi::after {
  content: ""; position: absolute; left: 50%; bottom: -3px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--sis);
  transform: translateX(-50%);
}
.menu__iletisim { display: grid; gap: 22px; justify-items: start; color: var(--acik-yosun); }
.menu__iletisim a { color: var(--sis); text-decoration: none; }
.menu__iletisim .dugme { margin-top: 8px; }

@media (max-width: 899px) {
  .menu__govde { grid-template-columns: 1fr; align-items: start; }
  .menu__nav ul { text-align: left; }
  .menu__cizgi { display: none; }
  .menu__logo { height: 44px; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: max(660px, 100svh);
  display: grid; place-items: center;
  color: var(--sis);
}
.hero__medya { position: absolute; inset: 0; z-index: -2; overflow: hidden; transform: translate3d(0, var(--py, 0), 0); }
.hero__slayt { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s ease; }
.hero__slayt.aktif { opacity: 1; z-index: 1; }
.hero__slayt.onceki { z-index: 0; }
.hero__slayt img { width: 100%; height: 100%; object-fit: cover; }
.hero__slayt.aktif img, .hero__slayt.onceki img { animation: yakinlas 9s linear both; }
@keyframes yakinlas { from { transform: scale(1.1); } to { transform: scale(1); } }

.hero__kontrol {
  position: absolute; left: var(--kenar); bottom: 170px; z-index: 2;
  display: flex; align-items: center; gap: 18px;
}
.hero__durdur {
  display: grid; place-items: center; width: 40px; height: 40px; padding: 0;
  border: 1px solid rgba(243, 245, 241, 0.5); border-radius: 50%;
  background: none; color: var(--sis); cursor: pointer; transition: background-color 0.25s, border-color 0.25s;
}
.hero__durdur:hover { background: rgba(243, 245, 241, 0.12); border-color: var(--sis); }
.hero__durdur .ikon { width: 16px; height: 16px; }
.hero__durdur .hero__ikon-baslat, .hero__durdur.duraklatildi .hero__ikon-duraklat { display: none; }
.hero__durdur.duraklatildi .hero__ikon-baslat { display: block; fill: currentColor; }
.hero__cizgiler { list-style: none; padding: 0; margin: 0; display: flex; gap: 8px; }
.hero__cizgiler button { display: block; width: 44px; padding: 12px 0; border: 0; background: none; cursor: pointer; }
.hero__cizgiler span { position: relative; display: block; height: 2px; background: rgba(243, 245, 241, 0.3); overflow: hidden; }
.hero__cizgiler span::after {
  content: ""; position: absolute; inset: 0; background: var(--sis);
  transform: scaleX(0); transform-origin: left;
}
.hero__cizgiler .aktif span::after { animation: ilerle var(--hero-sure, 6.5s) linear both; }
.hero--duraklatildi .hero__cizgiler .aktif span::after { animation: none; transform: scaleX(1); }
@keyframes ilerle { to { transform: scaleX(1); } }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg,
    rgba(15, 29, 22, 0.6) 0%, rgba(15, 29, 22, 0.34) 40%,
    rgba(15, 29, 22, 0.5) 70%, rgba(15, 29, 22, 0.88) 100%);
}
.hero__icerik { text-align: center; padding: calc(var(--ust-h) + 32px) var(--kenar) 200px; }
.hero__baslik { display: grid; justify-items: center; }
.hero__marka {
  display: block;
  font-size: clamp(72px, 12vw, 196px); font-weight: 300; line-height: 0.9; letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 0 2px 40px rgba(15, 29, 22, 0.35);
}
.hero__alt {
  display: block; margin-top: 22px;
  font-family: var(--f-metin); font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.5em; text-transform: uppercase;
}
.hero__konum { margin-top: 18px; font-size: 17px; }
.hero__mobil-rez { display: none; margin-top: 32px; }

.hero__film {
  position: absolute; right: var(--kenar); bottom: 170px;
  display: flex; align-items: center; gap: 12px;
  padding: 8px 0; border: 0; background: none; color: var(--sis); cursor: pointer;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
}
.hero__film .ikon { width: 40px; height: 40px; stroke-width: 1; }

.hero__rez { position: absolute; left: 0; right: 0; bottom: 44px; }

@keyframes belir { from { opacity: 0; } to { opacity: 1; } }

@media (max-width: 999px) {
  .hero__rez { display: none; }
  .hero__mobil-rez { display: inline-flex; }
  .hero__icerik { padding-bottom: 170px; }
  .hero__film { left: 0; right: 0; bottom: 36px; width: max-content; margin-inline: auto; }
  .hero__kontrol { left: 0; right: 0; bottom: 96px; justify-content: center; }
}

/* ---------- Rezervasyon formu ---------- */

.rez-form--yatay {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 28px; align-items: end;
}
.rez-form--yatay .dugme { min-height: 60px; min-width: 220px; }
.rez-form--dikey { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 24px; }
.rez-form--dikey .alan--tam, .rez-form--dikey .dugme { grid-column: 1 / -1; }
.rez-form--dikey .dugme { margin-top: 6px; }

.alan { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.alan__etiket { font-size: 11.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }
.alan input, .alan select {
  width: 100%; height: 46px; padding: 0 30px 0 0;
  border: 0; border-bottom: 1px solid var(--alan-cizgi); border-radius: 0;
  background: transparent no-repeat right 4px center / 14px;
  font-size: 15px; appearance: none; -webkit-appearance: none;
}
.alan select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2317231c' stroke-width='1.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}
[data-tema="koyu"] .alan select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e9eee7' stroke-width='1.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}
.alan input:focus, .alan select:focus { outline: none; border-bottom-color: var(--vurgu-2); }
.alan input:focus-visible, .alan select:focus-visible { outline: 2px solid var(--pirinc); outline-offset: 4px; }
.alan input::-webkit-calendar-picker-indicator { cursor: pointer; opacity: 0.75; }

.rez-form--acik { color: var(--sis); color-scheme: dark; }
.rez-form--acik .alan input, .rez-form--acik .alan select { border-bottom-color: rgba(243, 245, 241, 0.55); }
.rez-form--acik .alan select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f3f5f1' stroke-width='1.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}
.rez-form--acik .alan option { background: var(--orman); color: var(--sis); }
.rez-form--acik .alan input:focus, .rez-form--acik .alan select:focus { border-bottom-color: var(--sis); }

/* ---------- Rezervasyon penceresi ---------- */

.rez { width: min(560px, 100% - 32px); background: var(--zemin-2); color: var(--metin); }
.rez[open] { animation: belir 0.25s ease; }
.rez__kutu { position: relative; padding: clamp(28px, 5vw, 48px); }
.rez__kapat {
  position: absolute; right: 12px; top: 12px; padding: 8px;
  border: 0; background: none; cursor: pointer; color: var(--metin);
}
.rez__kapat .ikon { width: 24px; height: 24px; }
.rez__baslik { font-size: clamp(32px, 3.4vw, 42px); font-weight: 400; text-transform: uppercase; padding-right: 36px; }
.rez__not { margin-top: 10px; color: var(--metin-2); }
.rez .rez-form { margin-top: 28px; }
.rez__ozet { margin-top: 24px; display: grid; grid-template-columns: auto 1fr; gap: 10px 28px; }
.rez__ozet dt { font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--metin-2); padding-top: 3px; }
.rez__ozet dd { font-size: 16px; }
.rez__eylemler { display: grid; gap: 12px; margin-top: 28px; }
.rez__geri { margin-top: 20px; }

@media (max-width: 599px) {
  .rez { width: 100%; margin: auto 0 0; }
  .rez-form--dikey { grid-template-columns: 1fr; }
}

/* ---------- Kolaj bölümleri (giriş ve lezzetler) ---------- */

.kolaj { background: var(--zemin-2); position: relative; }
.kolaj__ic {
  display: grid; grid-template-columns: 1fr minmax(0, 580px) 1fr;
  width: min(100%, 1440px); margin-inline: auto;
}
.kolaj__panel {
  grid-column: 2; grid-row: 1;
  background: var(--zemin-3); text-align: center;
  padding: 0 clamp(28px, 4vw, 64px) var(--bolum);
}
.kolaj__cizgi { display: block; width: 1px; height: 96px; margin: 0 auto 48px; background: var(--metin-2); opacity: 0.45; }
.kolaj__yil { margin-top: 14px; font-family: var(--f-baslik); font-size: 22px; font-style: italic; color: var(--metin-2); }
.kolaj__metin { margin-top: 30px; display: grid; gap: 16px; font-size: 17px; line-height: 1.8; }
.kolaj__panel > .metin-dugme { margin-top: 38px; }

.kolaj__gorsel { position: relative; z-index: 1; }
.kolaj__gorsel img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.kolaj__gorsel--sol {
  grid-column: 1; grid-row: 1; align-self: start; justify-self: end;
  width: min(86%, 360px); margin: 120px -48px 0 0;
}
.kolaj__gorsel--sag {
  grid-column: 3; grid-row: 1; align-self: end; justify-self: start;
  width: min(86%, 340px); margin: 0 0 -96px -48px;
}
.kolaj__halka {
  position: absolute; left: -64px; bottom: -72px; z-index: -1;
  width: 190px; height: 190px; border: 1px solid var(--pirinc); border-radius: 50%;
}
.kolaj--lezzet .kolaj__gorsel--sol img { aspect-ratio: 3 / 4; }
.kolaj--lezzet .kolaj__gorsel--sag img { aspect-ratio: 1; }
.kolaj--lezzet .kolaj__gorsel--sag { margin-bottom: 72px; }

.lezzet-liste { list-style: none; padding: 0; margin: 36px 0 40px; display: grid; gap: 26px; }
.lezzet-liste li { display: grid; justify-items: center; gap: 4px; }
.lezzet__ad { font-family: var(--f-baslik); font-size: 28px; font-weight: 500; line-height: 1.2; }
.lezzet__ad::after {
  content: ""; display: block; width: 1px; height: 16px; margin: 10px auto 4px;
  background: var(--metin-2); opacity: 0.45;
}
.lezzet__not { font-size: 14.5px; color: var(--metin-2); max-width: 34ch; }

@media (max-width: 899px) {
  .kolaj__ic { grid-template-columns: 1fr 1fr; gap: 16px; padding-bottom: 16px; }
  .kolaj__panel { grid-column: 1 / -1; padding-top: 72px; padding-bottom: 72px; }
  .kolaj__cizgi { display: none; }
  .kolaj__gorsel--sol, .kolaj__gorsel--sag { grid-row: 2; width: 100%; margin: 0; }
  .kolaj__gorsel--sol { grid-column: 1; padding-left: var(--kenar); }
  .kolaj__gorsel--sag { grid-column: 2; padding-right: var(--kenar); }
  .kolaj__halka { display: none; }
  .kolaj--lezzet .kolaj__gorsel--sag { margin-bottom: 0; }
  .kolaj--lezzet .kolaj__gorsel img { aspect-ratio: 4 / 5; }
}

/* ---------- Rakamlar ---------- */

.sayilar { background: var(--zemin-2); padding: clamp(150px, 14vw, 210px) 0 var(--bolum); }
.sayilar__liste { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); }
.sayi { position: relative; display: grid; justify-items: center; gap: 12px; padding: 0 24px; text-align: center; }
.sayi + .sayi::before {
  content: ""; position: absolute; left: 0; top: 18%;
  width: 1px; height: 170px; background: var(--cizgi);
  transform: rotate(20deg); transform-origin: top;
}
.sayi__ikon { width: 60px; height: 60px; fill: none; stroke: var(--metin-2); stroke-width: 0.8; stroke-linecap: round; stroke-linejoin: round; }
.sayi__etiket { font-family: var(--f-baslik); font-size: 26px; font-weight: 500; }
.sayi__deger { font-family: var(--f-baslik); font-size: clamp(76px, 8.4vw, 124px); font-weight: 300; font-variant-numeric: lining-nums; line-height: 1; color: var(--vurgu); }
.sayi__deger small {
  margin-left: 8px; font-family: var(--f-metin); font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--metin-2);
}

@media (max-width: 699px) {
  .sayilar { padding-top: 88px; }
  .sayilar__liste { grid-template-columns: 1fr; gap: 56px; }
  .sayi + .sayi::before { display: none; }
}

/* ---------- Oda vitrini ---------- */

.vitrin { position: relative; display: grid; background: var(--orman); color: var(--sis); overflow: hidden; }
.vitrin__slayt {
  grid-area: 1 / 1; position: relative;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); min-height: 760px;
  visibility: hidden; transition: visibility 0s linear 1s;
}
.vitrin__slayt.aktif { visibility: visible; transition-delay: 0s; z-index: 1; }
.vitrin__gorsel { position: relative; overflow: hidden; touch-action: pan-y; }
.vitrin__gorsel img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.06);
  transition: opacity 0.9s ease, transform 1.8s var(--gecis);
}
.vitrin__slayt.aktif .vitrin__gorsel img { opacity: 1; transform: none; }
.vitrin__gorsel::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(15, 29, 22, 0.3) 0%, rgba(15, 29, 22, 0.42) 55%, rgba(15, 29, 22, 0.58) 100%);
}
.vitrin__durdur {
  display: grid; place-items: center; width: 30px; height: 30px; margin-top: 8px; padding: 0;
  border: 1px solid rgba(243, 245, 241, 0.55); border-radius: 50%;
  background: rgba(15, 29, 22, 0.3); color: var(--sis); cursor: pointer;
}
.vitrin__durdur:hover { border-color: var(--sis); }
.vitrin__durdur .ikon { width: 13px; height: 13px; }
.vitrin__durdur .vitrin__ikon-baslat, .vitrin__durdur.duraklatildi .vitrin__ikon-duraklat { display: none; }
.vitrin__durdur.duraklatildi .vitrin__ikon-baslat { display: block; fill: currentColor; }
.vitrin__noktalar { position: absolute; z-index: 3; left: 18px; top: 50%; transform: translateY(-50%); display: grid; justify-items: center; gap: 14px; }
.vitrin__nokta {
  width: 11px; height: 11px; padding: 0; border-radius: 50%;
  border: 1px solid var(--sis); background: transparent; cursor: pointer;
  box-shadow: 0 0 0 4px rgba(15, 29, 22, 0.001);
}
.vitrin__nokta.aktif { background: var(--sis); }
.vitrin__ad {
  position: absolute; z-index: 2; top: 50%; right: calc(50% - clamp(90px, 11vw, 190px));
  transform: translateY(-50%);
  font-size: clamp(62px, 8.2vw, 136px); font-weight: 300; line-height: 0.9; text-align: right;
  text-transform: uppercase; color: rgba(243, 245, 241, 0.88);
  text-shadow: 0 2px 36px rgba(15, 29, 22, 0.45);
  pointer-events: none;
}
.vitrin__panel {
  display: flex; flex-direction: column; justify-content: center; gap: 34px;
  padding: clamp(56px, 7vw, 110px) clamp(32px, 5vw, 96px) clamp(56px, 7vw, 110px) clamp(150px, 15vw, 250px);
}
.vitrin__ozet { list-style: none; padding: 0; display: flex; align-items: flex-end; gap: 0; }
.vitrin__ozet li { display: grid; gap: 6px; }
.vitrin__ozet li + li { padding-left: 64px; position: relative; }
.vitrin__ozet li + li::before { content: ""; position: absolute; left: 16px; bottom: 20px; width: 32px; height: 1px; background: var(--cizgi-acik); }
/* Değerler panel genişliğine göre küçülür ve kırılmaz ("İki katlı" iki satıra bölünmesin) */
.vitrin__panel { container-type: inline-size; }
.vitrin__ozet { --ara: clamp(28px, 10cqi, 64px); }
.vitrin__ozet li + li { padding-left: var(--ara); }
.vitrin__ozet li + li::before { left: calc(var(--ara) / 4); width: calc(var(--ara) / 2); }
.vitrin__ozet .etiket { color: var(--acik-yosun); }
.vitrin__deger { font-family: var(--f-baslik); font-size: 42px; font-size: clamp(26px, 8cqi, 42px); font-variant-numeric: lining-nums; line-height: 1.1; white-space: nowrap; }
.vitrin__liste { display: grid; gap: 14px; }
.vitrin__liste div { display: grid; grid-template-columns: 110px 1fr; gap: 20px; }
.vitrin__liste dt { font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--acik-yosun); padding-top: 3px; }
.vitrin__metin { max-width: 46ch; color: rgba(243, 245, 241, 0.82); }
.vitrin__eylemler { display: flex; flex-wrap: wrap; align-items: center; gap: 20px 32px; }

@media (max-width: 899px) {
  .vitrin__slayt { grid-template-columns: 1fr; min-height: 0; }
  .vitrin__gorsel { aspect-ratio: 4 / 3; }
  .vitrin__ad { top: calc(75vw - 1.25em); right: auto; left: var(--kenar); transform: none; text-align: left; font-size: clamp(54px, 14vw, 80px); }
  .vitrin__panel { padding: 96px var(--kenar) 72px; }
  .vitrin__noktalar { left: auto; right: 10px; top: calc(75vw / 2); }
  .vitrin__gorsel::after { background: linear-gradient(180deg, rgba(15, 29, 22, 0.25) 0%, rgba(15, 29, 22, 0.6) 100%); }
  .vitrin__liste div { grid-template-columns: 96px 1fr; }
}

/* ---------- Bölüm başlığı (başlık + metin + oklar) ---------- */

.bolum-ust {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 420px) auto;
  align-items: end; gap: 24px 48px; margin-bottom: 56px;
}
.bolum-ust__metin { color: var(--metin-2); }
.serit__oklar { display: flex; gap: 10px; }

@media (max-width: 899px) {
  .bolum-ust { grid-template-columns: 1fr; margin-bottom: 36px; }
  .serit__oklar { display: none; }
}

/* ---------- Oda şeridi ---------- */

.odalar-serit { padding-block: var(--bolum); }
.serit {
  list-style: none; margin: 0;
  display: grid; grid-auto-flow: column; grid-auto-columns: clamp(270px, 28vw, 410px); gap: 32px;
  overflow-x: auto; overscroll-behavior-x: none;
  scroll-snap-type: x mandatory; scrollbar-width: none;
  padding: 0 var(--kenar) 8px max(var(--kenar), (100% - var(--kap)) / 2);
  scroll-padding-inline: max(var(--kenar), (100% - var(--kap)) / 2);
}
.serit::-webkit-scrollbar { display: none; }
.serit.surukleniyor { scroll-snap-type: none; cursor: grabbing; }
.serit.surukleniyor * { pointer-events: none; }

.oda-kart { scroll-snap-align: start; }
.oda-kart__link { display: block; text-decoration: none; }
.oda-kart__gorsel { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: var(--zemin-3); }
.oda-kart__gorsel img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06); transition: transform 0.5s cubic-bezier(0.44, 0.81, 0.45, 0.96);
}
.oda-kart__link:hover .oda-kart__gorsel img { transform: scale(1.06) translateX(6px); }
.oda-kart__etiket {
  position: absolute; right: 0; bottom: 0; padding: 10px 16px;
  background: var(--zemin); color: var(--metin);
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
}
.oda-kart__ad { margin-top: 10px; font-size: 30px; font-weight: 500; line-height: 1.12; }
.oda-kart__link:hover .oda-kart__ad { color: var(--vurgu-2); }

.bilgi-satiri {
  list-style: none; padding: 0; margin-top: 18px;
  display: flex; flex-wrap: wrap; gap: 8px 22px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--metin-2);
}
.bilgi-satiri li { display: flex; align-items: center; gap: 8px; }
.bilgi-satiri .ikon { width: 18px; height: 18px; }
.bilgi-satiri--buyuk { font-size: 12.5px; padding-block: 18px; border-block: 1px solid var(--cizgi); margin-top: 24px; }

@media (max-width: 899px) {
  .serit { grid-auto-columns: 80%; gap: 18px; }
}

/* ---------- Şelale Park bandı ve mühür ---------- */

.selale {
  position: relative; isolation: isolate;
  min-height: clamp(600px, 62vw, 820px);
  display: flex; flex-direction: column; justify-content: space-between;
  color: var(--sis);
}
.selale__gorsel { position: absolute; inset: 0; z-index: -2; }
.selale__gorsel img { width: 100%; height: 100%; object-fit: cover; }
.selale::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg,
    rgba(15, 29, 22, 0.8) 0%, rgba(15, 29, 22, 0.25) 42%,
    rgba(15, 29, 22, 0.35) 70%, rgba(20, 38, 29, 0.9) 100%);
}
.selale__satir {
  padding-top: clamp(64px, 7vw, 100px);
  display: grid; grid-template-columns: 1fr 1fr auto 1fr 1fr; align-items: start; gap: 24px;
}
.selale__bilgi { display: grid; gap: 6px; font-size: 16px; }
.selale__bilgi .etiket { color: var(--acik-yosun); }
.selale__bilgi:nth-child(n + 4) { text-align: right; }
.selale__baslik { text-align: center; padding-inline: 24px; }
.selale__baslik h2 { font-size: clamp(46px, 5.8vw, 88px); font-weight: 300; line-height: 0.92; text-transform: uppercase; }
.selale__baslik p { margin-top: 10px; font-family: var(--f-baslik); font-size: 22px; font-style: italic; }
.selale__metin { padding-bottom: 150px; max-width: 58ch; text-align: center; font-size: 17px; }

.muhur {
  position: absolute; left: 50%; bottom: 0; z-index: 3;
  width: 196px; height: 196px; transform: translate(-50%, 50%);
}
.muhur::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: var(--orman); border: 1px solid rgba(191, 162, 115, 0.55);
}
.muhur::after {
  content: ""; position: absolute; left: 50%; top: 100%;
  width: 1px; height: 84px; background: rgba(191, 162, 115, 0.55);
}
.muhur__halka { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(var(--donus, 0deg)); }
.muhur__halka text { font-family: var(--f-metin); font-size: 11.8px; font-weight: 600; letter-spacing: 0.2em; fill: var(--pirinc); }
.muhur__yaprak { position: absolute; left: 50%; top: 50%; width: 76px; height: auto; transform: translate(-50%, -50%); }

@media (max-width: 899px) {
  .selale__satir { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .selale__baslik { grid-column: 1 / -1; order: -1; padding: 0 0 12px; }
  .selale__bilgi:nth-child(n + 4) { text-align: left; }
  .selale__metin { padding-top: 48px; padding-bottom: 140px; }
  .muhur { width: 156px; height: 156px; }
  .muhur__yaprak { width: 60px; }
}

/* ---------- Spa ---------- */

.spa { background: var(--orman); color: var(--sis); padding: calc(var(--bolum) + 90px) 0 var(--bolum); }
.spa__baslik { text-align: center; max-width: 24ch; margin-inline: auto; }
.spa__ic { max-width: 760px; margin: clamp(56px, 6vw, 88px) auto 0; }
.spa__icerik { text-align: center; }
.spa__liste { list-style: none; padding: 0; border-top: 1px solid var(--cizgi-acik); }
.spa__liste li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 24px; text-align: left;
  padding: 18px 0; border-bottom: 1px solid var(--cizgi-acik);
}
.spa__ad { font-family: var(--f-baslik); font-size: clamp(26px, 2.4vw, 32px); font-weight: 500; line-height: 1.2; }
.spa__not { font-size: 14.5px; color: var(--acik-yosun); text-align: right; }
.spa__metin { margin: 36px auto 32px; max-width: 50ch; color: rgba(243, 245, 241, 0.82); }

/* ---------- Çevre ---------- */

.cevre { padding-block: var(--bolum); }
.cevre__kartlar { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.cevre-kart { position: relative; overflow: hidden; aspect-ratio: 3 / 4; color: var(--sis); }
.cevre-kart img { width: 100%; height: 100%; object-fit: cover; }
.cevre-kart::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15, 29, 22, 0) 45%, rgba(15, 29, 22, 0.82) 100%);
}
.cevre-kart__yazi { position: absolute; left: 32px; right: 32px; bottom: 32px; z-index: 1; }
.cevre-kart__mevsim { font-size: 14px; opacity: 0.85; }
.cevre-kart h3 { margin-top: 8px; font-size: clamp(28px, 2.5vw, 34px); font-weight: 500; line-height: 1.12; }

@media (max-width: 899px) {
  .cevre__kartlar { grid-template-columns: 1fr; gap: 18px; }
  .cevre-kart { aspect-ratio: 4 / 3; }
  .cevre-kart__yazi { left: 24px; right: 24px; bottom: 24px; }
}

/* ---------- Puan bandı ---------- */

.puan { position: relative; isolation: isolate; padding-block: clamp(110px, 13vw, 190px); color: var(--sis); text-align: center; }
.puan__gorsel { position: absolute; inset: 0; z-index: -2; }
.puan__gorsel img { width: 100%; height: 100%; object-fit: cover; }
.puan::after { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(15, 29, 22, 0.74); }
.puan__kaynak { font-family: var(--f-metin); font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }
.puan__deger { margin-top: 12px; font-family: var(--f-baslik); font-size: clamp(110px, 13vw, 180px); font-weight: 300; font-variant-numeric: lining-nums; line-height: 1; }
.puan__deger span { font-size: 0.34em; color: var(--acik-yosun); }
.puan__not { margin-top: 10px; color: var(--acik-yosun); }
.puan .metin-dugme { margin-top: 30px; }

/* ---------- İletişim ---------- */

.iletisim { background: var(--orman); color: var(--sis); padding-block: clamp(80px, 9vw, 130px); }
.iletisim__ic { display: grid; grid-template-columns: 1.3fr 1fr 1.2fr; gap: 48px clamp(32px, 5vw, 80px); }
.iletisim__baslik { max-width: 8ch; font-size: clamp(44px, 4.8vw, 66px); font-weight: 300; line-height: 1; text-transform: uppercase; }
.iletisim__giris p { margin-top: 24px; max-width: 40ch; color: rgba(243, 245, 241, 0.78); }
.iletisim__blok { display: grid; align-content: start; justify-items: start; gap: 6px; }
.iletisim__blok h3 { font-size: 28px; font-weight: 500; margin-top: 18px; }
.iletisim__blok h3:first-child { margin-top: 0; }
.iletisim__blok a:not(.dugme), .iletisim__blok p { color: var(--acik-yosun); text-decoration: none; }
.iletisim__blok a:not(.dugme):hover { color: var(--sis); }
.iletisim__blok .dugme { margin-top: 22px; }

@media (max-width: 899px) {
  .iletisim__ic { grid-template-columns: 1fr; }
  .iletisim__baslik { max-width: none; }
}

/* ---------- 404 sayfası ---------- */

.bulunamadi { padding: calc(var(--ust-h) + clamp(72px, 9vw, 130px)) 0 var(--bolum); background: var(--zemin-2); }
.bulunamadi__baslik { font-size: clamp(44px, 6vw, 84px); font-weight: 300; line-height: 1; text-transform: uppercase; color: var(--vurgu); }
.bulunamadi__metin { margin-top: 26px; max-width: 46ch; font-size: 17px; color: var(--metin-2); }
.bulunamadi__eylemler { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 16px 20px; }

/* ---------- Görsel şerit ---------- */

.gorsel-serit { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--orman); }
.gorsel-serit img { width: 100%; aspect-ratio: 1; object-fit: cover; }

/* ---------- Fotoğraf tonu ----------
   Yazı taşımayan fotoğraflar hafifçe karartılır; sitenin koyu yeşil bölümleriyle bütünlük için. Hero, oda vitrini,
   Şelale Park, puan bandı ve sayfa başlarındaki fotoğraflarda zaten koyu bir katman var; büyütülmüş görüntüde yok. */
.kolaj__gorsel img, .oda-kart__gorsel img, .gorsel-serit img, .cevre-kart img,
.oda-satir__gorsel img, .oda-galeri__dugme img, .kurumsal-galeri img, .dagilim__gorsel img {
  filter: brightness(0.84) saturate(0.92);
}
@media (max-width: 699px) { .gorsel-serit { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Alt bilgi ---------- */

.alt { background: var(--orman-derin); color: rgba(243, 245, 241, 0.72); padding-top: clamp(64px, 8vw, 110px); font-size: 14.5px; }
.alt__ic { display: grid; grid-template-columns: 1.3fr 1.2fr 1fr 1.2fr; gap: 40px; }
.alt__marka { display: flex; flex-direction: column; align-items: flex-start; }
.alt__marka img { width: 150px; height: auto; }
/* Sosyal medya bloğu marka sütununun dibine oturur: logo üstte, ikonlar diğer sütunların son satırıyla aynı hizada */
.alt__sosyal { margin-top: auto; padding-top: 40px; }
.alt__sosyal .alt__baslik { text-wrap: balance; }
.alt__sosyal .sosyal { margin-top: 0; }
.alt__baslik { margin-bottom: 18px; font-size: 26px; font-weight: 500; color: var(--sis); }
.alt ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.alt a { text-decoration: none; }
.alt a:hover { color: var(--sis); }
.alt__taban {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 24px;
  margin-top: clamp(56px, 7vw, 88px); padding: 26px 0 34px;
  border-top: 1px solid rgba(243, 245, 241, 0.12); font-size: 13.5px;
}
.alt__taban { align-items: center; }
.alt .alt__imza { display: inline-flex; background: none; opacity: 0.75; transition: opacity 0.25s; }
.alt .alt__imza:hover { opacity: 1; }
.alt__imza img { height: 30px; width: auto; }

.sosyal { list-style: none; padding: 0; margin-top: 24px; display: flex; gap: 12px; }
.alt .sosyal { display: flex; gap: 12px; }
.sosyal__link {
  display: grid; place-items: center; width: 44px; height: 44px;
  border: 1px solid rgba(243, 245, 241, 0.3); border-radius: 50%;
  color: var(--sis); transition: background-color 0.25s, border-color 0.25s, color 0.25s;
}
.sosyal__link:hover { background: var(--sis); border-color: var(--sis); color: var(--orman); }
.alt .sosyal__link:hover { color: var(--orman); }
.sosyal__link .ikon { width: 19px; height: 19px; }

@media (max-width: 899px) {
  .alt__ic { grid-template-columns: 1fr 1fr; }
  .alt__marka { grid-column: 1 / -1; }
}
@media (max-width: 499px) {
  .alt__ic { grid-template-columns: 1fr; }
}

/* ---------- Mobil eylem çubuğu ---------- */

.mobil-bar { display: none; }

@media (max-width: 899px) {
  body { padding-bottom: calc(62px + env(safe-area-inset-bottom)); }
  .hero { min-height: max(600px, calc(100svh - 62px - env(safe-area-inset-bottom))); }
  .mobil-bar {
    position: fixed; inset: auto 0 0; z-index: 40;
    display: grid; grid-template-columns: 1fr 1.7fr;
    padding-bottom: env(safe-area-inset-bottom);
    background: var(--orman); border-top: 1px solid var(--cizgi-acik);
  }
  .mobil-bar__ara, .mobil-bar__rez {
    height: 62px; display: flex; align-items: center; justify-content: center; gap: 10px;
    border: 0; font-size: 12.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
    text-decoration: none; cursor: pointer;
  }
  .mobil-bar__ara { background: var(--orman); color: var(--sis); }
  .mobil-bar__rez { background: var(--cam); color: var(--beyaz); }
}

/* ---------- İç sayfa başlığı ---------- */

.sayfa-bas {
  position: relative; isolation: isolate; color: var(--sis);
  min-height: clamp(460px, 64vh, 640px);
  display: flex; align-items: flex-end;
  padding: calc(var(--ust-h) + 60px) 0 clamp(48px, 6vw, 80px);
}
.sayfa-bas__gorsel { position: absolute; inset: 0; z-index: -2; }
.sayfa-bas__gorsel img { width: 100%; height: 100%; object-fit: cover; }
.sayfa-bas::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(15, 29, 22, 0.5) 0%, rgba(15, 29, 22, 0.2) 40%, rgba(15, 29, 22, 0.82) 100%);
}
.sayfa-bas h1 { font-size: clamp(50px, 7.8vw, 118px); font-weight: 300; line-height: 0.92; text-transform: uppercase; }
.sayfa-bas p { margin-top: 18px; font-size: 18px; max-width: 46ch; }

/* ---------- Oda listesi ---------- */

.oda-listesi { padding-block: clamp(40px, 5vw, 72px); }
.oda-satir {
  display: grid; grid-template-columns: 7fr 5fr; align-items: center;
  gap: clamp(32px, 6vw, 96px); padding-block: clamp(40px, 5vw, 72px);
}
.oda-satir + .oda-satir { border-top: 1px solid var(--cizgi); }
.oda-satir:nth-child(even) { grid-template-columns: 5fr 7fr; }
.oda-satir:nth-child(even) .oda-satir__gorsel { order: 2; }
.oda-satir__gorsel { display: block; overflow: hidden; aspect-ratio: 3 / 2; background: var(--zemin-3); }
.oda-satir__gorsel img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--gecis); }
.oda-satir__gorsel:hover img { transform: scale(1.04); }
.oda-satir__ad { font-size: clamp(34px, 3.6vw, 50px); font-weight: 400; line-height: 1; text-transform: uppercase; }
.oda-satir__ad a { text-decoration: none; }
.oda-satir__ad a:hover { color: var(--vurgu-2); }
.oda-satir p { margin-top: 20px; max-width: 46ch; color: var(--metin-2); }
.oda-satir__eylemler { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 32px; margin-top: 32px; }

@media (max-width: 899px) {
  .oda-satir, .oda-satir:nth-child(even) { grid-template-columns: 1fr; gap: 24px; }
  .oda-satir:nth-child(even) .oda-satir__gorsel { order: 0; }
}

.olanaklar { background: var(--zemin-2); padding-block: var(--bolum); }
.olanaklar__ic { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr); gap: 40px clamp(40px, 7vw, 120px); align-items: start; }
.olanaklar__not { margin-top: 24px; max-width: 34ch; color: var(--metin-2); }
.olanak-liste { list-style: none; padding: 0; margin-top: 20px; columns: 2; column-gap: 40px; }
.olanak-liste li { display: flex; align-items: center; gap: 12px; padding: 7px 0; break-inside: avoid; }
.olanak-liste .ikon { width: 18px; height: 18px; color: var(--vurgu); }
.olanak-liste--genis { margin-top: 0; columns: 3; }

@media (max-width: 899px) {
  .olanaklar__ic { grid-template-columns: 1fr; }
  .olanak-liste--genis { columns: 2; }
}
@media (max-width: 499px) {
  .olanak-liste, .olanak-liste--genis { columns: 1; }
}

/* ---------- Oda detay ---------- */

.oda-galeri { position: relative; padding-top: var(--ust-h); background: var(--orman); }
.oda-galeri__serit {
  grid-auto-columns: auto; gap: 6px;
  padding: 0; scroll-padding-inline: 0;
  height: clamp(320px, 64vh, 660px);
}
/* Odaların fotoğrafları farklı en-boy oranlarında çekilmiş (bazıları dikey); hepsi aynı 3:2 kutuya
   kırpılır ki şeritte art arda gelen fotoğraflar birbirinden çok farklı genişlikte görünmesin. */
.oda-galeri__oge { scroll-snap-align: start; height: 100%; aspect-ratio: 3 / 2; }
.oda-galeri__dugme { display: block; width: 100%; height: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; }
.oda-galeri__dugme img { width: 100%; height: 100%; object-fit: cover; }
.oda-galeri__oklar { position: absolute; right: var(--kenar); bottom: 24px; display: flex; gap: 10px; }

.oda-detay { padding-block: clamp(56px, 7vw, 100px); }
.oda-detay__ic { display: grid; grid-template-columns: minmax(0, 1fr) 390px; gap: clamp(40px, 6vw, 96px); align-items: start; }
.kirinti { display: flex; flex-wrap: wrap; gap: 10px; font-size: 13.5px; color: var(--metin-2); }
.kirinti a { text-underline-offset: 3px; }
.oda-detay h1 { margin-top: 20px; font-size: clamp(46px, 5.6vw, 82px); font-weight: 300; line-height: 0.95; text-transform: uppercase; }
.oda-detay__icerik h2 { margin-top: 48px; font-size: 32px; font-weight: 500; }
.oda-detay__icerik p { margin-top: 16px; max-width: 62ch; font-size: 17px; line-height: 1.8; }
.yan-kutu { position: sticky; top: calc(var(--ust-h) + 24px); background: var(--zemin-2); padding: 34px; }
.yan-kutu h2 { font-size: 30px; font-weight: 500; text-transform: uppercase; margin-bottom: 24px; }
.yan-kutu__not { margin-top: 20px; font-size: 14.5px; color: var(--metin-2); }
.odalar-serit--diger { background: var(--zemin-2); }

@media (max-width: 999px) {
  .oda-detay__ic { grid-template-columns: 1fr; }
  .yan-kutu { position: static; }
}
@media (max-width: 599px) {
  .oda-galeri__serit { height: 300px; }
  .oda-galeri__oklar { display: none; }
}

/* ---------- Kurumsal ---------- */

.kurumsal-giris { background: var(--orman); color: var(--sis); padding: var(--bolum) 0 clamp(56px, 6vw, 88px); }
.kurumsal-giris__ic { display: grid; grid-template-columns: 1fr 1fr; gap: 48px clamp(40px, 8vw, 128px); align-items: start; }
.kurumsal-giris__iletisim { margin-top: 48px; display: grid; gap: 8px; justify-items: start; }
.kurumsal-giris__iletisim h3 { font-size: 28px; font-weight: 400; color: var(--acik-yosun); }
.kurumsal-giris__iletisim p { color: rgba(243, 245, 241, 0.78); max-width: 34ch; }
.kurumsal-giris__iletisim a {
  margin-top: 8px; font-family: var(--f-baslik); font-size: 30px; text-decoration: none;
  background: linear-gradient(currentColor, currentColor) 0 100% / 0 1px no-repeat;
  transition: background-size 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.kurumsal-giris__iletisim a:hover { background-size: 100% 1px; }
.kurumsal-giris__sag { display: grid; gap: 22px; justify-items: start; font-size: 17px; line-height: 1.85; color: rgba(243, 245, 241, 0.86); }
.kurumsal-giris__sag .dugme { margin-top: 14px; }

.kurumsal-galeri { background: var(--orman); color: var(--sis); padding-bottom: var(--bolum); }
.kurumsal-galeri .serit { grid-auto-columns: clamp(280px, 44vw, 640px); gap: 40px; }
.kurumsal-galeri li { scroll-snap-align: start; }
.kurumsal-galeri img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.kurumsal-galeri figcaption { margin-top: 18px; font-family: var(--f-baslik); font-size: 30px; font-weight: 400; }

.sayilar--kurumsal { background: var(--zemin); padding-top: var(--bolum); }

.tesis { background: var(--zemin-2); padding-block: var(--bolum); }
.tesis__baslik { text-align: center; }
.tesis__izgara {
  list-style: none; padding: 0; margin-top: clamp(48px, 6vw, 80px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(40px, 5vw, 72px) clamp(32px, 5vw, 80px);
}
.tesis__ikon { width: 56px; height: 56px; fill: none; stroke: var(--metin); stroke-width: 0.9; stroke-linecap: round; stroke-linejoin: round; }
.tesis__oge h3 { margin-top: 20px; font-size: 30px; font-weight: 500; }
.tesis__oge p { margin-top: 10px; max-width: 34ch; color: var(--metin-2); }

.dagilim { display: grid; grid-template-columns: 1fr 1fr; background: var(--zemin-3); }
.dagilim__gorsel { position: relative; min-height: 520px; overflow: hidden; }
.dagilim__gorsel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dagilim__panel { padding: clamp(56px, 7vw, 110px) clamp(28px, 6vw, 100px); }
.dagilim__not { margin-top: 14px; font-family: var(--f-baslik); font-size: 22px; font-style: italic; color: var(--metin-2); }
.dagilim__liste { list-style: none; padding: 0; margin-top: 36px; border-top: 1px solid var(--cizgi); }
.dagilim__liste li { border-bottom: 1px solid var(--cizgi); }
.dagilim__liste a, .dagilim__satir {
  display: flex; justify-content: space-between; align-items: baseline; gap: 24px;
  padding: 14px 0; text-decoration: none; transition: color 0.25s, padding 0.35s var(--gecis);
}
.dagilim__liste a:hover { color: var(--vurgu-2); padding-left: 8px; }
.dagilim__ad { font-size: 16px; }
.dagilim__adet { font-family: var(--f-baslik); font-size: 32px; font-weight: 400; line-height: 1; font-variant-numeric: lining-nums; color: var(--vurgu); }

.ulasim { padding-block: var(--bolum); }
.ulasim__ic { display: grid; grid-template-columns: 1fr 1fr; gap: 48px clamp(40px, 7vw, 120px); align-items: start; }
.ulasim__liste { list-style: none; padding: 0; border-top: 1px solid var(--cizgi); }
.ulasim__liste li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 24px;
  padding: 18px 0; border-bottom: 1px solid var(--cizgi);
}
.ulasim__yer { font-family: var(--f-baslik); font-size: 25px; font-weight: 500; line-height: 1.2; }
.ulasim__mesafe { font-size: 14.5px; color: var(--metin-2); text-align: right; }
.ulasim__tarif { display: grid; gap: 8px; justify-items: start; }
.ulasim__tarif h3 { font-size: 26px; font-weight: 500; }
.ulasim__tarif h3:not(:first-child) { margin-top: 18px; }
.ulasim__tarif p { color: var(--metin-2); max-width: 52ch; }
.ulasim__tarif .dugme { margin-top: 24px; }

.harita {
  margin-top: clamp(48px, 6vw, 80px); height: clamp(320px, 42vw, 460px);
  display: grid; place-content: center; justify-items: center; gap: 18px;
  background: var(--zemin-3); color: var(--metin-2); text-align: center;
}
.harita--acik { display: block; }
.harita iframe { width: 100%; height: 100%; border: 0; display: block; }

.aktiviteler { background: var(--zemin-2); padding-block: var(--bolum); }
.aktiviteler__ic { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); gap: 40px clamp(40px, 7vw, 120px); align-items: start; }
.aktiviteler__liste { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); column-gap: 32px; }
.aktiviteler__liste li { padding: 16px 0; border-top: 1px solid var(--cizgi); font-family: var(--f-baslik); font-size: 24px; font-weight: 500; }

@media (max-width: 899px) {
  .kurumsal-giris__ic, .ulasim__ic, .aktiviteler__ic { grid-template-columns: 1fr; }
  .kurumsal-giris__iletisim { margin-top: 32px; }
  .kurumsal-galeri .serit { grid-auto-columns: 84%; gap: 18px; }
  .tesis__izgara { grid-template-columns: 1fr 1fr; }
  .dagilim { grid-template-columns: 1fr; }
  .dagilim__gorsel { min-height: 0; aspect-ratio: 4 / 3; }
  .aktiviteler__liste { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 599px) {
  .tesis__izgara { grid-template-columns: 1fr; }
  .ulasim__liste li { flex-direction: column; gap: 4px; }
  .ulasim__mesafe { text-align: left; }
}

/* ---------- Film ve fotoğraf görüntüleyici ---------- */

.film { width: min(1100px, 100% - 32px); background: #000; overflow: visible; }
.film video { width: 100%; }
.film__kapat {
  position: absolute; right: 0; bottom: 100%; padding: 10px 0;
  border: 0; background: none; color: var(--sis); cursor: pointer;
}
.film__kapat .ikon { width: 28px; height: 28px; }

.lightbox { width: 100%; height: 100%; background: rgba(15, 29, 22, 0.97); color: var(--sis); }
.lightbox__sahne { height: 100%; display: grid; place-items: center; align-content: center; gap: 16px; padding: 72px clamp(16px, 7vw, 96px); }
.lightbox__sahne img { max-height: calc(100vh - 170px); width: auto; max-width: 100%; }
.lightbox__yazi { font-size: 15px; color: var(--acik-yosun); text-align: center; }
.lightbox__sayac { margin-left: 10px; }
.lightbox__kapat, .lightbox__ok {
  position: absolute; padding: 10px; border: 0; background: none; color: var(--sis); cursor: pointer;
}
.lightbox__kapat { top: 16px; right: 16px; }
.lightbox__kapat .ikon, .lightbox__ok .ikon { width: 32px; height: 32px; stroke-width: 1.1; }
.lightbox__ok { top: 50%; transform: translateY(-50%); }
.lightbox__ok--sol { left: 12px; }
.lightbox__ok--sag { right: 12px; }

/* ---------- Animasyonlar (Carsten referansından uyarlandı) ----------
   Gizli başlangıç durumları yalnızca JavaScript çalıştığında (.js) uygulanır. */

/* Kaydırmayla belirme: 30 px aşağıdan, referanstaki süre ve eğriyle */
.js .gorun {
  opacity: 0; transform: translate3d(0, 30px, 0);
  transition: opacity 0.37s ease-out, transform 0.55s cubic-bezier(0.18, 0.79, 0.29, 0.93);
  transition-delay: var(--gecikme, 0s);
}
.js .gorun--opak { transform: none; transition: opacity 0.9s ease-out; transition-delay: var(--gecikme, 0s); }
.js .gorun.gorundu { opacity: 1; transform: none; }

/* Harf harf başlıklar: tek harfler yukarıdan, çiftler aşağıdan dönerek gelir */
.harfler .kelime { display: inline-flex; white-space: nowrap; perspective: 600px; }
.harfler .harf {
  display: inline-block; opacity: 0; transform-origin: 50% 50%;
  transform: translate3d(0, var(--hy, -35px), 20px) rotateX(var(--hd, 50deg));
  transition: opacity 0.6s, transform 0.9s cubic-bezier(0.45, 0.85, 0.21, 0.95);
  transition-delay: calc(var(--i) * var(--harf-arasi, 45ms) + var(--gecikme, 0s));
}
.harfler .harf:nth-child(even) { --hy: 35px; --hd: -50deg; }
.harfler.gorundu .harf,
.vitrin.gorundu .vitrin__slayt.aktif .harf { opacity: 1; transform: none; }
.vitrin__slayt:not(.aktif) .harf { transition-duration: 0.3s; transition-delay: 0s; }

/* Vitrin: etkin süitin paneli sırayla gelir */
.vitrin__panel > * {
  opacity: 0; transform: translate3d(0, 30px, 0);
  transition: opacity 0.37s ease-out, transform 0.55s cubic-bezier(0.18, 0.79, 0.29, 0.93);
}
.vitrin.gorundu .vitrin__slayt.aktif .vitrin__panel > * { opacity: 1; transform: none; }
.vitrin.gorundu .vitrin__slayt.aktif .vitrin__panel > :nth-child(1) { transition-delay: 0.35s; }
.vitrin.gorundu .vitrin__slayt.aktif .vitrin__panel > :nth-child(2) { transition-delay: 0.45s; }
.vitrin.gorundu .vitrin__slayt.aktif .vitrin__panel > :nth-child(3) { transition-delay: 0.55s; }
.vitrin.gorundu .vitrin__slayt.aktif .vitrin__panel > :nth-child(4) { transition-delay: 0.65s; }
html:not(.js) .vitrin__slayt.aktif .vitrin__panel > * { opacity: 1; transform: none; }

/* Parallax katmanları */
.selale__gorsel, .puan__gorsel, .sayfa-bas__gorsel { overflow: hidden; }
.selale__gorsel img, .puan__gorsel img, .sayfa-bas__gorsel img {
  position: relative; top: -12%; height: 124%;
  transform: translate3d(0, var(--py, 0), 0);
}
.kolaj__gorsel img { transform: translate3d(0, var(--py, 0), 0); }
.cevre-kart--sag img { object-position: 100% 50%; transform: scale(1.45); transform-origin: 100% 0; }

/* Kendini çizen çizgiler */
.js .cizgi-ciz { transform: scaleY(0); transform-origin: top; transition: transform 1.1s cubic-bezier(0.57, 0.39, 0, 0.86); }
.js .cizgi-ciz.gorundu { transform: none; }
.js .muhur::after { transform: scaleY(0); transform-origin: top; transition: transform 1.1s cubic-bezier(0.57, 0.39, 0, 0.86) 0.3s; }
.js .muhur.gorundu::after { transform: none; }

/* Metin bağlantılarında soldan sağa alt çizgi */
.alt a, .iletisim__blok a:not(.dugme), .menu__iletisim a:not(.dugme), .kirinti a {
  text-decoration: none;
  background: linear-gradient(currentColor, currentColor) 0 100% / 0 1px no-repeat;
  transition: background-size 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96), color 0.25s;
}
.alt a:hover, .iletisim__blok a:not(.dugme):hover, .menu__iletisim a:not(.dugme):hover, .kirinti a:hover { background-size: 100% 1px; }

/* Tam ekran menü: öğeler sırayla gelir */
.menu[open] .menu__nav li { animation: menu-gel 0.7s cubic-bezier(0.18, 0.79, 0.29, 0.93) both; animation-delay: calc(var(--i) * 60ms + 120ms); }
.menu[open] .menu__iletisim { animation: belir 0.8s ease both 0.5s; }
@keyframes menu-gel { from { opacity: 0; transform: translate3d(0, 26px, 0); } to { opacity: 1; transform: none; } }

/* Oda şeridinde "Sürükle" imleci */
.serit--imlec, .serit--imlec * { cursor: none; }
.serit--imlec.surukleniyor { cursor: none; }
.surukle-imlec {
  position: fixed; left: 0; top: 0; z-index: 60; pointer-events: none;
  width: 112px; height: 112px; margin: -56px 0 0 -56px;
  opacity: 0; transition: opacity 0.3s ease-out;
}
.surukle-imlec.gorunur { opacity: 1; }
.surukle-imlec__ic {
  display: grid; place-items: center; width: 100%; height: 100%; border-radius: 50%;
  background: rgba(20, 38, 29, 0.9); color: var(--sis);
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  transform: scale(0.4); transition: transform 0.45s var(--gecis);
}
.surukle-imlec.gorunur .surukle-imlec__ic { transform: scale(1); }
.surukle-imlec.basili .surukle-imlec__ic { transform: scale(0.82); }

/* ---------- Hareket tercihi ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
  .js .gorun, .harfler .harf, .vitrin__panel > *, .js .cizgi-ciz, .js .muhur::after { opacity: 1 !important; transform: none !important; }
  .hero__medya, .hero__slayt img, .kolaj__gorsel img, .muhur__halka,
  .selale__gorsel img, .puan__gorsel img, .sayfa-bas__gorsel img { transform: none !important; }
  .surukle-imlec { display: none; }
  .serit--imlec, .serit--imlec * { cursor: auto; }
}
