/* =====================================================================
   Atak Hamam Spa — Ön yüz stil dosyası
   Tema değişkenleri yönetim panelinden (header.php içindeki :root bloğu)
   ezilebilir. Buradaki değerler güvenli varsayılanlardır.
   ===================================================================== */

/* ------------------------------------------------------------------ */
/* 1. Tema değişkenleri                                                */
/* ------------------------------------------------------------------ */
:root {
  /* Renk paleti — siyah, antrasit, koyu kahve, krem, şampanya altını */
  --c-ink:        #14120D;
  --c-charcoal:   #24211C;
  --c-espresso:   #3A2E23;
  --c-cream:      #FBF8F2;
  --c-cream-2:    #F4EEE3;
  --c-surface:    #FFFFFF;
  --c-gold:       #B8934D;
  --c-gold-soft:  #DCC79A;
  --c-bronze:     #97764B;
  --c-text:       #221F1A;
  --c-muted:      #6B6357;
  --c-line:       #E7DECE;
  --c-line-dark:  rgba(220, 199, 154, .18);

  /* Tipografi */
  --font-head: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --fs-base: 16px;
  --lh-base: 1.75;

  /* Ölçüler */
  --container: 1240px;
  --section-space: 104px;
  --radius: 4px;
  --radius-lg: 8px;
  --hero-height: 620px;
  --header-h: 82px;

  /* Gölgeler — yumuşak, düşük kontrast */
  --shadow-sm: 0 1px 2px rgba(24, 20, 14, .05);
  --shadow-md: 0 12px 34px -18px rgba(24, 20, 14, .28);
  --shadow-lg: 0 28px 70px -34px rgba(24, 20, 14, .42);

  --ease: cubic-bezier(.4, .16, .2, 1);
}

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

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

body {
  margin: 0;
  background: var(--c-cream);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
img { background: var(--c-cream-2); }

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.18;
  color: var(--c-ink);
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.15rem, 4.4vw, 3.5rem); }
h2 { font-size: clamp(1.85rem, 3.2vw, 2.75rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.65rem); }
h4 { font-size: 1.16rem; }

p  { margin: 0 0 1.15em; }
ul, ol { margin: 0 0 1.15em; padding-left: 1.2em; }

button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }

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

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

.ico { flex: none; vertical-align: middle; }

.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;
}

