/* ==========================================================================
   AURA Pilates — Design system
   Mobile-first. Boutique wellness. Warm, calm, premium.
   ========================================================================== */

:root {
  --bg: #faf6ef;
  --bg-soft: #eee5d8;
  --surface: #fffdf8;
  --accent: #a45c42;
  --accent-dark: #85452f;
  --olive: #535c47;
  --border: rgba(72, 52, 39, .16);
  --ivory: var(--bg);
  --cream: var(--bg-soft);
  --sand: #dccfbf;
  --nude: #d3b7a4;
  --taupe: #9a8978;
  --mocha: #5a483c;
  --espresso: #2e251f;
  --charcoal: #1c1815;
  --rose: var(--accent);
  --rose-deep: var(--accent-dark);
  --paper: var(--surface);
  --white: #fffcf8;

  --text: #322b26;
  --text-muted: #6a5d53;
  --text-soft: #8a7b6e;
  --line: var(--border);
  --line-strong: rgba(46, 37, 31, 0.22);

  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Manrope", system-ui, sans-serif;

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-md: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.35rem;
  --fs-2xl: 1.85rem;
  --fs-3xl: 2.35rem;
  --fs-4xl: 2.85rem;
  --fs-display: clamp(2.4rem, 9vw, 5.4rem);

  --lh-tight: 1.12;
  --lh-snug: 1.28;
  --lh-body: 1.7;

  --space-2xs: 0.35rem;
  --space-xs: 0.6rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.25rem;
  --space-xl: 3.5rem;
  --space-2xl: 5.5rem;
  --space-3xl: 7.5rem;

  --radius-sm: 0.35rem;
  --radius-md: .25rem;
  --radius-lg: .35rem;
  --radius-full: 999px;

  --shadow-soft: 0 18px 50px rgba(46, 37, 31, 0.1);
  --shadow-lift: 0 12px 32px rgba(46, 37, 31, 0.12);

  --container: 1240px;
  --header-h: 4.5rem;
  --sticky-h: 4.75rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --focus: 0 0 0 3px var(--ivory), 0 0 0 5px var(--rose);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  line-height: var(--lh-body);
  color: var(--text);
  background: var(--ivory);
  letter-spacing: 0.01em;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: 0;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

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

:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--espresso);
  color: var(--ivory);
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 7vw, 3.5rem);
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
  color: var(--espresso);
}

.lede {
  color: var(--text-muted);
  font-size: var(--fs-md);
  max-width: 38rem;
}

.section {
  padding: var(--space-2xl) 0;
}

.section--cream {
  background: var(--cream);
}

.section--espresso {
  background: var(--espresso);
  color: var(--ivory);
}

.section--espresso .section-title,
.section--espresso .lede {
  color: var(--ivory);
}

.section--espresso .lede {
  opacity: 0.82;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease),
    color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn--primary {
  background: var(--accent-dark);
  color: var(--ivory);
}

.btn--primary:hover {
  background: var(--mocha);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--espresso);
  border: 1px solid var(--line-strong);
}

.btn--ghost:hover {
  background: rgba(46, 37, 31, 0.05);
}

.btn--light {
  background: var(--ivory);
  color: var(--espresso);
}

.btn--light:hover {
  background: var(--white);
}

.btn--full {
  width: 100%;
}

/* --------------------------------------------------------------------------
   Header / nav
   -------------------------------------------------------------------------- */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s var(--ease);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(247, 242, 235, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}

.site-header--solid {
  background: rgba(247, 242, 235, 0.94);
  box-shadow: 0 1px 0 var(--line);
}

.header-inner {
  width: min(100% - 1.5rem, var(--container));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: var(--espresso);
}

.site-header:not(.is-scrolled):not(.is-open):not(.site-header--solid) .logo,
.site-header:not(.is-scrolled):not(.is-open):not(.site-header--solid) .desktop-nav a {
  text-shadow: none;
}

.site-header.is-scrolled .logo,
.site-header.is-open .logo,
.site-header--solid .logo {
  color: var(--espresso);
}

.logo-word {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.28em;
}

.logo-sub {
  margin-top: 0.28rem;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  opacity: 0.78;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: inherit;
}

.site-header:not(.is-scrolled):not(.is-open):not(.site-header--solid) .nav-toggle {
  color: var(--espresso);
}

