/* ==========================================================================
   ASI Pilates — Ortak stil dosyası
   Tüm şube sayfaları (/aliaga/, /beylikduzu/ …) ve ana sayfa bu dosyayı kullanır.
   Renkler ve tipografi aşağıdaki :root değişkenlerinden yönetilir.
   ========================================================================== */

/* ---------- 1. Tasarım değişkenleri ---------- */
:root {
  --sand: #EDE6DB;          /* Kum beji */
  --cream: #F8F4EC;         /* Açık krem */
  --sage: #9AAA8B;          /* Adaçayı yeşili */
  --sage-deep: #56634F;     /* Koyu adaçayı */
  --clay: #B06A4A;          /* Terracotta vurgu (dekoratif / büyük metin) */
  --clay-deep: #93532F;     /* Terracotta — küçük metin ve buton için AA kontrast */
  --ink: #20201E;           /* Koyu antrasit metin */
  --coffee: #8A7462;        /* Yumuşak kahve (dekoratif) */
  --coffee-text: #6B5949;   /* Küçük gri-kahve metin — AA kontrastlı */
  --line: rgba(32, 32, 30, 0.12);
  --line-strong: rgba(32, 32, 30, 0.22);

  /* Fontshare: Zodiak (başlıklar, 300/400 + italik) · Satoshi (metin, 400/500) */
  --font-serif: "Zodiak", Georgia, "Times New Roman", serif;
  --font-sans: "Satoshi", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Küçük etiketler (01 / 07, SÜRE, POPÜLER …) */
  --label-size: 0.72rem;      /* ≈ 11.5px */
  --label-track: 0.2em;

  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --maxw: 1440px;
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 76px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: var(--header-h);
}

/* Lenis gerekli kurallar */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1.0625rem;      /* 17px */
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Hafif mat doku (kağıt hissi) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.22;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .45 0 0 0 0 .4 0 0 0 0 .35 0 0 0 .35 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
address { font-style: normal; }
button { font: inherit; color: inherit; }

