/* =========================================================
   Özge Koyuncu Güzellik VIP
   "Sade Lüks" — açık, editöryel, modern profesyonel tasarım
   Ivory zemin · espresso metin · rafine antik-altın aksan
   ========================================================= */

:root {
  /* Zeminler */
  --bg:        #faf7f2;   /* ana sayfa zemini (ivory) */
  --bg-warm:   #f4eee3;   /* dönüşümlü bölümler */
  --bg-tint:   #f8f2e8;   /* hafif sıcak vurgu */
  --surface:   #ffffff;   /* kartlar */
  --surface-2: #fcfaf5;   /* yumuşak kart */

  /* Metin */
  --ink:        #2c2620;  /* gövde metni */
  --ink-strong: #201b15;  /* başlıklar */
  --muted:      #6f6452;  /* ikincil metin (taupe) — WCAG AA */
  --faint:      #726959;  /* en soluk — WCAG AA */

  /* Çizgiler */
  --line:      #e8dfd0;   /* hairline */
  --line-soft: rgba(44, 38, 32, .08);
  --line-gold: rgba(169, 132, 76, .30);

  /* Altın aksan */
  --gold:       #a9844c;  /* ana aksan (grafik AA) */
  --gold-soft:  #c4a36c;
  --gold-deep:  #82643a;  /* metin altını — WCAG AA */
  --gold-tint:  #efe6d3;  /* rozet/etiket zemini */
  --gold-grad:  linear-gradient(135deg, #c9a86c 0%, #b08d57 55%, #957441 100%);

  /* Koyu yüzeyler (footer / vurgu bantları) */
  --dark:        #221d18;
  --dark-2:      #2c2620;
  --on-dark:      #ede5d7;
  --on-dark-soft: rgba(237, 229, 215, .74);
  --line-on-dark: rgba(237, 229, 215, .14);

  /* WhatsApp (rafine yeşil) */
  --wa:   #1fa855;
  --wa-2: #178a45;

  /* Gölgeler — sıcak, yumuşak */
  --shadow-xs: 0 1px 2px rgba(44, 32, 18, .05);
  --shadow-sm: 0 6px 18px rgba(64, 48, 24, .07);
  --shadow-md: 0 16px 40px rgba(64, 48, 24, .10);
  --shadow-lg: 0 30px 70px rgba(44, 32, 14, .14);

  --maxw: 1180px;
  --r:    16px;   /* kart yarıçapı */
  --r-sm: 11px;
  --r-xs: 8px;
  --r-pill: 999px;

  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans:  "Jost", "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  --ease:  cubic-bezier(.22, .61, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 1.04rem;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
::selection { background: var(--gold-tint); color: var(--ink-strong); }

/* Klavye erişilebilirliği: görünür odak halkası (WCAG 2.4.7) */
:where(a, button, summary, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.footer :focus-visible, .cta-band :focus-visible, .aside-cta :focus-visible,
.float-stack :focus-visible, .map-facade:focus-visible { outline-color: var(--gold-soft); }

h1, h2, h3, .serif { font-family: var(--serif); font-weight: 600; line-height: 1.12; color: var(--ink-strong); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ---- Yardımcılar ---- */
.gold-text {
  color: var(--gold-deep);
  font-style: italic;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans); font-size: .73rem; font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase; color: var(--gold-deep);
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); flex-shrink: 0; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ""; width: 26px; height: 1px; background: var(--gold); flex-shrink: 0; }
.eyebrow.on-dark { color: var(--gold-soft); }
.eyebrow.on-dark::before, .eyebrow.on-dark.center::after { background: var(--gold-soft); }

/* Bölüm başlıkları */
.section { padding: 104px 0; position: relative; }
.sec-head { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.sec-head.left { margin-left: 0; text-align: left; }
.sec-index {
  display: block; margin: 16px 0 6px;
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--faint);
}
.sec-title { font-size: clamp(2.1rem, 4.6vw, 3.4rem); color: var(--ink-strong); margin-top: 8px; font-weight: 600; letter-spacing: -.01em; }
.sec-title em { font-style: italic; color: var(--gold-deep); }
.sec-sub { color: var(--muted); margin-top: 16px; font-size: 1.1rem; line-height: 1.7; }

/* ---- Butonlar ---- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px; font-family: var(--sans); font-weight: 600; font-size: .76rem;
  letter-spacing: .14em; text-transform: uppercase; cursor: pointer; border: 1px solid transparent;
  border-radius: var(--r-pill);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn--primary {
  color: #fbf6ec; background: var(--ink-strong); border-color: var(--ink-strong);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--gold-deep); border-color: var(--gold-deep); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(149, 116, 65, .30); }
.btn--ghost {
  background: transparent; color: var(--ink-strong); border-color: var(--line-gold);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-deep); background: rgba(176, 141, 87, .07); transform: translateY(-2px); }
.btn--ghost.on-dark { color: var(--on-dark); border-color: var(--line-on-dark); }
.btn--ghost.on-dark:hover { background: rgba(237, 229, 215, .10); border-color: var(--gold-soft); color: #fff; }
.btn--wa { background: var(--wa); color: #fff; border-color: var(--wa); box-shadow: 0 8px 22px rgba(31, 168, 85, .22); }
.btn--wa:hover { background: var(--wa-2); border-color: var(--wa-2); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(31, 168, 85, .30); }
.btn--lg { padding: 16px 34px; font-size: .8rem; }

/* =========================================================
   Üst bar + Header
   ========================================================= */
.topbar {
  background: var(--bg-warm); color: var(--muted);
  font-size: .78rem; letter-spacing: .03em; position: relative; z-index: 101;
  border-bottom: 1px solid var(--line);
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 9px 0; }
.topbar a { color: var(--muted); transition: color .3s; display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { color: var(--gold-deep); }
.topbar svg { width: 14px; height: 14px; color: var(--gold); }
.topbar-right { display: flex; gap: 24px; align-items: center; }
@media (max-width: 760px) {
  .topbar .tb-hide { display: none; }
  .topbar-inner { justify-content: space-between; gap: 12px; }
  .tb-loc-full { display: none; }              /* mobilde adresi kısalt: "Nurdağı / Gaziantep" */
  .topbar a, .tb-loc span { white-space: nowrap; }
  .topbar svg { flex-shrink: 0; }
}

.header {
  position: sticky; top: 0; z-index: 100;
  transition: background .4s, box-shadow .4s, padding .4s, border-color .4s;
  padding: 18px 0; border-bottom: 1px solid transparent;
}
/* Üstte (açık hero üzerinde) — şeffaf */
.header--over { background: transparent; }
.header.scrolled {
  background: rgba(250, 247, 242, .9);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm); padding: 11px 0;
  border-bottom-color: var(--line);
}

.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 13px; }
.brand img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; box-shadow: var(--shadow-xs); transition: transform .5s var(--ease); }
.brand:hover img { transform: scale(1.05); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: var(--serif); font-size: 1.42rem; font-weight: 600; letter-spacing: .01em; color: var(--ink-strong); }
.brand-text span { font-size: .56rem; letter-spacing: .36em; text-transform: uppercase; color: var(--gold-deep); margin-top: 4px; }

