:root {
  --color-bg: #fdf8f4;
  --color-bg-alt: #f6ebe3;
  --color-bg-warm: #efe0d4;
  --color-surface: #fffcfa;
  --color-surface-glass: rgba(255, 252, 250, 0.82);
  --color-primary: #c75a4a;
  --color-primary-dark: #9e4038;
  --color-primary-light: #e07d6c;
  --color-secondary: #b8864f;
  --color-secondary-dark: #946b38;
  --color-secondary-light: #d4a574;
  --color-accent: #e8b49a;
  --color-terracotta: #d4735e;
  --color-gold: #c9953a;
  --color-gold-dark: #9a7028;
  --color-gold-light: #e8c060;
  --color-gold-pale: #f5dfa0;
  --color-text: #2c1e1a;
  --color-text-muted: #6b5248;
  --color-border: #e8d5c8;
  --color-border-soft: rgba(199, 90, 74, 0.14);
  --color-footer: #231815;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Nunito', system-ui, sans-serif;
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow: 0 10px 40px rgba(44, 30, 26, 0.08);
  --shadow-md: 0 16px 48px rgba(44, 30, 26, 0.11);
  --shadow-lg: 0 24px 64px rgba(44, 30, 26, 0.14);
  --shadow-glow: 0 0 60px rgba(199, 90, 74, 0.18);
  --shadow-warm: 0 12px 36px rgba(184, 134, 79, 0.16);
  --container: 1180px;
  --header-h: 76px;
  --hero-single-height: clamp(550px, 84vh, 792px);
  --gradient-hero: linear-gradient(148deg, #fdf8f4 0%, #f8ece4 38%, #f3e2d6 100%);
  --gradient-primary: linear-gradient(135deg, #9e4038 0%, #c75a4a 38%, #e8a090 100%);
  --gradient-gold: linear-gradient(135deg, #b8864f 0%, #e8c060 100%);
  --gradient-bronze: linear-gradient(135deg, #946b38 0%, #d4a574 100%);
  --gradient-footer-cta: linear-gradient(125deg, #7a342e 0%, #c75a4a 40%, #c9953a 100%);
  --gradient-surface: linear-gradient(165deg, #fffcfa 0%, #faf0e8 100%);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.35s var(--ease-smooth);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(ellipse 120% 80% at 100% -15%, rgba(232, 192, 96, 0.12), transparent 52%),
    radial-gradient(ellipse 90% 70% at 0% 100%, rgba(199, 90, 74, 0.08), transparent 48%),
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(232, 180, 154, 0.06), transparent 55%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e8b49a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
body.mobnav-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color .25s, transform .25s; }
a:hover { color: var(--color-primary-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 .65em;
  color: var(--color-text);
}
h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.75rem);
  letter-spacing: -0.01em;
}
h3 { font-size: 1.4rem; }
p { margin: 0 0 1em; color: var(--color-text-muted); }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.container--narrow { max-width: 780px; }
.text-center { text-align: center; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  padding: .75rem 1rem; background: var(--color-primary); color: #fff;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* Utility bar */
.utility-bar {
  background: linear-gradient(90deg, #1a1210, #2c1e1a 55%, #231815);
  color: rgba(255,255,255,.78);
  font-size: .8rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.utility-bar__inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; padding: .5rem 0; flex-wrap: wrap;
}
.utility-bar a { color: rgba(255,255,255,.82); }
.utility-bar a:hover { color: var(--color-gold-pale); }
.utility-bar i { margin-right: .35rem; color: var(--color-gold-light); opacity: .9; }
.utility-bar__right { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.utility-bar__promo {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .25rem .7rem; border-radius: 999px;
  background: rgba(184, 146, 63, 0.16);
  border: 1px solid rgba(184, 146, 63, 0.32);
  color: var(--color-gold-pale) !important;
  font-weight: 700; font-size: .76rem;
  transition: background .25s, transform .25s;
}
.utility-bar__promo:hover {
  background: rgba(184, 146, 63, 0.26);
  transform: translateY(-1px);
  color: #fff !important;
}
.utility-bar__promo--trial {
  background: rgba(199, 90, 74, 0.2);
  border-color: rgba(224, 125, 108, 0.38);
  color: #f8d4cc !important;
}
.utility-bar__promo--trial:hover {
  background: rgba(199, 90, 74, 0.32);
  color: #fff !important;
}

/* Header */
.header-shell {
  position: sticky; top: 0; z-index: 100;
  transition: box-shadow var(--transition-base);
}
.header-shell:has(.site-header.is-scrolled) {
  box-shadow: 0 8px 32px rgba(44, 30, 26, 0.08);
}
.site-header {
  background: var(--color-surface-glass);
  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
  border-bottom: 1px solid rgba(232, 213, 200, 0.65);
  transition: box-shadow .35s, background .35s;
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 252, 250, 0.94);
}
.site-header__inner {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: var(--header-h);
}
.brand {
  display: flex; align-items: center; gap: .85rem;
  color: var(--color-text); flex-shrink: 0;
}
.brand:hover { color: var(--color-text); }
.brand__mark {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--gradient-primary);
  color: #fff; display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  box-shadow: 0 6px 22px rgba(158, 64, 56, 0.35), inset 0 1px 0 rgba(255,255,255,.25);
  position: relative;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.brand:hover .brand__mark {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 10px 28px rgba(158, 64, 56, 0.42), inset 0 1px 0 rgba(255,255,255,.3);
}
.brand__mark::after {
  content: '';
  position: absolute; inset: -3px; border-radius: 17px;
  border: 1px solid rgba(232, 192, 96, 0.45);
  opacity: .85;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__text strong {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 600;
}
.brand__text small {
  font-size: .68rem; color: var(--color-text-muted);
  letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
}
.brand--footer .brand__mark { width: 40px; height: 40px; font-size: 1rem; }

.site-nav { flex: 1; display: flex; justify-content: center; }
.site-nav ul {
  display: flex; align-items: center; gap: .15rem;
  list-style: none; margin: 0; padding: 0; flex-wrap: wrap;
}
.site-nav a {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .55rem .85rem; border-radius: 999px;
  color: var(--color-text); font-size: .9rem; font-weight: 600;
  transition: all .25s;
}
.site-nav a:hover, .site-nav a.is-active {
  color: var(--color-gold-dark);
  background: linear-gradient(145deg, rgba(184, 146, 63, 0.14), rgba(184, 146, 63, 0.06));
}
.nav-chevron { font-size: .65rem; margin-left: .15rem; transition: transform .25s; }
.has-dropdown { position: relative; }
.has-dropdown:hover .nav-chevron,
.has-dropdown:focus-within .nav-chevron { transform: rotate(180deg); }
.has-dropdown:hover .dropdown-panel,
.has-dropdown:focus-within .dropdown-panel {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-panel {
  position: absolute; top: calc(100% + .5rem); left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 300px; z-index: 120;
  opacity: 0; visibility: hidden;
  transition: opacity .25s, transform .25s, visibility .25s;
}
.dropdown-panel__box {
  background: rgba(255, 252, 250, 0.97);
  border: 1px solid rgba(232, 213, 200, 0.85);
  border-radius: var(--radius);
  box-shadow: 0 20px 56px rgba(44, 30, 26, 0.14), 0 0 0 1px rgba(255,255,255,.5) inset;
  padding: 1rem; overflow: hidden;
  backdrop-filter: blur(16px);
}
.dropdown-panel__head {
  padding: .5rem .75rem 1rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: .5rem;
}
.dropdown-panel__head strong { display: block; color: var(--color-text); font-size: .95rem; }
.dropdown-panel__head span { font-size: .8rem; color: var(--color-text-muted); }
.dropdown { list-style: none; margin: 0; padding: 0; }
.dropdown a {
  display: flex; align-items: center; gap: .85rem;
  padding: .75rem; border-radius: var(--radius-sm);
  color: var(--color-text); background: transparent;
}
.dropdown a:hover, .dropdown a.is-active {
  background: rgba(176, 112, 112, 0.08); color: var(--color-primary);
}
.dropdown__icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(145deg, rgba(201,168,154,.2), rgba(199, 90, 74,.12));
  display: grid; place-items: center; color: var(--color-primary); flex-shrink: 0;
}
.dropdown__text strong {
  display: flex; align-items: center; gap: .4rem;
  font-size: .92rem; font-family: var(--font-body); font-weight: 700;
}
.dropdown__text small { display: block; font-size: .78rem; color: var(--color-text-muted); font-weight: 500; margin-top: .15rem; }
.dropdown-panel__all {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  margin-top: .75rem; padding: .7rem;
  border-top: 1px solid var(--color-border);
  font-size: .85rem; font-weight: 700; color: var(--color-primary);
}
.dropdown-panel__all:hover { color: var(--color-primary-dark); }
.nav-badge {
  font-size: .62rem; font-weight: 800; text-transform: uppercase;
  background: var(--gradient-gold); color: #3d2e14;
  padding: .18rem .45rem; border-radius: 6px; letter-spacing: .04em;
}
.site-header__actions { flex-shrink: 0; }

/* Header E-Kitap CTA */
.ekitap-cta {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .5rem .55rem .5rem .5rem;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #9e4038 0%, #c75a4a 48%, #c9953a 100%);
  border: 1px solid rgba(255,255,255,.3);
  box-shadow:
    0 4px 20px rgba(158, 64, 56, 0.38),
    inset 0 1px 0 rgba(255,255,255,.24);
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s;
}
.ekitap-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 28px rgba(176, 112, 112, 0.45),
    inset 0 1px 0 rgba(255,255,255,.25);
  color: #fff;
}
.ekitap-cta.is-active {
  box-shadow:
    0 0 0 2px rgba(255,255,255,.9),
    0 4px 16px rgba(176, 112, 112, 0.35);
}
.ekitap-cta__icon {
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  flex-shrink: 0;
  font-size: .95rem;
}
.ekitap-cta__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .05rem;
  line-height: 1.15;
  padding-right: .15rem;
}
.ekitap-cta__label {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .01em;
}
.ekitap-cta__badge {
  font-size: .55rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .15rem .35rem;
  border-radius: 4px;
  background: var(--gradient-gold);
  color: #3d2e14;
  line-height: 1.2;
}
.ekitap-cta__sub {
  font-size: .68rem;
  font-weight: 600;
  opacity: .88;
}
.ekitap-cta__arrow {
  font-size: .7rem;
  opacity: .75;
  margin-right: .35rem;
  transition: transform .25s;
}
.ekitap-cta:hover .ekitap-cta__arrow {
  transform: translateX(3px);
  opacity: 1;
}
.ekitap-cta--block {
  width: 100%;
  justify-content: flex-start;
  padding: .85rem 1rem;
}
.ekitap-cta--block .ekitap-cta__icon {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.05rem;
}
.ekitap-cta--block .ekitap-cta__label { font-size: .92rem; }
.ekitap-cta--block .ekitap-cta__sub { font-size: .75rem; }
.ekitap-cta--block .ekitap-cta__arrow { margin-left: auto; margin-right: .15rem; font-size: .8rem; }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .5rem; margin-left: auto;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--color-text); border-radius: 2px;
  transition: transform .3s;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .75rem 1.5rem; border-radius: 999px;
  font-family: var(--font-body); font-size: .92rem; font-weight: 700;
  border: 2px solid transparent; cursor: pointer;
  transition: all .3s var(--ease-out);
  text-decoration: none; line-height: 1.2;
  position: relative;
}
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,252,250,.9), 0 0 0 5px rgba(201, 149, 58, 0.45);
}
.btn-primary {
  background: var(--gradient-primary); color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 28px rgba(158, 64, 56, 0.34), inset 0 1px 0 rgba(255,255,255,.22);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(158, 64, 56, 0.44);
  color: #fff;
}
.btn-secondary {
  background: var(--gradient-bronze); color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-warm);
}
.btn-secondary:hover {
  background: linear-gradient(135deg, #7d5628, #c9953a);
  color: #fff; transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(184, 134, 79, 0.35);
}
.btn-outline {
  background: rgba(255,255,255,.6); color: var(--color-primary);
  border-color: var(--color-primary-light);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-outline-light:hover { background: rgba(255,255,255,.18); color: #fff; }
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #1fb855);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover {
  background: linear-gradient(135deg, #1fb855, #19a84a);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
}
.btn-sm { padding: .5rem 1.1rem; font-size: .84rem; }
.btn-lg { padding: .95rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }

/* Hero slider */
.hero-slider {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 20% 0%, rgba(232, 192, 96, 0.14), transparent 55%),
    radial-gradient(ellipse 70% 60% at 90% 100%, rgba(212, 115, 94, 0.1), transparent 50%),
    var(--gradient-hero);
  min-height: 620px;
}
.hero-slider.hero-slider--single,
.hero-slider--single {
  min-height: var(--hero-single-height);
  display: flex;
  flex-direction: column;
}
.hero-slider__bg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-slider__track { position: relative; min-height: 560px; }
.hero-slider--single .hero-slider__track {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
}
.hero-slider--single .hero-slide {
  position: relative; opacity: 1; visibility: visible; transform: none;
  width: 100%;
  padding: 3rem 0 1.65rem;
}
.hero-slider--single h1 {
  font-size: clamp(2.3rem, 5.3vw, 3.7rem);
}
.hero-slider--single .hero__lead {
  font-size: 1.16rem;
  max-width: 528px;
}
.hero-slider--single .hero-slide__visual {
  max-width: 440px;
  margin-inline: auto;
  width: 100%;
}
.hero-slider--single .hero-visual__portrait {
  max-height: 374px;
  aspect-ratio: 4 / 4.5;
}
.hero-slider--single .hero-slider__footer { display: none; }
.hero-slider__marquee {
  flex-shrink: 0;
  position: relative;
  z-index: 4;
  width: 100%;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transform: translateX(40px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1), visibility .7s;
  padding: 5rem 0 2.5rem;
}
.hero-slide h1 {
  text-shadow: 0 1px 0 rgba(255,255,255,.45);
  line-height: 1.12;
}
.hero-slide h1 em {
  font-style: italic;
  background: linear-gradient(120deg, var(--color-primary-dark), var(--color-primary-light), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-slide__content { animation: heroContentIn .9s cubic-bezier(.16,1,.3,1) both; }
.hero-slide.is-active .hero-slide__visual { animation: heroVisualIn 1s cubic-bezier(.16,1,.3,1) .1s both; }
@keyframes heroContentIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
@keyframes heroVisualIn {
  from { opacity: 0; transform: translateY(20px) scale(.98); }
  to { opacity: 1; transform: none; }
}
.hero-slide.is-active {
  position: relative; opacity: 1; visibility: visible;
  transform: translateX(0);
}
.hero-slide.is-leaving {
  opacity: 0; transform: translateX(-40px);
}
.hero-slide__inner {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 3.5rem; align-items: center;
}
.hero-slide--rose .hero__eyebrow { background: rgba(199, 90, 74, 0.1); border-color: rgba(199, 90, 74, 0.2); color: var(--color-primary-dark); }
.hero-slide--sage .hero__eyebrow { background: rgba(184, 134, 79, 0.12); border-color: rgba(184, 134, 79, 0.22); color: var(--color-secondary-dark); }
.hero-slide--gold .hero__eyebrow { background: rgba(201, 149, 58, 0.14); border-color: rgba(201, 149, 58, 0.28); color: var(--color-gold-dark); }
.hero-slide--sage .hero__glow--1 { background: var(--color-secondary-light); }
.hero-slide--gold .hero__glow--1 { background: var(--color-gold-light); }

.hero-session-card {
  position: relative;
  background: var(--color-surface-glass);
  backdrop-filter: blur(18px);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid rgba(255,255,255,.85);
  box-shadow: var(--shadow-lg);
  max-width: 420px; margin-left: auto;
}
.hero-session-card__glow {
  position: absolute; inset: -20px; border-radius: inherit; z-index: -1;
  background: radial-gradient(circle at 30% 20%, rgba(199, 90, 74,.2), transparent 60%);
}
.hero-session-card h3 { font-size: 1.6rem; margin: .75rem 0; }
.hero-session-card p { margin-bottom: 1.25rem; }
.hero-session-card__meta {
  list-style: none; padding: 0; margin: 0 0 1.5rem;
  display: grid; gap: .55rem;
}
.hero-session-card__meta li {
  display: flex; align-items: center; gap: .6rem;
  font-size: .9rem; color: var(--color-text-muted); font-weight: 600;
}
.hero-session-card__meta i { color: var(--color-primary); width: 1.1rem; }

.hero-slider__footer { position: relative; z-index: 5; padding-bottom: 2rem; }
.hero-slider__controls {
  display: flex; align-items: center; justify-content: center; gap: 1.25rem;
}
.hero-slider__arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--color-border-soft);
  background: rgba(255,255,255,.75);
  color: var(--color-text); cursor: pointer;
  display: grid; place-items: center;
  transition: all .25s;
  box-shadow: var(--shadow);
}
.hero-slider__arrow:hover {
  background: var(--color-primary); color: #fff; border-color: var(--color-primary);
  transform: scale(1.05);
}
.hero-slider__dots { display: flex; gap: .5rem; }
.hero-slider__dot {
  width: 10px; height: 10px; border-radius: 999px;
  border: none; padding: 0; cursor: pointer;
  background: rgba(46,34,32,.2);
  transition: width .3s, background .3s;
}
.hero-slider__dot.is-active {
  width: 28px; background: var(--gradient-primary);
}
.hero-slider__progress {
  height: 3px; background: rgba(46,34,32,.08);
  border-radius: 999px; margin-top: 1.25rem; overflow: hidden;
}
.hero-slider__progress-bar {
  display: block; height: 100%; width: 0;
  background: var(--gradient-primary);
  border-radius: inherit;
}

/* Hero (shared) */
.hero {
  position: relative; padding: 5rem 0 6rem; overflow: hidden;
  background: var(--gradient-hero);
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero__mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(232, 180, 154, 0.28), transparent),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(232, 192, 96, 0.16), transparent),
    radial-gradient(ellipse 40% 30% at 50% 50%, rgba(199, 90, 74, 0.08), transparent);
}
.hero__grain {
  position: absolute; inset: 0; opacity: .4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}
.hero__glow {
  position: absolute; border-radius: 50%; filter: blur(90px);
}
.hero__glow--1 {
  width: 480px; height: 480px;
  background: var(--color-accent); top: -120px; right: -80px; opacity: .4;
}
.hero__glow--2 {
  width: 360px; height: 360px;
  background: var(--color-gold-light); bottom: -100px; left: -80px; opacity: .28;
}
.hero__orb {
  position: absolute; border-radius: 50%;
  border: 1px solid var(--color-border-soft);
  background: rgba(255,255,255,.35);
  backdrop-filter: blur(4px);
}
.hero__orb--1 { width: 80px; height: 80px; top: 18%; right: 12%; }
.hero__orb--2 { width: 48px; height: 48px; bottom: 22%; left: 8%; }

.hero__inner {
  position: relative; display: grid;
  grid-template-columns: 1.05fr .95fr; gap: 3.5rem; align-items: center;
}
.hero__content { position: relative; z-index: 2; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 700; color: var(--color-primary-dark);
  text-transform: uppercase; letter-spacing: .14em; margin-bottom: 1.25rem;
  padding: .45rem 1rem; border-radius: 999px;
  background: linear-gradient(145deg, rgba(199, 90, 74, 0.1), rgba(232, 192, 96, 0.08));
  border: 1px solid rgba(199, 90, 74, 0.18);
}
.hero__eyebrow i { color: var(--color-gold-dark); }
.hero h1 em {
  font-style: italic;
  color: var(--color-primary);
}
.hero__lead { font-size: 1.12rem; max-width: 520px; line-height: 1.75; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin: 2rem 0; }
.hero__trust {
  display: flex; gap: .75rem; flex-wrap: wrap;
}
.hero__trust-item {
  font-size: .84rem; color: var(--color-text-muted);
  display: flex; align-items: center; gap: .45rem;
  padding: .5rem .9rem; border-radius: 999px;
  background: rgba(255,255,255,.55);
  border: 1px solid var(--color-border-soft);
}
.hero__trust-item i { color: var(--color-primary); font-size: .9rem; }

/* Hero visual stack */
.hero__visual { position: relative; z-index: 2; }
.hero-visual {
  position: relative;
  padding: 1.5rem 1rem 0;
}
.hero-visual__ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(201, 168, 154, 0.35);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 0;
}
.hero-visual__ring--1 { width: 110%; height: 110%; }
.hero-visual__ring--2 {
  width: 125%; height: 125%;
  border-style: dashed; opacity: .5;
}
.hero-visual__portrait {
  position: relative; z-index: 1;
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border: 3px solid rgba(255,255,255,.8);
}
.hero-visual__portrait-bg {
  width: 100%; height: 100%;
  background:
    linear-gradient(160deg, rgba(255,255,255,.1) 0%, transparent 50%),
    linear-gradient(145deg, #e07d6c 0%, #e8b49a 32%, #c75a4a 68%, #9e4038 100%);
  display: grid; place-items: center;
}
.hero-visual__portrait-bg span {
  font-family: var(--font-display); font-size: 6rem;
  color: rgba(255,255,255,.25); font-weight: 700;
}
.hero-visual__float {
  position: absolute; z-index: 10;
  background: rgba(255, 252, 250, 0.92);
  border-radius: var(--radius-sm);
  padding: .65rem 1rem;
  box-shadow: 0 8px 24px rgba(44, 30, 26, 0.1);
  border: 1px solid rgba(232, 213, 200, 0.8);
  font-size: .8rem; font-weight: 700; color: var(--color-text);
  display: flex; align-items: center; gap: .5rem;
  white-space: nowrap;
  backdrop-filter: blur(10px);
}
.hero-visual__float i { color: var(--color-gold); }
.hero-visual__float--1 { top: 5%; right: 0; }
.hero-visual__float--2 { top: 5%; left: 0; }

.hero-card {
  position: relative; z-index: 5;
  margin-top: -2.5rem; margin-left: .75rem; margin-right: .75rem;
  background: rgba(255, 252, 250, 0.78);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.65) inset;
  border: 1px solid rgba(232, 213, 200, 0.75);
}
.hero-card::before {
  content: '';
  position: absolute; top: 0; left: 1.25rem; right: 1.25rem; height: 3px;
  border-radius: 0 0 6px 6px;
  background: var(--gradient-gold);
  opacity: .85;
}
.hero-card__badge {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
  color: #fff; margin-bottom: .85rem;
  padding: .3rem .7rem; border-radius: 6px;
  background: var(--gradient-primary);
}
.hero-card h3 { font-size: 1.45rem; margin-bottom: .85rem; }
.hero-card__date, .hero-card__time {
  font-size: .9rem; color: var(--color-text-muted); margin-bottom: .35rem;
  display: flex; align-items: center; gap: .5rem;
}
.hero-card__date i, .hero-card__time i { color: var(--color-primary); width: 1rem; }
.hero-card .btn { margin-top: 1.1rem; }