::selection { background: var(--sage); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--clay-deep);
  outline-offset: 3px;
  border-radius: var(--radius);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  background: var(--ink);
  color: var(--cream);
  padding: 0.75rem 1.1rem;
  text-decoration: none;
  font-size: 0.875rem;
}
.skip-link:focus { top: 1rem; }

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- 3. Tipografi ---------- */
.display,
.h-xl,
.h-lg,
.h-md {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.display {
  font-size: clamp(2.9rem, 6.4vw, 6.6rem);
  line-height: 0.98;
  font-weight: 300;
  letter-spacing: -0.025em;
}
.display em,
.h-xl em,
.h-lg em { font-style: italic; color: var(--sage-deep); }

.h-xl { font-size: clamp(2.4rem, 5vw, 4.8rem); line-height: 1.02; font-weight: 300; }
.h-lg { font-size: clamp(2rem, 3.6vw, 3.4rem); line-height: 1.06; }
.h-md { font-size: clamp(1.5rem, 2.2vw, 2rem); line-height: 1.15; font-weight: 400; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: var(--label-size);
  font-weight: 500;
  letter-spacing: var(--label-track);
  text-transform: uppercase;
  color: var(--coffee-text);
}
.eyebrow::before {
  content: "";
  width: 2.25rem;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow--plain::before { display: none; }

.lead {
  font-size: clamp(1.0625rem, 1.2vw, 1.125rem); /* 17–18px */
  line-height: 1.6;
  color: #3b3a36;
  max-width: 38ch;
}

.muted { color: var(--coffee-text); }

.section-index {
  font-family: var(--font-sans);
  font-size: var(--label-size);
  font-weight: 500;
  letter-spacing: var(--label-track);
  text-transform: uppercase;
  color: var(--coffee-text);
}

/* ---------- 4. Butonlar ve linkler ---------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--cream);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 52px;
  padding: 0.95rem 1.6rem;
  border: 1px solid var(--btn-bg);
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.5s var(--ease), background-color 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.5s var(--ease);
}
.btn svg { width: 18px; height: 18px; flex: none; transition: transform 0.5s var(--ease); }
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -18px rgba(32, 32, 30, 0.55);
}
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: translateY(-1px); }

.btn--primary:hover { --btn-bg: var(--clay-deep); }
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover { --btn-bg: var(--ink); --btn-fg: var(--cream); border-color: var(--ink); }
.btn--light { --btn-bg: var(--cream); --btn-fg: var(--ink); }
.btn--light:hover { --btn-bg: var(--sand); }
.btn--block { width: 100%; }

/* Animasyonlu alt çizgi */
.link-line {
  position: relative;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: 100% 100%;
  transition: background-size 0.6s var(--ease);
  padding-bottom: 2px;
}
.link-line:hover,
.link-line:focus-visible {
  background-size: 100% 1px;
  background-position: 0% 100%;
}
.link-line--static { background-size: 100% 1px; }
.link-line--static:hover { background-size: 0% 1px; background-position: 100% 100%; }

/* ---------- 5. Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background-color 0.5s var(--ease), border-color 0.5s var(--ease), transform 0.6s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(248, 244, 236, 0.9);
  -webkit-backdrop-filter: saturate(1.2) blur(10px);
  backdrop-filter: saturate(1.2) blur(10px);
  border-bottom-color: var(--line);
}
.site-header.is-hidden { transform: translateY(-100%); }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
  text-decoration: none;
  line-height: 1;
}
.brand__mark {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
}
.brand__logo { width: 40px; height: 40px; flex: none; color: var(--ink); align-self: center; }
.brand__logo--lg { width: 52px; height: 52px; }
.brand__text { display: flex; flex-direction: column; gap: 0.3rem; }
.brand__name { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 400; letter-spacing: 0.01em; line-height: 1; }
.brand:has(.brand__logo) { align-items: center; gap: 0.75rem; }
.site-footer__brand .brand__mark { display: inline-flex; align-items: center; gap: 0.9rem; }
.site-footer:not(.site-footer--light) .brand__logo { color: var(--cream); }
.brand__sub {
  font-size: var(--label-size);
  font-weight: 500;
  letter-spacing: var(--label-track);
  text-transform: uppercase;
  color: var(--coffee-text);
}

.nav { display: flex; align-items: center; gap: 2rem; }
.nav__list { display: flex; gap: 1.75rem; }
.nav__list a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.nav__cta { min-height: 44px; padding: 0.65rem 1.2rem; font-size: 0.82rem; }

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.6rem;
  min-height: 44px;
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  font-size: var(--label-size);
  font-weight: 500;
  letter-spacing: var(--label-track);
  text-transform: uppercase;
  cursor: pointer;
}
.nav-toggle__bars { position: relative; width: 18px; height: 8px; }
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.4s var(--ease), top 0.4s var(--ease);
}
.nav-toggle__bars::before { top: 0; }
.nav-toggle__bars::after { top: 6.5px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { top: 3.25px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { top: 3.25px; transform: rotate(-45deg); }

@media (max-width: 1023px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2.5rem;
    padding: calc(var(--header-h) + 1rem) var(--gutter) 3rem;
    background: var(--sand);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s var(--ease), visibility 0.5s;
  }
  .nav.is-open { opacity: 1; visibility: visible; }
  .nav__list { flex-direction: column; gap: 1.1rem; }
  .nav__list a { font-family: var(--font-serif); font-size: 2.3rem; font-weight: 400; }
  /* backdrop-filter sabit menüyü header içine hapsetmesin */
  .site-header.menu-open { background: var(--sand); -webkit-backdrop-filter: none !important; backdrop-filter: none !important; transform: none !important; transition: none; }
}

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  padding-top: calc(var(--header-h) + clamp(1.5rem, 5vh, 4rem));
  padding-bottom: clamp(2rem, 5vh, 3.5rem);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background:
    radial-gradient(70% 60% at 78% 42%, rgba(237, 230, 219, 0.95) 0%, rgba(248, 244, 236, 0) 70%),
    var(--cream);
}

.hero__grid {
  position: relative;
  flex: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0 1.5rem;
  align-items: center;
}

.hero__content {
  grid-column: 1 / span 10; /* 140px başlık satırları kırılmadan sığsın; 3D formun önünden geçebilir */
  grid-row: 1;
  position: relative;
  z-index: 2;
  padding-block: 2rem;
}

.hero__kicker {
  margin: 1.75rem 0 1.4rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: var(--label-track);
  text-transform: uppercase;
  color: var(--sage-deep);
  max-width: 34ch;
  line-height: 1.5;
}

