/* ================================================
   KESKI ATELIER — Ahşap Oymacılık Atölyesi
   ================================================ */

:root {
  interpolate-size: allow-keywords;
  --bg: #1E1E24;
  --surface: #2A2A32;
  --surface-2: #35353F;
  --ink: #E8E6E1;
  --ink-soft: #A8A6A1;
  --accent: #7CB69D;
  --accent-2: #C4A35A;
  --line: rgba(232,230,225,0.12);
  --line-strong: rgba(232,230,225,0.24);
  --header-h: 76px;
  --max-w: 1320px;
  --pad: clamp(16px,4vw,32px);
  --radius: 8px;
  --font-heading: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'Cascadia Code', 'Consolas', 'SF Mono', ui-monospace, monospace;
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100vw; margin: 0; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0;
  font-size: clamp(15px, 1vw + 12px, 17px);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 240ms cubic-bezier(.4,0,.2,1); }
a:hover { color: var(--accent-2); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: 0;
}
h1 { font-size: clamp(2.25rem, 5vw, 4.5rem); letter-spacing: -0.012em; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h4 { font-size: clamp(1.05rem, 1.5vw, 1.25rem); }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
main section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

/* ---- Skip Link ---- */
.skip-link {
  position: fixed;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
  border-radius: var(--radius);
  transition: top 200ms;
}
.skip-link:focus {
  top: 16px;
}

/* ---- Header ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  background: rgba(30, 30, 36, 0.92);
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease;
}
.site-header.is-scrolled {
  background: rgba(30,30,36,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,.18);
  height: 64px;
}
.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: none;
  z-index: 1;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.header__logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-decoration: none;
  flex-shrink: 0;
}
.header__logo:hover { color: var(--ink); }
.header__logo span { color: var(--accent-2); }

/* Nav desktop */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 36px);
}
.nav-desktop a {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 280ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after { width: 100%; }
.nav-desktop a.is-active { color: var(--ink); }
.nav-desktop a.is-active::after { width: 100%; }
.nav-desktop .nav-cta {
  background: var(--accent);
  color: var(--bg);
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  transition: background 240ms, color 240ms, transform 240ms;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: var(--accent-2);
  color: var(--bg);
  transform: translateY(-2px);
}
.nav-desktop .nav-cta.is-active { color: var(--bg); }

/* Nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  z-index: 1100;
  padding: 10px;
  border-radius: var(--radius);
  background: rgba(232,230,225,0.06);
  border: 1px solid rgba(232,230,225,0.1);
  transition: background 200ms, border-color 200ms;
}
.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(232,230,225,0.12);
  border-color: rgba(232,230,225,0.2);
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 200ms, background 200ms;
  transform-origin: center;
}
.nav-toggle:hover span {
  background: var(--accent-2);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---- Drawer ---- */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1040;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms;
}
.drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  z-index: 1050;
  background: var(--surface);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 32px) 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: color 240ms, padding-left 240ms;
}
.drawer a:hover { color: var(--accent); padding-left: 8px; }
.drawer a.is-active { color: var(--accent); }
.drawer .drawer-cta {
  margin-top: 24px;
  text-align: center;
  border-bottom: none;
  padding: 14px 28px;
}

/* ---- Main ---- */
main { padding-top: var(--header-h); }