/* Trust marquee strip */
.trust-strip {
  background: var(--color-footer);
  padding: .85rem 0;
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,.06);
}
.trust-marquee { overflow: hidden; }
.trust-marquee__track {
  display: flex; width: max-content; gap: 3rem;
}
.trust-marquee__item {
  display: flex; align-items: center; gap: .6rem;
  color: rgba(255,255,255,.75); font-size: .88rem; font-weight: 600;
  white-space: nowrap; padding: 0 1.5rem;
}
.trust-marquee__item i { color: var(--color-gold); font-size: 1rem; }
.trust-strip--hero {
  background: rgba(255, 252, 250, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-block: 1px solid rgba(232, 213, 200, 0.55);
  padding: .75rem 0;
}
.trust-strip--hero .trust-marquee__item {
  color: var(--color-text-muted);
}
.trust-strip--hero .trust-marquee__item i {
  color: var(--color-gold-dark);
}

/* Philosophy band */
.philosophy-band {
  padding: 4.5rem 0;
  background:
    linear-gradient(135deg, rgba(199, 90, 74, 0.06), rgba(232, 192, 96, 0.1)),
    var(--color-bg);
  border-block: 1px solid var(--color-border-soft);
  text-align: center;
}
.philosophy-band__inner { max-width: 820px; margin: 0 auto; }
.philosophy-band__quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--color-text);
  margin: 0 0 1rem;
}
.philosophy-band__quote em { color: var(--color-primary); font-style: italic; }
.philosophy-band__sub {
  font-size: .95rem; color: var(--color-text-muted);
  letter-spacing: .06em; text-transform: uppercase; font-weight: 600;
}

