/* ===== DESIGN TOKENS ===== */
:root {
  --bg: #F4F0FA;
  --surface: #FFFFFF;
  --ink: #2A1F3D;
  --accent: #7B4AE2;
  --accent-2: #F2994A;
  --line: rgba(42,31,61,0.12);
  --header-h: 72px;
  --radius: 10px;
  --radius-lg: 16px;
  interpolate-size: allow-keywords;
}

/* ===== RESET & BASE ===== */
*,*::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, 'Helvetica Neue', sans-serif;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; word-break: break-word; overflow-wrap: anywhere; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--accent); color: #fff;
  padding: 8px 16px; border-radius: 4px;
  z-index: 9999; font-size: 0.875rem;
}
.skip-link:focus { top: 8px; }

/* ===== FOCUS RING ===== */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}
main { padding-top: var(--header-h); }

/* ===== TYPOGRAPHY ===== */
.eyebrow {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 16px;
}
.section-sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(42,31,61,0.7);
  max-width: 560px;
  line-height: 1.7;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(244,240,250,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease;
}
.site-header.scrolled {
  background: rgba(244,240,250,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
  height: 60px;
}
.scroll-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: var(--accent);
  width: 0%;
  transition: width 60ms linear;
  pointer-events: none;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}
.logo {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1100;
}
.logo svg { width: 28px; height: 28px; }

/* ===== NAV DESKTOP ===== */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 32px;
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}
.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color 240ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 240ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { width: 100%; }
.nav-desktop a:hover { color: var(--accent); }
.nav-desktop a.is-active { color: var(--accent); }
.nav-desktop .nav-cta {
  background: var(--ink);
  color: var(--surface);
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: background 240ms cubic-bezier(.2,.7,.2,1), color 240ms cubic-bezier(.2,.7,.2,1), transform 180ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: var(--accent);
  color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(123,74,226,0.2);
}

/* ===== HAMBURGER ===== */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px; height: 44px;
  z-index: 1100;
  position: relative;
  border: 1.5px solid rgba(42,31,61,0.25);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 2px 10px rgba(42,31,61,0.12);
  transition: border-color 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms cubic-bezier(.2,.7,.2,1), background 240ms cubic-bezier(.2,.7,.2,1);
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block;
  width: 22px; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 200ms, background 200ms;
}
.nav-toggle span:nth-child(1) { margin-bottom: 5px; }
.nav-toggle span:nth-child(3) { margin-top: 5px; }
.nav-toggle:hover {
  border-color: var(--accent);
  box-shadow: 0 2px 12px rgba(123,74,226,0.12);
}
.nav-toggle:hover span { background: var(--accent); }
.nav-toggle[aria-expanded="true"] {
  border-color: var(--accent);
  background: rgba(123,74,226,0.06);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) 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; }
.mobile-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), visibility 0ms 320ms;
  padding: 100px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-drawer.is-open { transform: translateX(0); visibility: visible; transition: transform 320ms cubic-bezier(.2,.7,.2,1), visibility 0ms 0ms; }
.drawer-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--ink);
  background: var(--bg);
  border-radius: 8px;
  border: 1.5px solid var(--line);
  transition: color 200ms, background 200ms, border-color 200ms;
  z-index: 10;
}
.drawer-close:hover { color: var(--accent); border-color: var(--accent); background: rgba(123,74,226,0.06); }
.mobile-drawer a {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: color 200ms, transform 200ms;
}
.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: #fff;
  padding: 14px 24px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  border-bottom: none;
  transition: background 200ms, color 200ms;
}
.mobile-drawer .nav-cta-mobile:hover { background: var(--ink); color: var(--surface); transform: none; box-shadow: 0 4px 16px rgba(42,31,61,0.2); }