/* ---- Hero ---- */
.hero {
  min-height: 82vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 10vh, 120px) 0 clamp(40px, 6vh, 80px);
}
.hero__content {
  position: relative;
  z-index: 2;
}
.hero__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0;
  animation: hero-img-fade 700ms cubic-bezier(.2,.7,.2,1) 80ms forwards;
  mask-image: linear-gradient(to left, rgba(0,0,0,0.85) 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.85) 40%, transparent 100%);
}
@keyframes hero-img-fade {
  0% { opacity: 0; }
  30% { opacity: 0.5; }
  100% { opacity: 1; }
}
.hero__eyebrow {
  display: inline-block;
  margin-bottom: 20px;
}
.hero__title {
  margin-bottom: 28px;
  overflow: hidden;
}
.hero__word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: word-rise 550ms cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: calc(60ms + var(--i, 0) * 80ms);
}
@keyframes word-rise {
  0% { opacity: 0; transform: translateY(40px); }
  40% { opacity: 0.7; }
  100% { opacity: 1; transform: translateY(0); }
}
.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.hero__pill {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 16px;
  border: 1px dotted var(--line-strong);
  border-radius: 100px;
  color: var(--accent-2);
  letter-spacing: 0.04em;
  transition: border-color 280ms, color 280ms, background 280ms;
}
.hero__pill:hover {
  border-color: var(--accent-2);
  color: var(--ink);
  background: rgba(196,163,90,0.08);
}
.hero__cta { margin-top: 8px; }

/* Hero dust particles */
.hero__layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero__dust {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--accent-2);
  border-radius: 50%;
  opacity: 0;
}
.hero__dust--1 { left: 12%; top: 25%; animation: dust-float 13s ease-in-out infinite; }
.hero__dust--2 { left: 38%; top: 18%; width: 4px; height: 4px; animation: dust-float 15s ease-in-out 2s infinite; }
.hero__dust--3 { left: 72%; top: 32%; animation: dust-float 11s ease-in-out 4s infinite; }
.hero__dust--4 { left: 25%; top: 65%; width: 2px; height: 2px; animation: dust-float 14s ease-in-out 1s infinite; }
.hero__dust--5 { left: 82%; top: 58%; animation: dust-float 12s ease-in-out 3s infinite; }
.hero__dust--6 { left: 55%; top: 72%; width: 4px; height: 4px; animation: dust-float 16s ease-in-out 5s infinite; }
@keyframes dust-float {
  0%, 100% { opacity: 0; transform: translateY(0) translateX(0); }
  15% { opacity: 0.4; }
  50% { opacity: 0.5; transform: translateY(-35px) translateX(18px); }
  85% { opacity: 0.25; }
}

/* ---- Trust Strip ---- */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px 40px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
  white-space: nowrap;
}
.trust-pill svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ---- Sections ---- */
.section {
  padding: clamp(60px, 8vw, 100px) 0;
}
.section--alt {
  background: var(--surface);
}
.section--accent {
  background: var(--accent);
  color: var(--bg);
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  margin-top: 14px;
  transition: width 800ms cubic-bezier(.2,.7,.2,1) 200ms;
}
.section-title.is-in::after,
.reveal.is-in .section-title::after {
  width: 60px;
}
.section-sub {
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.section-visual {
  width: 100%;
  max-height: 340px;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 32px;
}
.news-visual {
  width: 100%;
  max-height: 200px;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 10px 0 6px;
}

/* ---- Wood Grain Overlay ---- */
.grain-bg { position: relative; }
.grain-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(92deg, transparent, transparent 14px, rgba(196,163,90,0.022) 14px, rgba(196,163,90,0.022) 15px);
  pointer-events: none;
}
.grain-bg > .container,
.grain-bg > .hero__layer { position: relative; z-index: 1; }
.grain-bg > .hero__content { position: relative; z-index: 2; }

/* ---- Course Grid ---- */
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.course-card {
  position: relative;
  background: var(--surface);
  border: 1px dotted var(--line-strong);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), box-shadow 260ms cubic-bezier(.2,.7,.2,1);
  overflow: visible;
  display: flex;
  flex-direction: column;
}
.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px -8px rgba(124,182,157,0.22);
}
.card-chisel {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 26px;
  height: 26px;
  color: var(--accent);
  opacity: 0.25;
  transition: opacity 280ms, transform 280ms cubic-bezier(.2,.7,.2,1);
}
.course-card:hover .card-chisel {
  opacity: 0.65;
  transform: rotate(-15deg);
}