/* Yer tutucu görsel oranı — CLS önleme */
.ratio { position: relative; overflow: hidden; background: var(--c-cream-2); }
.ratio > img, .ratio > iframe { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ratio-43  { aspect-ratio: 4 / 3; }
.ratio-32  { aspect-ratio: 3 / 2; }
.ratio-11  { aspect-ratio: 1 / 1; }
.ratio-169 { aspect-ratio: 16 / 9; }
.ratio-45  { aspect-ratio: 4 / 5; }

/* ------------------------------------------------------------------ */
/* 3. Yerleşim yardımcıları                                            */
/* ------------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 860px; }

.section { padding: var(--section-space) 0; }
.section-sm { padding: calc(var(--section-space) * .62) 0; }
.section-dark {
  background: var(--c-ink);
  color: #D9D2C5;
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #F4EFE4; }
.section-cream { background: var(--c-cream-2); }
.section-surface { background: var(--c-surface); }

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

.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-10 { gap: 10px; } .gap-14 { gap: 14px; } .gap-20 { gap: 20px; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }

/* ------------------------------------------------------------------ */
/* 4. Bölüm başlıkları                                                 */
/* ------------------------------------------------------------------ */
.sec-head { max-width: 660px; margin-bottom: 54px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .69rem; font-weight: 600; letter-spacing: .26em;
  text-transform: uppercase; color: var(--c-bronze);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ''; width: 30px; height: 1px; background: var(--c-gold); display: block;
}
.sec-head.center .eyebrow::after {
  content: ''; width: 30px; height: 1px; background: var(--c-gold); display: block;
}
.section-dark .eyebrow { color: var(--c-gold-soft); }

.sec-title { margin-bottom: 16px; }
.sec-lead { color: var(--c-muted); font-size: 1.02rem; margin: 0; }
.section-dark .sec-lead { color: #A9A092; }

.divider-gold {
  width: 54px; height: 1px; background: var(--c-gold); margin: 22px 0;
}
.center .divider-gold { margin-left: auto; margin-right: auto; }

/* ------------------------------------------------------------------ */
/* 5. Butonlar                                                         */
/* ------------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: .8rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn .ico { margin-top: -1px; }

.btn-gold      { background: var(--c-gold); color: #fff; }
.btn-gold:hover{ background: var(--c-bronze); color: #fff; }

.btn-dark      { background: var(--c-ink); color: #F4EFE4; }
.btn-dark:hover{ background: var(--c-espresso); }

.btn-outline   { border-color: var(--c-line); color: var(--c-ink); background: transparent; }
.btn-outline:hover { border-color: var(--c-gold); color: var(--c-bronze); }

.btn-light     { background: rgba(255,255,255,.94); color: var(--c-ink); }
.btn-light:hover { background: #fff; }

.btn-ghost-light { border-color: rgba(244,239,228,.42); color: #F4EFE4; }
.btn-ghost-light:hover { border-color: var(--c-gold-soft); color: #fff; background: rgba(184,147,77,.14); }

.btn-wa        { background: #1F8F5F; color: #fff; }
.btn-wa:hover  { background: #187A50; }

.btn-sm { padding: 11px 20px; font-size: .72rem; }
.btn-block { width: 100%; }

/* Metin bağlantısı */
.link-arrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .76rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--c-bronze);
}
.link-arrow .ico { transition: transform .3s var(--ease); }
.link-arrow:hover { color: var(--c-ink); }
.link-arrow:hover .ico { transform: translateX(5px); }
.section-dark .link-arrow { color: var(--c-gold-soft); }
.section-dark .link-arrow:hover { color: #fff; }

/* ------------------------------------------------------------------ */
/* 6. Üst bilgi çubuğu + header                                        */
/* ------------------------------------------------------------------ */
.topbar {
  background: var(--c-ink);
  color: #A9A092;
  font-size: .78rem;
  border-bottom: 1px solid var(--c-line-dark);
}
.topbar-in { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 42px; }
.topbar a { color: #C6BEB0; display: inline-flex; align-items: center; gap: 8px; }
.topbar a:hover { color: var(--c-gold-soft); }
.topbar-left { display: flex; align-items: center; gap: 26px; }
.topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar .dot { width: 5px; height: 5px; border-radius: 50%; background: #4CB07A; display: inline-block; }
.topbar .dot.off { background: #9A7A5C; }

.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(251, 248, 242, .93);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--c-line);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.is-stuck { box-shadow: var(--shadow-md); background: rgba(251, 248, 242, .98); }

.header-in {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: 13px; flex: none; }
.brand img { max-height: 52px; width: auto; }
.brand-text .n {
  font-family: var(--font-head); font-size: 1.42rem; line-height: 1.1; color: var(--c-ink); display: block;
}
.brand-text .s {
  font-size: .6rem; letter-spacing: .3em; text-transform: uppercase; color: var(--c-bronze);
}

/* Ana menü */
.nav { display: flex; align-items: center; gap: 4px; }
.nav > li { list-style: none; position: relative; }
.nav-list { display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; }
.nav-list > li { list-style: none; position: relative; }
.nav-list > li > a {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 15px;
  font-size: .8rem; font-weight: 500; letter-spacing: .07em;
  color: var(--c-text);
  position: relative;
}
.nav-list > li > a::after {
  content: ''; position: absolute; left: 15px; right: 15px; bottom: 4px; height: 1px;
  background: var(--c-gold); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-list > li > a:hover, .nav-list > li.active > a { color: var(--c-bronze); }
.nav-list > li > a:hover::after, .nav-list > li.active > a::after { transform: scaleX(1); }

.submenu {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 248px;
  background: var(--c-surface); border: 1px solid var(--c-line);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 10px; margin: 0; list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.has-sub:hover > .submenu, .has-sub:focus-within > .submenu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.submenu a {
  display: block; padding: 10px 14px; font-size: .84rem; border-radius: var(--radius);
  color: var(--c-text);
}
.submenu a:hover { background: var(--c-cream-2); color: var(--c-bronze); }

.header-actions { display: flex; align-items: center; gap: 12px; flex: none; }

/* Dil seçici */
.lang-switch { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 8px;
  background: transparent; border: 1px solid var(--c-line);
  border-radius: var(--radius); padding: 9px 13px;
  font-size: .74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--c-text);
}
.lang-btn:hover { border-color: var(--c-gold); color: var(--c-bronze); }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 6px); min-width: 168px;
  background: var(--c-surface); border: 1px solid var(--c-line);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 8px; margin: 0; list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  z-index: 30;
}
.lang-switch.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; font-size: .84rem; border-radius: var(--radius); }
.lang-menu a:hover { background: var(--c-cream-2); }
.lang-menu a.on { color: var(--c-bronze); font-weight: 600; }
.lang-code { font-size: .66rem; letter-spacing: .12em; color: var(--c-muted); }

/* Mobil menü açma */
.burger {
  display: none; background: transparent; border: 1px solid var(--c-line);
  border-radius: var(--radius); padding: 10px; color: var(--c-ink);
}

/* Mobil çekmece */
.drawer {
  position: fixed; inset: 0; z-index: 120;
  visibility: hidden; pointer-events: none;
}
.drawer.open { visibility: visible; pointer-events: auto; }
.drawer-bg {
  position: absolute; inset: 0; background: rgba(20, 18, 13, .55);
  opacity: 0; transition: opacity .3s var(--ease);
}
.drawer.open .drawer-bg { opacity: 1; }
.drawer-panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(400px, 88vw);
  background: var(--c-cream); box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform .34s var(--ease);
  display: flex; flex-direction: column; overflow-y: auto;
}
.drawer.open .drawer-panel { transform: translateX(0); }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--c-line);
}
.drawer-nav { list-style: none; margin: 0; padding: 14px 12px; flex: 1; }
.drawer-nav li { border-bottom: 1px solid rgba(231, 222, 206, .7); }
.drawer-nav > li:last-child { border-bottom: 0; }
.drawer-nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 12px; font-size: .96rem;
}
.drawer-nav a:hover { color: var(--c-bronze); }
.drawer-sub { list-style: none; margin: 0 0 8px; padding: 0 0 0 14px; }
.drawer-sub a { font-size: .87rem; color: var(--c-muted); padding: 11px 12px; }
.drawer-foot { padding: 20px 24px 28px; border-top: 1px solid var(--c-line); display: grid; gap: 10px; }

