:root {
  --bg: #1A1A2E;
  --surface: #F5F0EB;
  --surface-2: #E8E2DB;
  --ink: #ECEAE5;
  --ink-soft: rgba(236,234,229,0.65);
  --accent: #E8A838;
  --accent-2: #8B2252;
  --line: rgba(236,234,229,0.15);
  --line-strong: rgba(236,234,229,0.3);
  --header-h: 76px;
  --container: 1080px;
  --pad: clamp(1rem,4vw,3rem);
  interpolate-size: allow-keywords;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html.no-js .reveal { opacity: 1; transform: none; }

body {
  font-family: 'Source Sans 3', 'Source Sans Pro', system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  font-style: italic;
  line-height: 1.15;
  letter-spacing: -0.012em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem,4vw,2.8rem); margin-bottom: 1.2em; }
h3 { font-size: clamp(1.3rem,2.5vw,1.8rem); }
h4 { font-size: clamp(1.1rem,2vw,1.4rem); }

a { color: var(--accent); text-decoration: none; transition: color 240ms cubic-bezier(.4,0,.2,1); }
a:hover { color: var(--accent-2); }

img { max-width: 100%; height: auto; display: block; }

.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--accent); color: var(--bg); padding: 8px 18px;
  border-radius: 0 0 6px 6px; font-weight: 600; z-index: 10000;
  transition: top 200ms;
}
.skip-link:focus { top: 0; }

/* ─── Container ─── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ─── Header ─── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(26, 26, 46, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  height: var(--header-h);
}
.site-header.scrolled {
  background: rgba(26,26,46,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,.18);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-style: italic;
  font-size: 1.2rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.logo span { color: var(--accent); }

/* ─── Desktop Nav ─── */
.nav-desktop {
  display: none;
  align-items: center;
  gap: clamp(18px,2.5vw,36px);
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}
.nav-desktop a {
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 0;
  position: relative;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}
.nav-desktop a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width 280ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { width: 100%; }
.nav-desktop a.is-active { color: var(--accent); }

.nav-desktop .nav-cta {
  background: var(--accent);
  color: var(--bg);
  padding: 9px 22px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background 240ms, color 240ms, transform 180ms;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover,
.nav-desktop .nav-cta:focus-visible {
  background: var(--accent-2);
  color: var(--surface);
  transform: translateY(-2px);
}

/* ─── Nav Toggle (hamburger) ─── */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  z-index: 1100;
  position: relative;
  padding: 0;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 200ms;
}
.nav-toggle span:nth-child(1) { transform: translateY(-7px); }
.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 (OUTSIDE header) ─── */
.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0; visibility: hidden;
  transition: opacity 240ms, visibility 240ms;
  z-index: 1040;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--bg);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  z-index: 1050;
  padding: calc(var(--header-h) + 24px) var(--pad) 32px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.drawer.is-open { transform: translateX(0); }
@media (min-width: 1024px) { .drawer, .drawer-backdrop { display: none; } }

.drawer a {
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: block;
  transition: color 240ms, padding-left 240ms;
}
.drawer a:hover { color: var(--accent); padding-left: 8px; }
.drawer a.is-active { color: var(--accent); }

.drawer .drawer-cta {
  margin-top: 16px;
  background: var(--accent);
  color: var(--bg);
  text-align: center;
  padding: 14px 24px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: none;
}
.drawer .drawer-cta:hover {
  background: var(--accent-2);
  color: var(--surface);
  padding-left: 0;
}

/* ─── Main ─── */
main { padding-top: var(--header-h); }

/* ─── Section base ─── */
section {
  padding: clamp(3rem,8vw,6rem) 0;
  position: relative;
}

.section-eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

.section-rule {
  width: 60px; height: 1px;
  background: var(--line-strong);
  border: none;
  margin: 2rem 0;
}

/* ─── Hero (type-only-massive) ─── */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: clamp(4rem,10vw,8rem) 0;
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: clamp(3rem, 8vw, 4.5rem);
  line-height: 1.02;
  margin-bottom: 0.4em;
  color: var(--ink);
}
.hero h1 .drop-cap {
  float: left;
  font-size: 1.65em;
  line-height: 0.78;
  margin-right: 0.06em;
  color: var(--accent);
  font-style: italic;
}
.hero-sub {
  font-size: clamp(1rem,2vw,1.35rem);
  color: var(--ink-soft);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 2em;
  font-weight: 300;
}
.hero-eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 2rem;
  display: inline-block;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
}

