/* ==========================================================================
   No 33 Suit Otel — Ana stil dosyasi
   Mersin / Yenisehir · Modern sehir oteli
   Saf CSS3, harici kutuphane veya font istegi yoktur.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokenlar
   -------------------------------------------------------------------------- */
:root {
  /* Renkler — logodaki siyah + sicak pirinc ve fotograflardaki ceviz/antrasit */
  --ink:        #17181b;
  --ink-2:      #212327;
  --ink-3:      #2c2f34;
  --paper:      #fbf9f6;
  --paper-2:    #f4f0ea;
  --paper-3:    #ebe5dc;
  --brass:      #a9865b;
  --brass-deep: #8a6b45;
  --walnut:     #6d4e34;
  --text:       #1d1e21;
  --muted:      #6c6a66;
  --muted-2:    #8d8a84;
  --line:       rgba(23, 24, 27, .12);
  --line-soft:  rgba(23, 24, 27, .07);
  --line-dark:  rgba(255, 255, 255, .14);
  --white:      #fff;

  /* Tipografi */
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino,
           Georgia, "Times New Roman", serif;
  --sans:  -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
           "Helvetica Neue", Arial, "Noto Sans", sans-serif;

  /* Olcu */
  --wrap: 1280px;
  --gut: 20px;
  --radius: 3px;
  --radius-lg: 5px;

  /* Gecisler */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --dur: .45s;

  --header-h: 76px;
}

@media (min-width: 768px)  { :root { --gut: 32px; } }
@media (min-width: 1200px) { :root { --gut: 48px; --header-h: 88px; } }

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

@media (min-width: 1024px) { body { font-size: 17px; } }

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

a { color: inherit; text-decoration: none; }

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: -.015em;
  text-wrap: balance;
}

p { margin: 0; }

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

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

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

/* Ekran okuyucu */
.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;
}

.skip-link {
  position: absolute; top: 0; left: 50%;
  transform: translate(-50%, -120%);
  z-index: 200;
  padding: 12px 22px;
  background: var(--ink); color: #fff;
  font-size: .85rem; letter-spacing: .04em;
}
.skip-link:focus { transform: translate(-50%, 0); }

/* --------------------------------------------------------------------------
   3. Duzen yardimcilari
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.wrap--narrow { max-width: 880px; }

.section { padding-block: clamp(64px, 9vw, 132px); }
.section--tight { padding-block: clamp(48px, 6vw, 88px); }
.section--ink { background: var(--ink); color: #fff; }
.section--paper2 { background: var(--paper-2); }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* --------------------------------------------------------------------------
   4. Tipografi bilesenleri
   -------------------------------------------------------------------------- */
.eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin: 0 0 20px;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass-deep);
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px;
  background: currentColor; flex: none; opacity: .55;
}
.eyebrow--center { justify-content: center; }
.eyebrow--light { color: var(--brass); }

.display {
  font-size: clamp(2.35rem, 6.2vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -.025em;
}

.h2 { font-size: clamp(1.85rem, 3.7vw, 3rem); }
.h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); letter-spacing: -.01em; }
.h4 { font-size: clamp(1.05rem, 1.5vw, 1.2rem); letter-spacing: -.005em; }

.lede {
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
  line-height: 1.72;
  color: var(--muted);
}
.section--ink .lede { color: rgba(255, 255, 255, .74); }

.prose p + p { margin-top: 1.1em; }
.prose p { color: var(--muted); }
.section--ink .prose p { color: rgba(255, 255, 255, .72); }

.head-block { max-width: 660px; }
.head-block--center { margin-inline: auto; text-align: center; }
.head-block .lede { margin-top: 20px; }

