/* === TOKENS === */
:root {
  --bg: #1A1714;
  --surface: #2C2620;
  --surface-2: #3A312A;
  --ink: #E8DFD0;
  --ink-soft: #B8AFA3;
  --accent: #D4913B;
  --accent-2: #8B6F4E;
  --line: rgba(232,223,208,0.12);
  --line-strong: rgba(232,223,208,0.25);
  --header-h: 72px;
  --container-pad: clamp(16px, 4vw, 32px);
  --max-w: 1080px;
  interpolate-size: allow-keywords;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
html, body { overflow-x: hidden; max-width: 100vw; margin: 0; }
body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.7;
  letter-spacing: -0.01em;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
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(--ink); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* === SKIP LINK === */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--accent); color: var(--bg);
  padding: 8px 16px; border-radius: 4px; font-weight: 600;
  z-index: 9999;
}
.skip-link:focus { top: 8px; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-style: italic;
  line-height: 1.1;
  letter-spacing: -0.012em;
}
h1 { font-size: clamp(36px, 5vw, 72px); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1.2em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.3rem); }
.eyebrow {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.drop-cap::first-letter {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 4.5em;
  float: left;
  line-height: 0.8;
  margin-right: 0.08em;
  margin-top: 0.05em;
  color: var(--accent);
}

/* === LAYOUT === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}
main { padding-top: var(--header-h); }
section {
  padding: clamp(60px, 10vw, 120px) 0;
}
.hairline {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(26,23,20,0.85);
  backdrop-filter: blur(2px);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.site-header.scrolled {
  background: rgba(26,23,20,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,.18);
}
.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  width: 0;
  pointer-events: none;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.logo {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.logo:hover { color: var(--accent); }

/* === NAV DESKTOP === */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-desktop a {
  color: var(--ink-soft);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  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: 1px;
  background: var(--accent);
  transition: width 240ms cubic-bezier(.4,0,.2,1);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after { width: 100%; }
.nav-desktop a.is-active { color: var(--accent); }
.nav-desktop a.is-active::after { width: 100%; }
.nav-desktop .nav-cta {
  background: var(--accent);
  color: var(--bg);
  padding: 8px 20px;
  border-radius: 3px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover { background: var(--ink); color: var(--bg); }
.nav-desktop .nav-cta.is-active { color: var(--bg); }

/* === HAMBURGER === */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px; height: 44px;
  z-index: 1100;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 200ms;
  position: absolute;
}
.nav-toggle span:nth-child(1) { transform: translateY(-7px); }
.nav-toggle span:nth-child(2) { transform: translateY(0); }
.nav-toggle span:nth-child(3) { transform: translateY(7px); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); }

/* === MOBILE DRAWER === */
.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms;
}
.mobile-drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-drawer {
  position: fixed; height: 100vh;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: 100px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer a {
  color: var(--ink);
  font-size: 1.1rem;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  display: block;
  transition: color 240ms, transform 240ms;
}
.mobile-drawer a:hover { color: var(--accent); transform: translateX(4px); }
.mobile-drawer a.is-active { color: var(--accent); }
.mobile-drawer .nav-cta-mobile {
  margin-top: 24px;
  background: var(--accent);
  color: var(--bg);
  text-align: center;
  padding: 14px 24px;
  border-radius: 3px;
  font-weight: 600;
  border: none;
}
.mobile-drawer .nav-cta-mobile:hover { background: var(--ink); color: var(--bg); }
.drawer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--ink-soft);
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}
.drawer-close:hover { color: var(--accent); }

@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: clamp(80px, 12vh, 160px) var(--container-pad);
}
.hero-wheel {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(280px, 50vw, 520px);
  height: clamp(280px, 50vw, 520px);
  opacity: 0.06;
  animation: wheelSpin 30s linear infinite;
}
@keyframes wheelSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
.hero-circular-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(320px, 55vw, 580px);
  height: clamp(320px, 55vw, 580px);
  animation: wheelSpin 45s linear infinite;
  opacity: 0.55;
}
.hero-circular-text text {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  fill: var(--accent);
}
.hero h1 {
  position: relative;
  z-index: 2;
  margin-bottom: 1.5rem;
  max-width: min(20ch, 90%);
}
.hero h1 .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: charReveal 0.5s cubic-bezier(.2,.7,.2,1) forwards;
}
@keyframes charReveal {
  to { opacity: 1; transform: translateY(0); }
}
.hero-sub {
  position: relative;
  z-index: 2;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fadeUp 0.6s 1.2s cubic-bezier(.2,.7,.2,1) forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.hero-sub { transform: translateY(16px); }
.hero-cta {
  position: relative;
  z-index: 2;
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  padding: 14px 36px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: 3px;
  opacity: 0;
  animation: fadeUp 0.6s 1.6s cubic-bezier(.2,.7,.2,1) forwards;
  transform: translateY(16px);
  transition: background 240ms, color 240ms, transform 180ms;
}
.hero-cta:hover { background: var(--ink); color: var(--bg); transform: translateY(-2px); }
.hero-cta:focus-visible { background: var(--ink); color: var(--bg); }
.hero-keys {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 3rem;
  opacity: 0;
  animation: fadeUp 0.6s 2s cubic-bezier(.2,.7,.2,1) forwards;
  transform: translateY(16px);
}
.hero-keys span {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
  padding: 6px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
}

/* === REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal-stagger { transition-delay: calc(var(--i, 0) * 80ms); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero h1 .char { opacity: 1 !important; transform: none !important; animation: none !important; }
  .hero-sub, .hero-cta, .hero-keys { opacity: 1 !important; transform: none !important; animation: none !important; }
  .hero-wheel, .hero-circular-text { animation: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* === SECTIONS === */
.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}

