:root {
  --ink: #10141c;
  --ink-soft: #3d4554;
  --navy: #121a2b;
  --navy-2: #1c2740;
  --paper: #f3efe7;
  --card: #fffcf7;
  --line: rgba(18, 26, 43, 0.1);
  --gold: #8a672e;
  --gold-2: #d4af6a;
  --phone: #c0392b;
  --wa: #128c7e;
  --shadow: 0 18px 50px rgba(16, 20, 28, 0.08);
  --radius: 22px;
  --max: 1180px;
  --sans: "Outfit", system-ui, sans-serif;
  --serif: "Fraunces", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 90% -10%, rgba(184, 137, 61, 0.12), transparent 50%),
    var(--paper);
  line-height: 1.55;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input { font: inherit; }
.wrap { width: min(var(--max), calc(100% - 32px)); margin-inline: auto; }

.skip {
  position: absolute; left: 12px; top: -40px; z-index: 100;
  background: var(--gold); color: #fff; padding: 8px 12px; border-radius: 8px;
}
.skip:focus { top: 12px; }

.topbar {
  background: var(--navy);
  color: #d9deea;
  font-size: 13px;
}
.topbar .wrap {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; min-height: 42px; flex-wrap: wrap; padding: 8px 0;
}
.topbar a { color: #fff; text-decoration: none; }
.langs { display: flex; gap: 6px; }
.langs a {
  padding: 4px 10px; border-radius: 999px; border: 1px solid rgba(255,255,255,.18);
}
.langs a.is-active, .langs a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(243, 239, 231, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-row {
  display: grid; grid-template-columns: 1fr auto auto;
  align-items: center; gap: 16px; padding: 14px 0;
}
.logo { text-decoration: none; }
.logo-mark {
  font-family: var(--serif); font-size: clamp(2.2rem, 9vw, 6.5rem);
  font-weight: 900; letter-spacing: -0.03em; line-height: 1;
  text-transform: uppercase;
  display: inline-block;
  border-bottom: 6px solid var(--gold);
  padding-bottom: 6px;
}
.logo-mark b { color: var(--ink); font-style: normal; font-weight: 900; }
.logo-sl { display: block; margin-top: 4px; font-size: 11px; color: var(--ink-soft); max-width: 42ch; }

.header-cta { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; text-decoration: none;
  background: #fff; border: 1px solid var(--line); color: var(--ink);
}
.icon-btn.wa { background: var(--wa); color: #fff; border: 0; }
.phone-chip {
  text-decoration: none; text-align: right;
}
.phone-chip strong { display: block; color: var(--phone); font-size: 1.05rem; }
.phone-chip span { font-size: 11px; color: var(--ink-soft); }

.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid var(--line); background: #fff;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); margin: 4px auto; }

.nav {
  grid-column: 1 / -1;
  display: flex; flex-wrap: wrap; gap: 4px;
  padding-bottom: 10px;
}
.nav a {
  text-decoration: none; font-size: 14px; font-weight: 500;
  padding: 8px 12px; border-radius: 999px; color: var(--ink-soft);
}
.nav a:hover, .nav a.is-active { background: var(--navy); color: #fff; }

.hero {
  position: relative; overflow: hidden; border-radius: 0 0 36px 36px;
  min-height: min(72vh, 640px); color: #fff;
  display: grid; place-items: end start;
}
.hero img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.85);
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(16,20,28,.15) 0%, rgba(16,20,28,.78) 100%),
    linear-gradient(90deg, rgba(18,26,43,.55), transparent 60%);
}
.hero-copy {
  position: relative; z-index: 1; padding: 48px 0 56px;
  width: min(var(--max), calc(100% - 32px)); margin-inline: auto;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  padding: 6px 12px; border-radius: 999px; font-size: 12px; letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 16px;
}
.hero h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.1rem, 5vw, 4.2rem); line-height: 1.08;
  margin: 0 0 14px; max-width: 16ch; letter-spacing: -0.03em;
}
.hero p { margin: 0 0 24px; max-width: 48ch; color: #e6e4de; font-size: 1.05rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; border-radius: 999px; padding: 13px 20px;
  font-weight: 600; border: 0; cursor: pointer;
}
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: #755827; }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.25); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-wa { background: var(--wa); color: #fff; }
.btn-outline { background: transparent; border: 1px solid var(--line); color: var(--ink); }

.stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-top: -34px; position: relative; z-index: 2;
}
.stat {
  background: var(--card); border: 1px solid var(--line); border-radius: 18px;
  padding: 18px 16px; box-shadow: var(--shadow);
}
.stat b { display: block; font-family: var(--serif); font-size: 1.6rem; color: var(--navy); }
.stat span { color: var(--ink-soft); font-size: 13px; }

section { padding: 56px 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 16px; margin-bottom: 24px; }
.kicker { color: var(--gold); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; }
h2 {
  font-family: var(--serif); font-weight: 500; letter-spacing: -0.03em;
  font-size: clamp(1.7rem, 3vw, 2.4rem); margin: 6px 0 0;
}

.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; text-decoration: none; display: flex; flex-direction: column; gap: 10px;
  min-height: 180px; transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card i {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center; background: #efe6d4; color: var(--navy);
}
.card h3 { margin: 0; font-size: 1.15rem; }
.card p { margin: 0; color: var(--ink-soft); font-size: 14px; flex: 1; }
.card em { font-style: normal; font-size: 13px; color: var(--gold); font-weight: 600; }

.split { display: grid; grid-template-columns: 1.4fr .9fr; gap: 18px; }
.panel {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px;
}
.panel p { color: var(--ink-soft); }
.notes { display: grid; gap: 10px; }
.note {
  background: #fff8ea; border: 1px solid #ead9b3; border-radius: 14px; padding: 12px 14px; font-size: 14px;
}

.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); min-height: 320px; }
.map-wrap iframe { width: 100%; height: 360px; border: 0; }
.addr { margin-top: 14px; color: var(--ink-soft); }

.site-footer {
  background: var(--navy); color: #c9d0de; padding: 48px 0 24px; margin-top: 20px;
}
.foot-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 24px; }
.site-footer h3 { color: #fff; margin: 0 0 10px; font-size: 15px; }
.site-footer a { color: var(--gold-2); text-decoration: none; }
.legal {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.1); margin-top: 28px; padding-top: 16px; font-size: 12px;
}
.legal-links { display: flex; gap: 6px; flex-wrap: wrap; }
.legal-links a { white-space: nowrap; }

.fab {
  position: fixed; right: 16px; bottom: 16px; z-index: 50;
  display: flex; flex-direction: column; gap: 8px;
}
.fab a {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; text-decoration: none; box-shadow: var(--shadow);
}
.fab .wa { background: var(--wa); }
.fab .call { background: var(--phone); }

.search {
  display: none;
}

@media (max-width: 900px) {
  .header-row { grid-template-columns: 1fr auto auto; }
  .nav-toggle { display: inline-block; }
  .nav {
    display: none; flex-direction: column; background: #fff;
    border: 1px solid var(--line); border-radius: 16px; padding: 8px; margin-bottom: 10px;
  }
  .nav.open { display: flex; }
  .phone-chip { display: none; }
  .services { grid-template-columns: 1fr 1fr; }
  .split, .foot-grid, .stats { grid-template-columns: 1fr; }
  .hero { min-height: 78vh; border-radius: 0 0 24px 24px; }
}

@media (max-width: 620px) {
  .services { grid-template-columns: 1fr; }
  .logo-mark { font-size: 1.6rem; border-bottom-width: 3px; padding-bottom: 3px; letter-spacing: -0.01em; overflow-wrap: anywhere; max-width: 100%; }
  .icon-btn:not(.wa) { display: none; }
  .lang-switcher { display: none; }
}
@media (max-width: 400px) {
  .logo-mark { font-size: 1.3rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .card { transition: none; }
}

/* Dil seçici — header içinde belirgin */
.lang-switcher {
  display: flex;
  gap: 4px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
}
.lang-switcher a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  letter-spacing: .05em;
  transition: background .15s, color .15s;
}
.lang-switcher a:hover { background: var(--paper); color: var(--ink); }
.lang-switcher a.is-active { background: var(--navy); color: #fff; }