/* ===== HERO ===== */
.hero {
  padding: clamp(60px, 10vh, 120px) 0 clamp(40px, 8vh, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-date-block {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  perspective: 800px;
  margin-bottom: 32px;
}
.calendar-leaf {
  width: 120px; height: 140px;
  position: relative;
  transform-style: preserve-3d;
  animation: leafFlip 4s cubic-bezier(.4,0,.2,1) infinite;
}
.calendar-leaf-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(123,74,226,0.12);
  backface-visibility: hidden;
  border-top: 4px solid var(--accent);
}
.calendar-leaf-face.back {
  transform: rotateY(180deg);
  border-top-color: var(--accent-2);
}
.calendar-leaf-face .month {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 4px;
}
.calendar-leaf-face .day {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', system-ui, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.calendar-leaf-face .year {
  font-size: 0.8rem;
  color: rgba(42,31,61,0.5);
  margin-top: 4px;
}
@keyframes leafFlip {
  0%, 40% { transform: rotateY(0deg); }
  50%, 90% { transform: rotateY(180deg); }
  100% { transform: rotateY(360deg); }
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
  color: var(--ink);
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(42,31,61,0.7);
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.hero-img {
  box-shadow: 0 20px 60px rgba(42,31,61,0.15), 0 0 40px rgba(242,153,74,0.08);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms cubic-bezier(.2,.7,.2,1);
}
.hero-img:hover {
  transform: scale(1.01);
  box-shadow: 0 24px 72px rgba(42,31,61,0.18), 0 0 56px rgba(242,153,74,0.12);
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}
.hero-tags span {
  background: var(--surface);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent);
  border: 1px solid rgba(123,74,226,0.2);
  transition: background 240ms cubic-bezier(.2,.7,.2,1), transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms cubic-bezier(.2,.7,.2,1);
}
.hero-tags span:hover {
  background: rgba(123,74,226,0.06);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(123,74,226,0.1);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--surface);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: background 240ms cubic-bezier(.2,.7,.2,1), color 240ms cubic-bezier(.2,.7,.2,1), transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms cubic-bezier(.2,.7,.2,1);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent);
  color: var(--surface);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(123,74,226,0.32), 0 0 20px rgba(242,153,74,0.16);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  border: 1.5px solid var(--line);
  transition: background 240ms cubic-bezier(.2,.7,.2,1), color 240ms cubic-bezier(.2,.7,.2,1), border-color 240ms cubic-bezier(.2,.7,.2,1), transform 180ms cubic-bezier(.2,.7,.2,1);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(123,74,226,0.1);
}

/* ===== SECTIONS COMMON ===== */
section {
  padding: clamp(60px, 10vh, 100px) 0;
}
.section-header {
  margin-bottom: clamp(32px, 5vw, 56px);
}

/* ===== #takvim — HORIZONTAL TIMELINE ===== */
.timeline-wrapper {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 24px 0 40px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}
.timeline-wrapper::-webkit-scrollbar { height: 6px; }
.timeline-wrapper::-webkit-scrollbar-track { background: transparent; }
.timeline-wrapper::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
.timeline-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  min-width: max-content;
  position: relative;
  padding: 0 24px;
}
.timeline-track::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 24px; right: 24px;
  height: 2px;
  background: var(--line);
}
.timeline-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 160px;
  padding: 0 12px;
  position: relative;
  cursor: default;
}
.timeline-node-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--line);
  position: relative;
  z-index: 2;
  transition: border-color 240ms cubic-bezier(.2,.7,.2,1), background 240ms cubic-bezier(.2,.7,.2,1), transform 240ms cubic-bezier(.2,.7,.2,1);
}
.timeline-node:hover .timeline-node-dot,
.timeline-node.is-active .timeline-node-dot {
  border-color: var(--accent);
  background: var(--accent);
  transform: scale(1.3);
}
.timeline-node-month {
  margin-top: 16px;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--accent);
}
.timeline-node-title {
  margin-top: 8px;
  font-size: 0.8125rem;
  color: var(--ink);
  text-align: center;
  max-width: 140px;
  line-height: 1.4;
}
.timeline-node-date {
  margin-top: 4px;
  font-size: 0.75rem;
  color: rgba(42,31,61,0.5);
}