/* Hero başlığı: 64px → 140px, sıkı satır aralığı */
.hero__title {
  font-size: clamp(4rem, 7.4vw, 8.75rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.hero__title .line > span { display: block; }

.hero__lead { margin-top: 2rem; max-width: 44ch; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.4rem;
}

.hero__visual {
  grid-column: 7 / span 6;
  grid-row: 1; /* metinle aynı satırda, hafif üst üste binerek */
  position: relative;
  height: min(78vh, 760px);
  min-height: 420px;
  margin-right: calc(var(--gutter) * -1);
}
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.6s var(--ease);
}
.hero__visual.is-3d .hero__canvas { opacity: 1; }
.hero__visual.is-3d .hero__fallback { opacity: 0; }

.hero__fallback {
  position: absolute;
  inset: 8% 10%;
  width: 80%;
  height: 84%;
  transition: opacity 1.2s var(--ease);
}

.hero__caption {
  position: absolute;
  font-family: var(--font-sans);
  right: calc(var(--gutter) + 0.25rem);
  top: 1.5rem;
  z-index: 2;
  text-align: right;
  font-size: var(--label-size);
  letter-spacing: var(--label-track);
  text-transform: uppercase;
  color: var(--coffee-text);
  line-height: 1.8;
}
.hero__caption em {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink);
}

.hero__meta {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: var(--label-size);
  letter-spacing: var(--label-track);
  text-transform: uppercase;
  color: var(--coffee-text);
}
.hero__meta li { grid-column: span 3; display: flex; gap: 0.6rem; align-items: baseline; }
.hero__meta li span { font-family: var(--font-serif); font-style: italic; color: var(--clay-deep); font-size: 0.95rem; letter-spacing: 0; text-transform: none; }
.hero__scroll { justify-content: flex-end; text-align: right; }

.scroll-cue {
  display: inline-block;
  position: relative;
  width: 1px;
  height: 34px;
  margin-left: 0.6rem;
  background: var(--line-strong);
  overflow: hidden;
  vertical-align: middle;
}
.scroll-cue::after {
  content: "";
  position: absolute;
  left: 0; top: -40%;
  width: 1px; height: 40%;
  background: var(--ink);
  animation: cue 2.4s var(--ease) infinite;
}
@keyframes cue { to { top: 110%; } }

@media (max-width: 1023px) {
  .hero__content { grid-column: 1 / -1; grid-row: 2; padding-block: 0; }
  .hero__visual {
    grid-column: 1 / -1;
    grid-row: 1;
    height: 46vh;
    min-height: 300px;
    margin: -1rem calc(var(--gutter) * -1) 0;
  }
  .hero__caption { top: auto; bottom: 0.5rem; }
  .hero__meta li { grid-column: span 6; }
  .hero__scroll { display: none !important; }
}
@media (max-width: 599px) {
  .hero__visual { height: 40vh; min-height: 260px; }
  .hero__actions .btn { flex: 1 1 100%; }
  .hero__meta li { grid-column: 1 / -1; }
  .hero__caption { display: none; }
}

/* Hero ilk yükleme: GSAP gelmezse 2.5 sn sonra içerik kendiliğinden görünür */
.js:not(.motion-ready) [data-hero-item] {
  opacity: 0;
  animation: heroFallback 0.8s ease 2.5s forwards;
}
@keyframes heroFallback { to { opacity: 1; } }

/* ---------- 7. Bölüm genel ---------- */
.section {
  position: relative;
  padding-block: clamp(5rem, 12vw, 10rem);
}
.section--sand { background: var(--sand); }
.section--ink { background: var(--ink); color: var(--cream); }

