/* ═══════════════════════════════════════════
   SEREN COŞKUN YOGA — Main Stylesheet
   ═══════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --bg:           #F7F3EE;
  --bg2:          #EDE8E0;
  --white:        #FEFCFA;
  --dark:         #1A1714;
  --text:         #2D2A27;
  --muted:        #7A7470;
  --accent:       #C4875A;
  --accent-d:     #A36A3A;
  --green:        #3D6B4F;
  --green-l:      #7A9E8A;
  --sage:         #B5C4B1;
  --gold:         #C9A96E;

  --r:            16px;
  --r-sm:         8px;
  --shadow:       0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.14);
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --t:            0.3s var(--ease);

  --serif:        'Cormorant Garamond', Georgia, serif;
  --sans:         'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--sans); }
input, textarea, select { font-family: var(--sans); }

/* ── Page Loader ── */
.loader {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__logo {
  font-family: var(--serif);
  color: var(--white);
  text-align: center;
}
.loader__logo span { display: block; font-size: 1.6rem; font-weight: 400; }
.loader__logo em { font-size: 0.85rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent); font-style: normal; }
.loader__bar {
  width: 200px; height: 1px;
  background: rgba(255,255,255,0.1);
  position: relative; overflow: hidden;
}
.loader__bar::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--accent);
  transform: translateX(-100%);
  animation: loaderBar 1.8s var(--ease) forwards;
}
@keyframes loaderBar { to { transform: translateX(0); } }