/* === COURSES === */
.course-grid {
  display: grid;
  gap: 24px;
}
.course-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(24px, 3vw, 36px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 16px;
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms cubic-bezier(.2,.7,.2,1), border-color 360ms;
}
.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px -12px rgba(212,145,59,0.15);
  border-color: var(--accent-2);
}
.course-card h3 { margin-bottom: 0.4em; font-size: clamp(1.2rem, 2vw, 1.5rem); }
.course-card .meta {
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.course-card .price {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--accent);
  white-space: nowrap;
}
.price-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 24px;
  font-style: italic;
}

/* === EXPERIENCE === */
.experience-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.experience-text p { margin-bottom: 1.2em; color: var(--ink-soft); }
.experience-text p:first-of-type { color: var(--ink); }
.package-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.package-item {
  padding: 20px 24px;
  background: var(--surface);
  border-left: 3px solid var(--accent);
  border-radius: 0 4px 4px 0;
  transition: transform 240ms cubic-bezier(.4,0,.2,1), background 240ms;
}
.package-item:hover { transform: translateY(-2px); background: var(--surface-2); }
.package-item h4 { font-size: 1rem; margin-bottom: 4px; }
.package-item .pkg-price {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 600;
}

/* === INSTRUCTORS === */
.instructor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.instructor-card {
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: border-color 360ms, transform 360ms cubic-bezier(.2,.7,.2,1);
}
.instructor-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms cubic-bezier(.2,.7,.2,1);
}
.instructor-card:hover { border-color: var(--accent-2); transform: translateY(-6px); }
.instructor-card:hover::before { transform: scaleX(1); }
.instructor-card h3 { margin-bottom: 0.3em; }
.instructor-card .role {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1em;
  display: block;
}
.instructor-card p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.6; }

/* === PROCESS === */
.process-timeline {
  position: relative;
  padding-left: 48px;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 16px; top: 0; bottom: 0;
  width: 1px;
  background: var(--line-strong);
}
.process-step {
  position: relative;
  margin-bottom: 40px;
  padding-left: 24px;
}
.process-step::before {
  content: '';
  position: absolute;
  left: -40px; top: 8px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--bg), 0 0 0 5px var(--accent-2);
}
.process-step .step-time {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 4px;
}
.process-step h4 { margin-bottom: 0.4em; }
.process-step p { font-size: 0.9rem; color: var(--ink-soft); max-width: 540px; }

/* === TESTIMONIALS === */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}
.testimonial-grid .testimonial-card:first-child { grid-column: auto !important; }
.testimonial-card {
  padding: clamp(24px, 4vw, 40px);
  background: var(--surface);
  border-radius: 6px;
  position: relative;
  border: 1px solid var(--line);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; left: 24px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
}
.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 1em;
  padding-top: 24px;
}
.testimonial-card cite {
  font-style: normal;
  font-size: 0.8rem;
  color: var(--accent-2);
  letter-spacing: 0.04em;
}

/* === PRICING TABLE === */
.pricing-section { background: var(--surface); border-radius: 8px; padding: clamp(32px, 5vw, 56px); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.pricing-card {
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bg);
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px -8px rgba(212,145,59,0.12);
}
.pricing-card h4 { margin-bottom: 0.5em; }
.pricing-card .card-price {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 0.6em;
}
.pricing-card .card-price small {
  font-size: 0.5em;
  font-style: normal;
  font-weight: 400;
  color: var(--ink-soft);
}
.dahil-list, .haric-list {
  font-size: 0.85rem;
  margin-top: 12px;
}
.dahil-list li, .haric-list li { padding: 4px 0; padding-left: 16px; position: relative; }
.dahil-list li::before { content: '+'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.haric-list li::before { content: '–'; position: absolute; left: 0; color: var(--ink-soft); }
.haric-list { color: var(--ink-soft); margin-top: 8px; }

/* === FAQ === */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  padding: 20px 0;
  cursor: pointer;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 240ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-style: normal;
  font-size: 1.4rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 320ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] summary::after { content: '−'; transform: rotate(180deg); }
