:root {
  interpolate-size: allow-keywords;
  --bg: #FFFFFF;
  --surface: #F6F1EB;
  --surface-2: #EDE6DB;
  --ink: #222222;
  --ink-soft: #5A5A5A;
  --accent: #E04832;
  --accent-2: #FF8F5C;
  --line: rgba(34,34,34,0.12);
  --line-strong: rgba(34,34,34,0.25);
  --header-h: 72px;
  --radius: 6px;
  --font-head: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-calli: Georgia, 'Times New Roman', 'Palatino Linotype', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  background: var(--surface);
  object-fit: cover;
}

a { color: var(--accent); text-decoration: none; transition: color 240ms; }
a:hover { color: var(--accent-2); }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 2px; }

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--ink);
}

h1 { font-size: clamp(2.25rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

.eyebrow {
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.calli-text {
  font-family: var(--font-calli);
  font-style: italic;
  font-weight: 600;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

main { padding-top: var(--header-h); }

section {
  padding-top: clamp(3rem, 6vw, 6rem);
  padding-bottom: clamp(3rem, 6vw, 6rem);
}

.skip-link {
  position: fixed;
  top: -100%;
  left: 16px;
  z-index: 10000;
  background: var(--ink);
  color: var(--bg);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  transition: top 200ms;
}
.skip-link:focus {
  top: 12px;
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  padding: 0;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
}
.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  width: 0;
  z-index: 1;
  pointer-events: none;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}
.site-header.is-scrolled .header-inner { height: 60px; }

.logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo:hover { color: var(--accent); }
.logo svg { width: 28px; height: 28px; flex-shrink: 0; }

.nav-desktop {
  display: none;
  align-items: center;
  gap: 32px;
}
.nav-desktop a {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 240ms;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 320ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover { color: var(--accent); }
.nav-desktop a:hover::after, .nav-desktop a.is-active::after { width: 100%; }
.nav-desktop a.is-active { color: var(--accent); }

.nav-desktop .nav-cta {
  background: var(--ink);
  color: var(--bg);
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: var(--accent);
  color: #FFFFFF;
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none !important; }
}

/* ── NAV TOGGLE (HAMBURGER) ── */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px; height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  position: relative;
  gap: 5px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE DRAWER ── */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  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);
  background: var(--bg);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 24px) 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }

.drawer a {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  display: block;
  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 {
  display: inline-block;
  background: var(--accent);
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-align: center;
  margin-top: 16px;
  border: none;
  font-weight: 600;
}
.drawer .drawer-cta:hover { background: var(--ink); color: #FFFFFF; }


@media (min-width: 1024px) {
  .drawer, .drawer-backdrop { display: none !important; }
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 14px 32px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: background 240ms cubic-bezier(.2,.7,.2,1), color 240ms, transform 180ms, box-shadow 240ms;
  position: relative;
  overflow: hidden;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(224,72,50,0.35);
}
.btn-primary:active { transform: translateY(0); }

.btn-primary .arrow-icon {
  transition: transform 240ms cubic-bezier(.2,.7,.2,1);
}
.btn-primary:hover .arrow-icon { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 14px 32px;
  border: 2px solid var(--line-strong);
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: background 240ms, color 240ms, border-color 240ms, transform 180ms;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
}

/* ── HERO ── */
.hero {
  background: var(--surface);
  padding-top: clamp(3rem, 8vw, 7rem);
  padding-bottom: clamp(2rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 768px) {
  .hero-inner { grid-template-columns: 55fr 45fr; gap: 48px; }
}

.hero-content { position: relative; z-index: 2; }
.hero h1 {
  margin-bottom: 20px;
  position: relative;
}
.hero h1 .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  animation: charReveal 500ms cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: calc(var(--i, 0) * 55ms + 300ms);
}
.hero h1 .space { width: 0.3em; display: inline-block; }

@keyframes charReveal {
  to { opacity: 1; transform: none; }
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 32px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--bg);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--line);
}
.trust-badge svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.hero-visual .ink-blob {
  position: absolute;
  width: 340px; height: 340px;
  color: var(--accent);
  opacity: 0.12;
  animation: calliFloat 12s ease-in-out infinite;
}
.hero-visual .ink-blob-2 {
  position: absolute;
  width: 200px; height: 200px;
  color: var(--accent-2);
  opacity: 0.1;
  top: 60%; left: 10%;
  animation: calliFloat 15s ease-in-out infinite reverse;
}
.hero-visual .hero-frame {
  position: relative;
  border: 1px solid var(--line-strong);
  padding: 16px;
  max-width: 380px;
  width: 100%;
}
.hero-visual .hero-frame img { width: 100%; aspect-ratio: 4/5; }
.hero-visual .hero-frame::before {
  content: '';
  position: absolute;
  top: -8px; left: -8px; right: -8px; bottom: -8px;
  border: 1px solid var(--accent);
  opacity: 0.4;
  pointer-events: none;
}