/* ===== #kurslar — ACCORDION ===== */
.courses-grid {
  display: grid;
  gap: 12px;
  max-width: 800px;
}
.course-item {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: box-shadow 240ms cubic-bezier(.2,.7,.2,1), border-color 240ms cubic-bezier(.2,.7,.2,1);
}
.course-item:hover {
  box-shadow: 0 6px 24px rgba(123,74,226,0.12), 0 0 16px rgba(242,153,74,0.06);
  border-color: rgba(123,74,226,0.22);
}
.course-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(16px, 3vw, 24px) clamp(18px, 3vw, 28px);
  cursor: pointer;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--ink);
  list-style: none;
  transition: color 200ms;
}
.course-item summary::-webkit-details-marker { display: none; }
.course-item summary::after {
  content: '';
  width: 10px; height: 10px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 320ms cubic-bezier(.4,0,.2,1);
  flex-shrink: 0;
  margin-left: 16px;
}
.course-item[open] summary::after {
  transform: rotate(-135deg);
}
.course-item summary:hover { color: var(--accent); }
.course-item > .course-body {
  height: 0;
  padding: 0 clamp(18px, 3vw, 28px);
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.course-item[open] > .course-body {
  height: auto;
  padding-block-end: 26px;
}
@media (prefers-reduced-motion: reduce) {
  .course-item > .course-body { transition: none; }
}
.course-body-inner {
  display: grid;
  gap: 12px;
}
.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.course-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: rgba(42,31,61,0.7);
}
.course-meta-item svg {
  width: 16px; height: 16px;
  stroke: var(--accent);
}
.course-content-list {
  padding-left: 18px;
  list-style: disc;
}
.course-content-list li {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(42,31,61,0.8);
}
.course-price {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--accent);
}

/* ===== #mevsim — SEASON CARDS ===== */
.season-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.season-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms cubic-bezier(.2,.7,.2,1), border-color 240ms cubic-bezier(.2,.7,.2,1);
}
.season-card:hover {
  transform: translateY(-6px);
  border-color: rgba(123,74,226,0.25);
}
.season-icon {
  width: 48px; height: 48px;
  margin-bottom: 20px;
  color: var(--accent);
}
.season-icon svg { width: 100%; height: 100%; }
.season-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.season-card p {
  font-size: 0.875rem;
  color: rgba(42,31,61,0.7);
  line-height: 1.7;
}
.season-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(123,74,226,0.08);
  color: var(--accent);
}

/* Season-specific accent decorations */
.season-card--spring::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(123,74,226,0.12) 0%, transparent 70%);
  border-radius: 50%;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 280ms cubic-bezier(.2,.7,.2,1);
}
.season-card--spring:hover::before { transform: scale(1.4); opacity: 0.7; }
.season-card--summer::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(242,153,74,0.18) 0%, transparent 70%);
  border-radius: 50%;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 280ms cubic-bezier(.2,.7,.2,1);
}
.season-card--summer:hover::before { transform: scale(1.4); opacity: 0.7; }
.season-card--autumn::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(242,153,74,0.14) 0%, transparent 70%);
  border-radius: 50%;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 280ms cubic-bezier(.2,.7,.2,1);
}
.season-card--autumn:hover::before { transform: scale(1.4); opacity: 0.7; }
.season-card--winter::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(123,74,226,0.1) 0%, transparent 70%);
  border-radius: 50%;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 280ms cubic-bezier(.2,.7,.2,1);
}
.season-card--winter:hover::before { transform: scale(1.4); opacity: 0.7; }

/* ===== #kurumsal — CORPORATE ===== */
.corporate-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 768px) {
  .corporate-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
}
.corporate-info h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: 16px;
}
.corporate-info p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(42,31,61,0.75);
  margin-bottom: 24px;
}
.corporate-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.metric-box {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms cubic-bezier(.2,.7,.2,1), border-color 240ms cubic-bezier(.2,.7,.2,1);
}
.metric-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(123,74,226,0.15), 0 0 24px rgba(242,153,74,0.1);
  border-color: rgba(123,74,226,0.22);
}
.metric-box .number {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.metric-box .label {
  font-size: 0.8125rem;
  color: rgba(42,31,61,0.6);
}

/* ===== #iletisim (index) — CTA SECTION ===== */
.cta-section {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  border: 1px solid var(--line);
  transition: box-shadow 280ms cubic-bezier(.2,.7,.2,1), border-color 280ms cubic-bezier(.2,.7,.2,1);
}
.cta-section:hover {
  box-shadow: 0 0 60px rgba(242,153,74,0.16), 0 0 100px rgba(123,74,226,0.09);
  border-color: rgba(242,153,74,0.18);
}
.cta-section h2 { margin-bottom: 16px; }
.cta-section p {
  max-width: 480px;
  margin: 0 auto 32px;
  color: rgba(42,31,61,0.7);
}
.cta-contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  font-size: 0.875rem;
  color: rgba(42,31,61,0.7);
}
.cta-contact-info a {
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 200ms;
}
.cta-contact-info a:hover { color: var(--accent); }
.cta-contact-info svg { width: 16px; height: 16px; stroke: var(--accent); }