.faq-item summary:hover { color: var(--accent); }
.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.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item .answer { transition: none; }
}

/* === FORM === */
.form-section { max-width: 640px; margin: 0 auto; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  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: 4px;
  color: var(--ink);
  transition: border-color 240ms, box-shadow 240ms;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212,145,59,0.12);
  outline: none;
}
.field textarea { min-height: 120px; resize: vertical; }
.field select { appearance: auto; -webkit-appearance: auto; }
.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-checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}
.field-checkbox label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.85rem;
  color: var(--ink);
  margin-bottom: 0;
}
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.btn-submit {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  padding: 14px 40px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: background 240ms, color 240ms, transform 180ms;
}
.btn-submit:hover { background: var(--ink); color: var(--bg); transform: translateY(-2px); }
.btn-submit:focus-visible { background: var(--ink); color: var(--bg); }
.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.form-success, .form-error {
  padding: 16px 20px;
  border-radius: 4px;
  margin-top: 16px;
  font-size: 0.9rem;
  display: none;
}
.form-success { background: rgba(212,145,59,0.1); border: 1px solid var(--accent); color: var(--accent); }
.form-error { background: rgba(200,50,50,0.1); border: 1px solid #c83232; color: #e85555; }
.form-success.is-visible, .form-error.is-visible { display: block; }

/* === CONTACT CHANNELS === */
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 12px 16px;
  border-radius: 4px;
  transition: transform 240ms cubic-bezier(.4,0,.2,1), background 240ms;
}
.contact-row:hover {
  transform: translateX(4px);
  background: var(--surface);
}
.contact-row svg {
  width: 20px; height: 20px;
  color: var(--ink-soft);
  flex-shrink: 0;
  margin-top: 2px;
  transition: color 240ms, transform 240ms;
}
.contact-row:hover svg { color: var(--accent); transform: scale(1.08); }
.contact-row .ch-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 2px;
}
.contact-row .ch-value {
  font-size: 0.95rem;
  color: var(--ink);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.contact-row .ch-value a { color: var(--ink); }
.contact-row .ch-value a:hover { color: var(--accent); }

/* === FOOTER === */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: clamp(40px, 6vw, 64px) 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo { font-size: 1.1rem; margin-bottom: 12px; display: inline-block; }
.footer-brand p { font-size: 0.85rem; color: var(--ink-soft); max-width: 320px; line-height: 1.6; }
.footer-links h4 {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-style: normal;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 0.85rem;
  color: var(--ink-soft);
  transition: color 240ms;
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--ink-soft);
}
.footer-bottom a { color: var(--ink-soft); }
.footer-bottom a:hover { color: var(--accent); }

/* === 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: 8px;
  padding: 20px 24px;
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  box-shadow: 0 12px 40px -8px rgba(0,0,0,0.4);
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
@media (min-width: 640px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
.cookie-banner h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  font-style: normal;
}
.cookie-banner p {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
  line-height: 1.5;
}
.cookie-banner p a { text-decoration: underline; }
.cookie-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-btns button {
  padding: 10px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 3px;
  min-height: 44px;
  transition: background 240ms, color 240ms;
}
.cookie-btns .cb-accept { background: var(--accent); color: var(--bg); }
.cookie-btns .cb-accept:hover { background: var(--ink); color: var(--bg); }
.cookie-btns .cb-reject { background: var(--surface-2); color: var(--ink); border: 1px solid var(--line-strong); }
.cookie-btns .cb-reject:hover { background: var(--ink); color: var(--bg); }
.cookie-btns .cb-settings { background: transparent; color: var(--ink-soft); border: 1px solid var(--line); }
.cookie-btns .cb-settings:hover { background: var(--surface-2); color: var(--ink); }

/* === 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; }
th, td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.9rem; }
th { font-weight: 600; color: var(--ink); background: var(--surface); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; }
td { color: var(--ink-soft); }

/* === BUTTONS === */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 3px;
  transition: background 240ms, color 240ms, transform 180ms;
}
.btn-primary:hover, .btn-primary:focus-visible { background: var(--ink); color: var(--bg); transform: translateY(-2px); }
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--ink);
  padding: 12px 28px;
  font-weight: 600;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  transition: background 240ms, color 240ms, border-color 240ms;
}
.btn-ghost:hover, .btn-ghost:focus-visible { background: var(--surface); color: var(--ink); border-color: var(--accent); }

/* === TRUST STRIP === */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 2rem;
  opacity: 0;
  animation: fadeUp 0.6s 2.4s cubic-bezier(.2,.7,.2,1) forwards;
  transform: translateY(16px);
  position: relative;
  z-index: 2;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 6px 12px;
  background: var(--surface);
  border-radius: 3px;
  border: 1px solid var(--line);
}
.trust-badge svg { width: 14px; height: 14px; color: var(--accent); }