.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav-links a {
  font-size: .78rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink); position: relative; padding: 6px 0; transition: color .3s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px;
  background: var(--gold); transition: width .35s var(--ease);
}
.nav-links a:hover { color: var(--gold-deep); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 10px 22px; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 25px; height: 1.6px; background: var(--ink-strong); border-radius: 2px; transition: .3s; }
.nav-toggle span + span { margin-top: 7px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8.6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8.6px) rotate(-45deg); }

/* =========================================================
   Hero — açık, editöryel
   ========================================================= */
.hero {
  position: relative; min-height: 88vh; display: flex; align-items: center;
  padding: 72px 0 84px; overflow: hidden;
  background:
    radial-gradient(120% 80% at 85% 8%, rgba(176, 141, 87, .10), transparent 55%),
    radial-gradient(90% 70% at 0% 100%, rgba(176, 141, 87, .07), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-tint) 100%);
  border-bottom: 1px solid var(--line);
}
.hero-inner { position: relative; z-index: 2; max-width: 780px; }
.hero-eyebrow { margin-bottom: 26px; }
.hero h1 {
  font-size: clamp(2.8rem, 6.4vw, 5.2rem); font-weight: 600; letter-spacing: -.015em;
  margin-bottom: 24px; color: var(--ink-strong);
}
.hero h1 em { font-style: italic; }
.hero h1 .gold-text { font-style: italic; color: var(--gold-deep); }
.hero-lead { font-size: 1.2rem; color: var(--muted); max-width: 560px; margin-bottom: 38px; line-height: 1.75; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 0; }
.hero-meta .m { padding-right: 34px; margin-right: 34px; position: relative; }
.hero-meta .m:not(:last-child)::after {
  content: ""; position: absolute; right: 0; top: 6px; bottom: 6px; width: 1px; background: var(--line-gold);
}
.hero-meta strong { font-family: var(--serif); font-size: 2.2rem; font-weight: 600; color: var(--gold-deep); display: block; line-height: 1; }
.hero-meta span { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--faint); margin-top: 9px; display: block; }