/* ===== FORM PAGE ===== */
.form-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) {
  .form-section { grid-template-columns: 1fr 1fr; gap: 64px; }
}
.contact-channels {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}
.contact-row {
  display: contents;
  cursor: default;
}
.contact-row:hover .contact-icon { color: var(--accent); transform: scale(1.08); }
.contact-row:hover .contact-text { transform: translateX(4px); }
.contact-icon {
  width: 20px; height: 20px;
  color: var(--ink);
  transition: color 240ms cubic-bezier(.4,0,.2,1), transform 240ms cubic-bezier(.4,0,.2,1);
  margin-top: 2px;
}
.contact-icon svg { width: 100%; height: 100%; }
.contact-text {
  font-size: 0.9375rem;
  transition: transform 240ms cubic-bezier(.4,0,.2,1);
}
.contact-text strong {
  display: block;
  font-weight: 600;
  font-size: 0.8125rem;
  color: rgba(42,31,61,0.6);
  margin-bottom: 2px;
}
.contact-text a { transition: color 200ms; }
.contact-text a:hover { color: var(--accent); }
.contact-form {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  transition: box-shadow 280ms cubic-bezier(.2,.7,.2,1);
}
.contact-form:focus-within {
  box-shadow: 0 8px 32px rgba(123,74,226,0.1), 0 0 16px rgba(242,153,74,0.06);
}
.field {
  margin-bottom: 20px;
}
.field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-size: 0.9375rem;
  background: var(--bg);
  color: var(--ink);
  transition: border-color 200ms, box-shadow 200ms;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(123,74,226,0.1);
  outline: none;
}
.field textarea { resize: vertical; min-height: 120px; }
.field-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.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 label {
  font-size: 0.8125rem;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.5;
}
.field-error {
  font-size: 0.75rem;
  color: #D32F2F;
  margin-top: 4px;
  display: none;
}
.field.has-error .field-error { display: block; }
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: #D32F2F; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.is-visible { display: block; }
.form-success svg { margin: 0 auto 16px; color: var(--accent); }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: rgba(42,31,61,0.7); font-size: 0.9375rem; }
.honey { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: clamp(48px, 8vw, 80px) 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; max-width: 300px; }
.footer-links h4 {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-links a {
  display: block;
  font-size: 0.8125rem;
  padding: 6px 0;
  transition: color 240ms cubic-bezier(.2,.7,.2,1), transform 240ms cubic-bezier(.2,.7,.2,1);
}
.footer-links a:hover { color: #fff; transform: translateX(6px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.75rem;
}
.footer-bottom a { transition: color 200ms; }
.footer-bottom a:hover { color: #fff; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  border: 1px solid var(--line);
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
@media (max-width: 767px) {
  .cookie-banner {
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: var(--radius) var(--radius) 0 0;
    padding: 20px 20px calc(20px + env(safe-area-inset-bottom, 0px));
    max-width: 100%;
  }
  .cookie-actions { gap: 10px; }
  .cookie-actions button { flex: 1; min-width: 0; text-align: center; }
}
@media (min-width: 768px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
.cookie-banner h4 {
  font-size: 0.9375rem;
  margin-bottom: 8px;
}
.cookie-banner p {
  font-size: 0.8125rem;
  color: rgba(42,31,61,0.7);
  line-height: 1.6;
  margin-bottom: 16px;
}
.cookie-banner p a { color: var(--accent); text-decoration: underline; }
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cookie-actions button {
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  min-height: 44px;
  transition: background 200ms, color 200ms;
}
.cookie-actions .cookie-accept {
  background: var(--accent);
  color: #fff;
}
.cookie-actions .cookie-accept:hover { background: var(--ink); color: var(--surface); }
.cookie-actions .cookie-reject {
  background: rgba(42,31,61,0.04);
  border: 1.5px solid rgba(42,31,61,0.25);
  color: var(--ink);
}
.cookie-actions .cookie-reject:hover { background: var(--ink); border-color: var(--ink); color: #fff; box-shadow: 0 4px 12px rgba(42,31,61,0.15); }
.cookie-actions .cookie-settings {
  background: transparent;
  color: rgba(42,31,61,0.6);
}
.cookie-actions .cookie-settings:hover { color: var(--accent); }

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 700ms cubic-bezier(.22,.68,.0,1.04), transform 700ms cubic-bezier(.22,.68,.0,1.04);
}
.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; }

/* Stagger */
.reveal[style*="--i:1"] { transition-delay: 80ms; }
.reveal[style*="--i:2"] { transition-delay: 160ms; }
.reveal[style*="--i:3"] { transition-delay: 240ms; }
.reveal[style*="--i:4"] { transition-delay: 320ms; }
.reveal[style*="--i:5"] { transition-delay: 400ms; }
.reveal[style*="--i:6"] { transition-delay: 480ms; }

/* ===== 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-scroll table { border-collapse: collapse; }
.table-scroll th, .table-scroll td {
  padding: 12px 16px;
  font-size: 0.875rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.table-scroll th {
  font-weight: 600;
  background: var(--bg);
  font-size: 0.8125rem;
}

/* ===== NICHE ANIMATIONS — PASTRY ===== */
/* 1. Steam rising from cards on hover */
@keyframes steamRise {
  0% { transform: translateY(0) scaleX(1); opacity: 0.7; }
  40% { transform: translateY(-18px) scaleX(1.4); opacity: 0.4; }
  100% { transform: translateY(-36px) scaleX(0.6); opacity: 0; }
}
@keyframes steamRise2 {
  0% { transform: translateY(0) scaleX(0.8); opacity: 0.5; }
  50% { transform: translateY(-22px) scaleX(1.1); opacity: 0.3; }
  100% { transform: translateY(-40px) scaleX(0.7); opacity: 0; }
}
.season-card::after {
  content: '';
  position: absolute;
  top: 16px; right: 28px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(123,74,226,0.35);
  opacity: 0;
  pointer-events: none;
  filter: blur(1px);
}
.season-card:hover::after {
  animation: steamRise 1.6s cubic-bezier(.4,.0,.2,1) infinite;
}
.season-card:hover {
  box-shadow: 0 16px 48px rgba(123,74,226,0.15), 0 4px 28px rgba(242,153,74,0.14), 0 0 0 1px rgba(242,153,74,0.08);
}
.season-icon {
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), filter 280ms cubic-bezier(.2,.7,.2,1);
}
.season-card:hover .season-icon {
  transform: scale(1.12) rotate(-4deg);
  filter: drop-shadow(0 2px 6px rgba(242,153,74,0.25));
}
.season-card h3 {
  transition: color 240ms cubic-bezier(.2,.7,.2,1);
}
.season-card:hover h3 {
  color: var(--accent);
}

/* 2. Whisk rotation on timeline nodes */
@keyframes whiskSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.timeline-node:hover .timeline-node-dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px dashed var(--accent);
  border-radius: 50%;
  animation: whiskSpin 2s linear infinite;
}

