/* ============================================================
   Lezzet Ajanda — Mevsimlik Atölye Takvimi
   Palette: lavender bg, purple accent, amber accent-2
   Fonts: Sora 700 headings · Outfit 400 body
   ============================================================ */

:root {
  --bg: #F5F0FF;
  --surface: #FFFFFF;
  --surface-2: #EDE5FF;
  --ink: #1E1342;
  --ink-soft: #5B4F80;
  --accent: #7C3AED;
  --accent-2: #F59E0B;
  --line: rgba(30,19,66,0.10);
  --line-strong: rgba(30,19,66,0.22);
  --season-yaz: #F59E0B;
  --season-sonbahar: #D97706;
  --season-kis: #7C3AED;
  --season-ilkbahar: #10B981;
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --header-h: 72px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --max-w: 1400px;
  --pad: clamp(1rem, 4vw, 3rem);
  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; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: -0.008em;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -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); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ---- Skip Link ---- */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--accent); color: #fff;
  padding: 8px 18px; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 700; font-size: 0.875rem; z-index: 10000;
}
.skip-link:focus { top: 0; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); letter-spacing: -0.012em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: -0.008em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.125rem; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* ---- Container ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: var(--radius);
  transition: background 240ms cubic-bezier(.4,0,.2,1), transform 180ms, box-shadow 240ms, color 240ms;
  border: 2px solid transparent;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px -6px rgba(124,58,237,0.35);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  border: 2px solid var(--line-strong);
  border-radius: var(--radius);
  transition: background 240ms, border-color 240ms, color 240ms, transform 180ms;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ---- Focus Ring ---- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ---- Header (sticky with morph) ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(245, 240, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  padding: 0;
}
.site-header.is-scrolled {
  background: rgba(245,240,255,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  transition: color 240ms;
  flex-shrink: 0;
}
.logo:hover { color: var(--accent); }
.logo span { color: var(--accent-2); }

/* ---- Nav Desktop ---- */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 6px;
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}
.nav-desktop a {
  position: relative;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--ink);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 240ms, background 240ms;
}
.nav-desktop a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:not(.nav-cta):hover::after,
.nav-desktop a:not(.nav-cta).is-active::after {
  transform: scaleX(1);
}
.nav-desktop a:not(.nav-cta):hover { color: var(--accent); }
.nav-desktop a.is-active { color: var(--accent); }
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: var(--radius) !important;
  font-weight: 700 !important;
  font-family: var(--font-heading) !important;
  transition: background 240ms, color 240ms, transform 180ms !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--ink) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