.pill-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.pill {
  font-family: var(--font-calli);
  font-style: italic;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  padding: 8px 20px;
  border: 1px solid var(--line);
  border-radius: 100px;
  white-space: nowrap;
  transition: border-color 240ms, color 240ms, transform 180ms;
}
.pill:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

@keyframes calliFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(8px, -12px) rotate(3deg); }
  66% { transform: translate(-6px, 8px) rotate(-2deg); }
}

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--ink);
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item .stat-number {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--bg);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-item .stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
}
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* ── SECTION HEADERS ── */
.section-head {
  max-width: 640px;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.section-head.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-head h2 { margin-bottom: 12px; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }

.stroke-line {
  display: block;
  width: 64px;
  height: 3px;
  background: var(--accent);
  margin-top: 14px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.stroke-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  animation: strokeShimmer 3s ease-in-out infinite;
}
.centered .stroke-line { margin-left: auto; margin-right: auto; }

@keyframes strokeShimmer {
  0% { left: -100%; }
  60%, 100% { left: 200%; }
}

/* ── PEN STROKE DIVIDER SVG ── */
.pen-stroke-divider {
  display: block;
  width: clamp(120px, 20vw, 200px);
  height: 12px;
  margin: 14px 0 0;
  color: var(--accent);
}
.pen-stroke-divider path {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  transition: stroke-dashoffset 1.2s cubic-bezier(.2,.7,.2,1);
}
.is-in .pen-stroke-divider path,
.reveal.is-in .pen-stroke-divider path {
  stroke-dashoffset: 0;
}
.centered .pen-stroke-divider { margin-left: auto; margin-right: auto; }

/* ── COURSES ── */
.courses-section { background: var(--bg); }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.filter-btn {
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 8px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 240ms, color 240ms, border-color 240ms;
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.is-active { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.course-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms;
}
.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(224,72,50,0.22);
}
.course-card::before {
  content: '';
  position: absolute;
  top: -4px; left: -4px; right: -4px; bottom: -4px;
  border: 1px solid var(--accent);
  border-radius: calc(var(--radius) + 4px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 320ms;
}
.course-card:hover::before { opacity: 0.5; }

.course-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.course-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(.2,.7,.2,1); }
.course-card:hover .course-card-img img { transform: scale(1.06); }

.course-card-preview {
  position: absolute;
  inset: 0;
  background: rgba(34,34,34,0.85);
  color: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 320ms cubic-bezier(.2,.7,.2,1), transform 320ms cubic-bezier(.2,.7,.2,1);
}
.course-card:hover .course-card-preview { opacity: 1; transform: none; }
.course-card-preview p { font-size: 0.8125rem; line-height: 1.5; }

.course-card-body { padding: 20px; }
.course-card-cat {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.course-card h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  line-height: 1.3;
}
.course-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8125rem;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.course-card-price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink);
}
.course-card-price small {
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--ink-soft);
}

@media (max-width: 1024px) {
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .courses-grid { grid-template-columns: 1fr; }
}

/* ── INSTRUCTORS ── */
.instructors-section { background: var(--surface); }

.instructors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.instructor-card {
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 20px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), box-shadow 320ms;
}
.instructor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px -8px rgba(224,72,50,0.15);
}
.instructor-avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  margin: 0 auto 16px;
  overflow: hidden;
  border: 2px solid var(--line);
}
.instructor-avatar img { width: 100%; height: 100%; object-fit: cover; }
.instructor-card h4 { font-size: 1.05rem; margin-bottom: 4px; }
.instructor-card .instructor-role {
  font-size: 0.8125rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 8px;
}
.instructor-card .instructor-bio {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

@media (max-width: 1024px) {
  .instructors-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .instructors-grid { grid-template-columns: 1fr; }
}

/* ── PROCESS TIMELINE ── */
.process-section { background: var(--bg); position: relative; }

.timeline {
  position: relative;
  padding-left: 48px;
  max-width: 720px;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 19px;
  width: 2px;
  background: var(--line);
}
.timeline-step {
  position: relative;
  padding-bottom: 40px;
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -48px; top: 2px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--accent);
  z-index: 1;
  transition: background 320ms, color 320ms;
}
.timeline-step:hover .timeline-dot { background: var(--accent); color: var(--bg); }