/* Sections */
.section { padding: 5.5rem 0; position: relative; }
.section--alt {
  background:
    linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg-warm) 100%);
}
.section--benefits::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}
.section-head { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.section-head--split {
  display: flex; justify-content: space-between; align-items: flex-end;
  text-align: left; max-width: none; gap: 2rem;
}
.section-head--split > div { max-width: 580px; }
.section-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--color-gold-dark); margin-bottom: .85rem;
  padding: .35rem .85rem; border-radius: 999px;
  background: linear-gradient(145deg, rgba(184, 146, 63, 0.18), rgba(184, 146, 63, 0.06));
  border: 1px solid rgba(184, 146, 63, 0.28);
}
.section-badge i { color: var(--color-gold); }
.section-badge--light { color: rgba(255,255,255,.95); background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.22); }
.section-head h2::after {
  content: '';
  display: block; width: 72px; height: 4px; margin: 1.1rem auto 0;
  background: linear-gradient(90deg, var(--color-primary-dark), var(--color-gold-light));
  border-radius: 999px;
  box-shadow: 0 2px 12px rgba(201, 149, 58, 0.25);
}
.section-head--split h2::after { margin-left: 0; }
.section-head p { font-size: 1.05rem; }
.section-badge--trial { background: var(--gradient-bronze); color: #fff; border: none; }

/* Grid & Cards */
.grid { display: grid; gap: 1.75rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.card {
  position: relative;
  background: var(--gradient-surface);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(232, 213, 200, 0.75);
  box-shadow: var(--shadow);
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s, border-color .35s;
  overflow: hidden;
}
.card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-primary);
  opacity: 0; transition: opacity .35s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--shadow-warm);
  border-color: rgba(199, 90, 74, 0.2);
}
.card:hover::after { opacity: 1; }
.card--benefit .card__icon {
  width: 58px; height: 58px; border-radius: 16px;
  background: linear-gradient(145deg, rgba(232, 192, 96, 0.2), rgba(199, 90, 74, 0.1));
  display: grid; place-items: center; margin-bottom: 1.25rem;
  color: var(--color-primary-dark); font-size: 1.35rem;
  border: 1px solid rgba(201, 149, 58, 0.22);
  transition: transform .35s;
}
.card--benefit:hover .card__icon { transform: scale(1.08) rotate(-3deg); }
.card h3 { color: var(--color-text); margin-bottom: .6rem; }