/* ---- Nav Toggle (Hamburger) ---- */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px; height: 44px;
  z-index: 1100;
  position: relative;
  gap: 5px;
  padding: 0;
}
@media (min-width: 1024px) {
  .nav-toggle { display: none; }
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 200ms;
  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;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- Drawer ---- */
.drawer {
  position: fixed;
  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: calc(var(--header-h) + 24px) 32px 32px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: color 240ms, padding-left 240ms;
}
.drawer a:hover, .drawer a.is-active {
  color: var(--accent);
  padding-left: 8px;
}
.drawer .drawer-cta {
  display: block;
  margin-top: 20px;
  padding: 16px 24px;
  background: var(--accent);
  color: #fff;
  text-align: center;
  border-radius: var(--radius);
  border-bottom: none;
  font-size: 1rem;
}
.drawer .drawer-cta:hover {
  background: var(--ink);
  color: #fff;
  padding-left: 24px;
}

/* Drawer Backdrop */
.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-visible {
  opacity: 1;
  pointer-events: auto;
}

/* ---- Main (offset for fixed header) ---- */
main { padding-top: var(--header-h); }

/* ---- Hero (split asymmetric 60/40) ---- */
.hero {
  min-height: min(92vh, 720px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 8vw, 80px) 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 768px) {
  .hero-inner { grid-template-columns: 60% 40%; gap: 48px; }
}
.hero-text { position: relative; z-index: 2; }
.hero-text h1 {
  margin-bottom: 20px;
  line-height: 1.08;
}
.hero-text h1 .accent-word { color: var(--accent); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

/* Trust strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.8125rem;
  color: var(--ink-soft);
  white-space: nowrap;
}
.trust-strip span::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
  flex-shrink: 0;
}

/* Hero visual — decorative calendar grid */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-calendar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 380px;
  width: 100%;
  position: relative;
}
.hero-calendar::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at 60% 40%, rgba(124,58,237,0.08), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.cal-cell {
  position: relative;
  z-index: 1;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink-soft);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms, border-color 280ms;
}
.cal-cell:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px -8px rgba(124,58,237,0.2);
}
.cal-cell.is-highlight {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  animation: date-pulse 2.4s ease-in-out infinite;
}
.cal-cell.is-amber {
  background: var(--accent-2);
  color: var(--ink);
  border-color: var(--accent-2);
}
.cal-cell .cal-month {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 2px;
}
.cal-cell .cal-icon {
  position: absolute;
  top: -6px; right: -6px;
  width: 22px; height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cal-cell.is-highlight .cal-icon svg {
  animation: pot-wobble 1.2s cubic-bezier(.4,0,.2,1) infinite;
  animation-delay: 0.3s;
}

/* Steam particles (hero ambient) */
.steam-particle {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(124,58,237,0.15);
  animation: steam 3.5s ease-in-out infinite;
  pointer-events: none;
}
.steam-particle:nth-child(1) { left: 20%; top: 60%; animation-delay: 0s; animation-duration: 3s; }
.steam-particle:nth-child(2) { left: 50%; top: 70%; animation-delay: 0.8s; animation-duration: 4s; }
.steam-particle:nth-child(3) { left: 80%; top: 55%; animation-delay: 1.6s; animation-duration: 3.5s; }
.steam-particle:nth-child(4) { left: 35%; top: 75%; animation-delay: 2.2s; animation-duration: 4.2s; }

/* ---- Sections base ---- */
section {
  padding: clamp(48px, 8vw, 96px) 0;
  position: relative;
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(32px, 5vw, 56px);
}
.section-header p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* ---- Stats / Counter ---- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  margin: clamp(32px, 5vw, 56px) 0;
}
.stat-item {
  text-align: center;
  padding: 24px 16px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.875rem;
  color: var(--ink-soft);
}

/* ---- Timeline Section (#takvim) ---- */
.timeline-section { overflow: visible; }
.timeline-section .section-header { margin-bottom: clamp(24px, 4vw, 40px); }
.timeline-track {
  position: relative;
  padding: 24px 0 32px;
}
.timeline-line {
  position: absolute;
  top: 48px; left: var(--pad); right: var(--pad);
  height: 2px;
  background-image: repeating-linear-gradient(
    90deg,
    var(--accent) 0,
    var(--accent) 6px,
    transparent 6px,
    transparent 14px
  );
  opacity: 0.3;
  z-index: 0;
}
.timeline-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 var(--pad) 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--surface-2);
}
.timeline-scroll::-webkit-scrollbar { height: 6px; }
.timeline-scroll::-webkit-scrollbar-track { background: var(--surface-2); border-radius: 3px; }
.timeline-scroll::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

.timeline-card {
  scroll-snap-align: start;
  flex: 0 0 240px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 0;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
  position: relative;
  cursor: pointer;
}
.timeline-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px -12px rgba(124,58,237,0.22);
}
.timeline-card-top {
  height: 4px;
  width: 100%;
}
.timeline-card-top[data-season="yaz"] { background: var(--season-yaz); }
.timeline-card-top[data-season="sonbahar"] { background: var(--season-sonbahar); }
.timeline-card-top[data-season="kis"] { background: var(--season-kis); }
.timeline-card-top[data-season="ilkbahar"] { background: var(--season-ilkbahar); }

.timeline-card-body { padding: 20px; }
.timeline-date {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.date-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface-2);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
}
.timeline-card.is-active .date-badge {
  background: var(--accent);
  color: #fff;
  animation: date-pulse 2.4s ease-in-out infinite;
}
.date-month {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.timeline-card-icon {
  margin-bottom: 10px;
  color: var(--accent);
  width: 28px; height: 28px;
}
.timeline-card.is-active .timeline-card-icon svg,
.timeline-card:hover .timeline-card-icon svg {
  animation: pot-wobble 1.2s cubic-bezier(.4,0,.2,1);
}
.timeline-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  line-height: 1.3;
}
.timeline-card p {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 10px;
}
.timeline-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  color: #fff;
}
.timeline-tag[data-season="yaz"] { background: var(--season-yaz); color: var(--ink); }
.timeline-tag[data-season="sonbahar"] { background: var(--season-sonbahar); }
.timeline-tag[data-season="kis"] { background: var(--season-kis); }
.timeline-tag[data-season="ilkbahar"] { background: var(--season-ilkbahar); }