.section-head {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section-head__title { grid-column: 1 / span 7; }
.section-head__title .eyebrow { margin-bottom: 1.5rem; }
.section-head__aside { grid-column: 9 / span 4; }
@media (max-width: 899px) {
  .section-head__title, .section-head__aside { grid-column: 1 / -1; }
}

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------- 8. Felsefe / manifesto ---------- */
.manifesto__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem;
}
.manifesto__label { grid-column: 1 / span 3; padding-top: 0.9rem; }
.manifesto__label .section-index { display: block; margin-top: 0.75rem; }
.manifesto__title { grid-column: 4 / span 9; max-width: 17ch; }
.manifesto__text {
  grid-column: 6 / span 6;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  line-height: 1.6;
  color: #33322e;
}
.manifesto__facts {
  grid-column: 6 / span 7;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.manifesto__facts dt {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1.1;
}
.manifesto__facts dd { margin-top: 0.4rem; font-size: 0.95rem; color: var(--coffee-text); }

.split-word { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: 0.1em; margin-bottom: -0.1em; }
.split-word > span { display: inline-block; will-change: transform; }

@media (max-width: 899px) {
  .manifesto__label, .manifesto__title, .manifesto__text, .manifesto__facts { grid-column: 1 / -1; }
  .manifesto__facts { grid-template-columns: 1fr 1fr; }
}

/* ---------- 9. Dersler (yatay kaydırma) ---------- */
.lessons { overflow: hidden; }
.lessons__viewport { position: relative; }
.lessons__track {
  display: flex;
  gap: clamp(1rem, 1.6vw, 1.5rem);
  padding-inline: var(--gutter);
  will-change: transform;
}

.lessons__intro {
  flex: 0 0 min(32vw, 440px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 2rem;
}
.lessons__intro p { margin-top: 1.5rem; max-width: 34ch; color: #3b3a36; }
.lessons__hint {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--label-size);
  font-weight: 500;
  letter-spacing: var(--label-track);
  text-transform: uppercase;
  color: var(--coffee-text);
}
.lessons__hint::after { content: ""; width: 60px; height: 1px; background: currentColor; }

.lesson-card {
  position: relative;
  flex: 0 0 min(30vw, 420px);
  min-height: min(64vh, 560px);
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 2.2vw, 2.25rem);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.7s var(--ease), background-color 0.5s var(--ease), box-shadow 0.7s var(--ease);
}
.lesson-card:nth-of-type(even) { background: #F2ECE2; }
.lesson-card:hover {
  transform: translateY(-6px) rotate(-0.4deg);
  box-shadow: 0 30px 50px -40px rgba(32, 32, 30, 0.45);
}
.lesson-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: var(--label-size);
  font-weight: 500;
  letter-spacing: var(--label-track);
  text-transform: uppercase;
  color: var(--coffee-text);
}
.lesson-card__glyph {
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.35rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--sage-deep);
  transition: background-color 0.5s var(--ease), color 0.5s var(--ease);
}
.lesson-card:hover .lesson-card__glyph { background: var(--sage-deep); color: var(--cream); }
.lesson-card__title {
  margin-top: auto;
  padding-top: 3rem;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 2.8vw, 2.7rem);
  line-height: 1.02;
}
.lesson-card__desc { margin-top: 1rem; color: #3b3a36; max-width: 30ch; }
.lesson-card__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.75rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}
.lesson-card__meta dt { font-size: var(--label-size); font-weight: 500; letter-spacing: var(--label-track); text-transform: uppercase; color: var(--coffee-text); }
.lesson-card__meta dd { margin-top: 0.2rem; font-weight: 500; }
.lesson-card__link {
  align-self: flex-start;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.lesson-card--cta {
  background: var(--sage-deep) !important;
  color: var(--cream);
  border-color: transparent;
  justify-content: space-between;
}
.lesson-card--cta .lesson-card__title { color: var(--cream); margin-top: 0; padding-top: 0; }
.lesson-card--cta p { color: rgba(248, 244, 236, 0.85); margin-top: 1rem; }

.lessons__progress {
  position: relative;
  height: 1px;
  margin: clamp(2rem, 4vw, 3rem) var(--gutter) 0;
  background: var(--line);
}
.lessons__progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  background: var(--ink);
  transform-origin: left center;
  transform: scaleX(0);
}

/* Pin kapalıyken (mobil, tablet, azaltılmış hareket) dikey liste */
.lessons:not(.is-horizontal) .lessons__track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: var(--maxw);
  margin-inline: auto;
}
.lessons:not(.is-horizontal) .lessons__intro {
  grid-column: 1 / -1;
  padding: 0 0 1.5rem;
}
.lessons:not(.is-horizontal) .lesson-card { min-height: 0; }
.lessons:not(.is-horizontal) .lesson-card__title { padding-top: 2.5rem; }
.lessons:not(.is-horizontal) .lessons__progress,
.lessons:not(.is-horizontal) .lessons__hint { display: none; }

.lessons.is-horizontal {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: calc(var(--header-h) + 1rem) 2.5rem;
}

@media (max-width: 699px) {
  .lessons:not(.is-horizontal) .lessons__track { grid-template-columns: 1fr; }
}

/* ---------- 10. Atmosfer / parallax ---------- */
.atmos__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.75rem);
  align-items: start;
}
.atmos__intro { grid-column: 1 / span 5; position: sticky; top: calc(var(--header-h) + 2rem); }
.atmos__intro p { margin-top: 1.6rem; }

.atmos__points { margin-top: 2.5rem; border-top: 1px solid var(--line); }
.atmos__points li {
  display: flex;
  gap: 1.25rem;
  align-items: baseline;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.2;
}
.atmos__points li span {
  font-family: var(--font-sans);
  font-size: var(--label-size);
  font-weight: 500;
  letter-spacing: var(--label-track);
  color: var(--coffee-text);
  min-width: 2rem;
}

.atmos__media {
  grid-column: 7 / span 6;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.75rem);
}

