/* ==========================================================================
   Kardeşler Pansiyon — Burdur Erkek Apart & Erkek Pansiyon
   Tasarım sistemi / stil dosyası
   ========================================================================== */

:root {
  /* Marka renkleri — logo kırmızısı */
  --kirmizi: #d62828;
  --kirmizi-koyu: #a4161a;
  --kirmizi-acik: #f8e7e7;

  /* Nötr palet */
  --murekkep: #14100f;
  --murekkep-yumusak: #4a4342;
  --gri: #7b7371;
  --cizgi: #e7e1df;
  --zemin: #ffffff;
  --zemin-alt: #faf7f5;
  --zemin-koyu: #171313;

  /* WhatsApp */
  --whatsapp: #25d366;
  --whatsapp-koyu: #128c7e;

  /* Tipografi */
  --font-baslik: "Outfit", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-metin: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Ölçek */
  --kenar: clamp(1.15rem, 4vw, 2.5rem);
  --kap: 1180px;
  --radius: 16px;
  --radius-sm: 10px;
  --golge: 0 1px 2px rgba(20, 16, 15, .05), 0 8px 24px -12px rgba(20, 16, 15, .18);
  --golge-yuksek: 0 2px 4px rgba(20, 16, 15, .06), 0 18px 48px -18px rgba(20, 16, 15, .28);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 88px;
  /* Ekran disina park eden sabit panelin (mobil menu) yatay kaydirma
     olusturmasini engeller. "clip" kullaniyoruz; "hidden" olsaydi html
     kaydirma kabi haline gelir ve sticky baslik bozulurdu. */
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-metin);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--murekkep-yumusak);
  background: var(--zemin);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

h1, h2, h3, h4 {
  font-family: var(--font-baslik);
  color: var(--murekkep);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0 0 .6em;
  font-weight: 700;
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 5.6vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.4rem); }

p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--kirmizi-koyu); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--kirmizi); }

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

:focus-visible {
  outline: 3px solid var(--kirmizi);
  outline-offset: 3px;
  border-radius: 4px;
}

.kap {
  width: 100%;
  max-width: var(--kap);
  margin-inline: auto;
  padding-inline: var(--kenar);
}

.atla {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--kirmizi);
  color: #fff;
  padding: .8rem 1.2rem;
  z-index: 999;
  border-radius: 0 0 8px 0;
  font-weight: 600;
}
.atla:focus { left: 0; }

/* ---------------------------------------------------------------- Logo -- */

.logo {
  display: inline-flex;
  flex-direction: column;
  gap: .1rem;
  text-decoration: none;
  line-height: 1;
}

.logo__ad {
  font-family: var(--font-baslik);
  font-weight: 800;
  font-size: clamp(1.28rem, 3.2vw, 1.6rem);
  letter-spacing: -.035em;
  color: var(--kirmizi);
  text-transform: uppercase;
}

.logo__alt {
  font-family: var(--font-metin);
  font-size: .625rem;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--gri);
}

/* -------------------------------------------------------------- Başlık -- */

.ustbar {
  background: var(--murekkep);
  color: #d7cfcd;
  font-size: .82rem;
  letter-spacing: .01em;
}
.ustbar .kap {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.5rem;
  align-items: center;
  justify-content: center;
  padding-block: .55rem;
  text-align: center;
}
.ustbar a { color: #fff; text-decoration: none; font-weight: 600; }
.ustbar a:hover { color: #ffb3b3; text-decoration: underline; }
.ustbar span { display: inline-flex; align-items: center; gap: .45rem; }
.ustbar svg { flex: none; opacity: .75; }

.baslik {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(14px) saturate(180%);
  border-bottom: 1px solid var(--cizgi);
}

.baslik .kap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .85rem;
}

.menu { display: flex; align-items: center; gap: clamp(.5rem, 1.8vw, 1.6rem); }

.menu a {
  font-size: .95rem;
  font-weight: 500;
  color: var(--murekkep-yumusak);
  text-decoration: none;
  padding: .4rem 0;
  position: relative;
}
.menu a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--kirmizi);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.menu a:hover, .menu a[aria-current="page"] { color: var(--murekkep); }
.menu a:hover::after, .menu a[aria-current="page"]::after { transform: scaleX(1); }