/* ── Custom Cursor ── */
.cursor, .cursor-follower {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
}
.cursor {
  width: 8px; height: 8px;
  background: var(--dark);
  transition: transform 0.08s, background 0.2s;
}
.cursor-follower {
  width: 32px; height: 32px;
  border: 1.5px solid rgba(26,23,20,0.35);
  transition: transform 0.15s var(--ease), width 0.25s var(--ease), height 0.25s var(--ease), border-color 0.25s;
}
body.cursor-active .cursor-follower {
  width: 52px; height: 52px;
  border-color: var(--accent);
}
body.cursor-active .cursor { background: var(--accent); }

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Utility Typography ── */
.label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}
.label--light { color: var(--gold); }
.h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
}
.h2 em { font-style: italic; color: var(--accent); }
.h2--light { color: var(--white); }
.h2--light em { color: var(--gold); }
.section-desc {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.75;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-desc { margin: 0 auto; }

/* ── Section spacing ── */
.section { padding: 100px 0; }

/* ── Reveal Animations ── */
.reveal-up, .reveal-left, .reveal-right, .reveal-fade {
  opacity: 0;
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  will-change: opacity, transform;
}
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-fade  { transform: none; }
.is-visible   { opacity: 1 !important; transform: none !important; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: none; cursor: pointer;
  transition: var(--t);
  white-space: nowrap;
}
.btn--primary { background: var(--accent); color: var(--white); }
.btn--primary:hover { background: var(--accent-d); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,135,90,0.4); }
.btn--outline { background: transparent; color: var(--text); border: 1.5px solid rgba(45,42,39,0.2); }
.btn--outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn--hero { background: var(--accent); color: var(--white); }
.btn--hero:hover { background: var(--accent-d); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(196,135,90,0.5); }
.btn--ghost-hero { background: rgba(255,255,255,0.12); color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); backdrop-filter: blur(8px); }
.btn--ghost-hero:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.7); }
.btn--full { width: 100%; justify-content: center; }
.btn__play { font-size: 0.7rem; }

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 22px 0;
  transition: var(--t);
}
.nav.is-scrolled {
  background: rgba(247,243,238,0.94);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.nav__container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo { display: flex; flex-direction: column; gap: 1px; }
.nav__logo-name {
  font-family: var(--serif);
  font-size: 1.15rem; font-weight: 500;
  color: var(--white);
  line-height: 1;
  transition: var(--t);
}
.nav.is-scrolled .nav__logo-name { color: var(--dark); }
.nav__logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: var(--t);
}
.nav.is-scrolled .nav__logo-sub { color: var(--accent); }
.nav__links {
  display: flex; align-items: center; gap: 32px;
}
.nav__link {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.82);
  transition: var(--t);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 100%;
  height: 1px;
  background: var(--accent);
  transition: right 0.3s var(--ease);
}
.nav__link:hover::after { right: 0; }
.nav__link:hover { color: var(--white); }
.nav.is-scrolled .nav__link { color: var(--muted); }
.nav.is-scrolled .nav__link:hover { color: var(--dark); }
.nav__cta {
  background: var(--accent); color: var(--white) !important;
  padding: 10px 22px; border-radius: 50px;
  font-size: 0.86rem; font-weight: 500;
}
.nav__cta:hover { background: var(--accent-d) !important; transform: translateY(-1px); }
.nav__cta::after { display: none !important; }
.nav__burger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white);
  transition: var(--t);
  transform-origin: center;
}
.nav.is-scrolled .nav__burger span { background: var(--dark); }
.nav__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay */
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  z-index: 800;
  opacity: 0; visibility: hidden;
  transition: var(--t);
}
.mobile-overlay.is-open { opacity: 1; visibility: visible; }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 85vw);
  height: 100dvh;
  background: var(--white);
  z-index: 850;
  padding: 80px 40px 40px;
  display: flex; flex-direction: column;
  transition: right 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.12);
}
.mobile-menu.is-open { right: 0; }
.mobile-menu__close {
  position: absolute; top: 24px; right: 24px;
  width: 36px; height: 36px;
  background: var(--bg2); border: none; border-radius: 50%;
  cursor: pointer; font-size: 0.85rem; color: var(--muted);
  transition: var(--t);
}
.mobile-menu__close:hover { background: var(--accent); color: var(--white); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-link {
  display: block;
  font-family: var(--serif); font-size: 1.8rem; font-weight: 400;
  color: var(--dark); padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--t);
}
.mobile-link:hover, .mobile-link--cta { color: var(--accent); }
.mobile-menu__foot {
  margin-top: auto; padding-top: 24px;
  border-top: 1px solid var(--bg2);
  font-size: 0.78rem; color: var(--muted);
  letter-spacing: 0.06em;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh; min-height: 680px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  transform-origin: center;
  will-change: transform;
}
.hero__bg-gradient {
  width: 100%; height: 100%;
  /* Gradient placeholder — replace .hero__bg with an <img> tag once you have the photo */
  background:
    radial-gradient(ellipse at 30% 50%, rgba(61,107,79,0.6) 0%, transparent 60%),
    radial-gradient(ellipse at 75% 20%, rgba(196,135,90,0.3) 0%, transparent 50%),
    linear-gradient(160deg, #1A2E1C 0%, #2B4A30 35%, #3D6B50 65%, #5A8A6A 100%);
}
/* When you add a real photo: place <img class="hero__photo" src="..."> inside .hero__bg */
.hero__photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right, rgba(15,25,16,0.75) 0%, rgba(15,25,16,0.3) 60%, transparent 100%),
    linear-gradient(to top, rgba(15,25,16,0.5) 0%, transparent 50%);
}
.hero__content {
  position: relative; z-index: 2;
  padding-top: 80px;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
}
.hero__dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); display: inline-block;
}
.hero__title {
  display: flex; flex-direction: column; gap: 4px;
  margin-bottom: 28px;
}
.hero__line {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  font-weight: 400; line-height: 0.95;
  color: var(--white);
  display: block;
}
.hero__line--accent {
  font-style: italic;
  color: var(--gold);
}
.hero__sub {
  font-size: 1.05rem; line-height: 1.75;
  color: rgba(255,255,255,0.72);
  max-width: 460px;
  margin-bottom: 40px;
}
.hero__actions {
  display: flex; gap: 14px; flex-wrap: wrap;
}

/* Hero stats panel */
.hero__stats {
  position: absolute;
  bottom: 48px; right: 48px;
  z-index: 2;
  display: flex; flex-direction: column; gap: 20px;
  align-items: flex-end;
}
.hero__stat { text-align: right; }
.hero__stat-num {
  display: block;
  font-family: var(--serif); font-size: 2.4rem; font-weight: 500;
  color: var(--white); line-height: 1;
}
.hero__stat-label {
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.hero__stat-divider {
  width: 40px; height: 1px;
  background: rgba(255,255,255,0.15);
  align-self: flex-end;
}

/* Hero scroll */
.hero__scroll {
  position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.35; transform: scaleY(0.5); }
}

