/* ==========================================================================
   GÜZEL VADİ — Doğayla Uyumlu Sağlık ve Dinlenme Tesisi
   Tasarım sistemi + bileşenler
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* Marka renkleri — logodan türetildi */
  --brand:        #2f4a34;   /* koyu orman yeşili (logo mürekkebi) */
  --brand-deep:   #223629;   /* footer / koyu yüzeyler */
  --brand-mid:    #617849;   /* zeytin yeşili */
  --brand-soft:   #e8ede4;   /* çok açık yeşil dolgu */
  --accent:       #c9a227;   /* logodaki güneş — altın (açık zeminde) */
  --accent-light: #dcb63d;   /* koyu zeminde okunabilir altın */
  --accent-ink:   #7d620b;   /* altın dolgu üzerindeki koyu metin/ikon */
  --accent-soft:  #f5eeda;

  /* Nötrler */
  --ink:       #1d2b21;
  --ink-soft:  #55645b;
  --ink-mute:  #5f6e66;
  --bg:        #fcfaf7;      /* logo arka planıyla birebir aynı */
  --bg-alt:    #f4f1ea;
  --surface:   #ffffff;
  --line:      #e4e0d5;
  --line-soft: #efece3;

  /* Tipografi */
  --font-display: 'Cormorant Garamond', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --font-ui: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --h1: clamp(2.4rem, 6.2vw, 4.4rem);
  --h2: clamp(1.85rem, 4.2vw, 2.9rem);
  --h3: clamp(1.2rem, 2.2vw, 1.5rem);
  --h4: 1.0625rem;
  --body: 1rem;
  --small: 0.875rem;
  --micro: 0.75rem;

  /* Boşluk ölçeği (8px tabanlı) */
  --s-1: 4px;  --s-2: 8px;  --s-3: 16px; --s-4: 24px;
  --s-5: 32px; --s-6: 48px; --s-7: 72px; --s-8: 104px;

  /* Şekil & derinlik */
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 3px 12px rgba(29, 43, 33, .06);
  --shadow: 0 12px 34px rgba(29, 43, 33, .10);
  --shadow-lg: 0 26px 60px rgba(29, 43, 33, .16);

  /* Yerleşim */
  --maxw: 1220px;
  --maxw-narrow: 780px;
  --header-h: 76px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- 2. Reset & temel ---------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: var(--body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  /* NOT: html/body üzerinde overflow-x kullanılmıyor — kök elemanda `clip`
     görünüm alanına yayılıp dikey kaydırmayı da engelliyor. Yatay taşma,
     hiçbir öğenin görünüm alanını aşmaması sağlanarak önlendi. */
}

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

h1, h2, h3, h4, h5 { margin: 0; line-height: 1.15; color: var(--ink); font-weight: 600; }
h1, h2 { font-family: var(--font-display); font-weight: 600; letter-spacing: -.01em; }
h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); font-family: var(--font-ui); letter-spacing: -.01em; }
h4 { font-size: var(--h4); }

p { margin: 0 0 var(--s-3); color: var(--ink-soft); }
p:last-child { margin-bottom: 0; }

a { color: var(--brand); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--brand-mid); }

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

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

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

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

.skip-link {
  position: absolute; left: var(--s-3); top: -100px; z-index: 200;
  background: var(--brand); color: #fff;
  padding: 12px 20px; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600; font-size: var(--small);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }

/* ---------- 3. Yerleşim yardımcıları ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(18px, 5vw, 40px);
}
.narrow { max-width: var(--maxw-narrow); }

.section { padding-block: clamp(56px, 9vw, var(--s-8)); }
.section--tight { padding-block: clamp(40px, 6vw, var(--s-7)); }
.section--alt { background: var(--bg-alt); }
.section--brand { background: var(--brand); color: #fff; }
.section--brand h2, .section--brand h3 { color: #fff; }
.section--brand p { color: rgba(255, 255, 255, .78); }

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

.text-center { text-align: center; }
.mt-4 { margin-top: var(--s-4); }
.mt-5 { margin-top: var(--s-5); }
.mt-6 { margin-top: var(--s-6); }

/* ---------- 4. Bölüm başlıkları ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: var(--micro); font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--brand-mid); margin-bottom: var(--s-3);
}
.eyebrow::before {
  content: ''; width: 26px; height: 1px; background: currentColor; opacity: .7;
}
.section--brand .eyebrow, .hero .eyebrow { color: var(--accent-light); }
.text-center .eyebrow::before { display: none; }

.section-head { max-width: 720px; margin-bottom: clamp(32px, 5vw, var(--s-6)); }
.text-center .section-head, .section-head.text-center { margin-inline: auto; }
.section-head p { font-size: 1.0625rem; margin-top: var(--s-3); }

.leaf-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; color: var(--brand-mid); opacity: .55; margin: var(--s-3) 0;
}
.leaf-divider::before, .leaf-divider::after {
  content: ''; height: 1px; width: 54px; background: currentColor;
}

/* ---------- 5. Butonlar ---------- */
.btn {
  --btn-bg: var(--brand);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px;
  padding: 13px 28px;
  border-radius: 100px;
  background: var(--btn-bg); color: var(--btn-fg);
  font-size: var(--small); font-weight: 600; letter-spacing: .02em;
  white-space: nowrap; cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease),
              background-color .2s var(--ease), color .2s var(--ease);
}
.btn:hover {
  color: var(--btn-fg);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(47, 74, 52, .28);
}
.btn:active { transform: translateY(0); }
.btn svg { width: 17px; height: 17px; flex: none; }

.btn--accent { --btn-bg: var(--accent); --btn-fg: #2e2408; }
.btn--accent:hover { box-shadow: 0 10px 24px rgba(201, 162, 39, .35); }

.btn--light { --btn-bg: #fff; --btn-fg: var(--brand); }
.btn--light:hover { box-shadow: 0 10px 24px rgba(0, 0, 0, .2); }

.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--brand);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn--ghost:hover { --btn-bg: var(--brand-soft); box-shadow: inset 0 0 0 1.5px var(--brand-mid); }

.btn--on-dark {
  --btn-bg: transparent; --btn-fg: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .5);
}
.btn--on-dark:hover { --btn-bg: rgba(255, 255, 255, .14); box-shadow: inset 0 0 0 1.5px #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--s-3); }

.link-more {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--small); font-weight: 600; color: var(--brand);
}
.link-more svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.link-more:hover svg { transform: translateX(4px); }

/* ---------- 6. Başlık / navigasyon ---------- */
.topbar {
  background: var(--brand-deep);
  color: rgba(255, 255, 255, .78);
  font-size: var(--micro);
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-4); min-height: 38px;
}
.topbar a { color: rgba(255, 255, 255, .82); }
.topbar a:hover { color: #fff; }
.topbar-contact { display: flex; gap: var(--s-4); flex-wrap: wrap; }
.topbar-contact span, .topbar-contact a { display: inline-flex; align-items: center; gap: 7px; }
.topbar svg { width: 13px; height: 13px; opacity: .8; }
.topbar-note { letter-spacing: .12em; text-transform: uppercase; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(252, 250, 247, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .25s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 6px 24px rgba(29, 43, 33, .08); }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-4); min-height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand img { width: 52px; height: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
  letter-spacing: .1em; color: var(--brand);
}
.brand-tag {
  font-size: 9px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--ink-mute); margin-top: 5px;
}

.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-menu > li { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: 100px;
  font-size: var(--small); font-weight: 500; color: var(--ink);
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.nav-link svg { width: 12px; height: 12px; opacity: .55; transition: transform .2s var(--ease); }
.nav-link:hover, .has-sub:hover > .nav-link { background: var(--brand-soft); color: var(--brand); }
.has-sub:hover > .nav-link svg { transform: rotate(180deg); }
.nav-link[aria-current="page"] { color: var(--brand); font-weight: 600; }
.nav-link[aria-current="page"]::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 2px;
  height: 2px; border-radius: 2px; background: var(--accent);
}

.sub-menu {
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 248px; padding: 10px;
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius); box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.has-sub:hover .sub-menu,
.has-sub:focus-within .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.sub-menu a {
  display: block; padding: 10px 14px; border-radius: var(--radius-sm);
  font-size: var(--small); color: var(--ink-soft);
}
.sub-menu a:hover { background: var(--brand-soft); color: var(--brand); }

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