/* ---- Season Tabs (#mevsim) ---- */
.season-section { background: var(--surface); }
.season-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: clamp(28px, 4vw, 48px);
}
.season-tab {
  padding: 10px 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--ink-soft);
  border: 2px solid var(--line);
  border-radius: 100px;
  transition: all 280ms cubic-bezier(.2,.7,.2,1);
  cursor: pointer;
  background: transparent;
}
.season-tab:hover { border-color: var(--accent); color: var(--accent); }
.season-tab.is-active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.season-tab[data-season="yaz"].is-active { background: var(--season-yaz); border-color: var(--season-yaz); color: var(--ink); }
.season-tab[data-season="sonbahar"].is-active { background: var(--season-sonbahar); border-color: var(--season-sonbahar); color: #fff; }
.season-tab[data-season="kis"].is-active { background: var(--season-kis); border-color: var(--season-kis); color: #fff; }
.season-tab[data-season="ilkbahar"].is-active { background: var(--season-ilkbahar); border-color: var(--season-ilkbahar); color: #fff; }

.season-panel { display: none; }
.season-panel.is-active { display: block; }
.season-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.season-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--line);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.season-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px -8px rgba(124,58,237,0.15);
}
.season-card-icon {
  width: 40px; height: 40px;
  margin-bottom: 14px;
  color: var(--accent);
}
.season-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.season-card p { font-size: 0.875rem; color: var(--ink-soft); line-height: 1.6; }
.season-card .ingredient-list {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 12px;
}
.season-card .ingredient-list span {
  font-size: 0.75rem; padding: 3px 10px;
  background: var(--surface);
  border-radius: 100px;
  color: var(--ink-soft);
  border: 1px solid var(--line);
}

/* ---- Level Cards (#seviye) ---- */
.level-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.level-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid var(--line);
  text-align: center;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
  position: relative;
  overflow: hidden;
}
.level-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
}
.level-card:nth-child(2)::before { background: var(--accent-2); }
.level-card:nth-child(3)::before { background: var(--ink); }
.level-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -16px rgba(124,58,237,0.2);
}
.level-icon {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--accent);
}
.level-card:nth-child(2) .level-icon { background: rgba(245,158,11,0.12); color: var(--accent-2); }
.level-card:nth-child(3) .level-icon { background: rgba(30,19,66,0.08); color: var(--ink); }
.level-card h3 { margin-bottom: 10px; }
.level-card p { font-size: 0.9375rem; color: var(--ink-soft); line-height: 1.6; }
.level-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--surface-2);
  color: var(--accent);
}

/* ---- Process Section ---- */
.process-section { background: var(--surface); }
.process-timeline {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 15px; top: 0; bottom: 0;
  width: 2px;
  background-image: repeating-linear-gradient(
    180deg,
    var(--accent) 0,
    var(--accent) 8px,
    transparent 8px,
    transparent 18px
  );
  opacity: 0.3;
}
.process-step {
  position: relative;
  padding-bottom: 40px;
}
.process-step:last-child { padding-bottom: 0; }
.process-dot {
  position: absolute;
  left: -40px; top: 2px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  z-index: 1;
}
.process-step:nth-child(even) .process-dot { background: var(--accent-2); color: var(--ink); }
.process-time {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.process-step h3 { margin-bottom: 6px; font-size: 1.1rem; }
.process-step p { font-size: 0.9375rem; color: var(--ink-soft); line-height: 1.6; }

/* ---- Pricing Section ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 40px);
  text-align: center;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
  position: relative;
}
.pricing-card.is-featured {
  border-color: var(--accent);
  border-width: 2px;
}
.pricing-card.is-featured::before {
  content: 'Popüler';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 100px;
  letter-spacing: 0.06em;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -16px rgba(124,58,237,0.2);
}
.pricing-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.pricing-price {
  font-family: 'Courier New', Courier, monospace;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.pricing-period {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.pricing-list {
  text-align: left;
  margin-bottom: 24px;
}
.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
  font-size: 0.9375rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-list li svg { flex-shrink: 0; margin-top: 3px; color: var(--accent); }
.pricing-list li.excluded { color: var(--ink-soft); text-decoration: line-through; opacity: 0.6; }
.pricing-list li.excluded svg { color: var(--ink-soft); }
.pricing-disclaimer {
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin-top: 16px;
  font-style: italic;
}

/* ---- Testimonials ---- */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card:first-child { grid-column: 1 / -1; }
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; left: 24px;
  font-size: 3rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.15;
  font-family: Georgia, serif;
}
.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 16px;
  padding-top: 8px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
  flex-shrink: 0;
}
.testimonial-meta strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
}
.testimonial-meta span {
  font-size: 0.8125rem;
  color: var(--ink-soft);
}