/* =========================================================
   Hizmetler — editöryel numaralı indeks
   ========================================================= */
.services { background: var(--bg); }
.svc-index-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 56px;
  border-top: 1px solid var(--line);
}
.svc-row {
  display: grid; grid-template-columns: auto auto 1fr auto; align-items: center; gap: 18px;
  padding: 24px 16px; border-bottom: 1px solid var(--line);
  position: relative; transition: padding .35s var(--ease), background .35s, border-color .35s;
}
.svc-row:hover { padding-left: 26px; background: var(--surface-2); border-bottom-color: var(--line-gold); }
.svc-num { font-family: var(--serif); font-size: 1.05rem; color: var(--gold); min-width: 28px; letter-spacing: .04em; }
.svc-row-icon { color: var(--gold-deep); display: grid; place-items: center; transition: transform .4s var(--ease); }
.svc-row-icon svg { width: 28px; height: 28px; }
.svc-row:hover .svc-row-icon { transform: scale(1.08); }
.svc-row-main h3 { font-family: var(--serif); font-size: 1.55rem; font-weight: 600; color: var(--ink-strong); transition: color .3s; line-height: 1.15; }
.svc-row:hover .svc-row-main h3 { color: var(--gold-deep); }
.svc-row-main p { font-size: .93rem; color: var(--muted); margin-top: 4px; }
.svc-arrow { color: var(--gold); opacity: 0; transform: translateX(-8px); transition: opacity .35s, transform .35s var(--ease); }
.svc-arrow svg { width: 20px; height: 20px; }
.svc-row:hover .svc-arrow { opacity: 1; transform: none; }
@media (hover: none) { .svc-arrow { opacity: .6; transform: none; } }

/* =========================================================
   Hakkımızda — açık, asimetrik
   ========================================================= */
.about { background: var(--bg-warm); overflow: hidden; }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; }
.about-visual { position: relative; }
.about-frame {
  aspect-ratio: 4/5; border: 1px solid var(--line-gold); border-radius: var(--r);
  position: relative; display: grid; place-items: center; background: var(--surface);
  box-shadow: var(--shadow-md);
}
.about-frame::before { content: ""; position: absolute; inset: 14px; border: 1px solid var(--line); border-radius: var(--r-xs); pointer-events: none; }
.about-logo { position: relative; width: 70%; aspect-ratio: 1; display: grid; place-items: center; }
.about-logo .al-img {
  width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 50%; position: relative; z-index: 2;
  box-shadow: 0 14px 40px rgba(64, 48, 24, .16), 0 0 0 1px var(--line-gold);
}
.about-est {
  position: absolute; top: 50%; right: -16px; transform: translateY(-50%) rotate(90deg); transform-origin: center;
  font-size: .64rem; letter-spacing: .34em; text-transform: uppercase; color: var(--gold-deep); white-space: nowrap;
}
.about-content .eyebrow { margin-bottom: 18px; }
.about-content h2 { font-size: clamp(2rem, 4.2vw, 3rem); font-weight: 600; color: var(--ink-strong); margin-bottom: 20px; }
.about-content h2 em { font-style: italic; color: var(--gold-deep); }
.about-content p { color: var(--ink); margin-bottom: 16px; font-size: 1.06rem; line-height: 1.8; }
.about-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 26px; margin: 28px 0 30px; }
.about-list li { display: flex; gap: 11px; align-items: flex-start; font-size: .96rem; color: var(--ink); }
.about-list svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; margin-top: 5px; }
.about-sign { font-family: var(--serif); font-style: italic; font-size: 1.85rem; color: var(--gold-deep); margin: 6px 0 26px; }

/* =========================================================
   Neden Biz — sade kartlar
   ========================================================= */