/* Spice particle decoration */
.spice-particles {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.spice-dot {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: spiceFall linear infinite;
}
@keyframes spiceFall {
  0% { opacity: 0; transform: translateY(-20px) rotate(0deg); }
  10% { opacity: 0.7; }
  90% { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(100vh) rotate(180deg); }
}
@media (prefers-reduced-motion: reduce) {
  .spice-dot { animation: none; opacity: 0.3; }
}

/* ─── Dot pattern decoration ─── */
.dot-pattern {
  position: absolute;
  width: 120px; height: 120px;
  background-image: radial-gradient(circle, var(--accent) 1.2px, transparent 1.2px);
  background-size: 14px 14px;
  opacity: 0.12;
  pointer-events: none;
}
.dot-pattern--tl { top: 40px; left: -30px; }
.dot-pattern--br { bottom: 40px; right: -30px; }

/* ─── #manifesto ─── */
.manifesto {
  background: var(--bg);
}
.manifesto-text {
  max-width: 720px;
  font-size: clamp(1.05rem,1.8vw,1.25rem);
  line-height: 1.85;
  color: var(--ink);
}
.manifesto-text::first-letter {
  float: left;
  font-family: 'Playfair Display', serif;
  font-size: 4.2em;
  line-height: 0.78;
  margin-right: 0.08em;
  margin-top: 0.06em;
  color: var(--accent);
  font-weight: 700;
  font-style: italic;
}
.manifesto-aside {
  margin-top: 2.5rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--accent);
  color: var(--ink-soft);
  font-style: italic;
  font-size: 0.95rem;
  max-width: 620px;
}

/* ─── #ustalar (Chefs) ─── */
.chefs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem,4vw,3.5rem);
}
@media (min-width: 768px) {
  .chefs-grid { grid-template-columns: 1fr 1fr; }
}
.chef-card {
  padding: clamp(1.5rem,3vw,2.5rem);
  background: rgba(245,240,235,0.04);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms cubic-bezier(.2,.7,.2,1);
}
.chef-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px -12px rgba(232,168,56,0.12);
}
.chef-name {
  font-size: 1.4rem;
  margin-bottom: 0.3em;
  color: var(--ink);
}
.chef-role {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 700;
  font-style: normal;
  font-family: 'Source Sans 3', sans-serif;
}
.chef-bio {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
}
.chef-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--accent);
  padding-left: 1rem;
  border-left: 2px solid var(--accent-2);
  line-height: 1.6;
}

/* ─── #program (Workshops) ─── */
.program-list { list-style: none; }
.program-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: clamp(12px,2vw,24px);
  padding: clamp(14px,2vw,22px) 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 280ms cubic-bezier(.4,0,.2,1), background 280ms;
}
.program-item:first-child { border-top: 1px solid var(--line); }
.program-item:hover { padding-left: 8px; }
.program-date {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  white-space: nowrap;
  min-width: 90px;
}
.program-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem,1.8vw,1.25rem);
  color: var(--ink);
}
.program-seats {
  font-size: 0.78rem;
  color: var(--ink-soft);
  white-space: nowrap;
}
@media (max-width: 640px) {
  .program-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* ─── #felsefe (Philosophy) ─── */
.pull-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.8rem,4vw,3rem);
  line-height: 1.3;
  color: var(--ink);
  max-width: 860px;
  margin: 0 auto 2rem;
  text-align: center;
  position: relative;
}
.pull-quote::before {
  content: '\201C';
  font-size: 4em;
  position: absolute;
  top: -0.3em;
  left: -0.15em;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  font-family: 'Playfair Display', serif;
}
.felsefe-text {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ink-soft);
}