/* ---- Registration Form (#kayit) ---- */
.form-section { background: var(--surface); }
.form-wrapper {
  max-width: 680px;
  margin: 0 auto;
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .field-full { grid-column: 1 / -1; }
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.field input:not([type="checkbox"]):not([type="radio"]),
.field textarea,
.field select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  font-size: 0.9375rem;
  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(124,58,237,0.12);
  outline: none;
}
.field textarea { min-height: 120px; resize: vertical; }
.field select { cursor: pointer; }

.field-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.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);
  cursor: pointer;
}
.field-checkbox label {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.5;
  cursor: pointer;
}
.form-submit {
  margin-top: 8px;
}
.form-submit .btn-primary { width: 100%; justify-content: center; padding: 16px 32px; }
@media (min-width: 640px) {
  .form-submit .btn-primary { width: auto; }
}

/* ---- Calendar CTA (#hatirla) ---- */
.cta-band {
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: clamp(48px, 8vw, 80px) 0;
}
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.7); margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-band .btn-primary {
  background: var(--accent-2);
  color: var(--ink);
}
.cta-band .btn-primary:hover, .cta-band .btn-primary:focus-visible {
  background: #fff;
  color: var(--ink);
}

/* ---- FAQ Accordion ---- */
.faq-section { background: var(--surface); }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  list-style: none;
  transition: color 240ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover { color: var(--accent); }
.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: 22px;
}
.faq-body p {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
@media (prefers-reduced-motion: reduce) {
  .faq-body { transition: none; }
}

/* ---- News / Updates ---- */
.news-section { border-top: 1px solid var(--line); }
.news-list { max-width: 640px; margin: 0 auto; }
.news-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.news-item:last-child { border-bottom: none; }
.news-date {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.8125rem;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 2px;
}
.news-text {
  font-size: 0.9375rem;
  color: var(--ink);
  line-height: 1.5;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: clamp(48px, 8vw, 72px) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; }
}
.footer-col h4 {
  color: #fff;
  font-size: 0.9375rem;
  margin-bottom: 14px;
}
.footer-col p, .footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}
.footer-col a { display: block; padding: 3px 0; transition: color 240ms, padding-left 240ms; }
.footer-col a:hover { color: var(--accent-2); padding-left: 4px; }
.footer-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 12px;
  display: block;
}
.footer-brand span { color: var(--accent-2); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.875rem;
}
.footer-contact-item svg {
  flex-shrink: 0;
  width: 16px; height: 16px;
  color: var(--accent-2);
  margin-top: 3px;
}
.footer-contact-item a { display: inline; padding: 0; }

.footer-hours { margin-top: 8px; }
.footer-hours .day-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.8125rem;
  padding: 3px 0;
  font-variant-numeric: tabular-nums;
}
.footer-hours .day-row strong { color: rgba(255,255,255,0.85); font-weight: 700; min-width: 36px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
}
.footer-bottom a { display: inline; padding: 0; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 20px; }