/* Sessions */
.session-list { display: grid; gap: 1.5rem; }
.session-list--full { grid-template-columns: repeat(2, 1fr); }
.session-card {
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 1.75rem 1.75rem 1.75rem 2rem;
  border: 1px solid var(--color-border-soft);
  box-shadow: var(--shadow);
  transition: transform .35s, box-shadow .35s;
  overflow: hidden;
}
.session-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--gradient-primary);
  border-radius: 4px 0 0 4px;
}
.session-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.session-card__meta {
  display: flex; align-items: center; gap: .75rem; margin-bottom: .85rem; flex-wrap: wrap;
}
.badge {
  font-size: .7rem; font-weight: 800; text-transform: uppercase;
  padding: .3rem .65rem; border-radius: 8px; letter-spacing: .05em;
}
.badge--group { background: rgba(199, 90, 74,.12); color: var(--color-primary); }
.badge--trial { background: rgba(201, 149, 58, 0.16); color: var(--color-gold-dark); }
.session-card__duration, .session-card__spots { font-size: .82rem; color: var(--color-text-muted); }
.session-card h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.session-card__footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 1.35rem; padding-top: 1.15rem;
  border-top: 1px dashed var(--color-border);
  gap: 1rem; flex-wrap: wrap;
}
.session-card__footer strong { display: block; color: var(--color-text); font-size: .95rem; }
.session-card__footer span { font-size: .85rem; color: var(--color-text-muted); }