.frame {
  position: relative;
  overflow: hidden;
  background: var(--sand);
  border-radius: var(--radius);
}
.frame img {
  position: absolute;
  left: 0;
  top: -9%;
  width: 100%;
  height: 118%;
  object-fit: cover;
  filter: saturate(0.82) sepia(0.06);
  will-change: transform;
}
.frame figcaption {
  z-index: 1;
  position: absolute;
  left: 1rem;
  bottom: 0.9rem;
  font-size: var(--label-size);
  letter-spacing: var(--label-track);
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.atmos__media .frame:nth-child(1) { grid-column: 1 / span 6; aspect-ratio: 4 / 3; }
.atmos__media .frame:nth-child(2) { grid-column: 1 / span 3; aspect-ratio: 4 / 5; margin-top: 3rem; }
.atmos__media .frame:nth-child(3) { grid-column: 4 / span 3; aspect-ratio: 4 / 5; }
.atmos__media .frame:nth-child(4) { grid-column: 2 / span 5; aspect-ratio: 14 / 9; }

@media (max-width: 899px) {
  .atmos__intro { grid-column: 1 / -1; position: static; }
  .atmos__media { grid-column: 1 / -1; margin-top: 2rem; }
}

/* ---------- 11. Eğitmenler ---------- */
.trainers__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2.5rem);
}
.trainer:nth-child(2) { margin-top: clamp(0rem, 6vw, 6rem); }
.trainer:nth-child(3) { margin-top: clamp(0rem, 3vw, 3rem); }

.trainer__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--sand);
  border-radius: var(--radius);
}
.trainer__zoom { position: absolute; inset: 0; transition: transform 1.2s var(--ease); }
.trainer__photo img {
  position: absolute;
  left: 0;
  top: -10%;
  width: 100%;
  height: 120%;
  object-fit: cover;
  filter: grayscale(1) sepia(0.2) contrast(0.95) brightness(1.02);
  transition: filter 1s var(--ease);
  will-change: transform;
}
.trainer:hover .trainer__zoom { transform: scale(1.06); }
.trainer:hover .trainer__photo img { filter: grayscale(0.25) sepia(0.12) contrast(0.98); }

.trainer__body {
  padding-top: 1.4rem;
  transition: transform 0.8s var(--ease);
}
.trainer:hover .trainer__body { transform: translateY(-6px); }
.trainer__role {
  font-size: var(--label-size);
  font-weight: 500;
  letter-spacing: var(--label-track);
  text-transform: uppercase;
  color: var(--clay-deep);
}
.trainer__name {
  margin-top: 0.5rem;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.7rem, 2.3vw, 2.2rem);
  line-height: 1.1;
}
.trainer__text { margin-top: 0.6rem; color: #3b3a36; max-width: 32ch; }

.trainers__note {
  margin-top: clamp(3rem, 6vw, 5rem);
  max-width: 60ch;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.4;
  color: var(--sage-deep);
}

@media (max-width: 899px) {
  .trainers__grid { grid-template-columns: 1fr 1fr; }
  .trainer:nth-child(n) { margin-top: 0; }
}
@media (max-width: 599px) {
  .trainers__grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ---------- 12. Fiyatlar ---------- */
.pricing__note-top {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
  padding: 0.55rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 0.95rem;
  color: #3b3a36;
}
.pricing__note-top::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--clay);
  flex: none;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.75rem, 2.8vw, 2.75rem);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.7s var(--ease), box-shadow 0.7s var(--ease);
}
.price-card:hover {
  transform: translateY(-6px) rotate(0.3deg);
  box-shadow: 0 30px 50px -40px rgba(32, 32, 30, 0.5);
}
.price-card__index { font-family: var(--font-serif); font-style: italic; color: var(--coffee-text); }
.price-card__title {
  margin-top: 2.5rem;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  line-height: 1.08;
}
.price-card__desc { margin-top: 0.9rem; color: #3b3a36; min-height: 3.3em; }
.price-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 2.25rem 0 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.price-card__amount {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(3.2rem, 5vw, 4.6rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.price-card__amount--soon { font-style: italic; font-size: clamp(2.4rem, 3.6vw, 3.2rem); }
.price-card__currency { font-size: var(--label-size); font-weight: 500; letter-spacing: var(--label-track); }
.price-card .btn { margin-top: auto; }

.price-card--featured {
  background: var(--sage-deep);
  color: var(--cream);
  border-color: transparent;
}
.price-card--featured .price-card__index,
.price-card--featured .price-card__desc { color: rgba(248, 244, 236, 0.85); }
.price-card--featured .price-card__price { border-top-color: rgba(248, 244, 236, 0.22); }

.badge {
  position: absolute;
  top: clamp(1.5rem, 2.8vw, 2.5rem);
  right: clamp(1.5rem, 2.8vw, 2.5rem);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: var(--cream);
  color: var(--sage-deep);
  font-size: var(--label-size);
  font-weight: 700;
  letter-spacing: var(--label-track);
  text-transform: uppercase;
}

.pricing__note {
  margin-top: 2rem;
  font-size: 1rem;
  color: var(--coffee-text);
  max-width: 60ch;
}

@media (max-width: 899px) {
  .pricing__grid { grid-template-columns: 1fr; }
  .price-card__desc { min-height: 0; }
}

/* ---------- 13. Yorumlar (placeholder) ---------- */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: clamp(1.75rem, 2.6vw, 2.5rem);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: rgba(248, 244, 236, 0.5);
}
.review-card__quote {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  line-height: 0.6;
  height: 2.2rem;
  color: var(--sage);
}
.review-card__text {
  margin-top: 1.25rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 1.9vw, 1.7rem);
  line-height: 1.3;
  color: #3b3a36;
}
.review-card__lines { margin-top: 1.5rem; display: grid; gap: 0.6rem; }
.review-card__lines span { height: 8px; border-radius: 4px; background: rgba(32, 32, 30, 0.06); }
.review-card__lines span:nth-child(2) { width: 82%; }
.review-card__lines span:nth-child(3) { width: 58%; }
.review-card__foot {
  margin-top: auto;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--label-size);
  font-weight: 500;
  letter-spacing: var(--label-track);
  text-transform: uppercase;
  color: var(--coffee-text);
}
.review-card__tag {
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 0.68rem;
}
@media (max-width: 899px) {
  .reviews__grid { grid-template-columns: 1fr; }
  .review-card { min-height: 0; }
}