.nav-toggle {
  display: none; width: 46px; height: 46px;
  align-items: center; justify-content: center;
  border-radius: 12px; background: var(--brand-soft); color: var(--brand);
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(520px, 82vh, 780px);
  display: flex; align-items: flex-end;
  color: #fff; overflow: hidden;
}
.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(to top, rgba(21, 33, 25, .92) 0%, rgba(21, 33, 25, .45) 42%, rgba(21, 33, 25, .18) 100%),
    linear-gradient(105deg, rgba(21, 33, 25, .6), transparent 65%);
}
.hero .container { position: relative; z-index: 2; padding-block: clamp(44px, 7vw, 84px); }
.hero-inner { max-width: 690px; }
.hero h1 { color: #fff; text-shadow: 0 2px 26px rgba(0, 0, 0, .35); }
.hero p {
  color: rgba(255, 255, 255, .9); font-size: clamp(1rem, 1.6vw, 1.1875rem);
  margin-top: var(--s-4); max-width: 56ch;
}
.hero .btn-row { margin-top: var(--s-5); }

.hero--page { min-height: clamp(360px, 52vh, 480px); align-items: center; }
.hero--page .hero-inner { max-width: 760px; }

.breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-size: var(--micro); color: rgba(255, 255, 255, .72);
  margin-bottom: var(--s-3); letter-spacing: .04em;
}
.breadcrumb a { color: rgba(255, 255, 255, .82); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span[aria-hidden] { opacity: .5; }

/* Hero altı hızlı erişim kartları */
.quick-strip { position: relative; z-index: 3; margin-top: -58px; }
.quick-grid {
  display: grid; gap: var(--s-3);
  grid-template-columns: repeat(auto-fit, minmax(232px, 1fr));
}
.quick-card {
  display: block; padding: var(--s-4);
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.quick-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.quick-card .icon-badge { margin-bottom: var(--s-3); }
.quick-card h3 { font-size: 1.0625rem; margin-bottom: var(--s-2); color: var(--brand); }
.quick-card ul { display: flex; flex-direction: column; gap: 5px; margin-bottom: var(--s-3); }
.quick-card li {
  font-size: var(--small); color: var(--ink-soft);
  padding-left: 16px; position: relative;
}
.quick-card li::before {
  content: ''; position: absolute; left: 0; top: .62em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}

.icon-badge {
  width: 46px; height: 46px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand-soft); color: var(--brand);
}
.icon-badge svg { width: 23px; height: 23px; }
.icon-badge--accent { background: var(--accent-soft); color: var(--accent-ink); }

/* ---------- 8. Kartlar ---------- */
.card {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: var(--s-4);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card h3 { margin-bottom: var(--s-2); }
.card p { font-size: var(--small); }

.card-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; margin-bottom: var(--s-3);
  border-radius: 50%; background: var(--brand); color: #fff;
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
}

/* Fotoğraflı kart */
.photo-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.photo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.photo-card .thumb { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--bg-alt); }
.photo-card .thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.photo-card:hover .thumb img { transform: scale(1.06); }
.photo-card .body { padding: var(--s-4); display: flex; flex-direction: column; gap: var(--s-2); flex: 1; }
.photo-card .body p { font-size: var(--small); }
.photo-card .body .link-more { margin-top: auto; padding-top: var(--s-2); }

.tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  padding: 6px 13px; border-radius: 100px;
  background: rgba(252, 250, 247, .93);
  font-size: var(--micro); font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--brand);
}

/* ---------- 9. İkili bölüm (metin + görsel) ---------- */
.split {
  display: grid; gap: clamp(28px, 5vw, 64px);
  grid-template-columns: 1fr 1fr; align-items: center;
}
.split--reverse .split-media { order: 2; }
.split-media {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3.2; }
.split-media--tall img { aspect-ratio: 3 / 4; }
.split-body h2 { margin-bottom: var(--s-3); }

.figure-badge {
  position: absolute; bottom: 18px; left: 18px; right: 18px;
  padding: 14px 18px; border-radius: var(--radius);
  background: rgba(252, 250, 247, .94);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}
.figure-badge strong { display: block; font-size: var(--small); color: var(--brand); }
.figure-badge span { font-size: var(--micro); color: var(--ink-mute); }

/* Onay işaretli liste */
.check-list { display: flex; flex-direction: column; gap: 13px; margin-top: var(--s-4); }
.check-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: var(--small); color: var(--ink-soft);
}
.check-list svg {
  width: 20px; height: 20px; flex: none; margin-top: 2px;
  color: var(--brand-mid);
}
.section--brand .check-list li { color: rgba(255, 255, 255, .85); }
.section--brand .check-list svg { color: var(--accent-light); }

/* Özellik satırı (etiketler) */
.feature-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--s-4); }
.feature-pills li {
  padding: 7px 15px; border-radius: 100px;
  background: var(--brand-soft); color: var(--brand);
  font-size: var(--micro); font-weight: 600;
}