/* About preview */
.about-preview {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: 4.5rem; align-items: center;
}
.about-preview__visual { position: relative; }
.about-preview__frame {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  position: relative;
}
.about-preview__frame::before {
  content: '';
  position: absolute; inset: -12px;
  border: 2px solid var(--color-accent);
  border-radius: calc(var(--radius-lg) + 8px);
  opacity: .4; z-index: -1;
}
.about-preview__frame--large { aspect-ratio: 3/4; }
.about-preview__placeholder {
  width: 100%; height: 100%;
  background:
    linear-gradient(160deg, rgba(255,255,255,.15), transparent),
    linear-gradient(145deg, #d4a0a0, #b07070 60%, #8f5555);
  display: grid; place-items: center;
}
.about-preview__placeholder span {
  font-family: var(--font-display); font-size: 5.5rem;
  color: rgba(255,255,255,.28); font-weight: 700;
}
.about-preview__deco {
  position: absolute; bottom: -1rem; right: -1rem;
  width: 100px; height: 100px; border-radius: 50%;
  background: var(--color-gold-light);
  opacity: .5; filter: blur(2px); z-index: -1;
}
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 2rem 0;
}
.stats-row--large .stat strong { font-size: 2.2rem; }
.stat {
  text-align: center; padding: 1.25rem .75rem;
  background: var(--gradient-surface);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(232, 213, 200, 0.75);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.stat:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-warm);
}
.stat strong {
  display: block; font-family: var(--font-display);
  font-size: 1.9rem; font-weight: 700;
}
.stat span { font-size: .78rem; color: var(--color-text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.about-preview__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Steps */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute; top: 2.5rem; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
  z-index: 0;
}
.step {
  text-align: center; position: relative; z-index: 1;
  padding: 1.5rem 1rem;
  background: var(--gradient-surface);
  border-radius: var(--radius);
  border: 1px solid rgba(232, 213, 200, 0.75);
  box-shadow: var(--shadow);
  transition: transform .35s var(--ease-out), box-shadow .35s, border-color .35s;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), var(--shadow-warm);
  border-color: rgba(201, 149, 58, 0.28);
}
.step__num {
  display: inline-grid; place-items: center;
  width: 3rem; height: 3rem; border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  color: #fff; margin-bottom: .85rem;
  background: var(--gradient-primary);
  box-shadow: 0 6px 16px rgba(199, 90, 74,.3);
}
.steps--vertical { grid-template-columns: 1fr; max-width: 680px; }
.steps--vertical::before { display: none; }
.step--vertical {
  display: flex; gap: 1.5rem; text-align: left; align-items: flex-start;
  padding: 1.5rem; border-bottom: 1px solid var(--color-border);
  background: transparent; box-shadow: none; border-radius: 0;
}
.step--vertical:hover { transform: none; background: rgba(255,255,255,.5); border-radius: var(--radius-sm); }
.step--vertical:last-child { border-bottom: none; }
.step--vertical .step__num { flex-shrink: 0; margin-bottom: 0; }

/* Testimonials */
.testimonial {
  position: relative;
  background: var(--gradient-surface);
  border-radius: var(--radius);
  padding: 2rem 1.75rem 1.75rem;
  border: 1px solid rgba(232, 213, 200, 0.8);
  box-shadow: var(--shadow);
  margin: 0;
  transition: transform .35s var(--ease-out), box-shadow .35s, border-color .35s;
  overflow: hidden;
}
.testimonial::before {
  content: '\201C';
  position: absolute; top: .5rem; left: 1.25rem;
  font-family: var(--font-display); font-size: 4rem;
  line-height: 1; color: var(--color-gold-light); opacity: .4;
}
.testimonial::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity .35s;
}
.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md), var(--shadow-warm);
  border-color: rgba(201, 149, 58, 0.25);
}
.testimonial:hover::after { opacity: 1; }
.testimonial p { font-style: italic; font-size: .98rem; padding-top: 1.5rem; }
.testimonial footer {
  margin-top: 1.25rem; padding-top: 1rem;
  border-top: 1px dashed var(--color-border);
  display: flex; align-items: center; gap: .75rem;
}
.testimonial footer::before {
  content: '';
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gradient-primary);
  flex-shrink: 0;
}
.testimonial footer strong { display: block; color: var(--color-text); font-size: .92rem; }
.testimonial footer span { font-size: .8rem; color: var(--color-text-muted); }

/* FAQ */
.faq-list { display: grid; gap: .85rem; }
.faq-item {
  background: var(--gradient-surface);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(232, 213, 200, 0.8);
  overflow: hidden;
  transition: box-shadow .3s, border-color .3s;
}
.faq-item[open] {
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 149, 58, 0.28);
  border-left: 3px solid var(--color-gold);
}
.faq-item summary {
  padding: 1.15rem 1.35rem; cursor: pointer; font-weight: 700;
  color: var(--color-text); list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  transition: background .25s;
}
.faq-item summary:hover { background: rgba(199, 90, 74,.04); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.3rem; font-weight: 400;
  color: var(--color-primary); width: 1.5rem; text-align: center;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 1.35rem 1.15rem; margin: 0; font-size: .93rem; }