/* --------------------------------------------------------------------------
   5. Butonlar
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-align: center;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), transform .2s var(--ease);
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn:active { transform: translateY(1px); }

.btn--solid { background: var(--ink); color: #fff; }
.btn--solid:hover { background: var(--brass-deep); }

.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--brass); color: #fff; }

.btn--ghost { border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: #fff; }

.btn--ghost-light { border-color: var(--line-dark); color: #fff; }
.btn--ghost-light:hover { border-color: #fff; background: #fff; color: var(--ink); }

.btn--wa { background: #1f8a5c; color: #fff; }
.btn--wa:hover { background: #19754e; }

.btn--sm { min-height: 44px; padding: 11px 20px; font-size: .75rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* Metin baglantisi (ok ile) */
.tlink {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .8rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line);
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.tlink svg { width: 15px; height: 15px; transition: transform var(--dur) var(--ease); }
.tlink:hover { border-color: var(--brass); color: var(--brass-deep); }
.tlink:hover svg { transform: translateX(4px); }
.tlink--light { color: #fff; border-color: var(--line-dark); }
.tlink--light:hover { color: var(--brass); border-color: var(--brass); }

/* --------------------------------------------------------------------------
   6. Ust bilgi seridi
   -------------------------------------------------------------------------- */
.topbar {
  position: relative; z-index: 60;
  background: var(--ink);
  color: rgba(255, 255, 255, .72);
  font-size: .78rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.topbar__in {
  display: flex; align-items: center; justify-content: center;
  gap: 10px 26px; flex-wrap: wrap;
  min-height: 42px; padding-block: 8px;
}
.topbar a, .topbar span {
  display: inline-flex; align-items: center; gap: 8px;
  transition: color var(--dur) var(--ease);
}
.topbar a:hover { color: #fff; }
.topbar svg { width: 14px; height: 14px; color: var(--brass); flex: none; }
.topbar__sep { display: none; width: 1px; height: 13px; background: rgba(255,255,255,.18); }

@media (min-width: 860px) {
  .topbar__in { justify-content: space-between; }
  .topbar__group { display: flex; align-items: center; gap: 24px; }
  .topbar__sep { display: block; }
}
/* Kucuk ekranlarda serit tek satirda kalsin, tasma olmasin.
   Not: secici ozgullugu ".topbar a" kuralini gecmek zorunda (aksi halde
   display:inline-flex kazanir ve gizleme calismaz). */
@media (max-width: 700px) {
  .topbar a.topbar__hide-sm,
  .topbar .topbar__hide-sm { display: none; }
}
@media (max-width: 460px) {
  .topbar a.topbar__hide-xs,
  .topbar .topbar__hide-xs { display: none; }
  /* WhatsApp gizlenince ayirici cizgi bosta kalmasin */
  .topbar .topbar__sep { display: none; }
}

/* --------------------------------------------------------------------------
   7. Header
   -------------------------------------------------------------------------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.header__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  min-height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: 13px; flex: none; }
.brand img { width: 46px; height: 46px; border-radius: 50%; }
.brand__text { display: none; line-height: 1.15; }
.brand__name {
  display: block;
  font-family: var(--serif);
  font-size: 1.06rem;
  letter-spacing: .01em;
  color: #fff;
  transition: color var(--dur) var(--ease);
}
.brand__sub {
  display: block;
  font-size: .62rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--brass);
  margin-top: 3px;
}
@media (min-width: 420px) { .brand__text { display: block; } }
@media (min-width: 1200px) { .brand img { width: 52px; height: 52px; } }

/* Masaustu menu.
   Kirilma noktasi 1200px: 7 menu ogesi + logo + CTA daha dar ekranlarda
   sigmiyor ve "ANA SAYFA" gibi ogeler iki satira boluniyordu. */
.nav { display: none; }
@media (min-width: 1200px) {
  .nav { display: flex; align-items: center; gap: 2px; }
  .nav a {
    position: relative;
    padding: 10px 11px;
    font-size: .79rem; font-weight: 500;
    letter-spacing: .04em; text-transform: uppercase;
    white-space: nowrap;
    color: rgba(255, 255, 255, .82);
    transition: color var(--dur) var(--ease);
  }
  .nav a::after {
    content: ""; position: absolute;
    left: 11px; right: 11px; bottom: 4px; height: 1px;
    background: var(--brass);
    transform: scaleX(0); transform-origin: left;
    transition: transform var(--dur) var(--ease);
  }
  .nav a:hover { color: #fff; }
  .nav a:hover::after { transform: scaleX(1); }
  .nav a[aria-current="page"] { color: #fff; }
  .nav a[aria-current="page"]::after { transform: scaleX(1); }
}

.header__cta { display: none; }
@media (min-width: 1200px) { .header__cta { display: inline-flex; } }

/* Kaydirma sonrasi okunabilir sabit yapi */
.header.is-stuck {
  background: rgba(251, 249, 246, .94);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom-color: var(--line);
}
.header.is-stuck .brand__name { color: var(--ink); }
.header.is-stuck .nav a { color: var(--muted); }
.header.is-stuck .nav a:hover,
.header.is-stuck .nav a[aria-current="page"] { color: var(--ink); }
.header.is-stuck .burger span { background: var(--ink); }

/* Hamburger */
.burger {
  display: inline-flex; flex-direction: column; justify-content: center;
  gap: 5px; width: 46px; height: 46px; padding: 0 10px;
  margin-right: -10px;
}
.burger span {
  display: block; height: 1.5px; background: #fff;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease),
              background var(--dur) var(--ease);
}
.burger span:nth-child(2) { width: 70%; }
@media (min-width: 1200px) { .burger { display: none; } }

/* --------------------------------------------------------------------------
   8. Mobil menu (drawer)
   -------------------------------------------------------------------------- */
.drawer {
  position: fixed; inset: 0; z-index: 130;
  display: grid; grid-template-columns: 1fr;
  visibility: hidden;
  pointer-events: none;
}
.drawer.is-open { visibility: visible; pointer-events: auto; }

.drawer__scrim {
  position: absolute; inset: 0;
  background: rgba(10, 11, 12, .55);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.drawer.is-open .drawer__scrim { opacity: 1; }

.drawer__panel {
  position: relative;
  margin-left: auto;
  width: min(400px, 88vw);
  height: 100%;
  background: var(--ink);
  color: #fff;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--dur) var(--ease);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.drawer.is-open .drawer__panel { transform: translateX(0); }

.drawer__top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line-dark);
}
.drawer__close {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
}
.drawer__close svg { width: 20px; height: 20px; }

.drawer__nav { padding: 12px 22px 8px; }
.drawer__nav a {
  display: block;
  padding: 15px 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  color: rgba(255, 255, 255, .84);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease);
}
.drawer__nav a:hover { color: #fff; padding-left: 8px; }
.drawer__nav a[aria-current="page"] { color: var(--brass); }

.drawer__foot { margin-top: auto; padding: 22px; display: grid; gap: 10px; }
.drawer__meta {
  padding: 16px 22px 22px;
  font-size: .84rem;
  color: rgba(255, 255, 255, .6);
  display: grid; gap: 10px;
}
.drawer__meta a { display: flex; gap: 10px; align-items: flex-start; }
.drawer__meta svg { width: 15px; height: 15px; color: var(--brass); flex: none; margin-top: 4px; }

body.is-locked { overflow: hidden; }

/* --------------------------------------------------------------------------
   9. Hero — "galeri baskisi" duzeni (ana sayfa)

   Konsept: kirik beyaz zemin uzerine paspartulu cerceve icinde sunulan tek
   bir fotograf, yaninda iri serif baslik; altta koyu bir capa seridi.
   Fotograflarin tamami dikey (3:4) oldugu icin cerceveli sunum tercih edildi;
   boylece kare kirpilmadan, galeri baskisi gibi durur.
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--paper);
  margin-top: calc(-1 * var(--header-h));
  overflow: hidden;
}
/* Zeminde cok hafif sicaklik ve derinlik (gradient kalabaligi yok) */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(115% 75% at 90% 2%, rgba(169, 134, 91, .14), transparent 58%),
    linear-gradient(to bottom, #fdfcfa 0%, var(--paper) 44%, var(--paper-2) 100%);
}

.hero__grid {
  position: relative;
  display: grid;
  row-gap: clamp(26px, 4vw, 34px);
  padding-top: calc(var(--header-h) + clamp(26px, 5vw, 40px));
  padding-bottom: clamp(34px, 5vw, 48px);
}

.hero__title {
  font-size: clamp(2.5rem, 8.6vw, 4.9rem);
  line-height: .99;
  letter-spacing: -.033em;
  color: var(--ink);
  max-width: 16ch;
}
/* Tek bir vurgu: italik serif + pirinc ton */
.hero__title em { font-style: italic; color: var(--brass-deep); }

.hero__lede {
  font-size: clamp(1.02rem, 1.45vw, 1.16rem);
  line-height: 1.72;
  color: var(--muted);
  max-width: 44ch;
}
.hero__cta { margin-top: clamp(24px, 3vw, 32px); }

/* --- Fotograf: paspartulu cerceve --- */
.hero__figure { position: relative; margin: 0; }
.hero__mat {
  position: relative;
  padding: clamp(8px, 1.1vw, 13px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 34px 74px -44px rgba(23, 24, 27, .46);
}
.hero__mat img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 34%;
}

/* Galeri plakasi — fotografin kimligi */
.hero__plate {
  display: flex; align-items: center; gap: 14px;
  margin-top: 22px;
}
.hero__plate-line { flex: none; width: 32px; height: 1px; background: var(--brass); }
.hero__plate a {
  font-size: .71rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink);
  transition: color var(--dur) var(--ease);
}
.hero__plate a span { color: var(--muted-2); font-weight: 500; letter-spacing: .1em; }
.hero__plate a:hover { color: var(--brass-deep); }

/* Kesfet ipucu (yalnizca masaustu) */
.hero__scroll { display: none; }

/* --- Alt capa seridi --- */
.hero__meta { position: relative; background: var(--ink); }
.hero__meta-in { display: grid; grid-template-columns: repeat(2, 1fr); }
.hero__fact {
  display: flex; align-items: baseline; gap: 11px;
  padding: 17px 18px 17px 0;
  font-size: .83rem;
  color: rgba(255, 255, 255, .78);
  border-top: 1px solid rgba(255, 255, 255, .10);
}
.hero__fact-n {
  flex: none;
  font-family: var(--serif);
  font-size: .82rem;
  color: var(--brass);
}

@media (min-width: 560px) {
  /* Ince pirinc dis hat — yalnizca fotografin cevresini sarar, plaka yazisi
     cercevenin DISINDA kalir. (Dar ekranlarda tasmamasi icin 560px'ten sonra.) */
  .hero__mat::after {
    content: "";
    position: absolute; inset: -13px;
    pointer-events: none;
    border: 1px solid rgba(169, 134, 91, .40);
  }
  .hero__plate { margin-top: 30px; }
}

@media (max-width: 759px) {
  /* Sabit WhatsApp butonu son satirin yazisini kapatmasin */
  .hero__fact:last-child { padding-right: 66px; }
}
@media (max-width: 479px) {
  /* Dar ekranda butonlar tam genislikte, esit hizada */
  .hero__cta .btn { width: 100%; }
}

@media (min-width: 760px) {
  .hero__meta-in { grid-template-columns: repeat(4, 1fr); }
  .hero__fact {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, .12);
    padding: 22px 22px;
  }
  .hero__fact:first-child { border-left: 0; padding-left: 0; }
}

/* --- Masaustu: iki kolon, fotograf sag kolonda --- */
@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr minmax(300px, .78fr);
    column-gap: clamp(44px, 5.5vw, 92px);
    row-gap: 24px;
    align-content: center;
    /* Toplam hero (ust serit + bu izgara + alt capa seridi) yaklasik bir ekran
       yuksekliginde kalsin; capa seridi ilk ekranda gorunur olsun. */
    min-height: min(calc(100svh - 118px), 840px);
    padding-top: calc(var(--header-h) + clamp(32px, 4vw, 60px));
    padding-bottom: clamp(36px, 4.5vw, 64px);
  }
  .hero__head   { grid-column: 1; grid-row: 1; align-self: end; }
  .hero__body   { grid-column: 1; grid-row: 2; align-self: start; }
  .hero__figure {
    grid-column: 2; grid-row: 1 / span 2;
    justify-self: end; align-self: center;
    width: 100%; max-width: 505px;
  }
  .hero__mat img { aspect-ratio: 3 / 4; }
  .hero__title { max-width: 13ch; }

  .hero__scroll {
    display: inline-flex; align-items: center; gap: 13px;
    margin-top: 38px;
    font-size: .68rem; font-weight: 600;
    letter-spacing: .2em; text-transform: uppercase;
    color: var(--muted-2);
    transition: color var(--dur) var(--ease);
  }
  .hero__scroll::before {
    content: ""; flex: none;
    width: 1px; height: 36px;
    background: linear-gradient(to bottom, var(--brass), rgba(169, 134, 91, 0));
    animation: heroCue 2.6s var(--ease) infinite;
  }
  .hero__scroll:hover { color: var(--ink); }
}

@keyframes heroCue {
  0%, 100% { transform: scaleY(.5); transform-origin: top; opacity: .7; }
  50%      { transform: scaleY(1);  transform-origin: top; opacity: 1; }
}

/* Acik zeminli hero'da header yazilari koyu olmali (ana sayfa) */
body.head-light .header:not(.is-stuck) .brand__name { color: var(--ink); }
body.head-light .header:not(.is-stuck) .nav a { color: var(--muted); }
body.head-light .header:not(.is-stuck) .nav a:hover,
body.head-light .header:not(.is-stuck) .nav a[aria-current="page"] { color: var(--ink); }
body.head-light .header:not(.is-stuck) .burger span { background: var(--ink); }
body.head-light .header:not(.is-stuck) .header__cta {
  background: var(--ink); color: #fff;
}
body.head-light .header:not(.is-stuck) .header__cta:hover {
  background: var(--brass-deep);
}

/* --------------------------------------------------------------------------
   10. Sayfa basligi (ic sayfalar)
   -------------------------------------------------------------------------- */
.pagehead {
  position: relative;
  background: var(--ink);
  color: #fff;
  margin-top: calc(-1 * var(--header-h));
  padding-top: calc(var(--header-h) + clamp(56px, 8vw, 104px));
  padding-bottom: clamp(48px, 7vw, 92px);
  overflow: hidden;
}
.pagehead__media { position: absolute; inset: 0; }
.pagehead__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%; }
.pagehead__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,15,17,.93), rgba(14,15,17,.72) 60%, rgba(14,15,17,.62));
}
.pagehead__in { position: relative; }
.pagehead h1 {
  color: #fff;
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  max-width: 22ch;
}
.pagehead .lede { margin-top: 18px; max-width: 54ch; }