/* 3. Sugar sprinkle float in hero */
@keyframes sprinkleFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.5; }
  50% { transform: translateY(-20px) rotate(180deg); opacity: 0.8; }
}
.hero-sprinkle {
  position: absolute;
  width: 4px; height: 12px;
  border-radius: 2px;
  background: var(--accent-2);
  opacity: 0.4;
  pointer-events: none;
}
.hero-sprinkle:nth-child(1) { top: 20%; left: 10%; animation: sprinkleFloat 6s ease-in-out infinite; }
.hero-sprinkle:nth-child(2) { top: 35%; right: 15%; animation: sprinkleFloat 8s ease-in-out 1s infinite; background: var(--accent); }
.hero-sprinkle:nth-child(3) { bottom: 25%; left: 20%; animation: sprinkleFloat 7s ease-in-out 0.5s infinite; }
.hero-sprinkle:nth-child(4) { top: 50%; right: 8%; animation: sprinkleFloat 9s ease-in-out 2s infinite; background: var(--accent); }
.hero-sprinkle:nth-child(5) { bottom: 30%; right: 25%; animation: sprinkleFloat 6.5s ease-in-out 1.5s infinite; }

/* 4. Piping line draw on section borders */
@keyframes pipingDraw {
  from { stroke-dashoffset: 200; }
  to { stroke-dashoffset: 0; }
}