/* === NICHE ANIMATIONS === */
@keyframes clayForm {
  0%, 100% { border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; }
  25% { border-radius: 45% 55% 55% 45% / 55% 45% 55% 45%; }
  50% { border-radius: 55% 45% 45% 55% / 45% 55% 45% 55%; }
  75% { border-radius: 50% 50% 55% 45% / 50% 50% 50% 50%; }
}
@keyframes kilnGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,145,59,0); }
  50% { box-shadow: 0 0 24px 4px rgba(212,145,59,0.15); }
}
@keyframes glazeDrip {
  0% { transform: scaleY(0); opacity: 0; }
  60% { opacity: 1; }
  100% { transform: scaleY(1); opacity: 1; }
}
.clay-morph {
  width: 80px; height: 80px;
  background: var(--accent-2);
  animation: clayForm 8s ease-in-out infinite;
  opacity: 0.08;
  position: absolute;
}
.kiln-glow { animation: kilnGlow 4s ease-in-out infinite; }
.glaze-drip {
  transform-origin: top;
  animation: glazeDrip 1.2s cubic-bezier(.2,.7,.2,1) forwards;
}

/* === COUNTER === */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  text-align: center;
  padding: clamp(32px, 5vw, 56px) 0;
}
.stat-item .stat-number {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  color: var(--accent);
  display: block;
}
.stat-item .stat-label {
  font-size: 0.8rem;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* === CANCELLATION === */
.cancel-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.cancel-tier {
  padding: 20px;
  background: var(--surface);
  border-radius: 6px;
  border-left: 3px solid var(--accent);
  text-align: center;
}
.cancel-tier .tier-time {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.cancel-tier .tier-action {
  font-size: 0.85rem;
  color: var(--accent);
}

/* === PAGE CONTENT === */
.page-hero {
  padding: clamp(60px, 10vh, 120px) 0 clamp(40px, 6vh, 80px);
  text-align: center;
}
.page-content {
  padding-bottom: clamp(60px, 10vw, 120px);
}
.page-content h2 { margin-top: 2.5em; margin-bottom: 0.8em; font-size: clamp(1.5rem, 3vw, 2.2rem); }
.page-content h3 { margin-top: 1.8em; margin-bottom: 0.6em; font-size: clamp(1.1rem, 2vw, 1.5rem); }
.page-content p { margin-bottom: 1.2em; color: var(--ink-soft); max-width: 720px; }
.page-content ul, .page-content ol { margin-bottom: 1.2em; padding-left: 20px; }
.page-content li { margin-bottom: 0.5em; color: var(--ink-soft); font-size: 0.9rem; position: relative; padding-left: 16px; }
.page-content li::before { content: '·'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .experience-content { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .course-card { grid-template-columns: 1fr; }
  .course-card .price { font-size: 1.3rem; }
}
@media (max-width: 640px) {
  :root { --header-h: 60px; }
  section { padding: clamp(40px, 8vw, 80px) 0; }
  .hero { min-height: 90vh; }
  h1 { font-size: clamp(32px, 8vw, 48px); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .cancel-tiers { grid-template-columns: 1fr; }
  .instructor-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .trust-strip { gap: 8px; }
  .trust-badge { font-size: 0.65rem; padding: 5px 8px; }
}
@media (max-width: 430px) {
  .hero-keys { flex-direction: column; align-items: center; }
  .cookie-btns { flex-direction: column; }
  .cookie-btns button { width: 100%; }
}

/* === PRINT === */
@media print {
  .site-header, .cookie-banner, .mobile-drawer, .mobile-drawer-backdrop, .nav-toggle { display: none !important; }
  main { padding-top: 0; }
  body { background: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
}

/* drawer-close hidden — hamburger handles close */
.drawer-close { display: none !important; }

/* ATÖLYE KARELERI gallery */
.atolye-kareler-section { padding-block: clamp(48px, 8vw, 96px); }
.atolye-kareler-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.atolye-kare {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #f3ede4;
  aspect-ratio: 4 / 3;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.atolye-kare img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1), filter 400ms ease;
}
.atolye-kare:hover img {
  transform: scale(1.04);
  filter: brightness(1.04) contrast(1.02);
}
.atolye-kare figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 18px;
  font-size: 13px;
  color: #fff;
  letter-spacing: 0.02em;
  background: linear-gradient(0deg, rgba(40,28,18,0.78) 0%, rgba(40,28,18,0.0) 100%);
  pointer-events: none;
}
@media (max-width: 880px) {
  .atolye-kareler-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 540px) {
  .atolye-kareler-grid { grid-template-columns: 1fr; gap: 14px; }
  .atolye-kare { aspect-ratio: 5 / 4; }
}