/* Instagram CTA */
.instagram-cta {
  display: flex; align-items: center; gap: 2.5rem;
  background: linear-gradient(125deg, #5b3a7a, #c13584 40%, #e6683c 75%, #f09433);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem; color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.instagram-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.instagram-cta > * { position: relative; z-index: 1; }
.instagram-cta__icon {
  font-size: 3.5rem; flex-shrink: 0;
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: grid; place-items: center;
  backdrop-filter: blur(8px);
}
.instagram-cta h2 { color: #fff; }
.instagram-cta p { color: rgba(255,255,255,.88); margin: 0; }
.instagram-cta .btn-primary {
  background: #fff; color: #c13584; border-color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.2); flex-shrink: 0;
}
.instagram-cta .btn-primary:hover { background: rgba(255,255,255,.95); color: #833ab4; }

/* Social CTA grid */
.social-cta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.youtube-cta {
  display: flex; align-items: center; gap: 2rem;
  background: linear-gradient(125deg, #1a1a1a 0%, #8b0000 45%, #ff0000 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem; color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.youtube-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.youtube-cta > * { position: relative; z-index: 1; }
.youtube-cta__icon {
  font-size: 3rem; flex-shrink: 0;
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: grid; place-items: center;
  backdrop-filter: blur(8px);
}
.youtube-cta h2 { color: #fff; font-size: clamp(1.35rem, 2.5vw, 1.75rem); }
.youtube-cta p { color: rgba(255,255,255,.88); margin: 0; font-size: .93rem; }
.youtube-cta .btn-primary {
  background: #fff; color: #cc0000; border-color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.2); flex-shrink: 0;
}
.youtube-cta .btn-primary:hover { background: rgba(255,255,255,.95); color: #8b0000; }

/* Page hero enhanced */
.page-hero {
  padding: 4.5rem 0 3.5rem; text-align: center;
  background: var(--gradient-hero);
  position: relative; overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.page-hero__blob {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: .45;
}
.page-hero__blob--1 {
  width: 320px; height: 320px; top: -80px; right: 10%;
  background: var(--color-accent);
}
.page-hero__blob--2 {
  width: 260px; height: 260px; bottom: -60px; left: 5%;
  background: var(--color-secondary);
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__breadcrumb {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 600; color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  padding: .35rem .85rem; border-radius: 999px;
  background: rgba(255,255,255,.5);
  border: 1px solid var(--color-border-soft);
}
.page-hero__breadcrumb a { color: var(--color-text-muted); }
.page-hero__breadcrumb a:hover { color: var(--color-primary); }
.page-hero__sep { opacity: .4; }
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(201,168,154,.2), transparent);
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero--compact { padding: 3rem 0 2rem; }
.page-hero--trial {
  background: linear-gradient(180deg, rgba(184, 134, 79,.14), var(--color-bg));
}
.page-hero--trial .page-hero__blob--1 { background: var(--color-gold-light); }
.page-hero__lead { max-width: 580px; margin: 0 auto; font-size: 1.08rem; }
.page-hero h1 em { font-style: italic; color: var(--color-primary); }

/* Path cards */
.section--paths { padding: 3.5rem 0 4rem; }
.path-cards {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
.path-card {
  display: grid; grid-template-columns: auto 1fr auto; gap: 1.25rem;
  align-items: center;
  padding: 1.75rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-soft);
  background: var(--color-surface);
  box-shadow: var(--shadow);
  color: var(--color-text);
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s, border-color .35s;
  position: relative; overflow: hidden;
}
.path-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.6), transparent 55%);
  pointer-events: none;
}
.path-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  color: var(--color-text);
  border-color: rgba(199, 90, 74,.25);
}
.path-card--trial { background: linear-gradient(145deg, #fffcfa, rgba(232, 192, 96, 0.08)); }
.path-card--group { background: linear-gradient(145deg, #fffcfa, rgba(199, 90, 74, 0.06)); }
.path-card__icon {
  width: 58px; height: 58px; border-radius: 16px;
  display: grid; place-items: center; font-size: 1.35rem;
  background: var(--gradient-primary); color: #fff;
  box-shadow: 0 8px 20px rgba(199, 90, 74,.25);
  position: relative; z-index: 1;
}
.path-card--group .path-card__icon {
  background: var(--gradient-primary);
  box-shadow: 0 8px 20px rgba(199, 90, 74, 0.28);
}
.path-card--trial .path-card__icon {
  background: var(--gradient-bronze);
  box-shadow: 0 8px 20px rgba(184, 134, 79, 0.28);
}
.path-card h3 { margin: .35rem 0 .4rem; font-size: 1.45rem; position: relative; z-index: 1; }
.path-card p { margin: 0; font-size: .92rem; position: relative; z-index: 1; }
.path-card__badge {
  display: inline-block; font-size: .68rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em;
  padding: .2rem .55rem; border-radius: 6px;
  background: var(--color-secondary); color: #fff;
}
.path-card__badge--muted { background: rgba(199, 90, 74,.12); color: var(--color-primary); }
.path-card__arrow {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(199, 90, 74,.1); color: var(--color-primary);
  transition: background .25s, transform .25s;
  position: relative; z-index: 1;
}
.path-card:hover .path-card__arrow {
  background: var(--color-primary); color: #fff;
  transform: translateX(4px);
}

/* Hero slider counter */
.hero-slider__footer {
  display: grid; gap: 1rem;
}
.hero-slider__meta {
  display: flex; justify-content: flex-end;
}
.hero-slider__counter {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  color: var(--color-text-muted); letter-spacing: .08em;
}

/* Testimonial stars */
.testimonial__stars {
  display: flex; gap: .2rem; margin-bottom: .75rem;
  color: var(--color-gold); font-size: .82rem;
  position: relative; z-index: 1;
}

/* Philosophy band polish */
.philosophy-band {
  position: relative;
}
.philosophy-band::before,
.philosophy-band::after {
  content: '';
  position: absolute; left: 50%; transform: translateX(-50%);
  width: 1px; height: 28px; background: var(--color-border);
}
.philosophy-band::before { top: 0; }
.philosophy-band::after { bottom: 0; }

/* Global polish */
::selection {
  background: rgba(201, 149, 58, 0.28);
  color: var(--color-text);
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,252,250,.95), 0 0 0 5px rgba(201, 149, 58, 0.4);
  border-radius: 8px;
}
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--color-bg-alt); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--color-gold-light), var(--color-primary-light));
  border-radius: 999px; border: 2px solid var(--color-bg-alt);
}
.check-list i {
  color: #fff; background: var(--gradient-bronze);
  width: 1.35rem; height: 1.35rem; border-radius: 50%;
  display: grid; place-items: center; font-size: .65rem;
  margin-top: .2rem; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(184, 134, 79, 0.3);
}

/* Form card glow on focus within */
.trial-form-wrap:focus-within,
.contact-form-wrap:focus-within {
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(199, 90, 74,.12);
}

/* Footer brand accent */
.site-footer__brand p {
  border-left: 3px solid var(--color-primary);
  padding-left: 1rem;
  margin-top: 1rem;
}


/* Content */
.content-block h2 { margin-bottom: 1rem; }
.check-list { list-style: none; padding: 0; margin: 1rem 0; }
.check-list li {
  display: flex; align-items: flex-start; gap: .7rem;
  padding: .55rem 0; color: var(--color-text-muted);
}
.note {
  font-size: .9rem; padding: 1rem 1.25rem;
  background: linear-gradient(135deg, rgba(201,168,154,.12), rgba(196,165,116,.08));
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--color-gold);
}

/* Lesson types */
.lesson-types { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
.lesson-type-card {
  display: block; padding: 2.25rem; border-radius: var(--radius);
  background: var(--color-surface); border: 1px solid var(--color-border-soft);
  color: var(--color-text); transition: all .35s cubic-bezier(.16,1,.3,1);
  position: relative; box-shadow: var(--shadow);
}
.lesson-type-card:hover {
  box-shadow: var(--shadow-lg); transform: translateY(-5px); color: var(--color-text);
}
.lesson-type-card--highlight {
  border-color: var(--color-secondary);
  background: linear-gradient(145deg, rgba(184, 134, 79,.08), rgba(255,255,255,.9));
}
.lesson-type-card__badge {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: var(--color-secondary); color: #fff;
  font-size: .68rem; font-weight: 800; padding: .25rem .6rem; border-radius: 6px;
  letter-spacing: .04em;
}
.lesson-type-card i {
  font-size: 2.25rem; color: var(--color-primary); margin-bottom: 1.15rem;
  width: 60px; height: 60px; border-radius: 16px;
  background: rgba(199, 90, 74,.1);
  display: grid; place-items: center;
}
.link-arrow {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: 1.25rem; font-weight: 700; color: var(--color-primary); font-size: .9rem;
}

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; align-items: stretch; }
.pricing-card {
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  border: 1px solid var(--color-border-soft);
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .35s, box-shadow .35s;
  display: flex; flex-direction: column;
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.pricing-card--highlight {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transform: scale(1.04);
  background: linear-gradient(180deg, #fff 0%, rgba(255,248,245,1) 100%);
}
.pricing-card--highlight:hover { transform: scale(1.04) translateY(-5px); }
.pricing-card__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gradient-primary); color: #fff;
  font-size: .7rem; font-weight: 800; padding: .35rem 1rem; border-radius: 999px;
  letter-spacing: .05em; text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(199, 90, 74,.35);
}
.pricing-card__price { margin: 1.25rem 0 1.75rem; }
.pricing-card__price strong {
  font-family: var(--font-display); font-size: 2.5rem;
  color: var(--color-primary); display: block; line-height: 1;
}
.pricing-card__price span { font-size: .85rem; color: var(--color-text-muted); margin-top: .35rem; display: block; }
.pricing-card ul { list-style: none; padding: 0; margin: 0 0 1.75rem; text-align: left; flex: 1; }
.pricing-card li {
  padding: .5rem 0; font-size: .9rem; color: var(--color-text-muted);
  display: flex; gap: .55rem; align-items: flex-start;
  border-bottom: 1px dashed var(--color-border);
}
.pricing-card li:last-child { border-bottom: none; }
.pricing-card li i { color: var(--color-secondary); margin-top: .25rem; }

/* Forms */
.form { display: grid; gap: 1.35rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.35rem; }
.form-group label { display: block; font-size: .86rem; font-weight: 700; margin-bottom: .45rem; color: var(--color-text); }
.required { color: var(--color-primary); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: .85rem 1.1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .95rem;
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(199, 90, 74,.12);
  background: #fff;
}
.form-group--checkbox label {
  display: flex; align-items: flex-start; gap: .55rem;
  font-weight: 500; font-size: .88rem; cursor: pointer;
}
.form-group--checkbox input { width: auto; margin-top: .25rem; accent-color: var(--color-primary); }

.alert {
  padding: 1rem 1.25rem; border-radius: var(--radius-sm);
  font-size: .92rem; margin-bottom: 1rem; font-weight: 600;
}
.alert--success { background: rgba(201, 149, 58, 0.12); color: #7d5628; border: 1px solid rgba(201, 149, 58, 0.28); }
.alert--error { background: rgba(199, 90, 74,.1); color: #8f4545; border: 1px solid rgba(199, 90, 74,.25); }

/* Trial / Contact layout */
.trial-layout, .contact-layout, .about-page {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start;
}
.trial-form-wrap, .contact-form-wrap {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 2.25rem;
  border: 1px solid var(--color-border-soft);
  box-shadow: var(--shadow-md);
}
.trial-info h2, .contact-info h2 { margin-bottom: 1rem; }
.mini-sessions { display: grid; gap: .85rem; margin-top: 1.25rem; }
.mini-session {
  padding: 1rem 1.15rem;
  background: linear-gradient(135deg, var(--color-bg-alt), var(--color-bg));
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border-soft);
  transition: border-color .25s;
}
.mini-session:hover { border-color: var(--color-primary-light); }
.mini-session strong { display: block; color: var(--color-text); font-size: .93rem; }
.mini-session span { font-size: .82rem; color: var(--color-text-muted); }
.mini-session--highlight {
  border: 1px solid rgba(184, 134, 79,.3);
  background: linear-gradient(135deg, rgba(184, 134, 79,.08), rgba(255,255,255,.8));
}

/* WhatsApp CTA box */
.whatsapp-cta-box {
  text-align: center;
  padding: .5rem 0;
}
.whatsapp-cta-box__icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  font-size: 2rem; margin: 0 auto 1.25rem;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35);
}
.whatsapp-cta-box h2 { margin-bottom: .75rem; }
.whatsapp-cta-box p { margin-bottom: 1.25rem; }
.whatsapp-cta-box .mini-session { text-align: left; margin-bottom: 1.5rem; }
.pricing-card .btn-whatsapp.btn-outline {
  background: transparent; color: #25d366; border-color: #25d366;
}
.pricing-card .btn-whatsapp.btn-outline:hover {
  background: #25d366; color: #fff;
}


/* Contact */
.contact-list { list-style: none; padding: 0; margin: 0 0 1.75rem; }
.contact-list li {
  display: flex; gap: 1.15rem; padding: 1.15rem 0;
  border-bottom: 1px solid var(--color-border);
}
.contact-list i {
  font-size: 1.15rem; color: #fff;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--gradient-primary);
  display: grid; place-items: center; flex-shrink: 0;
}
.contact-list strong { display: block; color: var(--color-text); font-size: .86rem; text-transform: uppercase; letter-spacing: .04em; }
.contact-quick { margin-top: 2rem; display: grid; gap: .85rem; }

/* Legal */
.legal-content h2 { font-size: 1.35rem; margin-top: 2.25rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content ul { padding-left: 1.25rem; color: var(--color-text-muted); }

/* Footer */
.site-footer { background: var(--color-footer); color: rgba(255,255,255,.72); }
.site-footer__cta {
  background: var(--gradient-footer-cta);
  padding: 4rem 0;
  position: relative; overflow: hidden;
}
.site-footer__cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 85% 50%, rgba(219, 185, 74, 0.14), transparent),
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(255,255,255,.08), transparent);
}
.site-footer__cta-inner {
  position: relative; z-index: 1;
  display: flex; justify-content: space-between; align-items: center; gap: 2.5rem;
}
.site-footer__cta h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.site-footer__cta p { color: rgba(255,255,255,.88); margin: 0; max-width: 480px; }
.site-footer__cta-actions { display: flex; gap: 1rem; flex-shrink: 0; flex-wrap: wrap; }
.site-footer__grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem; padding: 4rem 0;
}
.site-footer h4 {
  color: #fff; font-family: var(--font-body);
  font-size: .88rem; margin-bottom: 1.15rem;
  text-transform: uppercase; letter-spacing: .08em;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .55rem; }