/* ---- 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);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 12px 40px -12px rgba(30,19,66,0.25);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
@media (min-width: 640px) {
  .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: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cookie-actions button {
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  border-radius: var(--radius-sm);
  min-height: 44px;
  cursor: pointer;
  transition: background 240ms, color 240ms;
}
.cookie-actions .cookie-accept {
  background: var(--accent);
  color: #fff;
  border: none;
}
.cookie-actions .cookie-accept:hover { background: var(--ink); color: #fff; }
.cookie-actions .cookie-reject {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--line-strong);
}
.cookie-actions .cookie-reject:hover { border-color: var(--accent); color: var(--accent); background: transparent; }
.cookie-actions .cookie-settings {
  background: transparent;
  color: var(--ink-soft);
  border: none;
  text-decoration: underline;
  padding: 10px 12px;
}
.cookie-actions .cookie-settings:hover { color: var(--accent); }

/* ---- Table Scroll ---- */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
table { border-collapse: collapse; width: 100%; font-size: 0.9375rem; }
th, td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line); }
th {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--surface-2);
  color: var(--ink);
}
td { color: var(--ink-soft); }

/* ---- Reveal Animations ---- */
.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[style*="--i"] {
  transition-delay: calc(var(--i) * 80ms);
}
@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: Cooking ---- */
@keyframes steam {
  0% { transform: translateY(0) scaleX(1); opacity: 0.6; }
  50% { transform: translateY(-22px) scaleX(1.4); opacity: 0.3; }
  100% { transform: translateY(-42px) scaleX(0.7); opacity: 0; }
}
@keyframes pot-wobble {
  0%, 100% { transform: rotate(0deg); }
  12% { transform: rotate(-9deg); }
  28% { transform: rotate(7deg); }
  42% { transform: rotate(-5deg); }
  58% { transform: rotate(3deg); }
  72% { transform: rotate(-1.5deg); }
}
@keyframes flame-flicker {
  0%, 100% { transform: scaleY(1) scaleX(1); opacity: 1; }
  20% { transform: scaleY(1.12) scaleX(0.88); opacity: 0.85; }
  40% { transform: scaleY(0.94) scaleX(1.06); opacity: 0.95; }
  60% { transform: scaleY(1.08) scaleX(0.92); opacity: 0.88; }
  80% { transform: scaleY(0.97) scaleX(1.03); opacity: 0.92; }
}
@keyframes date-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(124,58,237,0.35); }
  50% { box-shadow: 0 0 0 10px rgba(124,58,237,0); }
}
@keyframes whisk-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes spice-drift {
  0% { transform: translate(0,0) rotate(0deg); opacity: 0; }
  15% { opacity: 0.7; }
  85% { opacity: 0.7; }
  100% { transform: translate(var(--dx, 30px), var(--dy, -60px)) rotate(var(--rot, 180deg)); opacity: 0; }
}
@keyframes counter-up {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

.flame-icon { animation: flame-flicker 2s ease-in-out infinite; }

/* Hero spice particles */
.spice-particle {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  pointer-events: none;
  animation: spice-drift var(--dur, 5s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@media (prefers-reduced-motion: reduce) {
  .steam-particle,
  .spice-particle,
  .flame-icon,
  .timeline-card-icon svg,
  .cal-cell .cal-icon svg,
  .cal-cell.is-highlight { animation: none !important; }
  .date-badge { animation: none !important; }
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  min-height: 240px;
  display: flex;
  align-items: center;
  padding: clamp(48px, 10vw, 96px) 0 clamp(32px, 6vw, 56px);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { color: var(--ink-soft); max-width: 560px; font-size: 1.05rem; }

/* ---- Contact Cards Grid ---- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--surface);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px -8px rgba(124,58,237,0.15);
}
.contact-card-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--accent);
  transition: transform 240ms, background 240ms;
}
.contact-card:hover .contact-card-icon {
  transform: scale(1.08);
  background: var(--accent);
  color: #fff;
}
.contact-card h3 { font-size: 0.9375rem; margin-bottom: 6px; }
.contact-card a, .contact-card p {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  word-break: break-all;
  overflow-wrap: anywhere;
}
.contact-card a:hover { color: var(--accent); }
.contact-card .contact-sub {
  font-size: 0.75rem;
  color: var(--ink-soft);
  opacity: 0.7;
  margin-top: 4px;
}

/* Hours table mini-grid */
.hours-grid {
  display: grid;
  gap: 2px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.875rem;
  font-variant-numeric: tabular-nums;
  border-bottom: 1px solid var(--line);
}
.hours-row:last-child { border-bottom: none; }
.hours-row strong { font-weight: 700; min-width: 32px; color: var(--ink); }
.hours-row.is-today { background: var(--surface-2); border-radius: 4px; padding: 6px 8px; }
.hours-row span { color: var(--ink-soft); }

/* ---- About: Team ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -12px rgba(124,58,237,0.18);
}
.team-photo {
  height: 220px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-info { padding: 24px; }
.team-info h3 { font-size: 1.05rem; margin-bottom: 4px; }
.team-info .team-role {
  font-size: 0.8125rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
}
.team-info p { font-size: 0.875rem; color: var(--ink-soft); line-height: 1.6; }

/* ---- Policy page typography ---- */
.policy-content {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 64px) 0;
}
.policy-content h2 {
  font-size: 1.5rem;
  margin: 36px 0 14px;
}
.policy-content h3 {
  font-size: 1.15rem;
  margin: 24px 0 10px;
}
.policy-content p {
  margin-bottom: 14px;
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
.policy-content ul, .policy-content ol {
  margin: 0 0 16px 20px;
  list-style: disc;
}
.policy-content ol { list-style: decimal; }
.policy-content li {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 6px;
}
.policy-content strong { color: var(--ink); }

/* ---- Sitemap page ---- */
.sitemap-list { max-width: 640px; margin: 0 auto; }
.sitemap-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.sitemap-list li a {
  font-size: 1rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sitemap-list li a:hover { color: var(--accent); padding-left: 4px; transition: padding-left 240ms; }

/* ---- 404 ---- */
.page-404 {
  text-align: center;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px var(--pad);
}
.page-404 .big-number {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  opacity: 0.2;
}
.page-404 h1 { font-size: 1.8rem; margin: 16px 0 12px; }
.page-404 p { color: var(--ink-soft); margin-bottom: 28px; }

/* ---- Thank You ---- */
.thank-you-content {
  text-align: center;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px var(--pad);
}
.thank-you-content .check-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(124,58,237,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--accent);
}
.thank-you-content h1 { font-size: 2rem; margin-bottom: 12px; }
.thank-you-content p { color: var(--ink-soft); margin-bottom: 28px; max-width: 420px; }

/* ---- Availability / capacity ---- */
.capacity-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(124,58,237,0.08);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
}
.capacity-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: date-pulse 2s ease-in-out infinite;
}

/* ---- Print ---- */
@media print {
  .site-header, .drawer, .drawer-backdrop, .cookie-banner, .nav-toggle, .skip-link { display: none !important; }
  main { padding-top: 0 !important; }
  body { background: #fff; color: #000; }
  .reveal { opacity: 1 !important; transform: none !important; }
  a { color: #000; text-decoration: underline; }
  section { page-break-inside: avoid; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1280px) {
  :root { --max-w: 1200px; }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .trust-strip { justify-content: center; }
  .hero-visual { margin-top: 24px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .hero { min-height: auto; }
  .level-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-cards { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero-calendar { grid-template-columns: repeat(3, 1fr); max-width: 280px; }
  .cal-cell { font-size: 1rem; }
  .timeline-card { flex: 0 0 210px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 1.8rem; }
  .level-card { padding: 24px; }
  .team-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-submit .btn-primary { width: 100%; }
  section { padding: clamp(36px, 6vw, 56px) 0; }
}

@media (max-width: 430px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { width: 100%; justify-content: center; }
  .trust-strip { flex-direction: column; align-items: center; }
  .process-timeline { padding-left: 32px; }
  .process-dot { width: 28px; height: 28px; font-size: 0.75rem; left: -32px; }
}

@media (max-width: 360px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .hero-calendar { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .timeline-card { flex: 0 0 190px; }
  .cookie-banner { bottom: 8px; left: 8px; right: 8px; padding: 18px; }
}

/* ---- Smooth scroll offset for anchors ---- */
:target { scroll-margin-top: calc(var(--header-h) + 20px); }

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:var(--accent);z-index:9998;transition:width 80ms linear;pointer-events:none}

/* targeted-contrast-fix lezzetajanda.com.tr */
.badge-accent, .ajanda-label{color:#7c4a00;font-weight:700}