/* Card shaving particles */
.shaving {
  position: absolute;
  top: 4px;
  right: 8px;
  width: 22px;
  color: var(--accent-2);
  pointer-events: none;
  opacity: 0;
}
.shaving--2 { top: 0; right: 20px; width: 18px; }
.shaving--3 { top: 12px; right: 2px; width: 16px; }
.course-card:hover .shaving--1 { animation: shaving-fly-1 700ms cubic-bezier(.2,.7,.2,1) forwards; }
.course-card:hover .shaving--2 { animation: shaving-fly-2 800ms cubic-bezier(.2,.7,.2,1) 60ms forwards; }
.course-card:hover .shaving--3 { animation: shaving-fly-3 650ms cubic-bezier(.2,.7,.2,1) 120ms forwards; }

@keyframes shaving-fly-1 {
  0% { opacity: 0; transform: translate(0,0) rotate(0); }
  30% { opacity: 0.8; }
  100% { opacity: 0; transform: translate(-38px, -28px) rotate(-55deg); }
}
@keyframes shaving-fly-2 {
  0% { opacity: 0; transform: translate(0,0) rotate(0); }
  30% { opacity: 0.7; }
  100% { opacity: 0; transform: translate(-22px, -42px) rotate(40deg); }
}
@keyframes shaving-fly-3 {
  0% { opacity: 0; transform: translate(0,0) rotate(0); }
  35% { opacity: 0.85; }
  100% { opacity: 0; transform: translate(-48px, -18px) rotate(-35deg); }
}

.card-level {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 100px;
  display: inline-block;
  width: fit-content;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.card-level--giris { background: rgba(124,182,157,0.15); color: var(--accent); }
.card-level--orta { background: rgba(196,163,90,0.15); color: var(--accent-2); }
.card-level--ileri { background: rgba(232,230,225,0.1); color: var(--ink); }
.card-level--herkes { background: rgba(124,182,157,0.1); color: var(--accent); }

.card-title {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.card-meta {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.card-price {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-2);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.card-price small {
  font-size: 0.65em;
  color: var(--ink-soft);
  font-weight: 400;
}
.card-includes {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  flex-grow: 1;
}
.card-includes li {
  padding: 3px 0 3px 18px;
  position: relative;
}
.card-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}
.card-availability {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}
.card-cta {
  display: inline-block;
  text-align: center;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: var(--radius);
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
  transition: background 240ms, color 240ms, transform 240ms;
  text-decoration: none;
}
.card-cta:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-2px);
}
.price-note {
  margin-top: 28px;
  font-size: 0.78rem;
  color: var(--ink-soft);
  text-align: center;
  font-style: italic;
}

/* ---- Process Timeline ---- */
.timeline {
  position: relative;
  padding-left: 40px;
  margin-top: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  opacity: 0.3;
}
.timeline__step {
  position: relative;
  padding-bottom: 40px;
}
.timeline__step:last-child { padding-bottom: 0; }
.timeline__marker {
  position: absolute;
  left: -40px;
  top: 4px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  z-index: 1;
}
.timeline__time {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-2);
  margin-bottom: 6px;
}
.timeline__title {
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.timeline__text {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ---- Schedule Scroll ---- */
.scroll-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 0 20px;
  margin-top: 32px;
}
.scroll-row::-webkit-scrollbar { height: 4px; }
.scroll-row::-webkit-scrollbar-track { background: var(--line); border-radius: 4px; }
.scroll-row::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }
.scroll-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), box-shadow 260ms;
}
.scroll-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px -8px rgba(0,0,0,0.2);
}
.date-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(124,182,157,0.12);
  color: var(--accent);
  display: inline-block;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}
.scroll-card__title {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.scroll-card__meta {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.scroll-card__location {
  font-size: 0.82rem;
  color: var(--accent-2);
  margin-top: 8px;
  font-weight: 500;
}

/* ---- Stats Band ---- */
.stats-band {
  padding: clamp(40px, 6vw, 72px) 0;
  background: var(--accent);
}
.stats-band__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat__number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--bg);
  line-height: 1;
  margin-bottom: 6px;
}
.stat__label {
  font-size: 0.85rem;
  color: rgba(30,30,36,0.7);
  font-weight: 500;
}