/* ─── Stats ─── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: clamp(1rem,3vw,2rem);
  padding: clamp(2rem,4vw,3rem) 0;
  margin: clamp(2rem,4vw,3rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(2rem,4vw,3.2rem);
  color: var(--accent);
  line-height: 1.1;
  display: block;
}
.stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  font-weight: 600;
  margin-top: 0.4em;
  display: block;
}

/* ─── Pricing ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem,3vw,2rem);
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}
.pricing-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(1.5rem,3vw,2.5rem);
  position: relative;
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms cubic-bezier(.2,.7,.2,1);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px -12px rgba(232,168,56,0.12);
}
.pricing-card.featured {
  border-color: var(--accent);
  background: rgba(232,168,56,0.04);
}
.pricing-card.featured::before {
  content: 'Popüler';
  position: absolute;
  top: -11px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 3px 14px;
  border-radius: 3px;
}
.pricing-name {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
.pricing-price {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.8rem,3vw,2.4rem);
  color: var(--ink);
  margin-bottom: 0.4em;
}
.pricing-price small {
  font-size: 0.5em;
  font-weight: 400;
  color: var(--ink-soft);
  font-style: normal;
  font-family: 'Source Sans 3', sans-serif;
}
.pricing-features {
  list-style: none;
  margin-bottom: 1.5rem;
}
.pricing-features li {
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
  padding-left: 18px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 13px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.pricing-features li.excluded { color: var(--ink-soft); opacity: 0.5; }
.pricing-features li.excluded::before { background: var(--accent-2); }
.pricing-disclaimer {
  font-size: 0.78rem;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 1.5rem;
  font-style: italic;
}

/* ─── #rezervasyon ─── */
.rezervasyon {
  background: var(--accent);
  color: var(--bg);
}
.rezervasyon h2 { color: var(--bg); }
.rezervasyon .section-eyebrow { color: var(--bg); opacity: 0.7; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  max-width: 640px;
}
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .field--full { grid-column: 1 / -1; }
}

.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bg);
  margin-bottom: 6px;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(26,26,46,0.25);
  border-radius: 4px;
  background: rgba(26,26,46,0.08);
  color: var(--bg);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  transition: border-color 240ms, background 240ms;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--bg);
  background: rgba(26,26,46,0.15);
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(26,26,46,0.45); }
.field select option { color: var(--bg); background: var(--surface); }
.field textarea { resize: vertical; min-height: 100px; }

.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(--bg);
}
.field--checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.field--checkbox label {
  font-size: 0.82rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  line-height: 1.4;
}

/* ─── Buttons ─── */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: background 240ms, color 240ms, transform 180ms, box-shadow 240ms;
  text-decoration: none;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent-2);
  color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(139,34,82,0.3);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--ink);
  padding: 12px 28px;
  border: 1.5px solid var(--line-strong);
  border-radius: 4px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 240ms, color 240ms, border-color 240ms, transform 180ms;
  text-decoration: none;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--bg);
  border-color: var(--surface);
  transform: translateY(-2px);
}

.btn-form {
  display: inline-block;
  background: var(--bg);
  color: var(--accent);
  padding: 14px 36px;
  border: none;
  border-radius: 4px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: background 240ms, color 240ms, transform 180ms;
}
.btn-form:hover, .btn-form:focus-visible {
  background: var(--accent-2);
  color: var(--surface);
  transform: translateY(-2px);
}

/* ─── Trust strip ─── */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.8rem;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 3px;
}
.trust-badge svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ─── Process steps ─── */
.process-timeline {
  position: relative;
  padding-left: 32px;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 6px; top: 8px; bottom: 8px;
  width: 1px;
  background: var(--line-strong);
}
.process-step {
  position: relative;
  padding-bottom: clamp(1.5rem,3vw,2.5rem);
}
.process-step::before {
  content: '';
  position: absolute;
  left: -26px; top: 8px;
  width: 11px; height: 11px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--bg);
}
.process-step-tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 0.3em;
  font-family: 'Source Sans 3', sans-serif;
}
.process-step h4 {
  font-size: 1.1rem;
  margin-bottom: 0.4em;
}
.process-step p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ─── Testimonials ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem,3vw,2.5rem);
}
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.testimonial-card {
  padding: clamp(1.5rem,3vw,2rem);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms cubic-bezier(.2,.7,.2,1);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px -12px rgba(232,168,56,0.12);
}
.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 1.2rem;
}
.testimonial-author {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-family: 'Source Sans 3', sans-serif;
}
.testimonial-meta {
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin-top: 2px;
}

/* ─── FAQ ─── */
.faq-list { max-width: 720px; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: clamp(14px,2vw,20px) 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem,1.5vw,1.15rem);
  color: var(--ink);
  list-style: none;
  transition: color 240ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: 'Source Sans 3', sans-serif;
  font-style: normal;
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform 360ms cubic-bezier(.4,0,.2,1);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover { color: var(--accent); }

.faq-item > .faq-body {
  height: 0;
  padding: 0 0;
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] > .faq-body {
  height: auto;
  padding-block-end: 20px;
}
.faq-body p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-body { transition: none; }
}