.site-footer a { color: rgba(255,255,255,.65); font-size: .9rem; }
.site-footer a:hover { color: var(--color-gold-light); }
.site-footer__social { display: flex; gap: .75rem; margin-top: 1.25rem; }
.site-footer__social a {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255,255,255,.08);
  display: grid; place-items: center;
  font-size: 1.15rem; color: #fff;
  border: 1px solid rgba(255,255,255,.1);
  transition: all .3s;
}
.site-footer__social a:hover {
  background: var(--color-gold-dark); border-color: var(--color-gold-light);
  transform: translateY(-2px);
}
.site-footer__contact-list span { font-size: .9rem; }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 1.35rem 0;
}
.site-footer__bottom-inner {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .82rem;
}

/* Floating CTA */
.floating-cta {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 90;
  display: flex; flex-direction: column; gap: .6rem;
}
.floating-cta__btn {
  display: flex; align-items: center; gap: .55rem;
  padding: .7rem 1.15rem; border-radius: 999px;
  background: var(--color-surface); color: var(--color-text);
  box-shadow: var(--shadow-lg); font-size: .85rem; font-weight: 700;
  border: 1px solid var(--color-border-soft);
  transition: transform .3s, box-shadow .3s;
}
.floating-cta__btn:hover { transform: translateY(-3px) scale(1.02); color: var(--color-text); box-shadow: var(--shadow-lg); }
.floating-cta__btn--primary {
  background: var(--gradient-primary); color: #fff; border-color: transparent;
  box-shadow: 0 10px 28px rgba(199, 90, 74,.4);
}
.floating-cta__btn--primary:hover { color: #fff; }
.floating-cta__btn--whatsapp {
  background: linear-gradient(135deg, #25d366, #1fb855);
  color: #fff; border-color: transparent;
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.4);
  animation: ctaPulse 2.8s ease-in-out infinite;
}
.floating-cta__btn--whatsapp:hover { color: #fff; animation: none; }

/* Homepage spotlight */
.section--spotlight {
  padding: 5rem 0 5.5rem;
  background:
    linear-gradient(180deg, var(--color-bg) 0%, rgba(240,230,220,.55) 100%);
  position: relative;
}
.section--spotlight::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(184, 134, 79,.08), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(199, 90, 74,.08), transparent 40%);
  pointer-events: none;
}
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  position: relative;
  z-index: 1;
}
.spotlight-card {
  position: relative;
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  background: var(--gradient-surface);
  border: 1px solid rgba(232, 213, 200, 0.8);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform .4s var(--ease-out), box-shadow .4s, border-color .4s;
}
.spotlight-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-gold-light));
  opacity: .75;
}
.spotlight-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--shadow-warm);
  border-color: rgba(201, 149, 58, 0.22);
}
.spotlight-card__glow {
  position: absolute; inset: -30% -20% auto auto;
  width: 220px; height: 220px; border-radius: 50%;
  filter: blur(50px); opacity: .45; pointer-events: none;
}
.spotlight-card--deneme .spotlight-card__glow { background: var(--color-gold-light); }
.spotlight-card--grup .spotlight-card__glow { background: var(--color-primary); }
.spotlight-card--deneme {
  background: linear-gradient(155deg, #fffcfa 0%, rgba(232, 192, 96, 0.1) 100%);
  border-color: rgba(201, 149, 58, 0.22);
}
.spotlight-card--grup {
  background: linear-gradient(155deg, #fffcfa 0%, rgba(199, 90, 74, 0.07) 100%);
  border-color: rgba(199, 90, 74,.18);
}
.spotlight-card__top {
  display: flex; align-items: center; justify-content: space-between;
  gap: .75rem; margin-bottom: 1.5rem; flex-wrap: wrap;
}
.spotlight-card__mode {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .75rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .08em; color: var(--color-text-muted);
  padding: .3rem .65rem; border-radius: 999px;
  background: rgba(46,34,32,.04);
  border: 1px solid var(--color-border-soft);
}
.spotlight-card__mode i { color: var(--color-primary); }
.spotlight-card__date {
  display: flex; align-items: baseline; gap: .65rem;
  margin-bottom: 1rem;
}
.spotlight-card__day {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.2rem);
  font-weight: 700; line-height: 1;
  color: var(--color-primary);
}
.spotlight-card--deneme .spotlight-card__day { color: var(--color-gold-dark); }
.spotlight-card__month {
  font-size: .95rem; font-weight: 800;
  letter-spacing: .14em; color: var(--color-text-muted);
}
.spotlight-card h3 {
  font-size: 1.55rem; margin-bottom: .65rem;
  position: relative; z-index: 1;
}
.spotlight-card p {
  margin-bottom: 1.15rem; position: relative; z-index: 1;
}
.spotlight-card__meta {
  list-style: none; padding: 0; margin: 0 0 1.5rem;
  display: grid; gap: .5rem; position: relative; z-index: 1;
}
.spotlight-card__meta li {
  display: flex; align-items: center; gap: .55rem;
  font-size: .9rem; font-weight: 600; color: var(--color-text-muted);
}
.spotlight-card__meta i { color: var(--color-primary); width: 1rem; }

/* Homepage session grid */
.session-list--home {
  grid-template-columns: repeat(2, 1fr);
}
.session-card--featured {
  padding: 2rem 2rem 2rem 2.25rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #fff, rgba(250,246,242,.85));
  border: 1px solid rgba(201,168,154,.2);
}
.session-card--featured::before {
  width: 5px;
}
.session-card--featured:hover {
  transform: translateY(-4px);
}

/* Homepage CTA band */
.home-cta-band {
  padding: 0 0 5.5rem;
}
.home-cta-band__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2.5rem; flex-wrap: wrap;
  padding: 3rem 3.25rem;
  border-radius: var(--radius-lg);
  background: var(--gradient-footer-cta);
  color: #fff;
  box-shadow: 0 24px 60px rgba(158, 64, 56, 0.34);
  position: relative; overflow: hidden;
}
.home-cta-band__inner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(219, 185, 74, 0.16), transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(0,0,0,.14), transparent 45%);
  pointer-events: none;
}
.home-cta-band__content {
  flex: 1; min-width: 260px; position: relative; z-index: 1;
}
.home-cta-band__content h2 {
  color: #fff; margin-bottom: .65rem;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
}
.home-cta-band__content p {
  color: rgba(255,255,255,.88); margin: 0; max-width: 520px;
}
.home-cta-band__actions {
  display: flex; flex-direction: column; gap: .85rem;
  min-width: 260px; position: relative; z-index: 1;
}
.home-cta-band .btn-outline-light {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.35);
}
.home-cta-band .btn-outline-light:hover {
  background: rgba(255,255,255,.2); color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-slide__inner, .hero__inner, .about-preview, .about-page, .trial-layout, .contact-layout { grid-template-columns: 1fr; }
  .hero-slide__visual, .hero__visual { max-width: 440px; margin: 0 auto; }
  .hero-session-card { margin-inline: auto; }
  .hero-slider { min-height: auto; }
  .hero-slider__track { min-height: auto; }
  .hero-slider--single {
    min-height: clamp(506px, 79vh, 704px);
  }
  .grid--3, .pricing-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .session-list--full { grid-template-columns: 1fr; }
  .session-list--home { grid-template-columns: 1fr; }
  .spotlight-grid { grid-template-columns: 1fr; }
  .home-cta-band__inner { flex-direction: column; text-align: center; padding: 2.25rem 1.75rem; }
  .home-cta-band__actions { width: 100%; }
  .hero-visual__float--1 { right: 0; }
  .hero-visual__float--2 { left: 0; }
}

@media (max-width: 768px) {
  .site-nav, .site-header__actions { display: none; }
  .menu-toggle { display: flex; }
  .grid--2, .grid--3, .pricing-grid, .steps, .lesson-types { grid-template-columns: 1fr; }
  .section-head--split { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .site-footer__cta-inner { flex-direction: column; text-align: center; }
  .site-footer__cta-actions { justify-content: center; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .instagram-cta, .youtube-cta { flex-direction: column; text-align: center; padding: 2.5rem 1.75rem; }
  .social-cta-grid { grid-template-columns: 1fr; }
  .pricing-card--highlight { transform: none; }
  .pricing-card--highlight:hover { transform: translateY(-5px); }
  .floating-cta__btn span { display: none; }
  .floating-cta__btn { padding: .8rem; border-radius: 50%; width: 50px; height: 50px; justify-content: center; }
  .hero { padding: 3.5rem 0 4rem; }
  .section { padding: 4rem 0; }
  .trust-marquee__item { font-size: .8rem; }
  .path-cards { grid-template-columns: 1fr; }
  .path-card { grid-template-columns: auto 1fr; }
  .path-card__arrow { display: none; }
  .hero-slider__meta { justify-content: center; }
  .utility-bar__promo { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