/* ---- Materials ---- */
.material-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.material-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 240ms, transform 240ms cubic-bezier(.2,.7,.2,1);
}
.material-item:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.material-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-2);
  background: rgba(196,163,90,0.08);
  border-radius: var(--radius);
  transition: color 240ms, transform 240ms;
}
.material-item:hover .material-icon {
  color: var(--accent);
  transform: scale(1.08);
}
.material-icon svg { width: 24px; height: 24px; }
.material-item h4 { font-size: 1rem; margin-bottom: 4px; }
.material-item p { font-size: 0.85rem; color: var(--ink-soft); }

/* ---- Instructors ---- */
.instructor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 28px;
  margin-top: 32px;
}
.instructor-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: border-color 280ms cubic-bezier(.2,.7,.2,1), transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms cubic-bezier(.2,.7,.2,1);
}
.instructor-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 14px 36px -8px rgba(196,163,90,0.18);
}
.instructor__initials {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--bg);
  margin-bottom: 20px;
}
.instructor__name {
  font-size: 1.35rem;
  margin-bottom: 4px;
}
.instructor__role {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
}
.instructor__bio {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ---- Testimonials ---- */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonial:first-child {
    grid-row: span 2;
  }
}
.testimonial {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: border-color 280ms;
}
.testimonial:hover { border-color: var(--accent); }
.testimonial::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  position: absolute;
  top: 16px; left: 24px;
}
.testimonial__text {
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.75;
  margin-bottom: 20px;
  padding-top: 12px;
}
.testimonial__author {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
}
.testimonial__meta {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 2px;
}

/* ---- FAQ Accordion ---- */
.faq-list {
  max-width: 780px;
  margin-top: 32px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  list-style: none;
  transition: color 240ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-item summary:hover { color: var(--accent); }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item .answer {
  height: 0;
  padding: 0 0;
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] .answer {
  height: auto;
  padding-block-end: 24px;
}
.faq-item .answer p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item .answer { transition: none; }
}

/* ---- News Block ---- */
.news-list {
  margin-top: 32px;
  max-width: 720px;
}
.news-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 240ms;
}
.news-item:hover { padding-left: 8px; }
.news-date {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.news-item h4 {
  font-size: 1rem;
  margin: 4px 0;
}
.news-item p {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* ---- CTA Band ---- */
.cta-band {
  padding: clamp(60px, 8vw, 100px) 0;
  text-align: center;
}
.cta-band__title {
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}
.cta-band__sub {
  color: var(--ink-soft);
  margin-bottom: 36px;
  font-size: 1.05rem;
}
.cta-band__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  border: none;
  text-decoration: none;
  transition: background 240ms, color 240ms, transform 240ms, box-shadow 240ms;
  cursor: pointer;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.12) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.btn-primary:hover::after { transform: translateX(110%); }
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent-2);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -6px rgba(196,163,90,0.3);
}
.btn-ghost {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 240ms, color 240ms, border-color 240ms, transform 240ms;
  cursor: pointer;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ---- Form ---- */
.form-section { max-width: 620px; }
.field {
  margin-bottom: 20px;
}
.field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color 240ms;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(124,182,157,0.15);
}
.field textarea {
  min-height: 130px;
  resize: vertical;
}
.field select {
  cursor: pointer;
}
.field select option {
  background: var(--surface);
  color: var(--ink);
}
.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  padding: 0;
  border: 0;
  margin: 2px 0 0;
  accent-color: var(--accent);
}
.kvkk {
  margin-bottom: 28px;
}
.kvkk label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ---- Contact Channels ---- */
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 32px;
}
.contact-channel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 12px;
  border-radius: var(--radius);
  transition: transform 240ms cubic-bezier(.4,0,.2,1), background 240ms;
}
.contact-channel:hover {
  transform: translateX(4px);
  background: var(--surface-2);
}
.contact-icon {
  width: 22px;
  height: 22px;
  color: var(--ink-soft);
  transition: color 240ms, transform 240ms;
  margin-top: 2px;
}
.contact-channel:hover .contact-icon {
  color: var(--accent);
  transform: scale(1.08);
}
.contact-label {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 2px;
}
.contact-value {
  font-size: 0.95rem;
  color: var(--ink);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.contact-value a { color: var(--ink); }
.contact-value a:hover { color: var(--accent); }

/* Hours table */
.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 20px;
  font-size: 0.88rem;
}
.hours-grid dt {
  color: var(--ink-soft);
  font-weight: 500;
}
.hours-grid dd {
  color: var(--ink);
}
.hours-grid .hours-closed {
  color: var(--ink-soft);
  font-style: italic;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: clamp(40px, 6vw, 72px) 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
}
.footer__brand {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
.footer__brand .footer-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink);
  display: block;
  margin-bottom: 12px;
}
.footer__brand .footer-logo span { color: var(--accent-2); }
.footer__links h4 {
  font-size: 0.88rem;
  margin-bottom: 16px;
  color: var(--ink);
}
.footer__links a {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-soft);
  padding: 4px 0;
  transition: color 240ms, padding-left 240ms;
}
.footer__links a:hover {
  color: var(--accent);
  padding-left: 4px;
}
.footer__bottom {
  border-top: 1px solid var(--line);
  margin-top: 40px;
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--ink-soft);
}
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.footer__legal a {
  color: var(--ink-soft);
  font-size: 0.78rem;
}
.footer__legal a:hover { color: var(--accent); }
.footer__vkn {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--ink-soft);
  opacity: 0.6;
  margin-top: 8px;
}