.why { background: var(--bg); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-item {
  padding: 38px 28px; text-align: center; position: relative;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
}
.why-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-gold); }
.why-icon {
  width: 60px; height: 60px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--line-gold); color: var(--gold-deep); background: var(--gold-tint);
  transition: background .4s, color .4s, transform .4s var(--ease);
}
.why-icon svg { width: 26px; height: 26px; }
.why-item:hover .why-icon { background: var(--ink-strong); color: var(--gold-soft); transform: translateY(-2px); }
.why-item h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--ink-strong); margin-bottom: 9px; }
.why-item p { font-size: .94rem; color: var(--muted); line-height: 1.65; }
@media (max-width: 880px) { .why-grid { grid-template-columns: 1fr 1fr; } }

/* =========================================================
   Bölge / Yerel SEO
   ========================================================= */
.local-seo { background: var(--bg-warm); }
.seo-body { max-width: 840px; margin: 0 auto; text-align: center; }
.seo-body p { color: var(--ink); font-size: 1.08rem; line-height: 1.9; margin-bottom: 18px; }
.seo-body strong { color: var(--gold-deep); font-weight: 600; }
.seo-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 11px; margin-top: 32px; }
.seo-tag {
  display: inline-flex; align-items: center; gap: 9px; padding: 10px 18px; border-radius: var(--r-pill);
  border: 1px solid var(--line-gold); background: var(--surface); color: var(--ink-strong);
  font-size: .84rem; letter-spacing: .01em; transition: background .3s, color .3s, transform .3s, border-color .3s, box-shadow .3s;
}
.seo-tag svg { width: 11px; height: 11px; color: var(--gold); transition: color .3s; }
.seo-tag:hover { background: var(--ink-strong); color: #fbf6ec; transform: translateY(-2px); border-color: var(--ink-strong); box-shadow: var(--shadow-sm); }
.seo-tag:hover svg { color: var(--gold-soft); }

/* =========================================================
   Beyan / Statement
   ========================================================= */
.statement { position: relative; overflow: hidden; text-align: center; background: var(--bg); padding: 96px 0; }
.statement-inner { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; }
.statement .glyph { color: var(--gold); margin-bottom: 22px; display: inline-flex; }
.statement .glyph svg { width: 34px; height: 34px; }
.statement q { font-family: var(--serif); font-style: italic; font-size: clamp(1.7rem, 3.6vw, 2.7rem); font-weight: 500; line-height: 1.32; color: var(--ink-strong); display: block; }
.statement q::before, .statement q::after { color: var(--gold); }
.statement cite { display: block; margin-top: 26px; font-style: normal; font-size: .74rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-deep); }
.statement cite::before { content: ""; display: block; width: 40px; height: 1px; background: var(--gold); margin: 0 auto 18px; }

/* =========================================================
   Randevu formu
   ========================================================= */
.booking { background: var(--bg-warm); }
.form-wrap {
  max-width: 860px; margin: 0 auto; background: var(--surface); position: relative;
  border: 1px solid var(--line); border-radius: var(--r); padding: 46px; box-shadow: var(--shadow-md);
}
.form-alert { display: flex; align-items: center; gap: 12px; padding: 14px 18px; margin-bottom: 24px; font-size: .95rem; border-radius: var(--r-sm); }
.form-alert svg { width: 22px; height: 22px; flex-shrink: 0; }
.form-alert--ok { background: #eef7f0; color: #1f7a48; border: 1px solid #c5e6d1; }
.form-alert--err { background: #fbeded; color: #b03a4a; border: 1px solid #f0cdd2; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--ink); /* 16px: iOS odak zoom'unu önler */
  padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--surface-2);
  transition: border-color .25s, box-shadow .25s, background .25s; width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid transparent; outline-offset: 2px; /* yüksek kontrast modu için */
  border-color: var(--gold); background: var(--surface); box-shadow: 0 0 0 3px rgba(169, 132, 76, .18);
}
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.form-note { margin-top: 18px; font-size: .8rem; color: var(--muted); }
@media (max-width: 600px) { .form-wrap { padding: 26px; } .form-grid { grid-template-columns: 1fr; } .form-actions .btn { width: 100%; } }

/* =========================================================
   İletişim
   ========================================================= */