/* Kirinti */
.crumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 9px;
  margin-bottom: 22px;
  font-size: .76rem;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .6);
}
.crumb a { transition: color var(--dur) var(--ease); }
.crumb a:hover { color: #fff; }
.crumb svg { width: 12px; height: 12px; opacity: .5; }
.crumb [aria-current] { color: var(--brass); }

/* --------------------------------------------------------------------------
   11. Tanitim / istatistik
   -------------------------------------------------------------------------- */
.intro { display: grid; gap: clamp(36px, 5vw, 72px); }
@media (min-width: 940px) {
  .intro { grid-template-columns: .85fr 1.15fr; align-items: start; }
}

.pillars {
  display: grid; gap: 0;
  border-top: 1px solid var(--line);
}
.pillar {
  display: grid; grid-template-columns: 52px 1fr; gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.pillar__num {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--brass);
  padding-top: 2px;
}
.pillar h3 { margin-bottom: 7px; font-size: 1.12rem; }
.pillar p { font-size: .94rem; color: var(--muted); }

/* --------------------------------------------------------------------------
   12. Oda kartlari
   -------------------------------------------------------------------------- */
.rooms { display: grid; gap: clamp(28px, 3vw, 36px); }
@media (min-width: 700px)  { .rooms { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .rooms { grid-template-columns: repeat(3, 1fr); } }

.room {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.room:hover {
  border-color: var(--line);
  transform: translateY(-4px);
  box-shadow: 0 18px 44px -28px rgba(23, 24, 27, .32);
}

.room__media { position: relative; overflow: hidden; aspect-ratio: 4 / 5; }
.room__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.room:hover .room__media img { transform: scale(1.045); }

.room__tag {
  position: absolute; top: 14px; left: 14px;
  padding: 7px 13px;
  background: rgba(23, 24, 27, .82);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: .66rem; font-weight: 600;
  letter-spacing: .13em; text-transform: uppercase;
  border-radius: 2px;
}

.room__body { padding: 26px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.room__body h3 { margin-bottom: 10px; }
.room__desc { font-size: .94rem; color: var(--muted); }

.room__specs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 20px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line-soft);
}
.spec {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 11px;
  background: var(--paper-2);
  border-radius: 2px;
  font-size: .76rem;
  color: var(--ink);
}
.spec svg { width: 15px; height: 15px; color: var(--brass-deep); flex: none; }

.room__foot {
  margin-top: 22px; padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  justify-content: space-between;
}
.room__price {
  font-size: .78rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--brass-deep);
}
.room__links { display: flex; align-items: center; gap: 16px; }
.room__wa {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .76rem; font-weight: 600; letter-spacing: .04em;
  color: #1f8a5c;
  transition: color var(--dur) var(--ease);
}
.room__wa svg { width: 16px; height: 16px; }
.room__wa:hover { color: #19754e; }

/* --------------------------------------------------------------------------
   13. Ozellik izgarasi
   -------------------------------------------------------------------------- */
.features {
  display: grid; gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 560px)  { .features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 880px)  { .features { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1180px) { .features { grid-template-columns: repeat(5, 1fr); } }

.feature {
  background: var(--paper);
  padding: 30px 24px;
  display: flex; flex-direction: column; gap: 14px;
  transition: background var(--dur) var(--ease);
}
.feature:hover { background: #fff; }
.feature svg { width: 26px; height: 26px; color: var(--brass-deep); }
.feature h3 { font-family: var(--sans); font-size: .95rem; font-weight: 600; letter-spacing: 0; }
.feature p { font-size: .86rem; color: var(--muted); }

.section--ink .features { background: var(--line-dark); border-color: var(--line-dark); }
.section--ink .feature { background: var(--ink); }
.section--ink .feature:hover { background: var(--ink-3); }
.section--ink .feature svg { color: var(--brass); }
.section--ink .feature h3 { color: #fff; }
.section--ink .feature p { color: rgba(255, 255, 255, .64); }

/* --------------------------------------------------------------------------
   14. Asimetrik gorsel anlatim
   -------------------------------------------------------------------------- */
.split { display: grid; gap: clamp(32px, 5vw, 68px); align-items: center; }
@media (min-width: 940px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-media { grid-template-columns: 1.15fr .85fr; }
  .split--flip .split__media { order: 2; }
}

.split__media { position: relative; }
.split__media img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--radius-lg);
}
.split__media--tall img { aspect-ratio: 3 / 4; }

/* Ustune binen ikinci gorsel */
.split__stack { position: relative; }
.split__stack img:first-child { aspect-ratio: 3 / 4; }
.split__stack .split__inset {
  position: absolute; right: -6%; bottom: -8%;
  width: 46%;
  border: 7px solid var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 50px -30px rgba(23, 24, 27, .45);
}
.split__stack .split__inset img { aspect-ratio: 1 / 1; border-radius: 2px; }
.section--ink .split__stack .split__inset { border-color: var(--ink); }
@media (max-width: 560px) {
  .split__stack .split__inset { width: 40%; right: 0; bottom: -6%; border-width: 5px; }
}

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

.tickset { margin-top: 30px; display: grid; gap: 14px; }
.tick { display: grid; grid-template-columns: 22px 1fr; gap: 13px; align-items: start; }
.tick svg { width: 22px; height: 22px; color: var(--brass-deep); margin-top: 2px; }
.tick strong { display: block; font-weight: 600; font-size: .96rem; margin-bottom: 2px; }
.tick p { font-size: .9rem; color: var(--muted); }
.section--ink .tick svg { color: var(--brass); }
.section--ink .tick p { color: rgba(255, 255, 255, .66); }
.section--ink .tick strong { color: #fff; }

/* --------------------------------------------------------------------------
   15. Galeri
   -------------------------------------------------------------------------- */
.gal-filter {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.gal-filter button {
  padding: 10px 19px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
  color: var(--muted);
  transition: all var(--dur) var(--ease);
}
.gal-filter button:hover { border-color: var(--ink); color: var(--ink); }
.gal-filter button[aria-pressed="true"] {
  background: var(--ink); border-color: var(--ink); color: #fff;
}

.gal { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (min-width: 700px)  { .gal { grid-template-columns: repeat(3, 1fr); gap: 14px; } }
@media (min-width: 1080px) { .gal { grid-template-columns: repeat(4, 1fr); gap: 16px; } }

.gal__item {
  position: relative; display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-3);
}
.gal__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .85s var(--ease), opacity .3s var(--ease);
}
.gal__item:hover img { transform: scale(1.05); }
.gal__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,15,17,.42), rgba(14,15,17,0) 55%);
  opacity: 0; transition: opacity var(--dur) var(--ease);
}
.gal__item:hover::after { opacity: 1; }
.gal__cap {
  position: absolute; left: 14px; right: 14px; bottom: 12px; z-index: 2;
  color: #fff; font-size: .78rem;
  opacity: 0; transform: translateY(6px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.gal__item:hover .gal__cap { opacity: 1; transform: translateY(0); }

.gal__item.is-hidden { display: none; }

/* Ana sayfa on izleme — editorial ritim */
.gal--preview { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 700px) {
  .gal--preview { grid-template-columns: repeat(4, 1fr); grid-auto-rows: auto; }
  .gal--preview .gal__item:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: 1 / 1; }
}

.gal-empty {
  padding: 60px 0; text-align: center; color: var(--muted); font-size: .95rem;
}

/* --------------------------------------------------------------------------
   16. Lightbox
   -------------------------------------------------------------------------- */
.lb {
  position: fixed; inset: 0; z-index: 200;
  display: none;
  background: rgba(11, 12, 13, .96);
}
/* minmax(0,1fr): sade "1fr" satirin en kucuk boyutu min-content oldugu icin
   uzun (dikey) fotograflar satiri gerer ve gorsel ekrandan tasar. */
.lb.is-open { display: grid; grid-template-rows: auto minmax(0, 1fr) auto; }

.lb__top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px;
  color: rgba(255, 255, 255, .7);
  font-size: .82rem;
}
.lb__stage {
  position: relative;
  display: grid; place-items: center;
  padding: 0 12px;
  min-height: 0;
  overflow: hidden;
}
.lb__stage img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
  border-radius: 2px;
}
.lb__cap {
  padding: 14px 18px 22px; text-align: center;
  color: rgba(255, 255, 255, .68); font-size: .85rem;
}
.lb__btn {
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.lb__btn:hover { background: rgba(255, 255, 255, .12); border-color: rgba(255,255,255,.5); }
.lb__btn svg { width: 19px; height: 19px; }
.lb__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3;
}
.lb__nav--prev { left: 10px; }
.lb__nav--next { right: 10px; }
@media (min-width: 900px) {
  .lb__nav--prev { left: 28px; }
  .lb__nav--next { right: 28px; }
}