/* ---- Cookie Banner ---- */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 24px;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
  box-shadow: 0 16px 48px -12px rgba(0,0,0,0.4);
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
}
.cookie__text {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 18px;
}
.cookie__text a { color: var(--accent); text-decoration: underline; }
.cookie__buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie__btn {
  flex: 1;
  min-width: 100px;
  min-height: 44px;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 240ms, color 240ms, border-color 240ms;
}
.cookie__btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.cookie__btn--accept {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.cookie__btn--accept:hover {
  background: var(--accent-2);
  color: var(--bg);
  border-color: var(--accent-2);
}
.cookie__btn[data-consent="reject"] {
  color: var(--ink-soft);
  border-color: var(--line-strong);
}
.cookie__btn[data-consent="reject"]:hover {
  color: var(--ink);
  border-color: var(--accent);
}
@media (min-width: 640px) {
  .cookie-banner {
    left: 24px;
    right: auto;
    max-width: 420px;
  }
}

/* ---- Table Scroll ---- */
.table-scroll {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
}
th {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---- Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.course-card:hover { transform: translateY(-6px); box-shadow: 0 14px 36px -8px rgba(124,182,157,0.22); }
.instructor-card:hover { transform: translateY(-6px); box-shadow: 0 14px 36px -8px rgba(196,163,90,0.18); }
.scroll-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px -8px rgba(0,0,0,0.2); }
.material-item:hover { border-color: var(--accent); transform: translateY(-3px); }

/* ---- Thank You ---- */
.thank-you {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 0;
}
.thank-you h1 {
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}
.thank-you p {
  color: var(--ink-soft);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

/* ---- Policy Pages ---- */
.policy {
  padding: clamp(40px, 6vw, 80px) 0;
  max-width: 780px;
  margin: 0 auto;
}
.policy h1 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 12px;
}
.policy .policy-updated {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 40px;
}
.policy h2 {
  font-size: 1.35rem;
  margin-top: 40px;
  margin-bottom: 12px;
}
.policy h3 {
  font-size: 1.1rem;
  margin-top: 24px;
  margin-bottom: 8px;
}
.policy p {
  color: var(--ink-soft);
  margin-bottom: 16px;
  line-height: 1.75;
}
.policy ul, .policy ol {
  margin-bottom: 16px;
  padding-left: 24px;
}
.policy li {
  color: var(--ink-soft);
  padding: 4px 0;
  list-style: disc;
  line-height: 1.65;
}
.policy ol li { list-style: decimal; }

/* ---- 404 ---- */
.not-found {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 0;
}
.not-found__code {
  font-family: var(--font-mono);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 700;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 16px;
}
.not-found h1 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}
.not-found p {
  color: var(--ink-soft);
  margin-bottom: 28px;
}