.contact { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: stretch; }
.contact-info { display: grid; gap: 14px; align-content: start; }
.contact-card {
  display: flex; gap: 18px; align-items: center; padding: 22px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r); transition: transform .35s var(--ease), border-color .35s, box-shadow .35s; position: relative;
}
.contact-card:hover { transform: translateX(5px); border-color: var(--line-gold); box-shadow: var(--shadow-sm); }
.contact-card .ci { width: 50px; height: 50px; flex-shrink: 0; display: grid; place-items: center; border-radius: 50%; background: var(--gold-tint); color: var(--gold-deep); }
.contact-card .ci svg { width: 22px; height: 22px; }
.contact-card small { color: var(--muted); font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; }
.contact-card strong { display: block; font-size: 1rem; font-weight: 600; color: var(--ink-strong); margin-top: 3px; }
.contact-map { overflow: hidden; border-radius: var(--r); box-shadow: var(--shadow-sm); min-height: 400px; border: 1px solid var(--line); }
.contact-map iframe { width: 100%; height: 100%; min-height: 400px; border: 0; display: block; }

/* =========================================================
   Footer — koyu, rafine (zemini sabitler)
   ========================================================= */
.footer { background: var(--dark); color: var(--on-dark-soft); padding: 78px 0 28px; position: relative; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; margin-bottom: 52px; }
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer-brand img { width: 52px; height: 52px; border-radius: 50%; }
.footer-brand strong { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--on-dark); }
.footer p { font-size: .92rem; opacity: .82; max-width: 340px; line-height: 1.75; }
.footer h4, .footer .footer-h { color: var(--gold-soft); font-size: .76rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 20px; font-family: var(--sans); font-weight: 600; }
.footer ul { list-style: none; display: grid; gap: 11px; }
.footer ul a { font-size: .92rem; opacity: .82; transition: opacity .3s, padding .3s, color .3s; }
.footer ul a:hover { opacity: 1; padding-left: 6px; color: var(--gold-soft); }
.footer-social { display: flex; gap: 11px; margin-top: 22px; }
.footer-social a { width: 42px; height: 42px; border: 1px solid var(--line-on-dark); border-radius: 50%; display: grid; place-items: center; transition: background .3s, transform .3s, color .3s, border-color .3s; color: var(--on-dark); }
.footer-social a:hover { background: var(--gold); color: var(--dark); transform: translateY(-3px); border-color: var(--gold); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid var(--line-on-dark); padding-top: 24px; text-align: center; font-size: .82rem; color: var(--on-dark-soft); }
.footer-bottom a { color: var(--gold-soft); }
.footer-credit { display: block; margin-top: 8px; font-size: .8rem; opacity: .9; }
.footer-credit a { font-weight: 600; }
.footer-credit a:hover { color: #fff; text-decoration: underline; }

/* =========================================================
   Hizmet Detay Sayfası
   ========================================================= */
.svc-hero {
  position: relative; overflow: hidden; padding: 70px 0 64px;
  background:
    radial-gradient(110% 80% at 88% 6%, rgba(176, 141, 87, .12), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-tint) 100%);
  border-bottom: 1px solid var(--line);
}
.svc-hero > .container { position: relative; z-index: 2; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font-size: .76rem; letter-spacing: .04em; color: var(--muted); margin-bottom: 28px; }
.breadcrumb a { color: var(--gold-deep); transition: color .3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb strong { color: var(--ink-strong); font-weight: 600; }
.svc-hero-inner { max-width: 820px; }
.svc-hero-icon { width: 66px; height: 66px; border: 1px solid var(--line-gold); border-radius: 50%; display: grid; place-items: center; margin-bottom: 22px; color: var(--gold-deep); background: var(--gold-tint); }
.svc-hero-icon svg { width: 32px; height: 32px; }
.svc-hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); font-weight: 600; color: var(--ink-strong); margin-bottom: 18px; letter-spacing: -.01em; }
.svc-hero-lead { font-size: 1.16rem; color: var(--muted); margin-bottom: 30px; line-height: 1.7; max-width: 680px; }