/* ---------- 10. Sekmeler (konaklama) ---------- */
.tabs { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-bottom: var(--s-5); }
.tab {
  padding: 11px 22px; border-radius: 100px;
  background: var(--surface); color: var(--ink-soft);
  box-shadow: inset 0 0 0 1px var(--line);
  font-size: var(--small); font-weight: 600;
  transition: all .2s var(--ease);
}
.tab:hover { color: var(--brand); box-shadow: inset 0 0 0 1px var(--brand-mid); }
.tab[aria-selected="true"] {
  background: var(--brand); color: #fff; box-shadow: none;
}
.tab-panel[hidden] { display: none; }

/* ---------- 11. Zaman çizelgesi / numaralı adımlar ---------- */
.steps { display: grid; gap: var(--s-3); }
.step {
  display: grid; grid-template-columns: 58px 1fr; gap: var(--s-4);
  align-items: start; padding: var(--s-4);
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.step:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.step-num {
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand);
  font-family: var(--font-display); font-size: 1.45rem; font-weight: 600;
}
.step h3 { margin-bottom: 6px; }
.step p { font-size: var(--small); }

/* ---------- 12. İstatistikler ---------- */
.stats {
  display: grid; gap: var(--s-4);
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}
.stat { padding: var(--s-4) var(--s-3); text-align: center; position: relative; }
.stat + .stat::before {
  content: ''; position: absolute; left: 0; top: 18%; bottom: 18%;
  width: 1px; background: rgba(255, 255, 255, .2);
}
.stat-num {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.5rem, 5.4vw, 3.6rem); line-height: 1;
  color: var(--accent-light);
}
.stat-label {
  display: block; margin-top: 10px;
  font-size: var(--small); font-weight: 600; color: #fff;
}
.stat-desc { display: block; margin-top: 7px; font-size: var(--micro); color: rgba(255, 255, 255, .68); }

/* ---------- 13. Şerit / CTA ---------- */
.cta-band { position: relative; overflow: hidden; color: #fff; }
.cta-band .bg { position: absolute; inset: 0; }
.cta-band .bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band .bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(34, 54, 41, .94), rgba(34, 54, 41, .68));
}
.cta-band .container { position: relative; z-index: 2; }
.cta-inner {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: var(--s-5);
}
.cta-inner h2 { color: #fff; max-width: 20ch; }
.cta-inner p { color: rgba(255, 255, 255, .8); max-width: 46ch; margin-top: var(--s-3); }

/* ---------- 14. Alıntı / vizyon ---------- */
.quote {
  max-width: 860px; margin-inline: auto; text-align: center;
}
.quote blockquote {
  margin: 0; font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2.05rem); line-height: 1.4;
  color: var(--ink); font-weight: 500;
}
.section--brand .quote blockquote { color: #fff; }
.quote figcaption {
  margin-top: var(--s-4); font-size: var(--micro);
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink-mute);
}
.section--brand .quote figcaption { color: var(--accent-light); }

/* ---------- 15. Akordiyon ---------- */
.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-3); padding: 20px 4px; text-align: left;
  font-size: 1.0625rem; font-weight: 600; color: var(--ink);
  transition: color .2s var(--ease);
}
.acc-trigger:hover { color: var(--brand); }
.acc-trigger svg { width: 20px; height: 20px; flex: none; color: var(--brand-mid); transition: transform .25s var(--ease); }
.acc-trigger[aria-expanded="true"] svg { transform: rotate(45deg); }
.acc-panel { overflow: hidden; }
.acc-panel > div { padding: 0 4px 22px; max-width: 72ch; }
.acc-panel[hidden] { display: none; }

/* ---------- 16. Galeri ---------- */
.gallery {
  display: grid; gap: var(--s-3);
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}
.gallery figure { margin: 0; position: relative; border-radius: var(--radius); overflow: hidden; }
.gallery img {
  width: 100%; height: 100%; aspect-ratio: 1; object-fit: cover;
  transition: transform .6s var(--ease);
}
.gallery figure:hover img { transform: scale(1.07); }
.gallery figcaption {
  position: absolute; inset: auto 0 0 0; padding: 26px 16px 14px;
  background: linear-gradient(to top, rgba(21, 33, 25, .85), transparent);
  color: #fff; font-size: var(--small); font-weight: 600;
}
.gallery .wide { grid-column: span 2; }