.timeline-time {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.timeline-step h4 { margin-bottom: 6px; }
.timeline-step p { color: var(--ink-soft); font-size: 0.9375rem; line-height: 1.65; }

/* ── PRICING ── */
.pricing-section { background: var(--surface); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  position: relative;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), box-shadow 320ms;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(224,72,50,0.15);
}
.pricing-card.featured {
  border-color: var(--accent);
  border-width: 2px;
}
.pricing-card.featured::before {
  content: 'Popüler';
  position: absolute;
  top: -12px; left: 24px;
  background: var(--accent);
  color: #FFFFFF;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
}
.pricing-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.pricing-duration {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.pricing-amount {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-amount small { font-size: 0.875rem; font-weight: 400; color: var(--ink-soft); }
.pricing-note {
  font-size: 0.75rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 20px;
}
.pricing-list { list-style: none; margin-bottom: 24px; }
.pricing-list li {
  font-size: 0.875rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.pricing-list li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.pricing-list li.excluded { color: var(--ink-soft); }
.pricing-list li.excluded::before { content: '—'; color: var(--line-strong); }
.pricing-disclaimer {
  font-size: 0.75rem;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 24px;
  font-style: italic;
}

@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ── SCHEDULE TABLE ── */
.schedule-section { background: var(--bg); }

.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: var(--radius);
}
.table-scroll > table { margin: 0 !important; min-width: 580px; width: 100%; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }

table {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.9375rem;
}
thead { background: var(--ink); }
thead th {
  color: var(--bg);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 18px;
  text-align: left;
  white-space: nowrap;
}
tbody tr { border-bottom: 1px solid var(--line); transition: background 200ms; }
tbody tr:hover { background: var(--surface); }
tbody td { padding: 14px 18px; }
tbody td:first-child { font-weight: 500; }

.badge-open {
  display: inline-block;
  background: rgba(224,72,50,0.1);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--surface); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 32px);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-calli);
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.25;
  position: absolute;
  top: 12px; left: 20px;
  line-height: 1;
}
.testimonial-card blockquote {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 16px;
  font-style: italic;
  padding-top: 20px;
}
.testimonial-author {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--ink);
}
.testimonial-meta {
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin-top: 2px;
}

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ── FAQ ACCORDION ── */
.faq-section { background: var(--bg); }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  padding: 18px 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink);
  transition: color 240ms;
}
.faq-item summary:hover { color: var(--accent); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform 360ms cubic-bezier(.4,0,.2,1);
  color: var(--ink-soft);
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }

.faq-item > .faq-body {
  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] > .faq-body {
  height: auto;
  padding-block-end: 20px;
}
.faq-body p {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-body { transition: none; }
}

/* ── REGISTRATION / CTA ── */
.register-section {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.register-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -15%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,72,50,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.register-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 768px) {
  .register-inner { grid-template-columns: 1fr 1fr; gap: 48px; }
}
.register-text { color: var(--bg); }
.register-text .eyebrow { color: var(--accent-2); }
.register-text h2 { color: var(--bg); margin-bottom: 16px; }
.register-text p { color: rgba(255,255,255,0.65); font-size: 1.05rem; line-height: 1.7; }

/* ── FORMS ── */
.form-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 36px);
}
.form-card .field { margin-bottom: 18px; }
.form-card label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}
.form-card input[type="text"],
.form-card input[type="email"],
.form-card input[type="tel"],
.form-card select,
.form-card textarea {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--ink);
  transition: border-color 240ms;
}
.form-card input:focus, .form-card select:focus, .form-card textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(224,72,50,0.12);
}
.form-card textarea { min-height: 100px; resize: vertical; }
.form-card select { cursor: pointer; }