/* ---- Sitemap ---- */
.sitemap-list { margin-top: 24px; }
.sitemap-list li { padding: 6px 0; }
.sitemap-list a { font-size: 0.95rem; }

/* ---- Contact Page Layout ---- */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .contact-page-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  .instructor-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .stats-band__inner { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .course-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .material-grid { grid-template-columns: 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --header-h: 64px; }
  .hero { min-height: 70vh; padding: 40px 0 32px; }
  .hero__bg {
    width: 100%;
    height: 50%;
    top: auto;
    bottom: 0;
    mask-image: linear-gradient(to top, rgba(0,0,0,0.75) 30%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.75) 30%, transparent 100%);
  }
  h1 { font-size: clamp(2rem, 6vw, 3rem); }
  .course-card { padding: 24px 20px 20px; }
  .instructor-card { padding: 28px 24px; }
  .scroll-card { flex: 0 0 260px; }
  .material-item { grid-template-columns: 40px 1fr; gap: 12px; padding: 16px; }
  .material-icon { width: 40px; height: 40px; }
  .cta-band__actions { flex-direction: column; align-items: center; }
  .cta-band__actions .btn-primary,
  .cta-band__actions .btn-ghost { width: 100%; max-width: 300px; text-align: center; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal { justify-content: center; }
  .section-visual { max-height: 220px; }
}