/* ─── Footer ─── */
.site-footer {
  background: rgba(26,26,46,0.95);
  border-top: 1px solid var(--line);
  padding: clamp(2.5rem,5vw,4rem) 0 clamp(1.5rem,3vw,2rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem,3vw,2.5rem);
  margin-bottom: clamp(2rem,4vw,3rem);
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.footer-brand span { color: var(--accent); }
.footer-desc {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 360px;
}
.footer-heading {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 1rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: var(--ink-soft);
  font-size: 0.88rem;
  transition: color 240ms, padding-left 240ms;
}
.footer-links a:hover { color: var(--accent); padding-left: 4px; }

.footer-contact-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  margin-bottom: 10px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  transition: transform 240ms cubic-bezier(.4,0,.2,1);
}
.footer-contact-row:hover { transform: translateX(4px); }
.footer-contact-row svg {
  width: 16px; height: 16px;
  color: var(--ink-soft);
  flex-shrink: 0;
  margin-top: 3px;
  transition: color 240ms;
}
.footer-contact-row:hover svg { color: var(--accent); }
.footer-contact-row a { color: var(--ink-soft); word-break: break-all; }
.footer-contact-row a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: clamp(1rem,2vw,1.5rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--ink-soft);
}
.footer-bottom a { color: var(--ink-soft); }
.footer-bottom a:hover { color: var(--accent); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 16px; }

/* ─── Contact page ─── */
.contact-channels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 640px;
}
.contact-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: clamp(14px,2vw,20px) 0;
  border-bottom: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.4,0,.2,1), background 240ms;
  border-radius: 4px;
}
.contact-row:first-child { border-top: 1px solid var(--line); }
.contact-row:hover { transform: translateX(4px); }
.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-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 2px;
  font-family: 'Source Sans 3', sans-serif;
}
.contact-value {
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.6;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.contact-value a { color: var(--ink); }
.contact-value a:hover { color: var(--accent); }

.hours-table {
  font-size: 0.88rem;
  line-height: 1.6;
}
.hours-table span {
  display: inline-block;
  min-width: 40px;
  font-weight: 600;
  color: var(--ink);
}

/* ─── Page content (policies, about etc) ─── */
.page-content {
  max-width: 720px;
  margin: 0 auto;
}
.page-content h2 {
  margin-top: 2.5rem;
  font-size: clamp(1.4rem,3vw,2rem);
}
.page-content h3 {
  margin-top: 1.8rem;
  font-size: clamp(1.15rem,2vw,1.4rem);
}
.page-content p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--ink-soft);
}
.page-content ul, .page-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.page-content li {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}
.page-content strong { color: var(--ink); }

/* ─── News/updates block ─── */
.news-block {
  margin-top: 2rem;
}
.news-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: baseline;
}
.news-date {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  white-space: nowrap;
}
.news-text {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* ─── Table scroll wrapper ─── */
.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.88rem;
}
th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
th {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-family: 'Source Sans 3', sans-serif;
}
td { color: var(--ink-soft); }

/* ─── Thank-you page ─── */
.thank-you {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem var(--pad);
}
.thank-you h1 { margin-bottom: 0.5em; }
.thank-you p {
  color: var(--ink-soft);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 480px;
}

/* ─── 404 ─── */
.not-found {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem var(--pad);
}
.not-found .big-404 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(6rem,15vw,12rem);
  font-weight: 700;
  font-style: italic;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 0.2em;
}

/* ─── 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; }
}

/* ─── Counter animation ─── */
@keyframes counterPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ─── Spice niche animations ─── */
@keyframes steamRise {
  0% { opacity: 0; transform: translateY(0) scaleX(1); }
  30% { opacity: 0.6; }
  70% { opacity: 0.3; transform: translateY(-40px) scaleX(1.3); }
  100% { opacity: 0; transform: translateY(-70px) scaleX(0.8); }
}
.steam-line {
  position: absolute;
  width: 2px;
  height: 30px;
  background: linear-gradient(to top, var(--accent), transparent);
  border-radius: 2px;
  animation: steamRise 3s ease-in-out infinite;
  opacity: 0;
}
@media (prefers-reduced-motion: reduce) { .steam-line { animation: none; display: none; } }