/* ------------------------------------------------------------------ */
/* 7. Hero                                                             */
/* ------------------------------------------------------------------ */
.hero {
  position: relative;
  height: var(--hero-height);
  min-height: 460px;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--c-ink);
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,12,9,.62) 0%, rgba(14,12,9,.34) 42%, rgba(14,12,9,.78) 100%),
    linear-gradient(96deg, rgba(14,12,9,.72) 0%, rgba(14,12,9,.24) 62%, rgba(14,12,9,.06) 100%);
}
.hero-in { position: relative; z-index: 2; width: 100%; }
.hero-box { max-width: 660px; color: #F4EFE4; }
.hero-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .68rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--c-gold-soft); margin-bottom: 22px;
}
.hero-label::before { content: ''; width: 34px; height: 1px; background: var(--c-gold); }
.hero h1 { color: #FBF8F2; margin-bottom: 20px; text-shadow: 0 2px 26px rgba(0,0,0,.34); }
.hero-desc {
  font-size: 1.06rem; color: #DED6C7; max-width: 560px; margin-bottom: 34px;
  text-shadow: 0 1px 16px rgba(0,0,0,.3);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-meta {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  border-top: 1px solid rgba(220, 199, 154, .2);
  background: linear-gradient(180deg, rgba(14,12,9,0) 0%, rgba(14,12,9,.5) 100%);
}
.hero-meta-in { display: flex; flex-wrap: wrap; gap: 8px 42px; padding: 18px 0; }
.hero-meta-item {
  display: flex; align-items: center; gap: 11px;
  color: #CFC7B7; font-size: .82rem;
}
.hero-meta-item .ico { color: var(--c-gold-soft); }

/* Slider noktaları */
.hero-dots {
  position: absolute; z-index: 3; right: 32px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 12px;
}
.hero-dots button {
  width: 9px; height: 9px; border-radius: 50%; border: 1px solid rgba(244,239,228,.55);
  background: transparent; padding: 0;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.hero-dots button.on { background: var(--c-gold); border-color: var(--c-gold); transform: scale(1.25); }

.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .9s var(--ease); }
.hero-slide.on { opacity: 1; }

/* İç sayfa üst alanı */
.page-hero {
  position: relative; min-height: 320px; display: flex; align-items: center;
  background: var(--c-ink); overflow: hidden; padding: 62px 0 54px;
}
.page-hero-media { position: absolute; inset: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,12,9,.7) 0%, rgba(14,12,9,.55) 50%, rgba(14,12,9,.85) 100%);
}
.page-hero-in { position: relative; z-index: 2; color: #EFE9DC; max-width: 780px; }
.page-hero h1 { color: #FBF8F2; margin-bottom: 12px; }
.page-hero p { color: #C7BFAF; margin: 0; max-width: 620px; }

/* Breadcrumb */
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; font-size: .76rem; margin-bottom: 20px; }
.crumbs a, .crumbs span { color: rgba(226, 218, 203, .74); }
.crumbs a:hover { color: var(--c-gold-soft); }
.crumbs .sep { color: rgba(226, 218, 203, .4); display: flex; }
.crumbs .cur { color: var(--c-gold-soft); }

/* ------------------------------------------------------------------ */
/* 8. Kartlar                                                          */
/* ------------------------------------------------------------------ */
.card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
}
.card:hover { border-color: var(--c-gold-soft); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-media { position: relative; overflow: hidden; }
.card-media img { transition: transform .8s var(--ease); }
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.card-title { font-size: 1.32rem; margin-bottom: 10px; }
.card-title a:hover { color: var(--c-bronze); }
.card-text { color: var(--c-muted); font-size: .92rem; margin-bottom: 20px; flex: 1; }
.card-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding-top: 18px; border-top: 1px solid var(--c-line);
}

.badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: rgba(20, 18, 13, .78); color: var(--c-gold-soft);
  font-size: .63rem; letter-spacing: .18em; text-transform: uppercase;
  padding: 7px 12px; border-radius: 2px;
  backdrop-filter: blur(6px);
}
.badge-gold { background: var(--c-gold); color: #fff; }

.meta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; font-size: .78rem; color: var(--c-muted); }
.meta-row .i { display: inline-flex; align-items: center; gap: 7px; }
.meta-row .ico { color: var(--c-gold); }