.field-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
}
.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);
}
.field-check span {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.field-check a { text-decoration: underline; }

.honeypot { position: absolute; left: -9999px; opacity: 0; }

.form-card button[type="submit"] {
  width: 100%;
  margin-top: 8px;
}

/* ── MANIFESTO QUOTE BAND ── */
.manifesto-band {
  background: var(--accent);
  padding: clamp(2rem, 5vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}
.manifesto-band blockquote {
  font-family: var(--font-calli);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  color: #FFFFFF;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.4;
}
.manifesto-band cite {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin-top: 12px;
  font-weight: 400;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
  font-size: 0.875rem;
  line-height: 1.7;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
.footer-brand .logo { color: var(--bg); margin-bottom: 12px; }
.footer-brand .logo:hover { color: var(--accent); }
.footer-brand p { max-width: 280px; }
.footer-est {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
}

.site-footer h5 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--bg);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  transition: color 200ms, padding-left 200ms;
}
.footer-links a:hover { color: var(--accent-2); padding-left: 4px; }

.footer-contact-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  margin-bottom: 12px;
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--accent-2); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.65); word-break: break-word; overflow-wrap: anywhere; }
.footer-contact-item a:hover { color: var(--accent-2); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.75rem;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-legal a { color: rgba(255,255,255,0.45); }
.footer-legal a:hover { color: var(--accent-2); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius);
  padding: 20px 24px;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }

@media (min-width: 768px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

.cookie-banner h6 {
  font-family: var(--font-head);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.cookie-banner p { font-size: 0.8125rem; line-height: 1.6; margin-bottom: 16px; }
.cookie-banner p a { color: var(--accent-2); text-decoration: underline; }

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-actions button {
  flex: 1;
  min-width: 100px;
  min-height: 44px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8125rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  padding: 10px 16px;
  transition: background 200ms, color 200ms;
}
.cookie-actions .cookie-accept { background: var(--accent); color: #FFFFFF; }
.cookie-actions .cookie-accept:hover { background: var(--accent-2); color: #FFFFFF; }
.cookie-actions .cookie-reject { background: rgba(255,255,255,0.12); color: #FFFFFF; }
.cookie-actions .cookie-reject:hover { background: rgba(255,255,255,0.2); color: #FFFFFF; }
.cookie-actions .cookie-settings { background: rgba(255,255,255,0.12); color: #FFFFFF; }
.cookie-actions .cookie-settings:hover { background: rgba(255,255,255,0.2); color: #FFFFFF; }

/* ── REVEAL / ANIMATION ── */
.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;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ── NICHE ANIMATIONS: CALLIGRAPHY ── */

/* Ink drip */
@keyframes inkDrip {
  0% { transform: translateY(-20px) scaleY(0.3); opacity: 0; }
  15% { opacity: 1; }
  80% { transform: translateY(40px) scaleY(1.2); opacity: 0.6; }
  100% { transform: translateY(60px) scaleY(0.5); opacity: 0; }
}
.ink-drip {
  position: absolute;
  width: 4px; height: 12px;
  background: var(--accent);
  border-radius: 0 0 50% 50%;
  animation: inkDrip 4s ease-in infinite;
  animation-delay: var(--drip-delay, 0s);
  pointer-events: none;
}

/* Pen stroke draw */
@keyframes penDraw {
  to { stroke-dashoffset: 0; }
}

/* Letter stagger (hero h1) — handled inline by charReveal */

/* Ink splash on CTA active */
@keyframes inkSplash {
  0% { transform: scale(0); opacity: 0.5; }
  100% { transform: scale(2.5); opacity: 0; }
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, var(--accent-2) 0%, transparent 70%);
  border-radius: inherit;
  transform: scale(0);
  opacity: 0;
  pointer-events: none;
}
.btn-primary:active::after {
  animation: inkSplash 500ms cubic-bezier(.2,.7,.2,1) forwards;
}

/* Brush texture on section bg */
@keyframes brushReveal {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0 0 0 0); }
}

/* Counter up */
.counter-number { display: inline-block; }

@media (prefers-reduced-motion: reduce) {
  .ink-drip,
  .hero h1 .char,
  .ink-blob,
  .ink-blob-2 { animation: none !important; }
  .hero h1 .char { opacity: 1 !important; transform: none !important; }
  .stroke-line::after { animation: none !important; }
}

/* ── CONTENT PAGES ── */
.page-hero {
  background: var(--surface);
  padding: clamp(2rem, 5vw, 4rem) 0;
  text-align: center;
}
.page-hero .eyebrow { margin-bottom: 8px; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 12px; }
.page-hero p { color: var(--ink-soft); max-width: 560px; margin: 0 auto; }

.page-content {
  padding: clamp(2rem, 5vw, 4rem) 0;
}
.page-content .container { max-width: 760px; }
.page-content h2 { margin: 2.5rem 0 1rem; font-size: 1.5rem; }
.page-content h3 { margin: 2rem 0 0.75rem; font-size: 1.2rem; }
.page-content p { margin-bottom: 1rem; color: var(--ink-soft); line-height: 1.75; }
.page-content ul, .page-content ol { margin: 0 0 1rem 1.5rem; color: var(--ink-soft); }
.page-content li { margin-bottom: 6px; line-height: 1.65; }
.page-content strong { color: var(--ink); }

/* ── CONTACT PAGE ── */
.contact-channels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.contact-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.4,0,.2,1), background 240ms;
  border-radius: 4px;
  padding-left: 8px;
  padding-right: 8px;
}
.contact-row:hover { transform: translateX(4px); background: var(--surface); }
.contact-row svg {
  width: 20px; height: 20px;
  color: var(--ink-soft);
  margin-top: 2px;
  flex-shrink: 0;
  transition: color 240ms, transform 240ms;
}
.contact-row:hover svg { color: var(--accent); transform: scale(1.08); }
.contact-row strong { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 2px; }
.contact-row span, .contact-row a {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.contact-row a:hover { color: var(--accent); }

/* ── THANK YOU PAGE ── */
.thankyou-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.thankyou-card {
  max-width: 520px;
  padding: 48px 32px;
}
.thankyou-card .check-icon {
  width: 64px; height: 64px;
  margin: 0 auto 24px;
  color: var(--accent);
}
.thankyou-card h1 { font-size: 2rem; margin-bottom: 12px; }
.thankyou-card p { color: var(--ink-soft); margin-bottom: 28px; }

/* ── 404 PAGE ── */
.error-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.error-card { max-width: 520px; padding: 48px 32px; }
.error-card .error-code {
  font-family: var(--font-head);
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
  opacity: 0.3;
}
.error-card h1 { font-size: 1.75rem; margin-bottom: 12px; }
.error-card p { color: var(--ink-soft); margin-bottom: 28px; }

/* ── ABOUT PAGE ── */
.about-story { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 768px) {
  .about-story { grid-template-columns: 1fr 1fr; }
}
.about-story-img {
  border: 1px solid var(--line);
  padding: 12px;
  position: relative;
}
.about-story-img::before {
  content: '';
  position: absolute;
  top: -6px; left: -6px; right: -6px; bottom: -6px;
  border: 1px solid var(--accent);
  opacity: 0.35;
}
.about-story-img img { width: 100%; aspect-ratio: 4/3; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), box-shadow 320ms;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(224,72,50,0.12);
}
.team-card-header { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.team-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--surface-2);
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--line);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { font-size: 1.05rem; margin-bottom: 2px; }
.team-card .team-role { font-size: 0.8125rem; color: var(--accent); font-weight: 500; }
.team-card .team-bio { font-size: 0.875rem; color: var(--ink-soft); line-height: 1.65; }

/* ── SITEMAP PAGE ── */
.sitemap-list { list-style: none; padding: 0; }
.sitemap-list li { margin-bottom: 8px; }
.sitemap-list a { font-size: 1rem; font-weight: 500; }
.sitemap-group { margin-bottom: 24px; }
.sitemap-group h3 { font-size: 1.1rem; margin-bottom: 8px; border-bottom: 1px solid var(--line); padding-bottom: 6px; }

/* ── RESPONSIVE ── */
@media (max-width: 1280px) {
  :root { --header-h: 68px; }
}

@media (max-width: 1024px) {
  :root { --header-h: 64px; }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { min-height: 260px; }
  .register-inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --header-h: 60px; }
  h1 { font-size: clamp(2rem, 8vw, 3rem); }
  section { padding-top: clamp(2rem, 6vw, 3rem); padding-bottom: clamp(2rem, 6vw, 3rem); }
  .hero { padding-top: clamp(2rem, 6vw, 3rem); }
  .pill-strip { gap: 6px; }
  .pill { font-size: 0.875rem; padding: 6px 14px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .trust-strip { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}

@media (max-width: 390px) {
  body { font-size: 0.9375rem; }
  .form-card { padding: 20px 16px; }
  .pricing-card { padding: 20px 16px; }
}

/* ── PRINT ── */
@media print {
  .site-header, .drawer, .drawer-backdrop, .cookie-banner, .nav-toggle, .skip-link { display: none !important; }
  main { padding-top: 0 !important; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
  .reveal { opacity: 1 !important; transform: none !important; }
  section { break-inside: avoid; page-break-inside: avoid; }
}