/* ── Marquee ── */
.marquee {
  background: var(--dark); padding: 18px 0;
  overflow: hidden; position: relative; z-index: 5;
}
.marquee__track {
  display: flex; gap: 28px; align-items: center;
  white-space: nowrap; width: max-content;
  will-change: transform;
}
.marquee__track span {
  font-family: var(--serif); font-size: 1.15rem;
  color: rgba(255,255,255,0.65); flex-shrink: 0; font-style: italic;
}
.marquee__gem { color: var(--accent) !important; font-style: normal !important; font-size: 0.65rem !important; }

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
.about__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about__visual { position: relative; }
.about__frame {
  border-radius: 24px; overflow: hidden;
  aspect-ratio: 3/4; max-width: 420px;
  background: linear-gradient(135deg, #7A9E8A 0%, #3D6B4F 100%);
  position: relative;
}
.about__frame--placeholder {
  background: linear-gradient(160deg, #8B9E8C 0%, #4A7C59 40%, #3D6B4F 100%) !important;
}
.about__frame--placeholder::after {
  content: 'Fotoğraf\AEklenecek';
  white-space: pre;
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--serif); font-size: 1.4rem;
  color: rgba(255,255,255,0.5);
  pointer-events: none;
}
.about__img { width: 100%; height: 100%; object-fit: cover; }
.about__badge {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--accent); color: var(--white);
  padding: 18px 22px; border-radius: 14px;
  text-align: center; box-shadow: var(--shadow-lg);
}
.about__badge strong { display: block; font-family: var(--serif); font-size: 1.9rem; font-weight: 600; line-height: 1; }
.about__badge small  { font-size: 0.68rem; letter-spacing: 0.04em; opacity: 0.85; }
.about__deco-ring {
  position: absolute; top: -24px; left: -24px;
  width: 110px; height: 110px;
  border: 1.5px solid var(--sage); border-radius: 50%;
  z-index: -1;
}
.about__deco-dots {
  position: absolute; bottom: 24px; left: -32px;
  width: 80px; height: 80px;
  background-image: radial-gradient(circle, var(--sage) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  z-index: -1;
  opacity: 0.6;
}
.about__text { color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.about__certs {
  display: flex; flex-direction: column; gap: 10px;
  margin: 28px 0 36px;
  padding: 22px; background: var(--bg2); border-radius: var(--r);
}
.about__cert {
  display: flex; align-items: center; gap: 14px;
}
.about__cert-icon { font-size: 1.15rem; }
.about__cert strong { display: block; font-size: 0.88rem; font-weight: 500; line-height: 1.3; }
.about__cert span  { font-size: 0.76rem; color: var(--muted); }

/* ── Quote Section ── */
.quote-section {
  background: var(--green);
  padding: 100px 0;
}
.quote-wrap { text-align: center; max-width: 740px; margin: 0 auto; }
.quote-mark {
  font-family: var(--serif); font-size: 7rem; line-height: 0.4;
  color: rgba(255,255,255,0.12); margin-bottom: 28px; display: block;
}
.quote-wrap blockquote {
  font-family: var(--serif); font-size: clamp(1.5rem, 3.5vw, 2.3rem);
  font-weight: 400; color: var(--white); line-height: 1.45;
  font-style: normal; margin-bottom: 24px;
}
.quote-wrap blockquote em { font-style: italic; color: var(--gold); }
.quote-wrap cite {
  font-size: 0.82rem; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45); font-style: normal;
}

/* ══════════════════════════════════════
   CLASSES
══════════════════════════════════════ */
.classes { background: var(--bg); }
.classes__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.class-card {
  background: var(--white); border-radius: var(--r);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  border: 1.5px solid transparent;
}
.class-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.class-card--featured { border-color: var(--accent); }
.class-card__visual {
  position: relative; height: 175px;
  background: var(--grad);
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 14px;
}
.class-card__level {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.06em;
  background: rgba(0,0,0,0.25); backdrop-filter: blur(8px);
  color: var(--white); padding: 5px 12px; border-radius: 50px;
}
.class-card__hot {
  font-size: 0.68rem; font-weight: 600;
  background: var(--accent); color: var(--white);
  padding: 5px 12px; border-radius: 50px;
}
.class-card__body { padding: 22px 24px 26px; }
.class-card__body h3 {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 500;
  margin-bottom: 10px; color: var(--dark);
}
.class-card__body p {
  font-size: 0.88rem; color: var(--muted); line-height: 1.65; margin-bottom: 14px;
}
.class-card__tags { display: flex; gap: 8px; margin-bottom: 16px; }
.class-card__tags span {
  font-size: 0.75rem; font-weight: 500;
  color: var(--accent); background: rgba(196,135,90,0.1);
  padding: 4px 10px; border-radius: 50px;
}
.class-card__link {
  font-size: 0.84rem; font-weight: 500; color: var(--accent);
  transition: var(--t); display: inline-flex; align-items: center; gap: 4px;
}
.class-card__link:hover { opacity: 0.7; gap: 8px; }

/* ══════════════════════════════════════
   SCHEDULE
══════════════════════════════════════ */
.schedule { background: var(--bg2); }
.schedule__tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 32px;
}
.tab {
  padding: 10px 22px;
  border: 1.5px solid rgba(45,42,39,0.15);
  background: transparent; border-radius: 50px;
  font-size: 0.84rem; cursor: pointer;
  color: var(--muted); transition: var(--t);
}
.tab:hover { border-color: var(--accent); color: var(--accent); }
.tab.active { background: var(--accent); border-color: var(--accent); color: var(--white); }