/* ---------- 14. SSS ---------- */
.faq__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem;
}
.faq__head { grid-column: 1 / span 4; }
.faq__list { grid-column: 6 / span 7; border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0;
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.4s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 0 1.5rem; max-width: 58ch; color: #3b3a36; }
@media (max-width: 899px) {
  .faq__head, .faq__list { grid-column: 1 / -1; }
}

/* ---------- 15. İletişim ---------- */
.contact { background: var(--ink); color: var(--cream); overflow: hidden; }
.contact .eyebrow { color: rgba(248, 244, 236, 0.75); }
.contact__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}
.contact__main { grid-column: 1 / span 6; }
.contact__title { margin-top: 1.5rem; color: var(--cream); }
.contact__title em { color: var(--sage); }
.contact__text { margin-top: 1.75rem; max-width: 40ch; color: rgba(248, 244, 236, 0.85); font-size: 1.125rem; line-height: 1.6; }
.contact__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2.25rem; }
.contact .btn--ghost { --btn-fg: var(--cream); border-color: rgba(248, 244, 236, 0.35); }
.contact .btn--ghost:hover { --btn-bg: var(--cream); --btn-fg: var(--ink); border-color: var(--cream); }

.contact__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 2rem;
  margin-top: clamp(3rem, 5vw, 4.5rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(248, 244, 236, 0.18);
}
.contact__details dt {
  font-size: var(--label-size);
  font-weight: 500;
  letter-spacing: var(--label-track);
  text-transform: uppercase;
  color: rgba(248, 244, 236, 0.65);
}
.contact__details dd { margin-top: 0.45rem; font-size: 1.0625rem; line-height: 1.6; }
.contact__details a { text-decoration: none; }

.contact__map {
  grid-column: 8 / span 5;
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  background: #2c2c29;
}
.contact__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.55) sepia(0.15) contrast(0.95);
}
.contact__map-link {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.4s var(--ease);
}
.contact__map-link:hover { transform: translateY(-2px); }

@media (max-width: 899px) {
  .contact__main, .contact__map { grid-column: 1 / -1; }
  .contact__map { aspect-ratio: 4 / 3; }
}
@media (max-width: 499px) {
  .contact__details { grid-template-columns: 1fr; }
  .contact__actions .btn { flex: 1 1 100%; }
}