/* Hizmet alt CTA bandı — tek koyu vurgu */
.cta-band {
  position: relative; overflow: hidden; text-align: center; color: var(--on-dark);
  border-radius: var(--r); padding: 58px 44px;
  background: radial-gradient(110% 90% at 85% 12%, rgba(176, 141, 87, .2), transparent 55%), var(--dark);
}
.cta-band h2 { font-family: var(--serif); font-size: clamp(1.7rem, 3.6vw, 2.6rem); font-weight: 600; color: #fff; margin-bottom: 12px; }
.cta-band h2 em { font-style: italic; color: var(--gold-soft); }
.cta-band p { color: var(--on-dark-soft); max-width: 560px; margin: 0 auto 26px; }
.cta-band .btn--ghost { color: var(--on-dark); border-color: var(--line-on-dark); }
.cta-band .btn--ghost:hover { background: rgba(237, 229, 215, .1); border-color: var(--gold-soft); color: #fff; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.svc-body { background: var(--bg); }
.svc-layout { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start; }
.svc-content > h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 600; color: var(--ink-strong); margin: 42px 0 16px; position: relative; padding-left: 20px; }
.svc-content > h2:first-child { margin-top: 0; }
.svc-content > h2::before { content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 3px; border-radius: 2px; background: var(--gold-grad); }
.svc-content p { color: var(--ink); margin-bottom: 16px; line-height: 1.85; font-size: 1.05rem; }
.svc-content ul { margin: 0 0 18px 4px; padding-left: 22px; color: var(--ink); }
.svc-content ul li { margin-bottom: 9px; line-height: 1.7; }
.svc-content ul li::marker { color: var(--gold); }
.svc-content strong { color: var(--gold-deep); }

.svc-benefits h2, .svc-process h2, .svc-faq h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 600; color: var(--ink-strong); margin: 42px 0 16px; }
.benefit-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0; margin: 6px 0 10px; }
.benefit-list li { display: flex; gap: 11px; align-items: flex-start; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 14px 16px; }
.benefit-list svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.benefit-list span { font-size: .93rem; color: var(--ink); }