.menu-ac {
  display: none;
  background: none;
  border: 1px solid var(--cizgi);
  border-radius: 10px;
  padding: .5rem;
  cursor: pointer;
  color: var(--murekkep);
}

/* --------------------------------------------------------------- Butonlar */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-metin);
  font-size: .97rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { flex: none; }

.btn--kirmizi { background: var(--kirmizi); color: #fff; box-shadow: 0 8px 20px -10px rgba(214, 40, 40, .8); }
.btn--kirmizi:hover { background: var(--kirmizi-koyu); color: #fff; }

.btn--wa { background: var(--whatsapp); color: #06301a; box-shadow: 0 8px 20px -10px rgba(37, 211, 102, .9); }
.btn--wa:hover { background: #1fbe5b; color: #06301a; }

.btn--cizgi { border-color: var(--cizgi); color: var(--murekkep); background: #fff; }
.btn--cizgi:hover { border-color: var(--kirmizi); color: var(--kirmizi); }

.btn--acik { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.35); backdrop-filter: blur(4px); }
.btn--acik:hover { background: rgba(255,255,255,.24); color: #fff; }

.baslik .btn { padding: .6rem 1.15rem; font-size: .9rem; }

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

.hero {
  position: relative;
  color: #fff;
  isolation: isolate;
  background: var(--zemin-koyu);
}

.hero__gorsel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(16,11,11,.62) 0%, rgba(16,11,11,.72) 45%, rgba(16,11,11,.9) 100%),
    linear-gradient(90deg, rgba(16,11,11,.5) 0%, rgba(16,11,11,.1) 70%);
}

.hero .kap { padding-block: clamp(3.5rem, 9vw, 6.5rem); }
.hero__ic { max-width: 44rem; }

.rozet {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--kirmizi);
  color: #fff;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .42rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
}

.hero h1 { color: #fff; margin-bottom: .5em; }
.hero h1 em { font-style: normal; color: #ff9d9d; }

.hero__ozet {
  font-size: clamp(1.02rem, 2.2vw, 1.2rem);
  color: #e6dedc;
  max-width: 38rem;
  margin-bottom: 2rem;
}

.hero__aksiyon { display: flex; flex-wrap: wrap; gap: .75rem; }

.hero__notlar {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.6rem;
  margin-top: 2.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255,255,255,.18);
  font-size: .9rem;
  color: #ded5d3;
}
.hero__notlar span { display: inline-flex; align-items: center; gap: .5rem; }
.hero__notlar svg { color: var(--whatsapp); flex: none; }

/* -------------------------------------------------------------- Bölümler */

.bolum { padding-block: clamp(3.2rem, 8vw, 5.5rem); }
.bolum--alt { background: var(--zemin-alt); border-block: 1px solid var(--cizgi); }
.bolum--koyu { background: var(--zemin-koyu); color: #cfc6c4; }
.bolum--koyu h2, .bolum--koyu h3 { color: #fff; }
.bolum--koyu .etiket { color: #ff8f8f; }
.bolum--koyu .bilgi-liste strong { color: #fff; }
.bolum--koyu .bilgi-liste svg { color: #ff8f8f; }

/* Öğün kartı */
.ogun {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
}
.ogun + .ogun { margin-top: 1rem; }
.ogun__ust { display: flex; align-items: center; gap: .8rem; margin-bottom: .7rem; }
.ogun__ust h3 { margin: 0; font-size: 1.15rem; }
.ogun__saat {
  margin-left: auto;
  font-size: .8rem;
  font-weight: 600;
  color: #ffc9c9;
  background: rgba(214, 40, 40, .28);
  border: 1px solid rgba(255, 143, 143, .35);
  padding: .28rem .7rem;
  border-radius: 999px;
  white-space: nowrap;
}
.ogun svg { color: #ff8f8f; flex: none; }
.ogun p { margin: 0; font-size: .95rem; color: #c8bfbd; }

.bolum__ust { max-width: 42rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.bolum__ust--orta { margin-inline: auto; text-align: center; }

.etiket {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--kirmizi);
  margin-bottom: .9rem;
}

.giris { font-size: clamp(1rem, 2vw, 1.12rem); }

/* ------------------------------------------------------------- Izgaralar */

.izgara { display: grid; gap: clamp(1rem, 2.4vw, 1.75rem); }
.izgara--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.izgara--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.izgara--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* Özellik kartları */
.ozellik {
  background: #fff;
  border: 1px solid var(--cizgi);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.ozellik:hover { transform: translateY(-3px); box-shadow: var(--golge); border-color: #d9d0cd; }
.ozellik h3 { margin-bottom: .4rem; font-size: 1.12rem; }
.ozellik p { font-size: .95rem; margin: 0; }

.ozellik__ikon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--kirmizi-acik);
  color: var(--kirmizi);
  margin-bottom: 1.1rem;
}

/* ----------------------------------------------------------- Oda kartları */

.oda {
  background: #fff;
  border: 1px solid var(--cizgi);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.oda:hover { transform: translateY(-4px); box-shadow: var(--golge-yuksek); }

.oda__gorsel { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--zemin-alt); }
.oda__gorsel img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.oda:hover .oda__gorsel img { transform: scale(1.045); }

.oda__rozet {
  position: absolute;
  top: .85rem;
  left: .85rem;
  background: rgba(20,16,15,.82);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .35rem .8rem;
  border-radius: 999px;
}

.oda__ic { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.oda__ic h3 { margin-bottom: .5rem; }
.oda__ic p { font-size: .95rem; }

.oda__liste {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.oda__liste li {
  font-size: .8rem;
  font-weight: 500;
  background: var(--zemin-alt);
  border: 1px solid var(--cizgi);
  color: var(--murekkep-yumusak);
  padding: .3rem .7rem;
  border-radius: 999px;
}

.oda__alt { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.oda__fiyat { font-family: var(--font-baslik); font-weight: 700; color: var(--murekkep); font-size: 1rem; }
.oda__fiyat small { display: block; font-family: var(--font-metin); font-weight: 400; font-size: .78rem; color: var(--gri); }

/* ---------------------------------------------------------------- Galeri */

.galeri { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: .85rem; }

.galeri__oge {
  position: relative;
  border: 0;
  padding: 0;
  margin: 0;
  background: var(--zemin-alt);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
  display: block;
}
.galeri__oge img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, filter .3s ease; }
.galeri__oge:hover img { transform: scale(1.06); filter: brightness(1.05); }
.galeri__oge--uzun { grid-row: span 2; aspect-ratio: 4 / 6.2; }

.galeri__oge figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.6rem .85rem .7rem;
  background: linear-gradient(180deg, transparent, rgba(16,11,11,.85));
  color: #fff;
  font-size: .82rem;
  font-weight: 500;
  text-align: left;
  opacity: 0;
  transition: opacity .25s ease;
}
.galeri__oge:hover figcaption, .galeri__oge:focus-visible figcaption { opacity: 1; }

/* Lightbox */
.kutu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(12, 8, 8, .94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
}
.kutu[open], .kutu.acik { display: flex; }
.kutu img { max-width: 100%; max-height: 78vh; border-radius: 8px; object-fit: contain; }
.kutu figcaption { color: #e4dbd9; text-align: center; margin-top: 1rem; font-size: .92rem; }
.kutu__kapat, .kutu__ok {
  position: absolute;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .2s ease;
}
.kutu__kapat:hover, .kutu__ok:hover { background: rgba(255,255,255,.28); }
.kutu__kapat { top: 1.2rem; right: 1.2rem; }
.kutu__ok--onceki { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.kutu__ok--sonraki { right: 1.2rem; top: 50%; transform: translateY(-50%); }

/* ------------------------------------------------------------ Konum / SSS */

.ikili { display: grid; gap: clamp(1.5rem, 4vw, 3rem); grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); align-items: start; }

.harita {
  border: 1px solid var(--cizgi);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--zemin-alt);
  box-shadow: var(--golge);
}
.harita iframe { width: 100%; height: 100%; border: 0; display: block; }

.bilgi-liste { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem; }
.bilgi-liste li { display: flex; gap: .95rem; align-items: flex-start; }
.bilgi-liste svg { flex: none; color: var(--kirmizi); margin-top: .28rem; }
.bilgi-liste strong { display: block; color: var(--murekkep); font-weight: 600; font-size: .95rem; }
.bilgi-liste span, .bilgi-liste a { font-size: .97rem; }
.bilgi-liste address { font-style: normal; font-size: .97rem; }

.sss { display: grid; gap: .75rem; max-width: 50rem; margin-inline: auto; }
.sss details {
  background: #fff;
  border: 1px solid var(--cizgi);
  border-radius: var(--radius-sm);
  padding: 0 1.3rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.sss details[open] { border-color: #dbd2cf; box-shadow: var(--golge); }
.sss summary {
  font-family: var(--font-baslik);
  font-weight: 600;
  font-size: 1.03rem;
  color: var(--murekkep);
  cursor: pointer;
  padding: 1.15rem 2rem 1.15rem 0;
  position: relative;
  list-style: none;
}
.sss summary::-webkit-details-marker { display: none; }
.sss summary::after {
  content: "";
  position: absolute;
  right: .2rem;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--kirmizi);
  border-bottom: 2px solid var(--kirmizi);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .2s ease;
}
.sss details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.sss details > div { padding-bottom: 1.3rem; font-size: .97rem; }

/* --------------------------------------------------------------- Şerit CTA */

.serit { background: var(--kirmizi); color: #fff; }
.serit .kap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: clamp(2.2rem, 5vw, 3.2rem);
}
.serit h2 { color: #fff; margin-bottom: .35rem; font-size: clamp(1.5rem, 3.4vw, 2.05rem); }
.serit p { color: #ffe3e3; margin: 0; font-size: 1rem; }
.serit .btn--cizgi { background: #fff; border-color: #fff; color: var(--kirmizi-koyu); }
.serit .btn--cizgi:hover { background: #fff8f8; color: var(--kirmizi-koyu); }

/* ------------------------------------------------------------ İç sayfa üst */

.sayfa-ust {
  background: var(--zemin-alt);
  border-bottom: 1px solid var(--cizgi);
  padding-block: clamp(2.4rem, 6vw, 4rem);
}
.sayfa-ust h1 { margin-bottom: .4em; }
.sayfa-ust p { max-width: 42rem; font-size: 1.06rem; margin: 0; }

.kirinti { font-size: .85rem; color: var(--gri); margin-bottom: 1.2rem; }
.kirinti ol { list-style: none; display: flex; flex-wrap: wrap; gap: .45rem; margin: 0; padding: 0; }
.kirinti li:not(:last-child)::after { content: "/"; margin-left: .45rem; color: var(--cizgi); }
.kirinti a { color: var(--gri); text-decoration: none; }
.kirinti a:hover { color: var(--kirmizi); text-decoration: underline; }

/* ------------------------------------------------------------------ Footer */

.altbilgi { background: var(--zemin-koyu); color: #a89f9d; padding-block: clamp(2.8rem, 6vw, 4rem) 0; font-size: .93rem; }
.altbilgi h3 { color: #fff; font-size: 1rem; margin-bottom: 1rem; letter-spacing: 0; }
.altbilgi a { color: #d8d0ce; text-decoration: none; }
.altbilgi a:hover { color: #fff; text-decoration: underline; }
.altbilgi .logo__alt { color: #8a817f; }
.altbilgi__izgara { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }
.altbilgi ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.altbilgi address { font-style: normal; }
.altbilgi__telif {
  margin-top: 2.8rem;
  padding-block: 1.4rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
  justify-content: space-between;
  font-size: .84rem;
  color: #857c7a;
}

/* --------------------------------------------------------- Yüzen butonlar */

.fab {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  align-items: flex-end;
}

.fab__btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 20px -6px rgba(20,16,15,.45);
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
}
.fab__btn:hover { transform: scale(1.08); color: #fff; box-shadow: 0 10px 26px -6px rgba(20,16,15,.55); }
.fab__btn--wa { background: var(--whatsapp); }
.fab__btn--tel { background: var(--kirmizi); width: 52px; height: 52px; }

.fab__btn--wa::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  animation: nabiz 2.4s ease-out infinite;
}
@keyframes nabiz {
  0% { transform: scale(1); opacity: .7; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

.fab__etiket {
  position: absolute;
  right: calc(100% + .65rem);
  top: 50%;
  transform: translateY(-50%);
  background: var(--murekkep);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  padding: .4rem .8rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.fab__btn:hover .fab__etiket, .fab__btn:focus-visible .fab__etiket { opacity: 1; }

/* Mobil alt çağrı çubuğu */
.mobil-cubuk {
  display: none;
  position: fixed;
  inset: auto 0 0 0;
  width: 100%;
  max-width: 100%;
  z-index: 95;
  background: #fff;
  border-top: 1px solid var(--cizgi);
  padding: .6rem .75rem calc(.6rem + env(safe-area-inset-bottom));
  gap: .6rem;
  box-shadow: 0 -6px 20px -12px rgba(20,16,15,.35);
}
.mobil-cubuk .btn {
  flex: 1 1 0;
  /* min-width:auto varsayilani flex ogesinin icerigin altina sikismasini
     engeller; buyuk yazi boyutu veya yedek fontta butonlar tasar. */
  min-width: 0;
  padding: .78rem .6rem;
  font-size: .93rem;
  overflow: hidden;
}

/* ------------------------------------------------------------------ Duyarlı */

@media (max-width: 860px) {
  .menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 84vw);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: .25rem;
    padding: 5.5rem 1.5rem 2rem;
    box-shadow: -10px 0 40px -20px rgba(20,16,15,.5);
    transform: translateX(100%);
    /* Kapaliyken gorunmez: hem klavye/ekran okuyucu erisimini keser
       hem de tasma hesabina girmesini onler. */
    visibility: hidden;
    transition: transform .28s ease, visibility 0s linear .28s;
    z-index: 70;
    overflow-y: auto;
  }
  .menu[data-acik="true"] {
    transform: translateX(0);
    visibility: visible;
    transition: transform .28s ease, visibility 0s;
  }
  .menu a { padding: .85rem 0; border-bottom: 1px solid var(--cizgi); font-size: 1.02rem; }
  .menu a::after { display: none; }
  .menu .btn { margin-top: 1.2rem; }
  .menu-ac { display: grid; place-items: center; position: relative; z-index: 80; }
  .baslik .btn--kirmizi { display: none; }
  .baslik .menu .btn--kirmizi { display: inline-flex; }
  .perde {
    position: fixed;
    inset: 0;
    background: rgba(20,16,15,.5);
    z-index: 65;
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
  }
  .perde[data-acik="true"] { opacity: 1; pointer-events: auto; }
}

@media (max-width: 640px) {
  body { padding-bottom: 72px; }
  .mobil-cubuk { display: flex; }
  /* Alt cubuk zaten Ara + WhatsApp sunuyor; yuzen butonlar hem gereksiz
     tekrar hem de dar ekranda sikisiklik yaratiyor. */
  .fab { display: none; }
  .ustbar { font-size: .76rem; }
  .ustbar .kap { padding-block: .45rem; }
  .galeri { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .galeri__oge--uzun { grid-row: span 1; aspect-ratio: 4 / 3; }
  .hero__aksiyon .btn { flex: 1 1 100%; }
}

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

@media print {
  .baslik, .ustbar, .fab, .mobil-cubuk, .serit, .harita { display: none !important; }
  body { color: #000; }
}