.price { font-family: var(--font-head); font-size: 1.28rem; color: var(--c-ink); }
.price small { font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--c-muted); display: block; font-family: var(--font-body); }

/* Masaj listesi (kompakt satır kart) */
.tile {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--c-surface); border: 1px solid var(--c-line);
  border-radius: var(--radius); padding: 20px;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}
.tile:hover { border-color: var(--c-gold-soft); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.tile-ico {
  flex: none; width: 48px; height: 48px; display: grid; place-items: center;
  border: 1px solid var(--c-line); border-radius: 50%; color: var(--c-gold);
  background: var(--c-cream);
}
.tile h3 { font-size: 1.12rem; margin-bottom: 6px; }
.tile p { font-size: .87rem; color: var(--c-muted); margin: 0 0 10px; }
.tile .meta-row { font-size: .74rem; }

/* Olanak kartı (koyu zemin) */
.facility {
  border: 1px solid var(--c-line-dark); border-radius: var(--radius);
  padding: 32px 28px; background: rgba(255,255,255,.026);
  transition: border-color .35s var(--ease), background .35s var(--ease);
}
.facility:hover { border-color: rgba(220, 199, 154, .42); background: rgba(255,255,255,.05); }
.facility .fi {
  width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 22px;
  border: 1px solid rgba(220,199,154,.3); border-radius: 50%; color: var(--c-gold-soft);
}
.facility h3 { font-size: 1.2rem; margin-bottom: 10px; }
.facility p { color: #A9A092; font-size: .89rem; margin: 0; }

/* Neden biz */
.why-item { padding: 30px 26px; border: 1px solid var(--c-line); border-radius: var(--radius); background: var(--c-surface); }
.why-item .wi {
  width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 20px;
  color: var(--c-gold); border: 1px solid var(--c-line); border-radius: 50%;
}
.why-item h3 { font-size: 1.1rem; margin-bottom: 8px; }
.why-item p { color: var(--c-muted); font-size: .88rem; margin: 0; }

/* Adımlar */
.steps { counter-reset: step; display: grid; gap: 0; }
.step {
  display: grid; grid-template-columns: 92px 1fr; gap: 26px;
  padding: 30px 0; border-bottom: 1px solid var(--c-line);
}
.step:last-child { border-bottom: 0; }
.step-no {
  font-family: var(--font-head); font-size: 2.5rem; line-height: 1;
  color: var(--c-gold-soft);
}
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { color: var(--c-muted); font-size: .92rem; margin: 0; }
.section-dark .step { border-color: var(--c-line-dark); }
.section-dark .step p { color: #A9A092; }

/* Yorum kartı */
.review {
  background: var(--c-surface); border: 1px solid var(--c-line);
  border-radius: var(--radius); padding: 32px 28px;
  display: flex; flex-direction: column; height: 100%;
}
.review .q { color: var(--c-gold-soft); margin-bottom: 16px; }
.review .stars { display: flex; gap: 3px; color: var(--c-gold); margin-bottom: 16px; }
.review p { font-size: .95rem; color: var(--c-text); flex: 1; margin-bottom: 22px; }
.review .who { display: flex; align-items: center; gap: 13px; padding-top: 18px; border-top: 1px solid var(--c-line); }
.review .av {
  width: 42px; height: 42px; border-radius: 50%; background: var(--c-cream-2);
  display: grid; place-items: center; font-family: var(--font-head); color: var(--c-bronze); font-size: 1.05rem;
  flex: none; overflow: hidden;
}
.review .who b { display: block; font-size: .92rem; font-weight: 600; }
.review .who span { font-size: .76rem; color: var(--c-muted); }

/* Galeri */
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gal-item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: var(--c-cream-2); display: block;
}
.gal-item img { transition: transform .8s var(--ease); width: 100%; height: 100%; object-fit: cover; }
.gal-item:hover img { transform: scale(1.06); }
.gal-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,18,13,0) 45%, rgba(20,18,13,.6) 100%);
  opacity: 0; transition: opacity .35s var(--ease);
}
.gal-item:hover::after { opacity: 1; }
.gal-cap {
  position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 2;
  color: #F4EFE4; font-size: .82rem; opacity: 0; transform: translateY(8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.gal-item:hover .gal-cap { opacity: 1; transform: translateY(0); }
.gal-tall { grid-row: span 2; }

/* Filtre çipleri */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.chip {
  padding: 9px 18px; border: 1px solid var(--c-line); border-radius: 40px;
  font-size: .78rem; letter-spacing: .04em; color: var(--c-muted); background: transparent;
  transition: all .25s var(--ease);
}
.chip:hover { border-color: var(--c-gold); color: var(--c-bronze); }
.chip.on { background: var(--c-ink); border-color: var(--c-ink); color: #F4EFE4; }

/* ------------------------------------------------------------------ */
/* 9. Akordiyon (SSS)                                                  */
/* ------------------------------------------------------------------ */
.acc { border-top: 1px solid var(--c-line); }
.acc-item { border-bottom: 1px solid var(--c-line); }
.acc-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: transparent; border: 0; padding: 24px 0; text-align: left;
  font-family: var(--font-head); font-size: 1.16rem; color: var(--c-ink);
  transition: color .25s var(--ease);
}
.acc-btn:hover { color: var(--c-bronze); }
.acc-btn .ico { color: var(--c-gold); transition: transform .3s var(--ease); flex: none; }
.acc-item.open .acc-btn .ico { transform: rotate(180deg); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height .38s var(--ease); }
.acc-panel-in { padding: 0 0 26px; color: var(--c-muted); font-size: .94rem; max-width: 78ch; }
.section-dark .acc, .section-dark .acc-item { border-color: var(--c-line-dark); }
.section-dark .acc-btn { color: #F0EAE0; }
.section-dark .acc-panel-in { color: #A9A092; }

/* ------------------------------------------------------------------ */
/* 10. Formlar                                                         */
/* ------------------------------------------------------------------ */
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: .74rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--c-muted);
}
.field label .req { color: var(--c-gold); }
.field .hint { font-size: .74rem; color: var(--c-muted); text-transform: none; letter-spacing: 0; font-weight: 400; }

.input, .select, .textarea {
  width: 100%; padding: 14px 16px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  font-size: .94rem; color: var(--c-text);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(184, 147, 77, .12);
}
.textarea { min-height: 132px; resize: vertical; }
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B6357' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 9l7 7 7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; padding-right: 42px;
}