.schedule__day { display: none; flex-direction: column; gap: 10px; }
.schedule__day.active { display: flex; }

.sched-item {
  display: grid;
  grid-template-columns: 145px 1fr auto auto;
  align-items: center; gap: 20px;
  background: var(--white); padding: 20px 26px;
  border-radius: var(--r); box-shadow: var(--shadow);
  transition: var(--t);
}
.sched-item:hover { transform: translateX(6px); box-shadow: var(--shadow-lg); }
.sched-item__time {
  font-family: var(--serif); font-size: 1rem; font-weight: 500; color: var(--accent);
}
.sched-item__info h4 { font-size: 0.94rem; font-weight: 500; margin-bottom: 4px; }
.sched-item__info p  { font-size: 0.8rem; color: var(--muted); }
.sched-item__badge {
  font-size: 0.7rem; font-weight: 500;
  padding: 5px 12px; border-radius: 50px;
  white-space: nowrap;
}
.sched-item__badge.beginner     { background: rgba(61,107,79,0.1);  color: #2E5A3C; }
.sched-item__badge.intermediate { background: rgba(196,135,90,0.1); color: var(--accent); }
.sched-item__badge.advanced     { background: rgba(74,85,104,0.1);  color: #4A5568; }
.sched-item__badge.all          { background: rgba(201,169,110,0.12); color: #7A6030; }
.sched-item__book {
  background: var(--accent); color: var(--white);
  padding: 9px 18px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 500;
  transition: var(--t); white-space: nowrap;
}
.sched-item__book:hover { background: var(--accent-d); transform: translateY(-1px); }

/* ══════════════════════════════════════
   PHILOSOPHY
══════════════════════════════════════ */
.philosophy { overflow: hidden; }
.philosophy__split {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 620px;
}
.philosophy__img {
  overflow: hidden;
  background: linear-gradient(135deg, #3D6B4F 0%, #7A9E8A 100%);
}
.philosophy__img--placeholder {
  background: linear-gradient(160deg, #4A7C59 0%, #7A9E8A 50%, #B5C4B1 100%) !important;
}
.philosophy__img img {
  width: 100%; height: 100%; object-fit: cover; min-height: 500px;
  transition: transform 0.7s var(--ease);
}
.philosophy__img:hover img { transform: scale(1.05); }
.philosophy__text {
  background: var(--dark); padding: 80px 64px;
  display: flex; flex-direction: column; justify-content: center;
}
.philosophy__text p { color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 16px; font-size: 0.96rem; }
.philosophy__values { display: flex; flex-direction: column; gap: 18px; margin: 28px 0 36px; }
.philo-val { display: flex; align-items: flex-start; gap: 16px; }
.philo-val__icon { font-size: 1.35rem; margin-top: 2px; flex-shrink: 0; }
.philo-val strong { display: block; font-size: 0.9rem; color: var(--white); margin-bottom: 3px; }
.philo-val p { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin: 0; }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials { background: var(--bg); }
.testimonials__wrap { overflow: hidden; }
.testimonials__track {
  display: flex; gap: 22px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.testi-card {
  min-width: calc(33.333% - 15px); flex-shrink: 0;
  background: var(--white); border-radius: var(--r);
  padding: 32px 36px; box-shadow: var(--shadow);
  border: 1.5px solid transparent;
  transition: var(--t);
}
.testi-card:hover { border-color: rgba(196,135,90,0.2); box-shadow: var(--shadow-lg); }
.testi-card__stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 18px; font-size: 0.95rem; }
.testi-card blockquote {
  font-family: var(--serif); font-size: 1.03rem; font-style: italic;
  color: var(--text); line-height: 1.75; margin-bottom: 24px;
}
.testi-card__author { display: flex; align-items: center; gap: 12px; }
.testi-card__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--accent); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 600; flex-shrink: 0;
}
.testi-card__author strong { display: block; font-size: 0.88rem; font-weight: 500; }
.testi-card__author span  { font-size: 0.76rem; color: var(--muted); }

.testimonials__nav {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 40px;
}
.testi-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(45,42,39,0.18);
  background: transparent; cursor: pointer;
  font-size: 1rem; color: var(--text);
  transition: var(--t);
}
.testi-btn:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }
.testi-dots { display: flex; gap: 6px; align-items: center; }
.testi-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(45,42,39,0.18); cursor: pointer; transition: var(--t);
}
.testi-dot.active { background: var(--accent); width: 20px; border-radius: 3px; }

