/* ==========================================================================
   ALOPILATES — STYLE.CSS
   Marka paleti: Siyah / Beyaz / Altın (Champagne Gold)
   Fontlar: Fraunces (başlıklar) + Inter (gövde metni)
   ========================================================================== */

/* ---------- 1. DEĞİŞKENLER (DESIGN TOKENS) ---------- */
:root{
  --bg:#FAF9F5;
  --surface:#FFFFFF;
  --ink:#141412;
  --ink-soft:#605F5A;
  --dark:#0A0A0A;
  --dark-2:#141412;
  --gold:#B79458;
  --gold-light:#DCC793;
  --gold-text:#8A6E42; /* WCAG AA metin kontrastı için koyulaştırılmış altın (küçük metinlerde --gold yerine kullanılır) */
  --line:#E7E5DE;

  --radius-sm:10px;
  --radius-md:16px;
  --radius-lg:22px;
  --radius-xl:28px;

  --shadow-soft:0 18px 40px -22px rgba(10,10,10,.35);
  --shadow-lift:0 30px 60px -24px rgba(10,10,10,.45);
  --shadow-gold:0 20px 44px -20px rgba(183,148,88,.45);

  /* Premium easing — Apple-tarzı doğal hareket eğrisi */
  --ease:cubic-bezier(.22,1,.36,1);
  --transition:all .35s var(--ease);
  --transition-fast:all .2s var(--ease);

  --gold-line:linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
}

/* ---------- 2. RESET ---------- */
*, *::before, *::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; overflow-x:hidden; }
body{
  margin:0;
  overflow-x:hidden;
  background:var(--bg);
  color:var(--ink);
  font-family:'Inter', sans-serif;
  -webkit-font-smoothing:antialiased;
  animation:pageFadeIn .45s ease both;
}
img{ max-width:100%; display:block; }
a{ color:inherit; }
h1,h2,h3,h4,p,ul{ margin:0; }
button{ font-family:inherit; }

@keyframes pageFadeIn{
  from{ opacity:0; }
  to{ opacity:1; }
}

.wrap{ max-width:1100px; margin:0 auto; padding:0 28px; }
.center{ text-align:center; margin-left:auto; margin-right:auto; }

/* Klavye ile gezinen kullanıcılar için erişilebilir odak stili */
a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:3px;
  border-radius:4px;
}

/* Ekran okuyucu / klavye kullanıcıları için "içeriğe geç" bağlantısı */
.skip-link{
  position:absolute; left:-999px; top:auto;
  background:var(--dark); color:#fff; padding:14px 22px;
  border-radius:0 0 10px 0; z-index:200; text-decoration:none; font-size:14px; font-weight:600;
}
.skip-link:focus{ left:0; top:0; }

/* İnce altın ayraç çizgisi — bölümler arasında premium geçiş hissi */
.divider{
  height:1px; max-width:1100px; margin:0 auto;
  background:var(--gold-line); opacity:.5;
}

/* Ekran okuyucular için görünmez ama erişilebilir etiketler */
.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* ---------- 4. SCROLL REVEAL ANİMASYONU ---------- */
/* JS ile .reveal elemanlarına .in-view sınıfı eklenir (bkz. script.js) */
.reveal{
  opacity:0;
  transform:translateY(32px) scale(.98);
  transition:opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in-view{
  opacity:1;
  transform:translateY(0) scale(1);
}

/* Grid içindeki kartlara kademeli (staggered) giriş animasyonu */
.service-grid.reveal.in-view .service-card,
.benefit-grid.reveal.in-view .benefit-item,
.price-grid.reveal.in-view .price-card,
.process-list.reveal.in-view .process-step{
  animation:fadeUp .8s var(--ease) both;
}
.service-grid .service-card:nth-child(1),.benefit-grid .benefit-item:nth-child(1),.price-grid .price-card:nth-child(1),.process-list .process-step:nth-child(1){ animation-delay:.02s; }
.service-grid .service-card:nth-child(2),.benefit-grid .benefit-item:nth-child(2),.price-grid .price-card:nth-child(2),.process-list .process-step:nth-child(2){ animation-delay:.1s; }
.service-grid .service-card:nth-child(3),.benefit-grid .benefit-item:nth-child(3),.process-list .process-step:nth-child(3){ animation-delay:.18s; }
.service-grid .service-card:nth-child(4),.benefit-grid .benefit-item:nth-child(4){ animation-delay:.2s; }
.service-grid .service-card:nth-child(5),.benefit-grid .benefit-item:nth-child(5){ animation-delay:.26s; }
.service-grid .service-card:nth-child(6),.benefit-grid .benefit-item:nth-child(6){ animation-delay:.32s; }
.service-grid .service-card:nth-child(7){ animation-delay:.38s; }
.service-grid .service-card:nth-child(8){ animation-delay:.44s; }

@keyframes fadeUp{
  from{ opacity:0; transform:translateY(20px); }
  to{ opacity:1; transform:translateY(0); }
}

/* Hareket azaltma tercihi olan kullanıcılar için animasyonları sadeleştir */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  body{ animation:none !important; }
  .reveal, .reveal.in-view,
  .service-card, .price-card, .btn, .slot, .date-pill, .loc-btn{
    transition:none !important;
    animation:none !important;
    transform:none !important;
  }
}