.process-steps { display: grid; gap: 12px; margin-top: 6px; }
.process-step { display: flex; gap: 18px; align-items: flex-start; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 20px 22px; }
.ps-num { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font-family: var(--serif); font-weight: 600; font-size: 1.15rem; color: #fbf6ec; background: var(--ink-strong); }
.process-step strong { display: block; color: var(--ink-strong); margin-bottom: 3px; }
.process-step p { margin: 0; font-size: .92rem; color: var(--muted); }

.svc-faq { margin-top: 14px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r-sm); margin-bottom: 12px; background: var(--surface); overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: var(--line-gold); }
.faq-item summary { cursor: pointer; list-style: none; padding: 18px 22px; font-weight: 600; color: var(--ink-strong); display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq-plus::before, .faq-plus::after { content: ""; position: absolute; background: var(--gold-deep); transition: transform .3s, opacity .3s; }
.faq-plus::before { top: 7px; left: 0; width: 16px; height: 1.6px; }
.faq-plus::after { left: 7px; top: 0; width: 1.6px; height: 16px; }
.faq-item[open] .faq-plus::after { transform: rotate(90deg); opacity: 0; }
.faq-a { padding: 0 22px 18px; }
.faq-a p { margin: 0; color: var(--muted); line-height: 1.8; }

.svc-aside { position: sticky; top: 100px; display: grid; gap: 20px; }
.aside-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 26px; position: relative; }
.aside-card h3 { font-family: var(--serif); font-weight: 600; color: var(--ink-strong); font-size: 1.4rem; margin-bottom: 16px; }
.aside-cta { background: radial-gradient(120% 90% at 85% 8%, rgba(176, 141, 87, .2), transparent 55%), var(--dark); border-color: transparent; }
.aside-cta h3 { color: #fff; }
.aside-cta p { font-size: .92rem; color: var(--on-dark-soft); margin-bottom: 18px; }
.aside-cta .btn { width: 100%; margin-bottom: 12px; }
.aside-cta .btn--ghost { color: var(--on-dark); border-color: var(--line-on-dark); }
.aside-cta .btn--ghost:hover { background: rgba(237, 229, 215, .1); border-color: var(--gold-soft); color: #fff; }
.aside-address { display: flex; gap: 10px; align-items: flex-start; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line-on-dark); font-size: .85rem; color: var(--on-dark-soft); line-height: 1.5; }
.aside-address svg { width: 17px; height: 17px; color: var(--gold-soft); flex-shrink: 0; margin-top: 2px; }
.aside-links { list-style: none; display: grid; gap: 2px; }
.aside-links a { display: flex; align-items: center; gap: 9px; padding: 10px 12px; border-radius: var(--r-sm); font-size: .92rem; color: var(--ink); transition: background .25s, color .25s, padding .25s; }
.aside-links svg { width: 14px; height: 14px; color: var(--gold); transition: transform .25s; }
.aside-links a:hover { background: var(--bg-warm); color: var(--gold-deep); padding-left: 16px; }
.aside-links a:hover svg { transform: translateX(3px); }
@media (max-width: 900px) { .svc-layout { grid-template-columns: 1fr; } .svc-aside { position: static; } .benefit-list { grid-template-columns: 1fr; } }

/* =========================================================
   Yüzen butonlar + yukarı çık
   ========================================================= */
.float-stack { position: fixed; left: 22px; bottom: 22px; z-index: 95; display: flex; flex-direction: column; gap: 13px; }
.fab { position: relative; width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; transition: transform .3s var(--ease), box-shadow .3s; }
.fab svg { width: 25px; height: 25px; }
.fab:hover { transform: translateY(-3px) scale(1.05); }
.fab--call { background: var(--ink-strong); box-shadow: var(--shadow-md); }
.fab--call svg { color: var(--gold-soft); }
.fab--wa { background: var(--wa); box-shadow: 0 10px 26px rgba(31, 168, 85, .4); animation: pulse 2.8s infinite; }
.fab--wa svg { color: #fff; }
.fab-tip { position: absolute; left: calc(100% + 12px); top: 50%; transform: translateY(-50%) translateX(-6px); background: var(--dark); color: var(--on-dark); font-size: .72rem; letter-spacing: .06em; white-space: nowrap; padding: 6px 12px; border-radius: var(--r-xs); opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s; }
.fab-tip::before { content: ""; position: absolute; right: 100%; top: 50%; transform: translateY(-50%); border: 6px solid transparent; border-right-color: var(--dark); }
.fab:hover .fab-tip { opacity: 1; transform: translateY(-50%) translateX(0); }
.scroll-top { position: fixed; right: 22px; bottom: 22px; z-index: 95; width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line-gold); cursor: pointer; background: var(--surface); color: var(--gold-deep); display: grid; place-items: center; opacity: 0; visibility: hidden; transform: translateY(14px); transition: opacity .35s var(--ease), transform .35s var(--ease), background .3s, color .3s; box-shadow: var(--shadow-sm); }
.scroll-top.show { opacity: 1; visibility: visible; transform: none; }
.scroll-top:hover { background: var(--ink-strong); color: var(--gold-soft); border-color: var(--ink-strong); }
.scroll-top svg { width: 21px; height: 21px; }
@keyframes pulse { 0% { box-shadow: 0 10px 26px rgba(31, 168, 85, .4), 0 0 0 0 rgba(31, 168, 85, .45); } 70% { box-shadow: 0 10px 26px rgba(31, 168, 85, .4), 0 0 0 14px rgba(31, 168, 85, 0); } 100% { box-shadow: 0 10px 26px rgba(31, 168, 85, .4), 0 0 0 0 rgba(31, 168, 85, 0); } }
@media (max-width: 600px) { .float-stack { left: 14px; bottom: 14px; } .fab { width: 50px; height: 50px; } .fab-tip { display: none; } .scroll-top { right: 14px; bottom: 14px; width: 44px; height: 44px; } }

/* =========================================================
   Reveal animasyonu
   ========================================================= */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

/* =========================================================
   Map facade
   ========================================================= */
.map-facade {
  position: relative; width: 100%; min-height: 400px; border: 0; cursor: pointer;
  display: grid; place-items: center; text-align: center; padding: 24px; border-radius: var(--r);
  background: radial-gradient(120% 90% at 80% 10%, rgba(176, 141, 87, .16), transparent 55%), var(--dark);
  color: var(--on-dark); font-family: var(--sans);
}
.map-facade__inner { display: grid; gap: 13px; justify-items: center; max-width: 330px; }
.map-facade__pin { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line-on-dark); color: var(--gold-soft); background: rgba(237, 229, 215, .05); }
.map-facade__pin svg { width: 26px; height: 26px; }
.map-facade__title { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: #fff; }
.map-facade__addr { font-size: .88rem; color: var(--on-dark-soft); }
.map-facade__btn { margin-top: 8px; display: inline-flex; align-items: center; gap: 8px; padding: 11px 24px; border-radius: var(--r-pill); background: var(--gold); color: var(--dark); font-weight: 600; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; }
.map-facade__btn svg { width: 15px; height: 15px; }

/* =========================================================
   Blog
   ========================================================= */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 30px 28px; transition: transform .35s var(--ease), box-shadow .35s, border-color .35s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-gold); }