@media (max-width: 480px) {
  .trust-strip__inner { flex-direction: column; gap: 12px; }
  .hero__pills { gap: 8px; }
  .hero__pill { font-size: 0.72rem; padding: 5px 12px; }
  .stats-band__inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .timeline { padding-left: 32px; }
  .timeline__marker { left: -32px; width: 24px; height: 24px; font-size: 0.65rem; }
  .cookie-banner { left: 8px; right: 8px; padding: 18px; bottom: 8px; }
  .cookie__buttons { flex-direction: column; gap: 6px; }
  .cookie__btn { min-height: 44px; font-size: 0.85rem; }
  .cookie__btn[data-consent="settings"] {
    min-height: 44px;
    padding: 10px 0;
    border: none;
    background: none;
    font-size: 0.82rem;
    text-decoration: underline;
    text-underline-offset: 3px;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cookie__btn[data-consent="settings"]:hover {
    border: none;
    background: none;
    color: var(--accent);
  }
}

@media (max-width: 390px) {
  .section { padding: clamp(40px, 6vw, 60px) 0; }
  .course-card { padding: 20px 16px 16px; }
  .card-price { font-size: 1.35rem; }
  .instructor-card { padding: 24px 20px; }
  .drawer { padding-left: 24px; padding-right: 24px; }
}

/* ---- Warm Glow & Theme Micro-effects ---- */
.nav-desktop a::before {
  content: '';
  position: absolute;
  inset: -4px -8px;
  border-radius: 4px;
  background: radial-gradient(ellipse at 50% 100%, rgba(196,163,90,0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 300ms;
  pointer-events: none;
}
.nav-desktop a:hover::before { opacity: 1; }

.btn-primary {
  box-shadow: 0 2px 12px -4px rgba(124,182,157,0.25);
}
.btn-primary:hover, .btn-primary:focus-visible {
  box-shadow: 0 8px 24px -6px rgba(196,163,90,0.35);
}

.card-cta {
  position: relative;
  overflow: hidden;
}
.card-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform 500ms cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.card-cta:hover::after { transform: translateX(110%); }

.material-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 350ms cubic-bezier(.2,.7,.2,1);
}
.material-item { position: relative; overflow: hidden; }
.material-item:hover::before { transform: scaleX(1); }

.instructor-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: radial-gradient(ellipse at 50% 0%, rgba(196,163,90,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 350ms;
  pointer-events: none;
}
.instructor-card { position: relative; overflow: hidden; }
.instructor-card:hover::before { opacity: 1; }

.footer__links > a {
  position: relative;
}
.footer__links > a::before {
  content: '';
  position: absolute;
  left: -12px; top: 50%;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent-2);
  opacity: 0;
  transform: translateY(-50%) scale(0);
  transition: opacity 250ms, transform 250ms cubic-bezier(.2,.7,.2,1);
}
.footer__links > a:hover::before {
  opacity: 0.6;
  transform: translateY(-50%) scale(1);
}

.site-footer {
  padding-bottom: 80px;
}

/* ---- Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero__word { opacity: 1 !important; transform: none !important; animation: none !important; }
  .hero__bg { opacity: 1 !important; animation: none !important; }
  .hero__dust { animation: none !important; }
  .shaving { animation: none !important; }
  .course-card:hover .shaving--1,
  .course-card:hover .shaving--2,
  .course-card:hover .shaving--3 { animation: none !important; }
  .course-card { transition: none; }
  .course-card::before { transition: none; }
  .scroll-card { transition: none; }
  .scroll-card::before { transition: none; }
  .material-item { transition: none; }
  .material-item::before { transition: none; transform: none; }
  .instructor-card { transition: none; }
  .instructor-card::before { transition: none; }
  .testimonial { transition: none; }
  .testimonial::after { transition: none; }
  .timeline__step { transition: none; }
  .stat { transition: none; }
  .btn-primary::after { transition: none; display: none; }
  .btn-primary { box-shadow: none; }
  .card-cta::after { transition: none; display: none; }
  .nav-desktop a::before { display: none; }
  .footer__links > a::before { display: none; }
  .section-title::after { transition: none; width: 60px; }
}

/* ---- Wood-themed warm glow ---- */
.course-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  opacity: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(196,163,90,0.08) 0%, transparent 70%);
  transition: opacity 400ms cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.course-card:hover::before { opacity: 1; }

.timeline__step {
  transition: transform 300ms cubic-bezier(.2,.7,.2,1);
}
.timeline__step:hover {
  transform: translateX(6px);
}
.timeline__step:hover .timeline__marker {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 16px rgba(124,182,157,0.3);
  transition: background 300ms, color 300ms, box-shadow 300ms;
}

.faq-item summary {
  transition: color 240ms, padding-left 260ms cubic-bezier(.2,.7,.2,1);
}
.faq-item summary:hover {
  padding-left: 8px;
}

.testimonial::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 400ms cubic-bezier(.2,.7,.2,1);
}
.testimonial:hover::after { transform: scaleX(1); }

.scroll-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  opacity: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(196,163,90,0.06) 0%, transparent 70%);
  transition: opacity 340ms;
  pointer-events: none;
}
.scroll-card { position: relative; }
.scroll-card:hover::before { opacity: 1; }

.stat {
  transition: transform 300ms cubic-bezier(.2,.7,.2,1);
}
.stat:hover {
  transform: scale(1.06);
}

/* ---- No JS ---- */
html.no-js .reveal { opacity: 1; transform: none; }
html.no-js .hero__word { opacity: 1; transform: none; animation: none; }
html.no-js .hero__bg { opacity: 1; animation: none; }

/* ---- Print ---- */
@media print {
  .site-header, .nav-toggle, .drawer, .drawer-backdrop,
  .cookie-banner, .skip-link, .cta-band, .hero__layer { display: none !important; }
  body { color: #000; background: #fff; }
  main { padding-top: 0; }
  .section { padding: 24px 0; }
  a { color: #000; text-decoration: underline; }
  .course-card, .scroll-card, .testimonial, .instructor-card {
    break-inside: avoid;
    border-color: #ccc;
  }
}