/* ---------- 4. NAVİGASYON ---------- */
.navbar{
  position:sticky; top:0; z-index:100;
  background:rgba(10,10,10,.72);
  backdrop-filter:blur(16px) saturate(140%);
  -webkit-backdrop-filter:blur(16px) saturate(140%);
  border-bottom:1px solid rgba(255,255,255,.08);
  transition:var(--transition);
}
.navbar.scrolled{
  background:rgba(10,10,10,.92);
  box-shadow:0 12px 30px -18px rgba(0,0,0,.6);
}
.nav-inner{
  max-width:1100px; margin:0 auto; padding:14px 28px;
  display:flex; align-items:center; justify-content:space-between; gap:20px;
}
.logo-badge{
  height:52px; padding:8px 14px; border-radius:10px;
  background:var(--dark); display:inline-flex; align-items:center;
  overflow:hidden; line-height:0; text-decoration:none;
}
.logo-badge img{ max-height:100%; width:auto; object-fit:contain; display:block; }

.nav-links{ display:flex; gap:26px; list-style:none; font-size:13.5px; font-weight:500; }
.nav-links a{ text-decoration:none; color:#B9B7AF; transition:var(--transition); }
.nav-links a:hover{ color:#fff; }

.nav-cta{
  background:var(--gold); color:#2A2110; text-decoration:none;
  padding:11px 22px; border-radius:999px; font-size:13.5px; font-weight:600;
  white-space:nowrap; transition:var(--transition-fast);
  box-shadow:0 8px 20px -10px rgba(183,148,88,.6);
}
.nav-cta:hover{ background:var(--gold-light); transform:translateY(-1px); box-shadow:var(--shadow-gold); }
.nav-cta:active{ transform:translateY(0) scale(.96); }

.nav-toggle{
  display:none; flex-direction:column; align-items:center; justify-content:center; gap:5px;
  width:44px; height:44px; background:none; border:none; cursor:pointer; padding:0;
}
.nav-toggle span{ width:22px; height:2px; background:#fff; border-radius:2px; }

@media (max-width: 820px){
  .nav-links{
    position:absolute; top:100%; left:0; right:0;
    background:#0A0A0A; flex-direction:column; gap:0;
    max-height:0; overflow:hidden; transition:max-height .3s ease;
  }
  .nav-links.open{ max-height:400px; }
  .nav-links li{ border-top:1px solid rgba(255,255,255,.08); }
  .nav-links a{ display:block; padding:16px 28px; }
  .nav-toggle{ display:flex; }
}

/* ---------- 5. HERO ---------- */
.hero{
  position:relative; overflow:hidden;
  background:radial-gradient(130% 150% at 50% -10%, #1B1B17 0%, #0A0A0A 60%);
  min-height:88vh;
  display:flex; align-items:center; justify-content:center;
  padding:160px 28px 100px;
  text-align:center;
}
.hero-bg{
  position:absolute; top:0; left:0; width:100%; height:100%;
  object-fit:cover; opacity:.45; z-index:0; pointer-events:none;
}
.hero::before{
  /* İnce, dekoratif üst ayraç — görsel olmadan da hero'ya premium bir çerçeve verir */
  content:""; position:absolute; top:64px; left:50%; transform:translateX(-50%);
  width:1px; height:48px; background:var(--gold-line); opacity:.7;
}
.hero-inner{ position:relative; z-index:1; max-width:800px; margin:0 auto; }

.eyebrow{
  font-size:12.5px; letter-spacing:.22em; text-transform:uppercase;
  color:var(--gold-light); font-weight:600; margin-bottom:24px;
  display:inline-flex; align-items:center; gap:10px;
}
.eyebrow::before{
  content:""; width:28px; height:1px; background:var(--gold-light);
}
.eyebrow-stack{ flex-direction:column; gap:6px; }
.eyebrow-stack::before{ display:none; }
.eyebrow-brand{
  font-family:'Fraunces', serif; font-size:16px; letter-spacing:.06em;
  color:#fff; font-weight:450; text-transform:none; display:block;
}
.eyebrow-stack span:last-child{ font-size:11.5px; letter-spacing:.16em; }

.hero-usp{
  margin:26px 0 0; font-size:13.5px; color:#B9B7AF; font-weight:500;
}
.hero-title{
  font-family:'Fraunces', serif; font-weight:450;
  font-size:clamp(38px, 6.4vw, 72px); line-height:1.04; letter-spacing:-.015em;
  color:#fff; margin-bottom:18px;
}
.hero-tagline{
  font-family:'Fraunces', serif; font-style:italic; font-weight:450;
  font-size:clamp(18px, 2.4vw, 24px); color:var(--gold-light);
  margin-bottom:24px;
}
.hero-sub{
  font-size:18px; line-height:1.75; color:#D6D4CC;
  max-width:540px; margin:0 auto 44px;
  font-weight:400;
}
.hero-ctas{ display:flex; gap:16px; flex-wrap:wrap; justify-content:center; }

.btn{
  display:inline-flex; align-items:center; gap:8px;
  font-weight:600; font-size:14.5px; text-decoration:none;
  padding:16px 30px; border-radius:999px; transition:var(--transition-fast);
  will-change:transform;
}
.btn-gold{ background:var(--gold); color:#2A2110; box-shadow:0 10px 26px -12px rgba(183,148,88,.55); }
.btn-gold:hover{ background:var(--gold-light); transform:translateY(-2px); box-shadow:var(--shadow-gold); }
.btn-gold:active{ transform:translateY(0) scale(.98); }

.btn-outline{
  border:1.5px solid rgba(255,255,255,.35); color:#fff; padding:14.5px 28px;
  background:rgba(255,255,255,.04); backdrop-filter:blur(6px);
}
.btn-outline:hover{ border-color:#fff; background:rgba(255,255,255,.1); transform:translateY(-2px); }
.btn-outline:active{ transform:translateY(0) scale(.97); }

/* ---------- 6. GENEL SECTION STİLLERİ ---------- */
.section{ padding:130px 28px; }
.sec-eyebrow{
  font-size:12.5px; letter-spacing:.2em; text-transform:uppercase;
  color:var(--gold-text); font-weight:600; margin-bottom:16px;
  display:flex; align-items:center; gap:10px;
}
.sec-eyebrow::before{ content:""; width:24px; height:1px; background:var(--gold); }
.center .sec-eyebrow{ justify-content:center; }
.eyebrow-gold{ color:var(--gold-light); }
.eyebrow-gold::before{ background:var(--gold-light); }
.sec-title{
  font-family:'Fraunces', serif; font-weight:450;
  font-size:clamp(34px, 4.6vw, 56px); line-height:1.08; letter-spacing:-.01em;
  color:var(--dark); margin-bottom:22px;
}
.sec-title-light{ color:#fff; }
.sec-lede{
  color:var(--ink-soft); font-size:17px; line-height:1.75;
  max-width:580px; margin-bottom:64px;
}
.sub-heading{
  font-family:'Fraunces', serif; font-weight:450; font-size:20px;
  color:var(--dark); margin-bottom:12px;
}
.sec-lede-tight{ margin-bottom:44px; max-width:640px; }

/* ---------- 6.5. NASIL ÇALIŞIYORUZ (SÜREÇ) ---------- */
.process{ background:var(--surface); border-bottom:1px solid var(--line); }
.process-list{
  list-style:none; padding:0; margin:0;
  display:grid; grid-template-columns:repeat(3, 1fr); gap:20px;
  counter-reset:none;
}
.process-step{
  background:var(--surface); border:1px solid var(--line); border-radius:var(--radius-md);
  padding:32px 26px; transition:var(--transition);
}
.process-step:hover{ transform:translateY(-4px); box-shadow:var(--shadow-soft); border-color:var(--gold); }
.process-num{
  display:block; font-family:'Fraunces', serif; font-weight:560; font-size:15px;
  color:var(--gold-text); margin-bottom:16px;
}
.process-step h3{ font-family:'Fraunces', serif; font-weight:450; font-size:19px; margin-bottom:10px; }
.process-step p{ font-size:14px; color:var(--ink-soft); line-height:1.65; }

@media (max-width:900px){ .process-list{ grid-template-columns:1fr; } }

/* ---------- 7. BEN KİMİM ---------- */
.about{ background:var(--surface); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.about-single{ max-width:700px; }

.about-quote{
  font-family:'Fraunces', serif; font-style:italic; font-weight:450;
  font-size:23px; line-height:1.55; color:var(--dark);
  border-left:2px solid var(--gold); padding-left:22px; margin-bottom:26px;
}
.about-body{ color:var(--ink-soft); font-size:14.5px; line-height:1.75; margin-bottom:28px; }

.cred-list{ list-style:none; display:flex; flex-direction:column; gap:14px; }
.cred-list li{
  display:flex; gap:14px; font-size:14px; line-height:1.5; color:var(--ink-soft);
  padding-bottom:14px; border-bottom:1px solid var(--line);
}
.cred-list li:last-child{ border-bottom:none; }
.cred-list strong{ color:var(--ink); font-weight:600; }
.cred-mark{ color:var(--gold-text); font-family:'Fraunces', serif; font-weight:560; flex-shrink:0; }

/* ---------- 8. ÜCRETSİZ POSTÜR ANALİZİ VURGU ---------- */
.analysis-highlight{
  background:radial-gradient(120% 140% at 50% -10%, #1A1A17 0%, #0A0A0A 55%);
  text-align:center; position:relative;
  padding:120px 28px;
  border-top:1px solid rgba(255,255,255,.07);
}
.analysis-highlight::before{
  content:""; position:absolute; top:0; left:50%; transform:translateX(-50%);
  width:1px; height:64px; background:var(--gold-line); opacity:.8;
}
.analysis-inner{ max-width:700px; margin:0 auto; }
.analysis-quote{
  font-family:'Fraunces', serif; font-style:italic; font-weight:450;
  font-size:clamp(20px,2.6vw,26px); line-height:1.65;
  color:#EDEBE3; margin-bottom:44px;
}

/* ---------- 9. HİZMETLER ---------- */
.service-grid{ display:grid; grid-template-columns:repeat(4, 1fr); gap:18px; }
.service-card{
  position:relative; overflow:hidden;
  background:var(--surface); border:1px solid var(--line); border-radius:var(--radius-md);
  padding:28px 24px; transition:var(--transition);
}
.service-card::before{
  /* Hover'da beliren ince altın üst çizgi */
  content:""; position:absolute; top:0; left:0; right:0; height:2px;
  background:var(--gold-line); transform:scaleX(0); transition:transform .5s var(--ease);
}
.service-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-lift);
  border-color:rgba(183,148,88,.35);
}
.service-card:hover::before{ transform:scaleX(1); }
.service-card .num{
  font-family:'Fraunces', serif; font-size:13px; color:var(--gold-text); font-weight:560;
  display:block; margin-bottom:16px;
}
.service-card h3{ font-family:'Fraunces', serif; font-weight:450; font-size:18px; margin-bottom:10px; letter-spacing:-.005em; }
.service-card p{ font-size:13.5px; color:var(--ink-soft); line-height:1.6; }

@media (max-width:900px){ .service-grid{ grid-template-columns:repeat(2, 1fr); } }
@media (max-width:560px){ .service-grid{ grid-template-columns:1fr; } }

/* ---------- 10. NEDEN BENİMLE ---------- */
.why{ background:var(--surface); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.benefit-grid{ display:grid; grid-template-columns:repeat(2, 1fr); gap:26px 44px; }
.benefit-item{ display:flex; gap:16px; }
.benefit-item{ transition:var(--transition); }
.benefit-icon{
  width:42px; height:42px; flex-shrink:0; border-radius:50%;
  background:#F1EFE6; display:flex; align-items:center; justify-content:center;
  font-family:'Fraunces', serif; font-weight:560; font-size:16px; color:var(--dark);
  transition:var(--transition-fast);
}
.benefit-item:hover .benefit-icon{ background:var(--dark); color:var(--gold-light); transform:scale(1.08); }
.benefit-item h4{ font-size:16px; font-weight:600; margin-bottom:6px; letter-spacing:-.005em; }
.benefit-item p{ font-size:14px; color:var(--ink-soft); line-height:1.65; }

@media (max-width:700px){ .benefit-grid{ grid-template-columns:1fr; } }

/* ---------- 11. BÜTÜNSEL YAKLAŞIM (markanın amiral gemisi bölümü) ---------- */
.holistic{
  background:linear-gradient(150deg, #F2F1EB, #FAF9F6);
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
}
.holistic-single{ max-width:720px; }
.holistic-quote{
  font-family:'Fraunces', serif; font-style:italic; font-weight:450;
  font-size:20px; line-height:1.6; color:var(--dark);
  border-left:2px solid var(--gold); padding-left:22px; margin:24px 0 28px;
}
.pillar-row{ display:flex; flex-wrap:wrap; gap:10px; margin-top:8px; }
.pillar{
  background:var(--surface); border:1px solid var(--line); border-radius:999px;
  padding:10px 20px; font-size:13px; color:var(--dark); font-weight:500;
  transition:var(--transition-fast);
}
.pillar:hover{ border-color:var(--gold); background:#FBF7EF; transform:translateY(-2px); }

/* ---------- 12. SSS ---------- */
.faq-item{ border-bottom:1px solid var(--line); padding:22px 0; }
.faq-item summary{
  cursor:pointer; font-family:'Fraunces', serif; font-weight:450; font-size:17px;
  color:var(--dark); list-style:none; display:flex; justify-content:space-between; align-items:center;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{ content:"+"; font-size:20px; color:var(--gold-text); }
.faq-item[open] summary::after{ content:"–"; }
.faq-item p{ color:var(--ink-soft); font-size:14px; line-height:1.7; margin-top:14px; }

/* ---------- 15. YATIRIM (FİYATLANDIRMA) ---------- */
.price-grid{ display:grid; grid-template-columns:repeat(2, 1fr); gap:24px; max-width:780px; margin:0 auto; }
.price-card{
  background:var(--surface); border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:36px 30px; position:relative; transition:var(--transition);
}
.price-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow-lift); }
.price-card.featured{
  border-color:var(--gold);
  background:linear-gradient(165deg, #FFFFFF 0%, #FBF7EF 100%);
}
.price-card.featured:hover{ box-shadow:var(--shadow-gold); }
.price-tag{
  position:absolute; top:-13px; left:30px; background:var(--dark); color:#fff;
  font-size:11px; letter-spacing:.06em; padding:6px 14px; border-radius:999px; font-weight:600;
}
.price-card h3{ font-family:'Fraunces', serif; font-weight:450; font-size:22px; margin:10px 0 4px; }
.price-card .sub{ font-size:13px; color:var(--ink-soft); margin-bottom:24px; }
.price-label{ font-size:11.5px; letter-spacing:.12em; text-transform:uppercase; color:var(--gold-text); font-weight:600; margin-bottom:6px; }
.price-num{ font-family:'Fraunces', serif; font-weight:560; font-size:32px; color:var(--dark); letter-spacing:-.01em; }
.price-num small{ display:block; font-family:'Inter', sans-serif; font-size:12.5px; color:var(--ink-soft); font-weight:400; margin-top:4px; }
.price-note{ font-size:12.5px; color:var(--ink-soft); margin-top:18px; line-height:1.6; }

.price-extra{ max-width:760px; margin:24px auto 0; display:flex; gap:16px; flex-wrap:wrap; justify-content:center; }
.price-extra div{
  background:var(--surface); border:1px solid var(--line); border-radius:12px;
  padding:14px 20px; font-size:13.5px; color:var(--ink-soft);
}
.price-extra strong{ color:var(--dark); }

@media (max-width:700px){ .price-grid{ grid-template-columns:1fr; } }

/* ---------- 16. RANDEVU (BOOKING) ---------- */
.booking{ background:var(--surface); border-top:1px solid var(--line); }
.booking-box{
  background:rgba(250,249,245,.7);
  backdrop-filter:blur(10px);
  border:1px solid var(--line);
  border-radius:var(--radius-xl);
  padding:44px;
  box-shadow:var(--shadow-soft);
}
@media (max-width:600px){ .booking-box{ padding:26px; } }
.step-label{
  display:block; cursor:default;
  font-size:12px; letter-spacing:.08em; text-transform:uppercase;
  color:var(--gold-text); font-weight:600; margin:0 0 12px;
}
.step-label:not(:first-child){ margin-top:26px; }

.field{
  width:100%; max-width:420px; padding:13px 14px; border:1.5px solid var(--line);
  border-radius:var(--radius-sm); font-size:14px; font-family:'Inter', sans-serif;
  background:var(--surface); color:var(--ink);
}
.field:focus{ outline:none; border-color:var(--dark); }

.loc-choice{ display:flex; gap:12px; flex-wrap:wrap; }
.loc-btn{
  flex:1; min-width:200px; background:var(--surface); border:1.5px solid var(--line);
  border-radius:12px; padding:16px 18px; cursor:pointer; text-align:left; font-family:'Inter', sans-serif;
  transition:var(--transition);
}
.loc-btn strong{ display:block; font-size:14.5px; color:var(--ink); margin-bottom:3px; }
.loc-btn span{ font-size:12.5px; color:var(--ink-soft); }
.loc-btn:hover{ border-color:var(--gold); transform:translateY(-2px); }
.loc-btn:active{ transform:translateY(0) scale(.98); }
.loc-btn.active{ border-color:var(--dark); background:#F1EFE6; }

.date-row{ display:flex; gap:8px; overflow-x:auto; padding-bottom:6px; }
.date-pill, .slot{
  font-family:'Inter', sans-serif; -webkit-appearance:none; appearance:none;
}
.date-pill{
  flex-shrink:0; background:var(--surface); border:1.5px solid var(--line); border-radius:12px;
  min-height:44px; padding:10px 16px; text-align:center; cursor:pointer; min-width:64px; transition:var(--transition);
  display:flex; flex-direction:column; justify-content:center;
}
.date-pill .d{ font-size:11px; color:var(--ink-soft); text-transform:uppercase; }
.date-pill .n{ font-family:'Fraunces', serif; font-weight:560; font-size:17px; color:var(--ink); }
.date-pill:hover{ border-color:var(--gold); transform:translateY(-2px); }
.date-pill:active{ transform:translateY(0) scale(.96); }
.date-pill.active{ border-color:var(--dark); background:#F1EFE6; }
.date-pill.full{ opacity:.55; }
.date-pill.full .n{ text-decoration:line-through; }

.slot-grid{ display:grid; grid-template-columns:repeat(4, 1fr); gap:10px; }
.slot{
  background:var(--surface); border:1.5px solid var(--line); border-radius:10px;
  min-height:44px; padding:0 4px; text-align:center; font-size:13.5px; font-weight:500; cursor:pointer;
  color:var(--ink); transition:var(--transition);
  display:flex; align-items:center; justify-content:center;
}
.slot:hover{ border-color:var(--gold); transform:translateY(-2px); }
.slot:active{ transform:translateY(0) scale(.94); }
.slot.selected{ background:var(--dark); color:#fff; border-color:var(--dark); transform:none; }

.form-label{ display:none; }
.book-form{ display:none; flex-direction:column; gap:14px; max-width:440px; }
.book-form.show{ display:flex; }
.field-group{ display:flex; flex-direction:column; }
.book-form input, .book-form textarea{
  min-height:48px;
  padding:13px 14px; border:1.5px solid var(--line); border-radius:var(--radius-sm);
  font-size:14px; font-family:'Inter', sans-serif; background:var(--surface); color:var(--ink);
  transition:var(--transition-fast);
}
.book-form textarea{ resize:vertical; min-height:70px; }
.book-form input:focus, .book-form textarea:focus{ outline:none; border-color:var(--dark); box-shadow:0 0 0 3px rgba(10,10,10,.08); }
.book-form input:invalid:not(:placeholder-shown){ border-color:#C0574B; }

.form-error{
  color:#B23A2E; font-size:13px; font-weight:500; margin:0; min-height:0;
}

.book-submit{
  background:var(--dark); color:#fff; border:none; padding:15px 22px; border-radius:var(--radius-sm);
  font-size:14.5px; font-weight:600; cursor:pointer; transition:var(--transition-fast);
  box-shadow:0 10px 24px -14px rgba(10,10,10,.5);
}
.book-submit:hover{ background:#1c1c1a; transform:translateY(-2px); box-shadow:0 16px 30px -14px rgba(10,10,10,.6); }
.book-submit:active{ transform:translateY(0) scale(.97); }

.confirm-box{
  display:none; background:#F1EFE6; border:1px solid var(--gold); border-radius:12px;
  padding:22px; font-size:14px; color:var(--dark); margin-top:20px;
}
.confirm-box.show{ display:block; }
.confirm-box a{
  display:inline-block; margin-top:10px; background:var(--dark); color:#fff;
  padding:12px 22px; border-radius:999px; text-decoration:none; font-weight:600; font-size:14px;
}

.full-note{
  display:none; background:#FBF3E7; border:1px solid var(--gold-light); color:#7A5F30;
  border-radius:10px; padding:12px 16px; font-size:13px; margin-bottom:20px;
}
.full-note.show{ display:block; }

/* ---------- 17. İLETİŞİM ---------- */
.contact{ background:var(--dark); }
.contact-grid{ display:grid; grid-template-columns:repeat(4, 1fr); gap:20px; }
.contact-card{
  background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius-md); padding:28px; transition:var(--transition);
}
.contact-card:hover{ background:rgba(255,255,255,.08); border-color:rgba(183,148,88,.4); transform:translateY(-3px); }
.contact-card h4{ font-family:'Fraunces', serif; font-weight:450; font-size:17px; color:var(--gold-light); margin-bottom:10px; }
.contact-card p{ font-size:14px; color:#D9DDD2; line-height:1.65; }
.contact-card a{ color:#fff; text-decoration:none; border-bottom:1px solid rgba(255,255,255,.3); transition:var(--transition-fast); }
.contact-card a:hover{ border-color:var(--gold-light); color:var(--gold-light); }

@media (max-width:900px){ .contact-grid{ grid-template-columns:repeat(2, 1fr); } }
@media (max-width:520px){ .contact-grid{ grid-template-columns:1fr; } }

/* ---------- 18. FOOTER — Apple seviyesinde minimal kapanış ---------- */
.footer{ background:#000; color:#fff; padding:0; }
.footer-cta{
  padding:110px 28px 90px; text-align:center; border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-cta .sec-eyebrow{ justify-content:center; color:var(--gold-light); }
.footer-cta .sec-eyebrow::before{ background:var(--gold-light); }
.footer-cta h2{
  font-family:'Fraunces', serif; font-weight:450;
  font-size:clamp(30px,4.4vw,54px); line-height:1.1; color:#fff;
  max-width:640px; margin:0 auto 36px;
}
.footer-bar{
  max-width:1100px; margin:0 auto; padding:28px 28px;
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:16px;
}
.footer-wordmark{ height:34px; opacity:.9; }
.footer-links{ display:flex; gap:22px; list-style:none; font-size:13px; }
.footer-links a{ color:#9A988F; text-decoration:none; transition:var(--transition-fast); }
.footer-links a:hover{ color:#fff; }
.footer-meta{
  max-width:1100px; margin:0 auto; padding:0 28px 32px;
  font-size:12px; color:#828280;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
}

/* ---------- 19. SABİT WHATSAPP BUTONU ---------- */
.wa-float{
  position:fixed; bottom:24px; right:24px; z-index:90;
  width:58px; height:58px; border-radius:50%; background:#25D366;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 14px 30px -10px rgba(0,0,0,.5); text-decoration:none;
  transition:var(--transition-fast);
}
.wa-float:hover{ transform:scale(1.08) translateY(-2px); box-shadow:0 18px 36px -10px rgba(0,0,0,.55); }
.wa-float:active{ transform:scale(1); }
.wa-float img{ width:28px; height:28px; filter:brightness(0) invert(1); }

/* ==========================================================================
   EK STİLLER — Çok sayfalı yapı, marka imzası, video altyapısı (v2)
   ========================================================================== */

/* ---------- NAV: aktif sayfa göstergesi ---------- */
.nav-links a[aria-current="page"]{ color:#fff; position:relative; }
.nav-links a[aria-current="page"]::after{
  content:""; position:absolute; left:0; right:0; bottom:-4px;
  height:2px; background:var(--gold);
}

/* ---------- HERO: video-hazır medya alanı ---------- */
/* Gerçek video/fotoğraf eklendiğinde bu katman otomatik önceliklenir;
   şimdilik SVG arka plan (.hero-bg) görünür kalır. */
.hero-media{ position:absolute; inset:0; z-index:0; overflow:hidden; }
.hero-media video{
  width:100%; height:100%; object-fit:cover; display:block;
}

/* ---------- MARKA İMZASI (logo motifinin tekrar eden versiyonu) ---------- */
.brand-mark{
  display:flex; align-items:center; justify-content:center;
  gap:14px; margin:0 auto; padding:36px 0;
  color:var(--gold);
}
.brand-mark .line{ width:64px; height:1px; background:var(--gold-line); }
.brand-mark svg{ width:22px; height:22px; }

/* ---------- ANA SAYFA — KISALTILMIŞ BÖLÜMLER (3 kaydırma) ---------- */
.usp-mini{
  background:var(--dark); padding:120px 28px;
  border-top:1px solid rgba(255,255,255,.07);
}
.usp-mini-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:28px;
  max-width:960px; margin:0 auto;
}
.usp-mini-item{ text-align:center; color:#fff; }
.usp-mini-item .n{
  font-family:'Fraunces', serif; font-size:15px; color:var(--gold-light);
  margin-bottom:10px; display:block;
}
.usp-mini-item h3{ font-family:'Fraunces', serif; font-weight:450; font-size:18px; margin-bottom:8px; }
.usp-mini-item p{ font-size:13.5px; color:#B9B7AF; line-height:1.6; }
@media (max-width:700px){ .usp-mini-grid{ grid-template-columns:1fr; gap:32px; } }

.teaser-strip{ background:var(--dark); padding:0 28px 90px; text-align:center; }
.teaser-links{
  display:flex; flex-wrap:wrap; gap:12px; justify-content:center;
  max-width:760px; margin:0 auto;
}
.teaser-links a{
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.14);
  color:#fff; text-decoration:none; padding:12px 22px; border-radius:999px;
  font-size:13.5px; font-weight:500; transition:var(--transition-fast);
}
.teaser-links a:hover{ background:rgba(255,255,255,.12); border-color:var(--gold); }
.teaser-more{ margin-top:28px; }
.teaser-more a{ color:var(--gold-light); font-size:14px; font-weight:600; text-decoration:none; border-bottom:1px solid rgba(220,199,147,.4); }

.trust-line{
  display:flex; flex-wrap:wrap; gap:10px 28px; justify-content:center;
  margin-top:34px; font-size:12.5px; color:#B9B7AF;
}

/* ---------- İÇ SAYFA ÜST BANTI (subpage header) ---------- */
.page-header{
  background:var(--dark); padding:150px 28px 60px; text-align:center;
}
.page-header .sec-eyebrow{ justify-content:center; color:var(--gold-light); }
.page-header .sec-eyebrow::before{ background:var(--gold-light); }
.page-header h1{
  font-family:'Fraunces', serif; font-weight:450; color:#fff;
  font-size:clamp(30px,4.4vw,50px); margin:12px 0 0;
}
.page-header p{ color:#C9C7C0; font-size:15.5px; margin-top:16px; max-width:560px; margin-left:auto; margin-right:auto; }