/* 5. Warm oven glow — hero CTA pulse */
@keyframes ovenGlow {
  0%, 100% { box-shadow: 0 6px 20px rgba(123,74,226,0.2), 0 0 0 rgba(242,153,74,0); }
  50% { box-shadow: 0 8px 28px rgba(123,74,226,0.28), 0 0 18px rgba(242,153,74,0.12); }
}
.hero .btn-primary {
  animation: ovenGlow 3.5s ease-in-out infinite;
}

/* 5b. Warm oven glow — calendar leaf pulsing */
@keyframes leafPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(123,74,226,0.12); }
  50% { box-shadow: 0 8px 32px rgba(123,74,226,0.22), 0 0 24px rgba(242,153,74,0.08); }
}
.calendar-leaf-face {
  animation: leafPulse 4s ease-in-out infinite;
}

/* 6. Flour dust ambient */
@keyframes flourDust {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.15; }
  33% { transform: translate(10px, -8px) scale(1.3); opacity: 0.25; }
  66% { transform: translate(-5px, 5px) scale(0.9); opacity: 0.1; }
}
.flour-particle {
  position: absolute;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,74,226,0.06), transparent);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-sprinkle,
  .flour-particle,
  .season-card::after,
  .timeline-node:hover .timeline-node-dot::after,
  .calendar-leaf,
  .calendar-leaf-face,
  .hero .btn-primary {
    animation: none !important;
  }
  .season-card,
  .season-icon,
  .season-card h3,
  .metric-box,
  .btn-primary,
  .btn-ghost,
  .course-item,
  .hero-tags span,
  .hero-img,
  .nav-desktop a,
  .nav-toggle,
  .mobile-drawer a,
  .cta-section,
  .contact-row .contact-icon,
  .contact-row .contact-text,
  .footer-links a {
    transition: none !important;
  }
}

/* ===== PAGE CONTENT (policies etc) ===== */
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) 0;
}
.page-content h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 24px;
}
.page-content h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  position: relative;
}
.page-content h2::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 40px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.page-content h3 {
  font-size: 1.125rem;
  margin-top: 28px;
  margin-bottom: 12px;
}
.page-content p {
  margin-bottom: 16px;
  line-height: 1.75;
  color: rgba(42,31,61,0.8);
}
.page-content ul, .page-content ol {
  padding-left: 20px;
  margin-bottom: 16px;
  list-style: disc;
}
.page-content li {
  margin-bottom: 8px;
  line-height: 1.7;
  color: rgba(42,31,61,0.8);
}
.page-content a { color: var(--accent); text-decoration: underline; transition: color 200ms; }
.page-content a:hover { color: var(--ink); }
.page-content strong { font-weight: 600; color: var(--ink); }
.page-content > .reveal:first-of-type,
.page-content > div.reveal:first-of-type {
  margin-top: 8px;
}

/* ===== SITEMAP PAGE ===== */
.sitemap-list { list-style: none; padding: 0; }
.sitemap-list li { margin-bottom: 12px; }
.sitemap-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  padding: 8px 0;
}

/* ===== 404 PAGE ===== */
.page-404 {
  text-align: center;
  padding: clamp(80px, 15vh, 160px) 0;
}
.page-404 h1 {
  font-size: clamp(4rem, 10vw, 8rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}
.page-404 p { font-size: 1.125rem; color: rgba(42,31,61,0.7); margin-bottom: 32px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .season-grid { grid-template-columns: 1fr; }
  .corporate-metrics { grid-template-columns: 1fr; }
  .hero-tags { gap: 8px; }
  .hero-tags span { font-size: 0.75rem; padding: 6px 12px; }
  .cta-contact-info { flex-direction: column; align-items: center; }
}

/* ===== PRINT ===== */
@media print {
  .site-header, .mobile-drawer, .drawer-backdrop, .cookie-banner, .nav-toggle { display: none !important; }
  main { padding-top: 0 !important; }
  body { background: #fff; color: #000; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