@keyframes flameFlicker {
  0%, 100% { transform: scaleY(1) scaleX(1); opacity: 0.7; }
  25% { transform: scaleY(1.1) scaleX(0.95); opacity: 0.9; }
  50% { transform: scaleY(0.95) scaleX(1.05); opacity: 0.65; }
  75% { transform: scaleY(1.08) scaleX(0.98); opacity: 0.85; }
}
.flame-icon {
  display: inline-block;
  animation: flameFlicker 2.5s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) { .flame-icon { animation: none; } }

@keyframes pepperSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes shimmerGold {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.shimmer-text {
  background: linear-gradient(90deg, var(--ink) 0%, var(--accent) 50%, var(--ink) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerGold 8s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .shimmer-text {
    animation: none;
    background: none;
    -webkit-text-fill-color: var(--ink);
    color: var(--ink);
  }
}

@keyframes whiskStir {
  0%, 100% { transform: rotate(-8deg); }
  50% { transform: rotate(8deg); }
}

/* ─── Parallax hero sub-layer ─── */
.hero-parallax-layer {
  position: absolute;
  top: -10%; left: 0; right: 0;
  height: 120%;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

/* ─── Cookie banner ─── */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  color: var(--bg);
  padding: clamp(18px,3vw,24px);
  border-radius: 8px;
  box-shadow: 0 16px 48px -8px rgba(0,0,0,0.35);
  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: 768px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

.cookie-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--bg);
}
.cookie-text {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(26,26,46,0.75);
  margin-bottom: 14px;
}
.cookie-text a { color: var(--accent-2); text-decoration: underline; }
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cookie-btn {
  flex: 1;
  min-width: 100px;
  min-height: 44px;
  padding: 10px 16px;
  border: 1.5px solid var(--bg);
  border-radius: 4px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 240ms, color 240ms;
  text-align: center;
}
.cookie-btn--accept {
  background: var(--bg);
  color: var(--surface);
  border-color: var(--bg);
}
.cookie-btn--accept:hover { background: var(--accent-2); border-color: var(--accent-2); color: var(--surface); }
.cookie-btn--reject {
  background: transparent;
  color: var(--bg);
}
.cookie-btn--reject:hover { background: rgba(26,26,46,0.08); color: var(--bg); }
.cookie-btn--settings {
  background: transparent;
  color: var(--bg);
}
.cookie-btn--settings:hover { background: rgba(26,26,46,0.08); color: var(--bg); }

/* ─── Focus ring ─── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ─── Surface section variant ─── */
.section--surface {
  background: var(--surface);
  color: var(--bg);
}
.section--surface h2, .section--surface h3, .section--surface h4 { color: var(--bg); }
.section--surface .section-eyebrow { color: var(--accent-2); }
.section--surface p, .section--surface li { color: rgba(26,26,46,0.75); }
.section--surface .section-rule { background: rgba(26,26,46,0.15); }
.section--surface a { color: var(--accent-2); }
.section--surface .testimonial-card { border-color: rgba(26,26,46,0.12); background: rgba(26,26,46,0.03); }
.section--surface .testimonial-card:hover { box-shadow: 0 16px 48px -12px rgba(139,34,82,0.12); }
.section--surface .testimonial-text { color: var(--bg); }
.section--surface .testimonial-author { color: var(--accent-2); }
.section--surface .testimonial-meta { color: rgba(26,26,46,0.55); }

/* ─── Honeypot ─── */
.honey-field { position: absolute; left: -9999px; opacity: 0; }

/* ─── Sitemap page ─── */
.sitemap-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.sitemap-columns h3 { font-size: 1.1rem; margin-bottom: 0.8rem; }
.sitemap-columns ul { list-style: none; }
.sitemap-columns li { margin-bottom: 6px; }
.sitemap-columns a { color: var(--ink-soft); font-size: 0.92rem; }
.sitemap-columns a:hover { color: var(--accent); }

/* ─── Print ─── */
@media print {
  .site-header, .drawer, .drawer-backdrop, .cookie-banner, .nav-toggle { display: none !important; }
  main { padding-top: 0 !important; }
  body { background: #fff; color: #222; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .spice-particles, .steam-line, .dot-pattern { display: none !important; }
}

.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}

.stat-label{color:#1B1B3A !important;opacity:.62;font-weight:600;letter-spacing:0.14em;text-transform:uppercase;font-size:0.72rem}

/* targeted-contrast-fix tarifsanati.com.tr */
.stat-number{color:#a86c1c;font-weight:700}