.site-header.is-scrolled .nav-toggle,
.site-header.is-open .nav-toggle,
.site-header--solid .nav-toggle {
  color: var(--espresso);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  position: relative;
  transition: transform 0.3s var(--ease);
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-panel {
  position: fixed;
  z-index: 60;
  top: var(--header-h);
  left: 0;
  right: 0;
  height: calc(100vh - var(--header-h));
  height: calc(100dvh - var(--header-h));
  background: var(--bg);
  padding: 2rem max(1.5rem, env(safe-area-inset-left)) calc(2rem + env(safe-area-inset-bottom));
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform .35s var(--ease), opacity .25s ease, visibility .35s;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.nav-panel.is-open {
  transform: none;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-list {
  display: grid;
  gap: 0.35rem;
}

.nav-list a {
  display: flex;
  align-items: center;
  min-height: 64px;
  font-family: var(--font-serif);
  font-size: 2rem;
  border-bottom: 1px solid var(--line);
}

.nav-cta {
  margin-top: var(--space-lg);
}

.header-cta {
  display: none;
}

.desktop-nav {
  display: none;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  display: grid;
  padding-top: var(--header-h);
  color: var(--text);
  background: var(--bg);
}
.hero-media { order: 2; position: relative; margin: 0 1rem 1.5rem; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 68%; }
.hero-content { padding: 2.7rem 0 2rem; }
.hero h1 { font-family: var(--font-serif); font-weight: 500; font-size: clamp(3.1rem, 10.5vw, 5.6rem); line-height: 1.02; letter-spacing: -.035em; max-width: 12ch; }
.hero h1 em { color: var(--accent-dark); font-weight: 500; }
.hero-lead { margin: 1.3rem 0 1.6rem; max-width: 29rem; color: var(--text-muted); font-size: 1rem; }
.hero-meta { margin-bottom: 1.4rem; font-size: .72rem; font-weight: 600; letter-spacing: .17em; text-transform: uppercase; color: var(--accent-dark); }
.hero-note { margin-top: 1.25rem; font-size: .8rem; color: var(--text-muted); }
.hero-caption { position: absolute; bottom: 1.2rem; left: 1.2rem; padding: .7rem 1rem; background: var(--bg); color: var(--espresso); font-size: .72rem; letter-spacing: .1em; }



/* Supporting sections, shared across all three pages */
.trust { display: grid; gap: 1px; border-block: 1px solid var(--line); }
.trust-item { padding: 1.5rem; display: grid; grid-template-columns: 36px 1fr; gap: 1rem; align-items: center; }
.trust-icon { color: var(--accent-dark); display: grid; place-items: center; }
.trust-title { font: 600 1.3rem var(--font-serif); }
.trust-item p:not(.trust-title) { font-size: .88rem; color: var(--text-muted); margin-top: .3rem; }
.editorial, .split-about { display: grid; gap: var(--space-lg); }
.editorial-copy p + p { margin-top: 1rem; }
.frame { position: relative; overflow: hidden; background: var(--cream); border-radius: var(--radius-lg); }
.frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
@media (hover: hover) { .frame:hover img { transform: scale(1.035); } }
.frame--portrait { aspect-ratio: 4 / 5; }
.frame--landscape { aspect-ratio: 4 / 3; }
.frame--square { aspect-ratio: 1; }
.benefits { display: grid; gap: .5rem 2.5rem; }
.benefit { border-top: 1px solid var(--border); padding: 1.6rem 0; transition: transform .4s var(--ease); }
.benefit:hover { transform: translateY(-3px); }
.benefit-index { font: 500 1.5rem var(--font-serif); color: var(--accent-dark); }
.benefit h3 { font: 600 1.5rem var(--font-serif); margin: .5rem 0; }
.benefit p { color: var(--text-muted); font-size: .95rem; }
.steps { display: grid; gap: var(--space-md); counter-reset: step; list-style: none; margin: 0; }
.step { display: grid; grid-template-columns: 2.5rem 1fr; gap: 1rem; align-items: start; }
.step::before { counter-increment: step; content: counter(step, decimal-leading-zero); font: 500 1.7rem var(--font-serif); color: var(--accent-dark); }
.step h3 { font: 600 1.4rem var(--font-serif); margin-bottom: .5rem; }
.step p { color: var(--text-muted); }
.audience { display: grid; gap: .5rem; }
.audience li { min-height: 56px; padding: 1.1rem 0; display: flex; align-items: center; gap: .8rem; border-bottom: 1px solid var(--line); }
.audience li::before { content: ''; width: 7px; height: 7px; flex-shrink: 0; border-radius: 50%; background: var(--accent); }
.location-card { background: var(--olive); color: var(--ivory); padding: var(--space-xl) var(--space-md); }
.location-card .section-title { color: var(--ivory); }
.location-card .eyebrow { color: var(--cream); }
.location-card p { margin: 1rem 0 1.5rem; max-width: 36rem; }
.faq { display: grid; gap: .55rem; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; text-align: left; min-height: 56px; padding: 1.2rem 2.2rem 1.2rem 0; font: 600 1.35rem/1.35 var(--font-serif); position: relative; }
.faq-item button::after { content: ''; position: absolute; right: .25rem; top: 50%; width: 10px; height: 10px; border-right: 1.5px solid var(--espresso); border-bottom: 1.5px solid var(--espresso); transform: translateY(-70%) rotate(45deg); transition: transform .3s var(--ease); }
.faq-item.is-open button::after { transform: translateY(-20%) rotate(225deg); }
.faq-panel { display: grid; grid-template-rows: 0fr; visibility: hidden; transition: grid-template-rows .35s var(--ease), visibility .35s; }
.faq-item.is-open .faq-panel { grid-template-rows: 1fr; visibility: visible; }
.faq-panel-inner { overflow: hidden; }
.faq-panel p { padding-bottom: 1.2rem; color: var(--text-muted); }
.final-cta { text-align: center; }
.final-cta .section-title { max-width: 22ch; margin-inline: auto; }
.final-cta .lede { margin: 1rem auto 1.6rem; }
.site-footer { background: var(--espresso); color: var(--ivory); padding: var(--space-xl) 0 calc(var(--sticky-h) + 2rem + env(safe-area-inset-bottom)); }
.footer-grid { display: grid; gap: var(--space-lg); }
.footer-brand .logo { color: var(--ivory); }
.footer-meta { margin-top: 1rem; color: var(--cream); font-size: .92rem; }
.footer-meta a { display: inline-flex; align-items: center; min-height: 44px; }
.footer-nav { display: grid; gap: .2rem; }
.footer-nav a { min-height: 44px; display: inline-flex; align-items: center; }
.footer-copy { margin-top: var(--space-lg); padding-top: var(--space-md); border-top: 1px solid #ffffff25; font-size: .8rem; color: var(--sand); }
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; padding: .65rem .9rem calc(.65rem + env(safe-area-inset-bottom)); background: var(--bg); border-top: 1px solid var(--line); }
.float-wa { display: none; }
.page-hero { padding: calc(var(--header-h) + 3rem) 0 3rem; background: linear-gradient(180deg, var(--cream), var(--bg)); }
.page-hero h1 { font: 500 clamp(2.6rem, 9vw, 4.6rem)/1.1 var(--font-serif); max-width: 15ch; }
.page-hero p { margin-top: 1rem; max-width: 36rem; color: var(--text-muted); }
.contact-card { background: var(--surface); padding: 1.5rem; }
.contact-card dt { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); margin-top: 1rem; }
.contact-card dd { margin: .3rem 0 0; font: 500 1.4rem var(--font-serif); }
.contact-card a { display: inline-flex; align-items: center; min-height: 44px; }
.form { display: grid; gap: 1rem; }
.form label { display: grid; gap: .35rem; font-size: .9rem; font-weight: 600; }
.form input, .form textarea { width: 100%; min-width: 0; min-height: 48px; border: 1px solid var(--line-strong); background: var(--surface); border-radius: var(--radius-sm); padding: .7rem .85rem; }
.form textarea { min-height: 140px; resize: vertical; }
.form-note { color: var(--text-muted); margin-bottom: 1rem; }
.form-status { min-height: 1.2em; font-size: .9rem; color: var(--mocha); }
.stack-lg { display: grid; gap: var(--space-lg); }
.reveal { opacity: 1; }
.reveal-ready { opacity: 0; transform: translateY(14px); transition: opacity .65s var(--ease), transform .65s var(--ease); transition-delay: var(--reveal-delay, 0ms); }
.reveal.is-in { opacity: 1; transform: none; }
body.is-leaving { opacity: 0; transition: opacity .18s ease; }
@media (min-width: 768px) {
  .container { width: min(100% - 3rem, var(--container)); }
  .trust { grid-template-columns: repeat(3, 1fr); }
  .editorial, .split-about { grid-template-columns: 1fr 1fr; align-items: center; gap: var(--space-xl); }
  .benefits, .steps { grid-template-columns: 1fr 1fr; }
  .sticky-cta { display: none; }
  .float-wa { display: inline-flex; align-items: center; gap: .6rem; position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 40; min-height: 48px; padding: .75rem 1.15rem; border-radius: var(--radius-sm); background: var(--accent-dark); color: var(--ivory); font-size: .9rem; }
  .site-footer { padding-bottom: var(--space-xl); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
@media (min-width: 1024px) {
  .nav-toggle, .nav-panel { display: none; }
  .desktop-nav { display: flex; align-items: center; gap: 1.35rem; }
  .desktop-nav a { display: inline-flex; align-items: center; min-height: 44px; font-size: .86rem; font-weight: 600; color: var(--text); }
  .header-cta { display: inline-flex; padding: .55rem 1rem; }
  .benefits { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .step { grid-template-columns: 1fr; }
  .location-card { padding: 5rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal-ready { opacity: 1; transform: none; }
}

/* Editorial composition and navigation states */
body.nav-open { position: fixed; width: 100%; overflow: hidden; }
body.nav-open .sticky-cta, body.nav-open .float-wa { visibility: hidden; }
.nav-intro { color: var(--accent-dark); font-size: .75rem; letter-spacing: .16em; margin-bottom: 1.5rem; }
.nav-foot { color: var(--text-muted); font-size: .85rem; margin-top: 1.5rem; }
.desktop-nav a:not(.btn) { position: relative; }
.desktop-nav a:not(.btn)::after { content: ''; position: absolute; left: 0; right: 0; bottom: 5px; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.desktop-nav a:hover::after, .desktop-nav a[aria-current]::after { transform: scaleX(1); }
.trust { background: var(--border); }
.trust-item { background: var(--bg-soft); }
.trust-icon { border: 0; }
.section-title { text-wrap: balance; }
.editorial-copy { max-width: 36rem; }
.instructor-name { font-family: var(--font-serif); font-size: 2rem; font-style: italic; color: var(--accent-dark); margin-top: 1.75rem; }
.instructor-role { font-size: .8rem; color: var(--text-muted); margin-top: .15rem; }
.instructor-frame { border-radius: var(--radius-sm); aspect-ratio: 4 / 5; }
.instructor-link { display: inline-flex; align-items: center; min-height: 48px; color: var(--accent-dark); border-bottom: 1px solid var(--accent); margin-top: 1rem; }
.statement { padding: clamp(3rem, 6vw, 5rem) 1rem; text-align: center; background: var(--olive); color: var(--bg); }
.statement p { font-family: var(--font-serif); font-size: clamp(2rem, 5vw, 3.8rem); line-height: 1.2; max-width: 24ch; margin: auto; }
.statement span { display: block; margin-top: 1.2rem; font-size: .72rem; letter-spacing: .2em; }
.steps { padding-left: 0; }
.step { border-top: 1px solid var(--border); padding-top: 1.4rem; }
.final-cta { padding-block: 1.5rem; }
.faq-panel-inner { min-height: 0; }
.form input, .form textarea { font-size: 1rem; }
@media (max-width: 767px) {
  .section { padding-block: 3.5rem; }
  .container { width: calc(100% - 2.5rem); }
  .hero-media { height: 340px; }
  .hero h1 { max-width: none; font-size: clamp(2.7rem, 11vw, 3.2rem); }
  .hero-content { padding-top: 2rem; padding-bottom: 1.5rem; }
  .hero .btn { width: 100%; }
  .frame--portrait { max-height: 520px; }
  .trust-item { padding: 1rem 1.25rem; }
  .trust-item p:not(.trust-title) { font-size: .88rem; }
  .sticky-cta { padding-block: .45rem calc(.45rem + env(safe-area-inset-bottom)); }
}
@media (min-width: 768px) {
  .hero { grid-template-columns: 1fr 1fr; min-height: min(810px, 92svh); }
  .hero-content { width: auto; margin: 0; padding: 4rem 3rem 4rem max(2rem, calc((100vw - var(--container)) / 2)); align-self: center; }
  .hero-media { margin: 1.25rem 1.25rem 1.25rem 0; min-height: 560px; }
  .hero-media img { position: absolute; inset: 0; }
  .hero h1 { font-size: clamp(3.3rem, 5.8vw, 5.6rem); }
  #egitmen .editorial { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(2.5rem, 6vw, 6rem); }
  #egitmen .frame { order: 0; }
  #hizmet .frame { aspect-ratio: 1; order: 2; }
  .audience { grid-template-columns: 1fr 1fr; gap: 0 3rem; }
  .section { padding-block: clamp(4rem, 6.5vw, 6rem); }
  .faq { max-width: 56rem; margin-left: auto; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal-ready { opacity: 1; transform: none; }
}

/* Personal editorial feature and refined section rhythm */
.instructor-section { background: linear-gradient(90deg, var(--cream) 0%, var(--bg) 86%); }
.instructor-copy { max-width: 32rem; --reveal-delay: 90ms; }
.instructor-copy .section-title { font-size: clamp(2.25rem, 4vw, 3.6rem); line-height: 1.12; }
.instructor-copy .section-title em { font-weight: 500; color: var(--accent-dark); }
.instructor-intro { margin-top: 1.4rem; line-height: 1.8; }
.instructor-approach { margin-top: 1.5rem; padding-left: 1rem; border-left: 1px solid var(--accent); display: grid; gap: .25rem; font-size: .88rem; color: var(--text-muted); }
.instructor-link { gap: .4rem; transition: color .25s ease, border-color .25s ease; }
.instructor-link:hover { color: var(--espresso); border-color: var(--espresso); }
.btn:active { transform: translateY(0) scale(.98); }
.btn--ghost:hover, .btn--light:hover { transform: translateY(-2px); }
.btn svg { transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(2px); }
.trust-title { font-weight: 500; }
.section[aria-labelledby="surec-baslik"] { padding-top: 1rem; }
.section[aria-labelledby="kimler-baslik"] .container { max-width: 1000px; }
#lokasyon { padding-block: 2.5rem; }
#lokasyon .location-card { background: transparent; color: var(--text); padding: 1rem 0; }
#lokasyon .section-title { color: var(--text); font-size: clamp(2rem, 4vw, 2.8rem); }
#lokasyon .eyebrow { color: var(--accent-dark); }
#lokasyon .btn { border: 1px solid var(--border); background: transparent; }
.final-cta .section-title em { color: var(--accent-dark); font-weight: 500; }
.footer-grid > :last-child { font-size: .8rem; color: var(--sand); letter-spacing: .06em; }
.sticky-cta, .float-wa { transition: opacity .25s ease, visibility .25s ease; }
body.cta-in-view .sticky-cta, body.cta-in-view .float-wa { opacity: 0; visibility: hidden; pointer-events: none; }
@media (min-width: 768px) {
  .instructor-frame { margin-top: -1.5rem; margin-bottom: 1rem; }
  .instructor-section { margin-top: 1.5rem; }
  #hizmet .editorial-copy { --reveal-delay: 80ms; }
  #lokasyon .location-card { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0 3rem; align-items: center; }
  #lokasyon .eyebrow { grid-column: 1; }
  #lokasyon .section-title { grid-column: 1; }
  #lokasyon .location-card > p:not(.eyebrow) { grid-column: 2; grid-row: 1 / 3; margin: 0; }
  #lokasyon .btn { grid-column: 2; justify-self: start; margin-top: 1rem; }
  .section[aria-labelledby="avantajlar-baslik"] .lede { max-width: 35rem; }
}
@media (max-width: 767px) {
  .instructor-section { background: linear-gradient(180deg, var(--cream), var(--bg)); }
  .instructor-frame { max-height: none; }
  .instructor-copy { --reveal-delay: 0ms; }
  .instructor-copy .eyebrow { font-size: .65rem; letter-spacing: .14em; }
  .instructor-name { margin-top: 1.25rem; }
  .instructor-role { font-size: .76rem; }
  .hero-meta { font-size: .65rem; letter-spacing: .13em; }
  .hero .btn { font-size: .86rem; padding-inline: 1rem; }
  .benefit { padding-block: 1.25rem; }
  .footer-grid { gap: 1.5rem; grid-template-columns: 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
  .final-cta { padding-block: 0; }
}