.blog-card__date { display: inline-flex; align-items: center; gap: 7px; font-size: .74rem; letter-spacing: .06em; color: var(--faint); text-transform: uppercase; }
.blog-card__date svg { width: 13px; height: 13px; color: var(--gold); }
.blog-card h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--ink-strong); margin: 14px 0 10px; line-height: 1.2; transition: color .3s; }
.blog-card:hover h3 { color: var(--gold-deep); }
.blog-card p { font-size: .96rem; color: var(--muted); line-height: 1.65; flex: 1; }
.blog-card__more { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-deep); }
.blog-card__more svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.blog-card:hover .blog-card__more svg { transform: translateX(4px); }
@media (max-width: 980px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-back { margin-top: 32px; }
.blog-back a { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-deep); font-weight: 600; }
.blog-back svg { width: 18px; height: 18px; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) { .svc-index-grid { grid-template-columns: 1fr; } }
@media (max-width: 880px) {
  .nav-links, .nav-cta .btn--ghost { display: none; }
  .nav-toggle { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 44px; height: 44px; padding: 0; }
  .nav-cta .btn--primary { padding: 10px 18px; font-size: .74rem; }
  .nav-links.open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column;
    background: rgba(250, 247, 242, .98); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
    padding: 22px 28px; gap: 2px; align-items: stretch; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open a {
    color: var(--ink-strong); font-size: 1rem; padding: 15px 4px; letter-spacing: .08em;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open a:last-child { border-bottom: 0; }
  .nav-links.open a::after { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-visual { max-width: 340px; margin: 0 auto; }
  .about-est { right: -8px; }
  .contact-grid, .footer-top { grid-template-columns: 1fr; }
  .footer-top { gap: 34px; }
}
@media (max-width: 600px) {
  .section { padding: 68px 0; }
  .about-list { grid-template-columns: 1fr; }
  .svc-row { padding: 22px 8px; }
  .svc-row-main h3 { font-size: 1.38rem; }
  .hero-meta .m { padding-right: 24px; margin-right: 24px; }
}

/* =========================================================
   Mobil tipografi — profesyonel okunabilirlik (≤600px)
   Gövde/ikincil metinler en az ~16px, etiketler okunur boyutta.
   ========================================================= */
@media (max-width: 600px) {
  body { font-size: 1.0625rem; line-height: 1.72; }          /* ~17px konforlu gövde */
  .container { padding: 0 20px; }                            /* mobil için daha geniş içerik */
  .sec-sub { font-size: 1.06rem; }
  .svc-row-main h3 { font-size: 1.46rem; }
  .svc-row-main p,
  .about-content p,
  .about-list li,
  .why-item p,
  .benefit-list span,
  .process-step p,
  .aside-cta p,
  .aside-links a,
  .faq-a p,
  .map-facade__addr,
  .footer p,
  .footer ul a { font-size: 1rem; line-height: 1.7; }         /* 16px taban */
  /* Küçük etiketleri okunur boyuta çek */
  .eyebrow { font-size: .8rem; letter-spacing: .2em; }
  .sec-index { font-size: .78rem; }
  .field label { font-size: .8rem; }
  .contact-card small { font-size: .76rem; }
  .contact-card strong { font-size: 1.08rem; }
  .hero-meta span { font-size: .74rem; }
  .footer h4, .footer .footer-h { font-size: .82rem; }
  .breadcrumb { font-size: .82rem; }
  .btn { font-size: .8rem; }
  .topbar { font-size: .82rem; }
}

/* Dar ekranda header'ı kompakt tut — marka adı tek satırda kalsın */
@media (max-width: 480px) {
  .brand img { width: 42px; height: 42px; }
  .brand { gap: 11px; }
  .brand-text strong { font-size: 1.22rem; white-space: nowrap; }
  .brand-text span { font-size: .52rem; letter-spacing: .3em; }
  .nav-cta { gap: 10px; }
  .nav-cta .btn--primary { padding: 9px 14px; font-size: .72rem; letter-spacing: .1em; }
}

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