/* --------------------------------------------------------------------------
   17. Akordeon (SSS)
   -------------------------------------------------------------------------- */
.acc { border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__btn {
  width: 100%;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 20px;
  padding: 24px 0;
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: var(--ink);
  transition: color var(--dur) var(--ease);
}
.acc__btn:hover { color: var(--brass-deep); }
.acc__ico {
  position: relative; flex: none;
  width: 20px; height: 20px; margin-top: 4px;
}
.acc__ico::before, .acc__ico::after {
  content: ""; position: absolute; background: var(--brass-deep);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.acc__ico::before { top: 9.5px; left: 0; width: 20px; height: 1.5px; }
.acc__ico::after  { left: 9.5px; top: 0; width: 1.5px; height: 20px; }
.acc__btn[aria-expanded="true"] .acc__ico::after { transform: rotate(90deg); opacity: 0; }

/* Panel acilma/kapanma: max-height yontemi.
   (grid-template-rows 0fr->1fr yontemi auto yukseklikli kapsayicida
   guvenilir sekilde olcmedigi icin tercih edilmedi.) */
.acc__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--dur) var(--ease);
}
.acc__item.is-open .acc__panel { max-height: 40rem; }
.acc__panel p { padding-bottom: 26px; color: var(--muted); font-size: .96rem; max-width: 68ch; }