/* ══════════════════════════════════════
   PRICING
══════════════════════════════════════ */
.pricing { background: var(--bg2); }
.pricing__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; align-items: start;
}
.price-card {
  background: var(--white); border-radius: var(--r);
  padding: 36px; box-shadow: var(--shadow);
  position: relative; border: 2px solid transparent;
  transition: var(--t);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card--featured {
  background: var(--dark); border-color: var(--accent);
}
.price-card__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--white);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em;
  padding: 5px 16px; border-radius: 50px; white-space: nowrap;
}
.price-card__head { margin-bottom: 28px; }
.price-card__name {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.price-card__amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.price-card__num {
  font-family: var(--serif); font-size: 2.8rem; font-weight: 500;
  color: var(--dark); line-height: 1;
}
.price-card--featured .price-card__num { color: var(--white); }
.price-card__per { font-size: 0.88rem; color: var(--muted); }
.price-card--featured .price-card__per { color: rgba(255,255,255,0.45); }
.price-card__desc { font-size: 0.84rem; color: var(--muted); line-height: 1.55; }
.price-card--featured .price-card__desc { color: rgba(255,255,255,0.5); }
.price-card__list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.price-card__list li {
  font-size: 0.86rem; color: var(--muted);
  display: flex; align-items: center; gap: 10px;
}
.price-card__list li::before { content: '✓'; color: var(--green); font-weight: 600; flex-shrink: 0; }
.price-card__list li.off::before { content: '✕'; color: rgba(0,0,0,0.2); }
.price-card__list li.off { opacity: 0.4; text-decoration: line-through; }
.price-card--featured .price-card__list li { color: rgba(255,255,255,0.65); }
.price-card--featured .price-card__list li::before { color: var(--green-l); }
.price-card--featured .btn--outline {
  border-color: rgba(255,255,255,0.25);
  color: var(--white);
}
.price-card--featured .btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact { background: var(--bg); }
.contact__grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 80px; align-items: start;
}
.contact__intro { color: var(--muted); line-height: 1.75; margin-bottom: 36px; }
.contact__items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact__item { display: flex; align-items: flex-start; gap: 16px; }
.contact__item-icon { font-size: 1.3rem; margin-top: 3px; }
.contact__item strong { display: block; font-size: 0.84rem; font-weight: 500; margin-bottom: 3px; }
.contact__item p  { font-size: 0.86rem; color: var(--muted); }
.contact__socials { display: flex; gap: 10px; }
.contact__social {
  padding: 8px 20px;
  border: 1.5px solid rgba(45,42,39,0.18); border-radius: 50px;
  font-size: 0.8rem; font-weight: 500; transition: var(--t);
}
.contact__social:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* Contact Form */
.cform { display: flex; flex-direction: column; gap: 16px; }
.cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cform__field { position: relative; }
.cform__input, .cform__textarea {
  width: 100%; padding: 22px 16px 8px;
  background: var(--bg2); border: 1.5px solid transparent;
  border-radius: var(--r-sm);
  font-size: 0.9rem; color: var(--dark);
  outline: none; transition: var(--t);
  resize: none;
}
.cform__input:focus, .cform__textarea:focus {
  border-color: var(--accent); background: var(--white);
  box-shadow: 0 0 0 4px rgba(196,135,90,0.1);
}
.cform__label {
  position: absolute; top: 14px; left: 16px;
  font-size: 0.86rem; color: var(--muted);
  transition: var(--t); pointer-events: none;
}
.cform__input:focus ~ .cform__label,
.cform__input:not(:placeholder-shown) ~ .cform__label,
.cform__textarea:focus ~ .cform__label,
.cform__textarea:not(:placeholder-shown) ~ .cform__label {
  top: 5px; font-size: 0.67rem; color: var(--accent); letter-spacing: 0.04em;
}
.cform__select {
  width: 100%; padding: 14px 16px;
  background: var(--bg2); border: 1.5px solid transparent;
  border-radius: var(--r-sm);
  font-size: 0.9rem; color: var(--dark);
  outline: none; transition: var(--t);
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7470' fill='none' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.cform__select:focus { border-color: var(--accent); background-color: var(--white); box-shadow: 0 0 0 4px rgba(196,135,90,0.1); }
.cform__success {
  display: none; text-align: center;
  padding: 16px; background: rgba(61,107,79,0.1);
  border-radius: var(--r-sm); color: var(--green);
  font-size: 0.9rem; font-weight: 500; line-height: 1.5;
}
.cform__success.show { display: block; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer { background: var(--dark); padding: 80px 0 0; color: rgba(255,255,255,0.6); }
.footer__top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.6fr;
  gap: 48px; padding-bottom: 64px;
}
.footer__logo {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 500;
  color: var(--white); margin-bottom: 14px;
}
.footer__logo em { font-style: italic; color: var(--accent); }
.footer__brand p { font-size: 0.86rem; line-height: 1.7; margin-bottom: 24px; }
.footer__socials { display: flex; gap: 8px; }
.footer__socials a {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 600; color: rgba(255,255,255,0.5);
  transition: var(--t);
}
.footer__socials a:hover { border-color: var(--accent); color: var(--accent); }
.footer__col h4, .footer__newsletter h4 {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--white); margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  font-size: 0.86rem; transition: var(--t);
  display: inline-block;
}
.footer__col a:hover { color: var(--white); transform: translateX(4px); }
.footer__newsletter p { font-size: 0.84rem; line-height: 1.65; margin-bottom: 16px; }
.footer__form {
  display: flex; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px; overflow: hidden;
  transition: border-color 0.2s;
}
.footer__form:focus-within { border-color: var(--accent); }
.footer__input {
  flex: 1; padding: 12px 18px; background: transparent;
  border: none; color: var(--white);
  font-family: var(--sans); font-size: 0.84rem; outline: none;
}
.footer__input::placeholder { color: rgba(255,255,255,0.3); }
.footer__submit {
  padding: 12px 18px; background: var(--accent); border: none;
  color: var(--white); cursor: pointer; font-size: 1rem;
  transition: background 0.2s;
}
.footer__submit:hover { background: var(--accent-d); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
}
.footer__bottom p { font-size: 0.8rem; }
.footer__links { display: flex; gap: 24px; }
.footer__links a { font-size: 0.8rem; transition: var(--t); }
.footer__links a:hover { color: var(--white); }