/* ---------- 17. Formlar ---------- */
.form-card {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow);
}
.form-grid { display: grid; gap: var(--s-4); grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: var(--small); font-weight: 600; color: var(--ink); }
.field .hint { font-size: var(--micro); color: var(--ink-mute); }
.field input, .field select, .field textarea {
  font: inherit; font-size: var(--small); color: var(--ink);
  padding: 13px 15px; min-height: 48px;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--brand-mid); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; background: var(--surface);
  border-color: var(--brand); box-shadow: 0 0 0 3px rgba(97, 120, 73, .16);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-mute); }
.checkbox { display: flex; gap: 11px; align-items: flex-start; font-size: var(--small); color: var(--ink-soft); }
.checkbox input { min-height: 0; width: 19px; height: 19px; margin-top: 2px; accent-color: var(--brand); flex: none; }
.form-note {
  margin-top: var(--s-3); font-size: var(--micro); color: var(--ink-mute);
}
.form-status {
  margin-top: var(--s-3); padding: 14px 18px; border-radius: var(--radius-sm);
  background: var(--brand-soft); color: var(--brand);
  font-size: var(--small); font-weight: 600;
}
.form-status[hidden] { display: none; }

/* İletişim bilgi listesi */
.contact-list { display: flex; flex-direction: column; gap: var(--s-3); margin-top: var(--s-4); }
.contact-list li { display: flex; gap: var(--s-3); align-items: flex-start; }
.contact-list .icon-badge { width: 42px; height: 42px; border-radius: 12px; flex: none; }
.contact-list strong { display: block; font-size: var(--small); }
.contact-list span, .contact-list a { font-size: var(--small); color: var(--ink-soft); }