/* --------------------------------------------------------------------------
   18. Konum
   -------------------------------------------------------------------------- */
.loc { display: grid; gap: clamp(32px, 4vw, 56px); }
@media (min-width: 940px) { .loc { grid-template-columns: .9fr 1.1fr; align-items: start; } }

.loc__map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-2);
  aspect-ratio: 4 / 3;
}
.loc__map iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (min-width: 940px) { .loc__map { aspect-ratio: 1 / 1; } }

.nearby { border-top: 1px solid var(--line); margin-top: 30px; }
.nearby li {
  display: flex; align-items: center; gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: .96rem;
}
.nearby svg { width: 17px; height: 17px; color: var(--brass-deep); flex: none; }

.infoset { display: grid; gap: 0; border-top: 1px solid var(--line); }
.info {
  display: grid; grid-template-columns: 26px 1fr; gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.info svg { width: 20px; height: 20px; color: var(--brass-deep); margin-top: 4px; }
.info__label {
  font-size: .68rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 5px;
}
.info__val { font-size: 1.02rem; color: var(--ink); }
.info__val a { transition: color var(--dur) var(--ease); }
.info__val a:hover { color: var(--brass-deep); }
.info__note { font-size: .86rem; color: var(--muted); margin-top: 4px; }

/* --------------------------------------------------------------------------
   19. CTA seridi
   -------------------------------------------------------------------------- */
.cta {
  position: relative;
  background: var(--ink); color: #fff;
  overflow: hidden;
}
.cta__media { position: absolute; inset: 0; }
.cta__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; }
.cta__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(14,15,17,.95) 0%, rgba(14,15,17,.86) 45%, rgba(14,15,17,.66) 100%);
}
.cta__in { position: relative; padding-block: clamp(60px, 8vw, 112px); }
.cta h2 { color: #fff; max-width: 20ch; }
.cta .lede { margin-top: 20px; max-width: 48ch; }
.cta__actions { margin-top: 34px; }

/* --------------------------------------------------------------------------
   20. Form (demo)
   -------------------------------------------------------------------------- */
.form { display: grid; gap: 18px; }
@media (min-width: 620px) { .form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; } }