.check { display: flex; align-items: flex-start; gap: 12px; font-size: .87rem; color: var(--c-muted); }
.check input {
  appearance: none; width: 19px; height: 19px; flex: none; margin-top: 2px;
  border: 1px solid var(--c-line); border-radius: 3px; background: var(--c-surface);
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.check input:checked {
  background: var(--c-gold) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4.5 4.5L19 7'/%3E%3C/svg%3E") center/14px no-repeat;
  border-color: var(--c-gold);
}
.check a { color: var(--c-bronze); text-decoration: underline; text-underline-offset: 3px; }

.hp { position: absolute !important; left: -9999px !important; opacity: 0; height: 0; width: 0; }

/* Uyarı kutuları */
.alert {
  display: flex; gap: 13px; align-items: flex-start;
  padding: 16px 18px; border-radius: var(--radius); margin-bottom: 16px;
  font-size: .9rem; border: 1px solid;
}
.alert .ico { flex: none; margin-top: 2px; }
.alert-success { background: #F0F7F2; border-color: #C6E2D0; color: #1F5C3C; }
.alert-error   { background: #FCF2F1; border-color: #EFD2CE; color: #8A3A2E; }
.alert-info    { background: #F6F2EA; border-color: var(--c-line); color: var(--c-espresso); }

/* Rezervasyon kutusu */
.res-card {
  background: var(--c-surface); border: 1px solid var(--c-line);
  border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-md);
}
.res-side { display: grid; gap: 14px; align-content: start; }
.res-side-item {
  display: flex; gap: 15px; padding: 22px;
  border: 1px solid var(--c-line); border-radius: var(--radius); background: var(--c-surface);
}
.res-side-item .ico { color: var(--c-gold); flex: none; margin-top: 3px; }
.res-side-item b { display: block; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--c-muted); margin-bottom: 4px; font-weight: 600; }
.res-side-item span, .res-side-item a { font-size: .95rem; color: var(--c-text); }

.res-done {
  border: 1px solid var(--c-gold-soft); background: linear-gradient(180deg, #FDFBF6 0%, #F7F1E5 100%);
  border-radius: var(--radius-lg); padding: 44px 40px; text-align: center;
}
.res-done .ok {
  width: 64px; height: 64px; margin: 0 auto 22px; border-radius: 50%;
  display: grid; place-items: center; background: var(--c-gold); color: #fff;
}
.res-code {
  display: inline-block; margin: 6px 0 22px; padding: 10px 22px;
  border: 1px dashed var(--c-gold); border-radius: var(--radius);
  font-family: var(--font-head); font-size: 1.3rem; letter-spacing: .1em; color: var(--c-ink);
}

/* ------------------------------------------------------------------ */
/* 11. İçerik (prose)                                                  */
/* ------------------------------------------------------------------ */
.prose { font-size: 1.01rem; color: #38332C; }
.prose h2 { font-size: 1.85rem; margin: 1.9em 0 .55em; }
.prose h3 { font-size: 1.35rem; margin: 1.6em 0 .5em; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose p { margin: 0 0 1.3em; }
.prose ul, .prose ol { margin: 0 0 1.4em; padding-left: 1.35em; }
.prose li { margin-bottom: .55em; }
.prose li::marker { color: var(--c-gold); }
.prose a { color: var(--c-bronze); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--c-ink); }
.prose img { border-radius: var(--radius); margin: 1.8em 0; }
.prose blockquote {
  margin: 1.9em 0; padding: 6px 0 6px 26px;
  border-left: 2px solid var(--c-gold);
  font-family: var(--font-head); font-size: 1.24rem; color: var(--c-espresso); font-style: italic;
}
.prose table { width: 100%; border-collapse: collapse; margin: 1.6em 0; font-size: .93rem; }
.prose th, .prose td { border: 1px solid var(--c-line); padding: 12px 14px; text-align: left; }
.prose th { background: var(--c-cream-2); font-weight: 600; }
.prose hr { border: 0; border-top: 1px solid var(--c-line); margin: 2.4em 0; }

/* ------------------------------------------------------------------ */
/* 12. Hizmet detay yerleşimi                                          */
/* ------------------------------------------------------------------ */
.detail-grid { display: grid; grid-template-columns: minmax(0, 1fr) 366px; gap: 52px; align-items: start; }
.detail-side { position: sticky; top: calc(var(--header-h) + 26px); display: grid; gap: 16px; }

.spec-box { border: 1px solid var(--c-line); border-radius: var(--radius); background: var(--c-surface); padding: 26px; }
.spec-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--c-line); }
.spec-row:last-of-type { border-bottom: 0; }
.spec-row .k { display: flex; align-items: center; gap: 10px; font-size: .82rem; color: var(--c-muted); }
.spec-row .k .ico { color: var(--c-gold); }
.spec-row .v { font-weight: 600; font-size: .92rem; }

.list-check { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.list-check li { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; color: #423C33; }
.list-check .ico { color: var(--c-gold); flex: none; margin-top: 4px; }

.step-list { list-style: none; padding: 0; margin: 0; counter-reset: s; display: grid; gap: 20px; }
.step-list li { display: grid; grid-template-columns: 44px 1fr; gap: 18px; align-items: start; }
.step-list li::before {
  counter-increment: s; content: counter(s, decimal-leading-zero);
  font-family: var(--font-head); font-size: 1.15rem; color: var(--c-gold);
  border: 1px solid var(--c-line); border-radius: 50%;
  width: 44px; height: 44px; display: grid; place-items: center;
}
.step-list b { display: block; margin-bottom: 3px; }
.step-list span { color: var(--c-muted); font-size: .92rem; }

.detail-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }

.note-box {
  display: flex; gap: 13px; padding: 18px 20px; border-radius: var(--radius);
  background: var(--c-cream-2); border: 1px solid var(--c-line);
  font-size: .87rem; color: var(--c-muted);
}
.note-box .ico { color: var(--c-bronze); flex: none; margin-top: 2px; }

.share-row { display: flex; align-items: center; gap: 12px; margin-top: 34px; }
.share-row a {
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid var(--c-line); border-radius: 50%; color: var(--c-muted);
}
.share-row a:hover { border-color: var(--c-gold); color: var(--c-bronze); }

/* ------------------------------------------------------------------ */
/* 13. Blog                                                            */
/* ------------------------------------------------------------------ */
.post-meta { display: flex; flex-wrap: wrap; gap: 18px; font-size: .78rem; color: var(--c-muted); margin-bottom: 14px; }
.post-meta .i { display: inline-flex; align-items: center; gap: 7px; }
.post-meta .ico { color: var(--c-gold); }
.post-head { max-width: 820px; }
.post-cover { border-radius: var(--radius); overflow: hidden; margin-bottom: 44px; }
.tags { display: flex; flex-wrap: wrap; gap: 9px; }
.tags span, .tags a {
  font-size: .74rem; padding: 6px 13px; border: 1px solid var(--c-line);
  border-radius: 30px; color: var(--c-muted);
}

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 54px; }
.pagination a, .pagination span {
  min-width: 42px; height: 42px; padding: 0 12px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--c-line); border-radius: var(--radius);
  font-size: .86rem; color: var(--c-muted); background: var(--c-surface);
}
.pagination a:hover { border-color: var(--c-gold); color: var(--c-bronze); }
.pagination .on { background: var(--c-ink); border-color: var(--c-ink); color: #F4EFE4; }

/* ------------------------------------------------------------------ */
/* 14. CTA / iletişim / harita                                         */
/* ------------------------------------------------------------------ */
.cta-band { position: relative; overflow: hidden; background: var(--c-ink); }
.cta-band .bgimg { position: absolute; inset: 0; opacity: .22; }
.cta-band .bgimg img { width: 100%; height: 100%; object-fit: cover; }
.cta-in { position: relative; z-index: 2; text-align: center; padding: 96px 0; }
.cta-in h2 { color: #FBF8F2; max-width: 700px; margin: 0 auto 16px; }
.cta-in p { color: #B4AB9B; max-width: 560px; margin: 0 auto 34px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.info-list { display: grid; gap: 2px; }
.info-item {
  display: flex; gap: 17px; padding: 20px 0; border-bottom: 1px solid var(--c-line);
}
.info-item:last-child { border-bottom: 0; }
.info-item .ii {
  width: 42px; height: 42px; flex: none; display: grid; place-items: center;
  border: 1px solid var(--c-line); border-radius: 50%; color: var(--c-gold);
}
.info-item b { display: block; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--c-muted); margin-bottom: 5px; font-weight: 600; }
.info-item .v { font-size: 1rem; color: var(--c-text); }
.info-item a:hover { color: var(--c-bronze); }

.hours-list { list-style: none; margin: 0; padding: 0; }
.hours-list li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 11px 0; border-bottom: 1px solid var(--c-line); font-size: .9rem;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list .d { color: var(--c-muted); }
.hours-list .today { color: var(--c-bronze); font-weight: 600; }

.map-wrap { border: 1px solid var(--c-line); border-radius: var(--radius); overflow: hidden; background: var(--c-cream-2); }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ------------------------------------------------------------------ */
/* 15. Footer                                                          */
/* ------------------------------------------------------------------ */
.site-footer { background: var(--c-ink); color: #9E958A; padding-top: 78px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 46px; padding-bottom: 56px; }
.footer-brand .brand-text .n { color: #F4EFE4; }
.footer-about { font-size: .89rem; color: #9E958A; margin: 22px 0 24px; max-width: 330px; }
.footer h4 {
  font-family: var(--font-body); font-size: .72rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--c-gold-soft);
  margin-bottom: 22px;
}
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-links a { font-size: .89rem; color: #9E958A; display: inline-flex; align-items: center; gap: 9px; }
.footer-links a:hover { color: var(--c-gold-soft); }
.footer-contact { display: grid; gap: 16px; }
.footer-contact .fc { display: flex; gap: 13px; font-size: .89rem; }
.footer-contact .ico { color: var(--c-gold); flex: none; margin-top: 3px; }
.socials { display: flex; gap: 10px; margin-top: 24px; }
.socials a {
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid var(--c-line-dark); border-radius: 50%; color: #9E958A;
  transition: all .28s var(--ease);
}
.socials a:hover { border-color: var(--c-gold); color: var(--c-gold-soft); background: rgba(184,147,77,.1); }

.footer-bottom {
  border-top: 1px solid var(--c-line-dark);
  padding: 24px 0 30px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
  font-size: .8rem;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-legal a:hover { color: var(--c-gold-soft); }

/* ------------------------------------------------------------------ */
/* 16. Sabit iletişim öğeleri                                          */
/* ------------------------------------------------------------------ */
.float-side {
  position: fixed; right: 20px; bottom: 26px; z-index: 80;
  display: flex; flex-direction: column; gap: 10px;
}
.float-side a {
  width: 50px; height: 50px; border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  transition: transform .28s var(--ease);
}
.float-side a:hover { transform: translateY(-2px); }
.float-wa   { background: #1F8F5F; color: #fff; }
.float-tel  { background: var(--c-ink); color: var(--c-gold-soft); }
.float-res  { background: var(--c-gold); color: #fff; }

.mobile-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 85;
  background: rgba(20, 18, 13, .96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--c-line-dark);
  padding: 9px 8px calc(9px + env(safe-area-inset-bottom));
}
.mobile-bar-in { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.mobile-bar a {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  padding: 8px 4px; border-radius: var(--radius);
  color: #C6BEB0; font-size: .68rem; letter-spacing: .06em; text-transform: uppercase;
}
.mobile-bar a .ico { color: var(--c-gold-soft); }
.mobile-bar a.primary { background: var(--c-gold); color: #fff; }
.mobile-bar a.primary .ico { color: #fff; }

.to-top {
  position: fixed; right: 20px; bottom: 26px; z-index: 79;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--c-surface); border: 1px solid var(--c-line); color: var(--c-ink);
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .3s var(--ease);
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* Çerez bildirimi */
.cookie {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 130;
  max-width: 640px; margin: 0 auto;
  background: var(--c-surface); border: 1px solid var(--c-line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 22px 24px;
  display: none; gap: 20px; align-items: center; flex-wrap: wrap;
}
.cookie.show { display: flex; }
.cookie p { margin: 0; font-size: .87rem; color: var(--c-muted); flex: 1 1 300px; }
.cookie a { color: var(--c-bronze); text-decoration: underline; text-underline-offset: 3px; }
.cookie-actions { display: flex; gap: 10px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 140; background: rgba(14, 12, 9, .93);
  display: none; align-items: center; justify-content: center; padding: 32px;
}
.lightbox.show { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; background: rgba(255,255,255,.08); border: 1px solid rgba(244,239,228,.2);
  color: #F4EFE4; width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; transition: background .25s var(--ease);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.18); }
.lightbox-close { top: 26px; right: 26px; }
.lightbox-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 26px; top: 50%; transform: translateY(-50%); }
.lightbox-cap { position: absolute; bottom: 26px; left: 0; right: 0; text-align: center; color: #C6BEB0; font-size: .85rem; }

/* ------------------------------------------------------------------ */
/* 17. 404 / boş durum                                                 */
/* ------------------------------------------------------------------ */
.empty {
  text-align: center; padding: 72px 24px; border: 1px dashed var(--c-line);
  border-radius: var(--radius); color: var(--c-muted); background: var(--c-surface);
}
.err-page { padding: 120px 0; text-align: center; }
.err-code {
  font-family: var(--font-head); font-size: clamp(5rem, 16vw, 10rem); line-height: .9;
  color: var(--c-gold-soft); margin-bottom: 18px;
}

/* ------------------------------------------------------------------ */
/* 18. Görünüme giriş animasyonu (hafif)                               */
/* ------------------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

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

/* ------------------------------------------------------------------ */
/* 19. Duyarlı (responsive) düzen                                      */
/* ------------------------------------------------------------------ */
@media (max-width: 1180px) {
  :root { --section-space: 86px; }
  .detail-grid { grid-template-columns: minmax(0,1fr) 320px; gap: 40px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr; }
  .footer-grid > :nth-child(3) { display: none; }
}

@media (max-width: 1024px) {
  .nav-list, .header-actions .btn { display: none; }
  .burger { display: inline-flex; }
  .g-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gal-grid { grid-template-columns: repeat(3, 1fr); }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-side { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-dots { right: 18px; }
}

@media (max-width: 860px) {
  :root { --section-space: 68px; --hero-height: 540px; --header-h: 70px; }
  .topbar-left .hide-sm, .topbar-right .hide-sm { display: none; }
  .g-3, .g-2 { grid-template-columns: 1fr; }
  .grid { gap: 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .res-card { padding: 26px 22px; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-tall { grid-row: span 1; }
  .detail-gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 40px; }
  .footer-grid > :nth-child(3) { display: block; }
  .float-side { display: none; }
  .to-top { bottom: 84px; right: 16px; }
  .mobile-bar { display: block; }
  body { padding-bottom: 68px; }
  .cookie { bottom: 82px; left: 12px; right: 12px; padding: 18px; }
  .step { grid-template-columns: 62px 1fr; gap: 16px; }
  .step-no { font-size: 1.9rem; }
  .sec-head { margin-bottom: 36px; }
  .hero-meta-in { gap: 6px 24px; }
  .hero-meta-item { font-size: .76rem; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .hero-actions .btn, .cta-actions .btn { flex: 1 1 100%; }
  .topbar-in { justify-content: center; }
  .topbar-left { gap: 16px; }
  .hero-meta { display: none; }
  .gal-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .card-body { padding: 22px 20px 24px; }
  .res-done { padding: 32px 22px; }
}

/* ------------------------------------------------------------------ */
/* 20. Yazdırma                                                        */
/* ------------------------------------------------------------------ */
@media print {
  .site-header, .topbar, .site-footer, .float-side, .mobile-bar, .to-top, .cookie, .hero-actions { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding: 12px 0; }
}