/* ---------- 18. Footer ---------- */
.site-footer { background: var(--brand-deep); color: rgba(255, 255, 255, .72); }
.footer-top {
  display: grid; gap: clamp(32px, 5vw, var(--s-6));
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  padding-block: clamp(48px, 7vw, var(--s-7));
}
.footer-brand-mark { display: flex; flex-direction: column; gap: 4px; margin-bottom: var(--s-3); }
.footer-wordmark {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 600;
  letter-spacing: .12em; color: #fff;
}
.footer-wordtag {
  font-size: 9.5px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--accent-light);
}
.site-footer h4 {
  color: #fff; font-size: var(--micro); letter-spacing: .16em;
  text-transform: uppercase; margin-bottom: var(--s-3);
}
.site-footer p { color: rgba(255, 255, 255, .66); font-size: var(--small); }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: var(--small); color: rgba(255, 255, 255, .72); }
.footer-links a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 13px; }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; font-size: var(--small); }
.footer-contact svg { width: 17px; height: 17px; flex: none; margin-top: 3px; color: var(--accent-light); }
.footer-contact a { color: rgba(255, 255, 255, .78); }
.footer-contact a:hover { color: #fff; }

.socials { display: flex; gap: 10px; margin-top: var(--s-4); }
.socials a {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .09); color: #fff;
  transition: background-color .2s var(--ease), transform .2s var(--ease);
}
.socials a:hover { background: var(--brand-mid); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-block: var(--s-4);
  display: flex; flex-wrap: wrap; gap: var(--s-3);
  align-items: center; justify-content: space-between;
  font-size: var(--micro); color: rgba(255, 255, 255, .55);
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: var(--s-4); }
.footer-bottom a { color: rgba(255, 255, 255, .6); }
.footer-bottom a:hover { color: #fff; }

/* ---------- 19. Yukarı çık ---------- */
.to-top {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--brand); color: #fff;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all .28s var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--brand-mid); }
.to-top svg { width: 20px; height: 20px; }

/* ---------- 20. Kaydır-göster animasyonu ---------- */
.reveal { opacity: 0; transform: translateY(22px); }
.reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

/* ---------- 21. Duyarlı düzen ---------- */
@media (max-width: 1024px) {
  :root { --header-h: 70px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
  .split-media img, .split-media--tall img { aspect-ratio: 16 / 10; }
}

@media (max-width: 1239px) {
  .nav-toggle { display: inline-flex; }
  /* Mobil menü: başlığın altına açılan panel (yatay taşma oluşturmaz) */
  .nav-menu {
    position: absolute; top: 100%; left: 0; right: 0;
    display: block;
    max-height: calc(100vh - var(--header-h) - 46px);
    max-height: calc(100dvh - var(--header-h) - 46px);
    overflow-y: auto; overscroll-behavior: contain;
    padding: var(--s-2) clamp(18px, 5vw, 40px) var(--s-5);
    background: var(--bg);
    border-top: 1px solid var(--line-soft);
    box-shadow: 0 20px 44px rgba(29, 43, 33, .14);
    opacity: 0; visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .26s var(--ease), transform .26s var(--ease), visibility .26s;
  }
  body.nav-open .nav-menu { opacity: 1; visibility: visible; transform: translateY(0); }
  body.nav-open { overflow: hidden; }
  .nav-menu > li { border-bottom: 1px solid var(--line-soft); }
  .nav-link {
    width: 100%; justify-content: space-between;
    padding: 17px 4px; border-radius: 0; font-size: 1.0625rem;
  }
  .nav-link:hover, .has-sub:hover > .nav-link { background: none; }
  .nav-link[aria-current="page"]::after { display: none; }
  .nav-link[aria-current="page"] { color: var(--brand); }
  .sub-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    min-width: 0; padding: 0 0 12px 4px;
    border: 0; box-shadow: none; background: none;
    display: none;
  }
  .has-sub.is-open .sub-menu { display: block; }
  .has-sub.is-open > .nav-link svg { transform: rotate(180deg); }
  .has-sub:hover .sub-menu { display: none; }
  .has-sub.is-open:hover .sub-menu { display: block; }
  .sub-menu a { padding: 11px 12px; }
  .nav-actions .btn { padding: 11px 20px; min-height: 44px; }
}

@media (max-width: 720px) {
  .topbar .container { justify-content: center; min-height: 34px; }
  .topbar-note { display: none; }
  .topbar-contact { gap: var(--s-3); font-size: 11px; }
  .quick-strip { margin-top: var(--s-5); }
  .stat + .stat::before { display: none; }
  .stat { text-align: left; padding-inline: 0; }
  .gallery .wide { grid-column: span 1; }
  .step { grid-template-columns: 46px 1fr; gap: var(--s-3); padding: var(--s-3); }
  .step-num { width: 46px; height: 46px; font-size: 1.15rem; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .btn { width: auto; }
}

@media (max-width: 420px) {
  .brand img { width: 44px; }
  .brand-name { font-size: 1.1rem; }
  .brand-tag { font-size: 8px; letter-spacing: .2em; }
  .nav-actions .btn span { display: none; }
  .nav-actions .btn { padding: 12px 16px; }
  .btn-row .btn { width: 100%; }
  .quick-card { padding: var(--s-3); }
}

/* ---------- 22. Erişilebilirlik & baskı ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .topbar, .to-top, .cta-band, .site-footer { display: none; }
  body { background: #fff; }
}

/* ---------- 23. Proje sayfası (Spa & Restaurant yapısı) ---------- */

/* Künye / teknik bilgi listesi */
.spec-list { display: grid; gap: 0; }
.spec-list div {
  display: flex; flex-wrap: wrap; gap: var(--s-3);
  justify-content: space-between; align-items: baseline;
  padding: 13px 0; border-bottom: 1px solid var(--line-soft);
}
.spec-list div:last-child { border-bottom: 0; }
.spec-list dt { font-size: var(--small); color: var(--ink-soft); margin: 0; }
.spec-list dd {
  margin: 0; font-size: var(--small); font-weight: 600;
  color: var(--ink); text-align: right;
}
.section--brand .spec-list div { border-color: rgba(255, 255, 255, .15); }
.section--brand .spec-list dt { color: rgba(255, 255, 255, .7); }
.section--brand .spec-list dd { color: #fff; }

/* Öne çıkan rakamlar (açık zeminde) */
.figure-grid {
  display: grid; gap: var(--s-3);
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.figure-tile {
  padding: var(--s-4) var(--s-3); border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm); text-align: center;
}
.figure-tile b {
  display: block; font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.6vw, 2.4rem); line-height: 1;
  font-weight: 600; color: var(--brand);
}
.figure-tile span { display: block; margin-top: 8px; font-size: var(--micro); color: var(--ink-soft); }

/* Kat planı görüntüleyici */
.plan-view {
  display: grid; gap: var(--s-5);
  grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
  align-items: start;
}
.plan-figure { margin: 0; }
.plan-figure img {
  width: 100%; border-radius: var(--radius);
  border: 1px solid var(--line); background: #fff;
}
.plan-figure figcaption {
  margin-top: 10px; font-size: var(--micro); color: var(--ink-mute);
}
.plan-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: var(--s-3); }
.plan-meta span {
  padding: 6px 13px; border-radius: 100px;
  background: var(--brand-soft); color: var(--brand);
  font-size: var(--micro); font-weight: 600;
}
.plan-legend { counter-reset: leg; display: grid; gap: 9px; }
.plan-legend li {
  display: grid; grid-template-columns: 26px 1fr; gap: 11px;
  align-items: baseline; font-size: var(--small); color: var(--ink-soft);
}
.plan-legend li::before {
  counter-increment: leg; content: counter(leg);
  display: grid; place-items: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--brand); color: #fff;
  font-size: 11px; font-weight: 700; align-self: start;
}