/* Back to top */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 500;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: var(--white);
  border: none; cursor: pointer; font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(196,135,90,0.5);
  opacity: 0; transform: translateY(16px);
  transition: var(--t); pointer-events: none;
}
.back-to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.back-to-top:hover { background: var(--accent-d); transform: translateY(-3px); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .about__grid { gap: 48px; }
  .classes__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .hero__stats { display: none; }
  .about__grid { grid-template-columns: 1fr; }
  .about__visual { max-width: 400px; margin: 0 auto; }
  .philosophy__split { grid-template-columns: 1fr; }
  .philosophy__img { height: 360px; }
  .philosophy__img img { min-height: unset; height: 100%; }
  .philosophy__text { padding: 56px 40px; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 700px) {
  .section { padding: 72px 0; }
  .classes__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .testi-card { min-width: calc(85vw); }
  .sched-item {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 10px 16px;
  }
  .sched-item__time { grid-column: 1; }
  .sched-item__info { grid-column: 2; grid-row: 1 / 3; }
  .sched-item__badge { grid-column: 1; }
  .sched-item__book { grid-column: 2; grid-row: 3; justify-self: end; font-size: 0.75rem; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero__scroll { display: none; }
  .cform__row { grid-template-columns: 1fr; }
  .cursor, .cursor-follower { display: none; }
}

@media (max-width: 480px) {
  .btn { padding: 12px 22px; font-size: 0.84rem; }
  .schedule__tabs { gap: 4px; }
  .tab { padding: 8px 14px; font-size: 0.78rem; }
  .philosophy__text { padding: 40px 24px; }
  .hero__line { font-size: clamp(2.6rem, 13vw, 4rem); }
  .testi-card { min-width: calc(92vw); }
}