.field { display: grid; gap: 8px; }
.field label {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted-2);
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit; font-size: .98rem; color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(169, 134, 91, .16);
}

.form__note {
  padding: 15px 17px;
  background: var(--paper-2);
  border-left: 2px solid var(--brass);
  border-radius: 2px;
  font-size: .86rem; color: var(--muted);
}

/* --------------------------------------------------------------------------
   21. Footer
   -------------------------------------------------------------------------- */
.footer { background: var(--ink); color: rgba(255, 255, 255, .68); }
.footer__main {
  display: grid; gap: 40px;
  padding-block: clamp(52px, 7vw, 88px);
}
@media (min-width: 720px)  { .footer__main { grid-template-columns: 1.4fr 1fr 1fr; gap: 44px; } }
@media (min-width: 1024px) { .footer__main { grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 48px; } }

.footer__brand { display: flex; align-items: center; gap: 13px; margin-bottom: 20px; }
.footer__brand img { width: 52px; height: 52px; border-radius: 50%; }
.footer__brand .brand__name { color: #fff; font-size: 1.14rem; }
.footer__about { font-size: .92rem; max-width: 38ch; }

.footer h3 {
  font-family: var(--sans);
  font-size: .7rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.footer__links li { margin-bottom: 12px; }
.footer__links a {
  font-size: .93rem;
  transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease);
}
.footer__links a:hover { color: #fff; padding-left: 5px; }

.footer__contact { display: grid; gap: 15px; font-size: .93rem; }
.footer__contact a, .footer__contact div { display: flex; gap: 11px; align-items: flex-start; }
.footer__contact svg { width: 16px; height: 16px; color: var(--brass); flex: none; margin-top: 4px; }
.footer__contact a { transition: color var(--dur) var(--ease); }
.footer__contact a:hover { color: #fff; }

.social { display: flex; gap: 10px; margin-top: 24px; }
.social a {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  transition: all var(--dur) var(--ease);
}
.social a:hover { background: var(--brass); border-color: var(--brass); color: #fff; }
.social svg { width: 17px; height: 17px; }

.footer__bar {
  border-top: 1px solid var(--line-dark);
  padding-block: 24px;
  display: flex; flex-wrap: wrap; gap: 10px 24px;
  align-items: center; justify-content: space-between;
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
}

/* --------------------------------------------------------------------------
   22. Sabit WhatsApp butonu
   -------------------------------------------------------------------------- */
.wa-fab {
  position: fixed; right: 16px; bottom: 16px; z-index: 90;
  width: 54px; height: 54px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #1f8a5c; color: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 30px -8px rgba(15, 90, 60, .55);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.wa-fab:hover { background: #19754e; transform: translateY(-3px); }
.wa-fab svg { width: 27px; height: 27px; }
@media (min-width: 1080px) { .wa-fab { right: 26px; bottom: 26px; width: 58px; height: 58px; } }

/* Mobilde icerigi kapatmamasi icin sayfa sonuna bosluk */
.footer__bar { padding-bottom: 88px; }
@media (min-width: 1080px) { .footer__bar { padding-bottom: 24px; } }

/* --------------------------------------------------------------------------
   23. Hafif giris animasyonlari
   -------------------------------------------------------------------------- */
/* ONEMLI: Baslangic gizli durumu YALNIZCA JavaScript etkinken uygulanir
   (<html class="js">). JS calismazsa veya hata verirse tum icerik gorunur
   kalir — icerik hicbir kosulda gizlenmis olarak takilmaz. */
.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.js .reveal.is-in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .07s; }
.reveal-d2 { transition-delay: .14s; }
.reveal-d3 { transition-delay: .21s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .room:hover { transform: none; }
  .gal__item:hover img, .room:hover .room__media img { transform: none; }
}

/* --------------------------------------------------------------------------
   24. Yazdirma
   -------------------------------------------------------------------------- */
@media print {
  .header, .topbar, .wa-fab, .drawer, .lb, .gal-filter { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
  .hero, .pagehead { margin-top: 0; padding-top: 24px; background: #fff; color: #000; }
  .hero__media, .pagehead__media, .cta__media { display: none; }
  .hero .display, .pagehead h1, .cta h2 { color: #000; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; }
}