/* Görünüşler (cephe çizimleri) */
.elevations {
  display: grid; gap: var(--s-3);
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.elevations figure {
  margin: 0; padding: var(--s-3);
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.elevations img { width: 100%; border-radius: var(--radius-sm); }
.elevations figcaption {
  margin-top: 11px; text-align: center;
  font-size: var(--micro); font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft);
}

/* Pafta (tam sayfa çizim) kartı */
.board-card {
  display: grid; gap: var(--s-5);
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  align-items: center;
  padding: clamp(20px, 3vw, var(--s-5));
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
}
.board-card img {
  width: 100%; border-radius: var(--radius); border: 1px solid var(--line);
}

@media (max-width: 860px) {
  .plan-view, .board-card { grid-template-columns: 1fr; }
}

/* ---------- 24. Ara genişlikte menü sıkıştırma ----------
   900–1120 px arasında masaüstü menüsü görünür kalır; bağlantı
   aralıkları daraltılarak "Rezervasyon" butonunun taşması önlenir. */
@media (min-width: 1240px) and (max-width: 1400px) {
  .nav-link { padding: 10px 9px; font-size: 0.8125rem; }
  .nav-link[aria-current="page"]::after { left: 9px; right: 9px; }
  .nav-actions .btn { padding: 12px 18px; }
  .brand img { width: 46px; }
  .brand-name { font-size: 1.15rem; letter-spacing: .07em; }
}

/* Dar telefonlarda "Rezervasyon" butonu yalnızca ikonla gösterilir */
@media (max-width: 560px) {
  .nav-actions .btn span { display: none; }
  .nav-actions .btn { padding: 12px 16px; }
}

/* ---------- 25. Dil anahtarı, koyu zeminde kartlar, açık zeminde istatistik ---------- */
.lang-switch {
  display: inline-flex; align-items: center; gap: 6px;
  min-height: 44px; padding: 10px 14px; border-radius: 100px;
  background: var(--brand-soft); color: var(--brand);
  font-size: var(--micro); font-weight: 700; letter-spacing: .1em;
  transition: background-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.lang-switch svg { width: 16px; height: 16px; }
.lang-switch:hover { background: var(--brand); color: #fff; transform: translateY(-1px); }

/* Marka (koyu) zemin üzerinde kartlar */
.card--on-dark {
  background: rgba(255, 255, 255, .07); border-color: rgba(255, 255, 255, .14);
  box-shadow: none; backdrop-filter: blur(4px);
}
.card--on-dark:hover { background: rgba(255, 255, 255, .11); box-shadow: none; }
.card--on-dark h3 { color: #fff; }
.card--on-dark p { color: rgba(255, 255, 255, .78); }
.card--on-dark .icon-badge { background: rgba(255, 255, 255, .12); color: #fff; }
.card--on-dark .icon-badge--accent { background: rgba(220, 182, 61, .18); color: var(--accent-light); }

/* Koyu zeminde rakam kutuları */
.figure-grid--on-dark .figure-tile { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .14); box-shadow: none; }
.figure-grid--on-dark .figure-tile b { color: var(--accent-light); }
.figure-grid--on-dark .figure-tile span { color: rgba(255, 255, 255, .75); }

/* Açık zeminde istatistik şeridi */
.stats--light .stat-num { color: var(--brand); }
.stats--light .stat-label { color: var(--ink); }
.stats--light .stat-desc { color: var(--ink-soft); }
.stats--light .stat + .stat::before { background: var(--line); }

/* Koyu zeminde check-list vurgusu */
.section--brand .check-list strong { color: #fff; }

@media (max-width: 560px) {
  .lang-switch { padding: 10px 11px; }
}
@media (max-width: 420px) {
  .lang-switch svg { display: none; }
}

/* ---------- 26. Mobilde rezervasyon butonu menü içine taşınır ---------- */
.nav-reserve { display: none; }
@media (max-width: 720px) {
  .nav-actions .btn { display: none; }
  .lang-switch { padding: 8px 10px; }
  .nav-reserve { display: block; border-bottom: 0 !important; padding-top: var(--s-3); }
  .nav-reserve .btn { width: 100%; }
}

/* Çok dar ekranlarda marka etiketi daraltılır / gizlenir */
@media (max-width: 420px) { .brand-tag { letter-spacing: .12em; font-size: 7.5px; } }
@media (max-width: 380px) { .brand-tag { display: none; } .brand-name { font-size: 1.05rem; } }

/* ---------- 27. Üst menü: tek satır, nizami hizalama ---------- */
.site-header .container { max-width: 1400px; }
.nav { gap: var(--s-5); }
.nav-menu { flex: 0 0 auto; }
.nav-link { white-space: nowrap; }
.nav-actions { gap: 10px; }
.brand-text { white-space: nowrap; }

/* ---------- 28. Mobil optimizasyon ----------
   Dokunma hedefleri, sıkı boşluklar, portre görsel kırpımı, iki sütunlu galeri. */
a, button, .tab, .acc-trigger { touch-action: manipulation; }
.tab { min-height: 44px; }
img { content-visibility: auto; }

@media (max-width: 1239px) {
  .sub-menu a { padding: 13px 12px; }           /* ≥44px dokunma hedefi */
  .nav-link { min-height: 48px; }
}

@media (max-width: 720px) {
  :root { --s-8: 72px; }
  .section { padding-block: 48px; }
  .section--tight { padding-block: 40px; }
  .section-head { margin-bottom: 24px; }
  .section-head p { font-size: 1rem; }

  /* Hero: telefonda daha kısa, metin daha erken görünür */
  .hero { min-height: clamp(460px, 72vh, 620px); }
  .hero--page { min-height: clamp(320px, 46vh, 420px); }
  .hero .container { padding-block: 32px 40px; }
  .hero p { font-size: 1rem; }
  .hero .btn-row { margin-top: 20px; }

  /* Görseller: portre kaynaklı bloklar 4:3, kare galeri iki sütun */
  .split { gap: 24px; }
  .split-media img, .split-media--tall img { aspect-ratio: 4 / 3; }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .gallery figcaption { padding: 20px 10px 10px; font-size: var(--micro); }
  .elevations { grid-template-columns: 1fr; }
  .plan-view { gap: 20px; }

  /* Kartlar ve kutular */
  .card, .photo-card .body { padding: 20px; }
  .quick-card { padding: 20px; }
  .figure-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .figure-tile { padding: 18px 12px; }
  .figure-tile b { font-size: 1.75rem; }
  .steps { gap: 12px; }
  .step { padding: 16px; }
  .board-card { padding: 16px; gap: 20px; }
  .form-card { padding: 20px; }
  .form-grid { gap: 16px; }
  .cta-inner .btn-row { width: 100%; }
  .cta-inner .btn { flex: 1 1 auto; }

  /* Sekmeler: yatay kaydırılabilir tek satır (kırılmaz, taşmaz) */
  .tabs {
    flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; margin-inline: -18px; padding-inline: 18px; padding-bottom: 4px;
  }
  .tabs::-webkit-scrollbar { display: none; }
  .tab { flex: 0 0 auto; }

  /* Footer ve sabit düğme: çentikli ekranlarda güvenli alan */
  .footer-top { gap: 32px; padding-block: 44px; }
  .to-top { right: max(14px, env(safe-area-inset-right)); bottom: max(14px, env(safe-area-inset-bottom)); }
  .topbar .container { min-height: 32px; font-size: 11px; }
}

@media (max-width: 400px) {
  .hero { min-height: clamp(440px, 70vh, 580px); }
  .gallery { gap: 8px; }
  .figure-grid { gap: 8px; }
  .quick-card ul { margin-bottom: 12px; }
}

/* Çok küçük telefonlar (≤ 360 px): marka ve düğmeler sıkıştırılır */
@media (max-width: 360px) {
  .container { padding-inline: 14px; }
  .brand { gap: 8px; }
  .brand img { width: 40px; }
  .brand-name { font-size: 0.95rem; letter-spacing: .06em; }
  .nav-toggle { width: 42px; height: 42px; }
  .lang-switch { padding: 8px 8px; min-height: 42px; }
  .nav-actions { gap: 6px; }
  .tabs { margin-inline: -14px; padding-inline: 14px; }
}