/* ---------- 16. Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(248, 244, 236, 0.8);
  padding-block: 0 2.5rem;
  font-size: 1rem;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(248, 244, 236, 0.14);
}
.site-footer__brand { grid-column: 1 / span 6; }
.site-footer__brand .brand__mark { color: var(--cream); font-size: 2.4rem; }
.site-footer__brand p { margin-top: 0.8rem; max-width: 36ch; }
.site-footer__links {
  grid-column: 8 / span 5;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.75rem;
  align-content: flex-start;
  justify-content: flex-end;
  padding-right: 4.5rem; /* sabit WhatsApp butonuna yer aç */
}
.site-footer__links a { color: var(--cream); }
.site-footer__bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 2rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(248, 244, 236, 0.14);
  font-size: 0.85rem;
  color: rgba(248, 244, 236, 0.65);
}
.site-footer--light { background: var(--sand); color: var(--coffee-text); }
.site-footer--light .site-footer__inner,
.site-footer--light .site-footer__bottom { border-top-color: var(--line); }
.site-footer--light .brand__mark,
.site-footer--light .site-footer__links a { color: var(--ink); }
.site-footer--light .site-footer__bottom { color: var(--coffee-text); }

@media (max-width: 767px) {
  .site-footer__brand, .site-footer__links { grid-column: 1 / -1; justify-content: flex-start; }
  .site-footer { padding-bottom: 6rem; }
}

/* ---------- 17. Sabit WhatsApp butonu ---------- */
.wa-float {
  position: fixed;
  right: clamp(1rem, 2.5vw, 2rem);
  bottom: clamp(1rem, 2.5vw, 2rem);
  z-index: 60;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--sage-deep);
  color: var(--cream);
  box-shadow: 0 16px 30px -16px rgba(32, 32, 30, 0.6);
  transition: transform 0.5s var(--ease), background-color 0.4s var(--ease);
}
.wa-float svg { width: 26px; height: 26px; }
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--sage-deep);
  animation: breathe 3.6s ease-in-out infinite;
}
.wa-float:hover { transform: translateY(-3px) scale(1.04); background: var(--ink); }
@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.55; }
  50% { transform: scale(1.35); opacity: 0; }
}

/* ---------- 18. Özel imleç (yalnızca masaüstü + fare) ---------- */
.cursor { display: none; }
@media (hover: hover) and (pointer: fine) {
  html.has-cursor, html.has-cursor a, html.has-cursor button, html.has-cursor summary { cursor: none; }
  html.has-cursor .cursor {
    display: block;
    position: fixed;
    top: 0; left: 0;
    z-index: 9999;
    pointer-events: none;
  }
  .cursor__dot,
  .cursor__ring {
    position: absolute;
    top: 0; left: 0;
    border-radius: 50%;
    transform: translate3d(-50%, -50%, 0);
  }
  .cursor__dot { width: 6px; height: 6px; background: var(--ink); }
  .cursor__ring {
    width: 34px; height: 34px;
    border: 1px solid rgba(32, 32, 30, 0.45);
    transition: width 0.45s var(--ease), height 0.45s var(--ease), background-color 0.45s var(--ease), border-color 0.45s var(--ease), opacity 0.3s;
  }
  .cursor.is-hover .cursor__ring {
    width: 72px; height: 72px;
    background: rgba(154, 170, 139, 0.22);
    border-color: rgba(86, 99, 79, 0.5);
  }
  .cursor.is-hidden .cursor__ring,
  .cursor.is-hidden .cursor__dot { opacity: 0; }
  .cursor.is-dark .cursor__dot { background: var(--cream); }
  .cursor.is-dark .cursor__ring { border-color: rgba(248, 244, 236, 0.5); }
}

/* ---------- 19. Ana sayfa (marka hub) ---------- */
.hub-hero {
  min-height: 88svh;
  padding-top: calc(var(--header-h) + clamp(2rem, 8vh, 6rem));
  padding-bottom: clamp(3rem, 8vh, 5rem);
  display: flex;
  align-items: flex-end;
  background:
    radial-gradient(60% 70% at 85% 30%, rgba(154, 170, 139, 0.28) 0%, rgba(248, 244, 236, 0) 70%),
    var(--cream);
}
.hub-hero__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: end;
}
.hub-hero__title {
  grid-column: 1 / span 8;
  margin-top: 1.5rem;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(4rem, 13vw, 12rem);
  line-height: 0.88;
  letter-spacing: -0.03em;
}
.hub-hero__title em { font-style: italic; color: var(--sage-deep); }
.hub-hero__title .line { display: block; overflow: hidden; padding-bottom: 0.06em; }
.hub-hero__title .line > span { display: block; }
.nav-simple { display: flex; gap: 1.5rem; }
.nav-simple a { font-size: 0.9rem; font-weight: 500; }
.hub-hero__aside { grid-column: 9 / span 4; padding-bottom: 1rem; }
.hub-hero__aside .btn { margin-top: 1.75rem; }
.hub-hero__eyebrow { grid-column: 1 / -1; }

.hub-about__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem;
}
.hub-about__grid h2 { grid-column: 1 / span 6; }
.hub-about__grid p { grid-column: 8 / span 5; font-size: 1.125rem; line-height: 1.6; color: #3b3a36; }

@media (max-width: 899px) {
  .hub-hero__title, .hub-hero__aside, .hub-about__grid h2, .hub-about__grid p { grid-column: 1 / -1; }
}

/* ---------- 19b. Ana sayfa — şube satırları ---------- */
.branch-list { border-top: 1px solid var(--line); }
.branch-row { border-bottom: 1px solid var(--line); }
.branch-row__link {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: center;
  padding-block: clamp(2rem, 4vw, 3.5rem);
  color: inherit;
  text-decoration: none;
}
.branch-row__index {
  grid-column: 1 / span 1;
  align-self: start;
  font-size: var(--label-size);
  font-weight: 500;
  letter-spacing: var(--label-track);
  color: var(--coffee-text);
}
.branch-row__media {
  grid-column: 2 / span 5;
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sand);
}
.branch-row__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.82) sepia(0.06);
  transition: transform 1.4s var(--ease), filter 1s var(--ease);
}
.branch-row__link:hover .branch-row__media img { transform: scale(1.05); }
.branch-row__body { grid-column: 8 / span 5; display: flex; flex-direction: column; gap: 1rem; }
.branch-row__status {
  align-self: flex-start;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: var(--sage-deep);
  color: var(--cream);
  font-size: var(--label-size);
  font-weight: 500;
  letter-spacing: var(--label-track);
  text-transform: uppercase;
}
.branch-row__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.branch-row__title em { display: block; font-style: italic; font-size: 0.45em; color: var(--sage-deep); letter-spacing: 0; margin-top: 0.35rem; }
.branch-row__text { color: #3b3a36; max-width: 40ch; }
.branch-row__facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.branch-row__facts dt { font-size: var(--label-size); font-weight: 500; letter-spacing: var(--label-track); text-transform: uppercase; color: var(--coffee-text); }
.branch-row__facts dd { margin-top: 0.3rem; font-size: 0.95rem; }
.branch-row__cta { display: inline-flex; align-items: center; gap: 0.6rem; margin-top: 0.5rem; font-weight: 500; }
.branch-row__cta svg { width: 18px; height: 18px; transition: transform 0.5s var(--ease); }
.branch-row__link:hover .branch-row__cta svg { transform: translateX(5px); }
.branch-row__link:hover .branch-row__title { color: var(--sage-deep); }
.branch-row__title { transition: color 0.6s var(--ease); }

.branch-row--soon .branch-row__media img { filter: grayscale(1) sepia(0.15) opacity(0.7); }
.branch-row--soon .branch-row__status { background: transparent; color: var(--coffee-text); border: 1px solid var(--line-strong); }

@media (max-width: 899px) {
  .branch-row__index { grid-column: 1 / -1; }
  .branch-row__media, .branch-row__body { grid-column: 1 / -1; }
}

/* ---------- 19c. GEO özet bloğu ---------- */
.geo__grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 1.5rem; }
.geo__head { grid-column: 1 / span 4; }
.geo__head h2 { margin-top: 1.5rem; }
.geo__updated { margin-top: 1.25rem; font-size: var(--label-size); letter-spacing: var(--label-track); text-transform: uppercase; color: var(--coffee-text); }
.geo__body { grid-column: 6 / span 7; }
.geo__summary { font-size: clamp(1.15rem, 1.6vw, 1.4rem); line-height: 1.6; color: #33322e; }
.geo__summary strong { font-weight: 500; color: var(--ink); }
.geo__facts { margin-top: 2.5rem; border-top: 1px solid var(--line); }
.geo__facts > div { display: grid; grid-template-columns: 11rem 1fr; gap: 1.5rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.geo__facts dt { font-size: var(--label-size); font-weight: 500; letter-spacing: var(--label-track); text-transform: uppercase; color: var(--coffee-text); padding-top: 0.25rem; }
@media (max-width: 899px) {
  .geo__head, .geo__body { grid-column: 1 / -1; }
  .geo__facts > div { grid-template-columns: 1fr; gap: 0.35rem; }
}

/* ---------- 20. Azaltılmış hareket ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .wa-float::before, .scroll-cue::after { display: none; }
  .frame img, .trainer__photo img { top: 0; height: 100%; }
}
