:root {
  --bg: #F7F3EE;
  --surface: #EDEAE3;
  --surface-2: #E5E0D8;
  --ink: #2B2520;
  --ink-soft: #6B5E52;
  --accent: #A0522D;
  --accent-2: #D4A76A;
  --line: rgba(43,37,32,0.12);
  --line-strong: rgba(43,37,32,0.28);
  --header-h: 72px;
  --container-max: 1080px;
  --container-pad: clamp(16px,4vw,32px);
  --radius: 6px;
  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%;
  overflow-x: hidden;
  max-width: 100vw;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html.no-js .reveal { opacity: 1; transform: none; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, 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;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 240ms cubic-bezier(.4,0,.2,1); }
a:hover { color: var(--ink); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 700;
  font-style: italic;
  line-height: 1.15;
  letter-spacing: -0.012em;
}

.skip-link {
  position: absolute; top: -100%; left: 16px; z-index: 10000;
  padding: 8px 18px; background: var(--ink); color: var(--bg);
  font-size: 0.875rem; border-radius: var(--radius);
}
.skip-link:focus { top: 8px; }

/* ── Container ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

/* ── Header ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1080;
  background: rgba(247,243,238,0.92);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  backdrop-filter: blur(2px);
}
.scroll-progress {
  position: absolute; bottom: 0; left: 0;
  height: 2px; background: var(--accent);
  width: 0%; transition: none;
  pointer-events: none;
}
.site-header.scrolled {
  background: rgba(247,243,238,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);
  transition: height 240ms ease;
}
.scrolled .header__inner { height: 60px; }

.logo {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 700; font-style: italic;
  font-size: 1.25rem; color: var(--ink);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.logo:hover { color: var(--accent); }

.nav-desktop { display: none; }
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex; align-items: center; gap: 32px;
  }
  .nav-desktop a {
    position: relative;
    font-size: 0.9rem; font-weight: 600; color: var(--ink);
    letter-spacing: 0.01em;
    padding: 4px 0;
  }
  .nav-desktop a::after {
    content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
    height: 1.5px; background: var(--accent); transform: scaleX(0);
    transform-origin: right; transition: transform 280ms cubic-bezier(.2,.7,.2,1);
  }
  .nav-desktop a:hover::after,
  .nav-desktop a.is-active::after { transform: scaleX(1); transform-origin: left; }
  .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 22px; border-radius: var(--radius);
    font-size: 0.85rem; letter-spacing: 0.02em;
  }
  .nav-desktop .nav-cta::after { display: none; }
  .nav-desktop .nav-cta:hover {
    background: var(--accent); color: var(--surface);
  }
}

/* ── Nav Toggle ── */
.nav-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 48px; height: 48px;
  background: none; border: 1.5px solid transparent; cursor: pointer;
  z-index: 1100; position: relative;
  padding: 10px;
  -webkit-tap-highlight-color: transparent;
  border-radius: var(--radius);
  transition: background 200ms, border-color 200ms;
}
.nav-toggle:hover { border-color: var(--line-strong); }
.nav-toggle:active { background: rgba(43,37,32,.08); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block; width: 100%; height: 2.5px;
  background: var(--ink); border-radius: 2px;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), opacity 200ms;
  transform-origin: center;
}
.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); }

/* ── Drawer ── */
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 1040;
  background: rgba(0,0,0,0.55);
  opacity: 0; pointer-events: none;
  transition: opacity 240ms ease;
}
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  z-index: 1050;
  background: var(--bg);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 24px) 32px 32px;
  display: flex; flex-direction: column; gap: 8px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  display: block; padding: 14px 0;
  font-size: 1.1rem; font-weight: 600; color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: color 200ms, padding-left 200ms;
}
.drawer a:hover, .drawer a.is-active {
  color: var(--accent); padding-left: 8px;
}
.drawer .drawer-cta {
  display: inline-block; margin-top: 16px;
  background: var(--ink); color: var(--surface);
  padding: 14px 28px; border-radius: var(--radius);
  text-align: center; font-weight: 600;
  border-bottom: none;
}
.drawer .drawer-cta:hover {
  background: var(--accent); color: var(--surface);
  padding-left: 28px;
}

/* ── Main ── */
main { padding-top: var(--header-h); }

/* ── Hero ── */
.hero {
  padding: clamp(80px,12vw,160px) 0 clamp(60px,8vw,120px);
  position: relative;
  overflow: hidden;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 40px;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero__title {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  max-width: min(20ch, 90%);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  background:
    repeating-linear-gradient(88deg, transparent, transparent 6px, rgba(160,82,45,.1) 6px, rgba(160,82,45,.1) 7px),
    repeating-linear-gradient(91deg, transparent, transparent 14px, rgba(212,167,106,.07) 14px, rgba(212,167,106,.07) 15px),
    repeating-linear-gradient(86deg, transparent, transparent 22px, rgba(160,82,45,.05) 22px, rgba(160,82,45,.05) 24px),
    linear-gradient(95deg, #2B2520 0%, #3D2E22 25%, #2B2520 50%, #352A20 75%, #2B2520 100%);
  background-size: 300px 300px;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 36px;
}
.hero__actions { margin-bottom: 32px; }
.hero__line {
  width: 1px;
  height: clamp(200px, 40vh, 400px);
  background: linear-gradient(to bottom, transparent, var(--accent) 20%, var(--accent-2) 80%, transparent);
  opacity: 0.4;
  align-self: center;
}
@media (max-width: 768px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__line { display: none; }
}

.hero__trust {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 600;
  color: var(--ink-soft);
  padding: 6px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  letter-spacing: 0.01em;
}
.trust-badge svg { width: 14px; height: 14px; flex-shrink: 0; }
.trust-badge {
  transition: border-color 240ms cubic-bezier(.4,0,.2,1), color 240ms, transform 200ms;
}
.trust-badge:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--surface);
  padding: 14px 32px; border-radius: var(--radius);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 0.95rem; font-weight: 600;
  letter-spacing: 0.01em;
  border: none; cursor: pointer;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms, transform 180ms;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent); color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -6px rgba(160,82,45,.35);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--ink);
  padding: 14px 32px; border-radius: var(--radius);
  border: 1.5px solid var(--line-strong);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 0.95rem; font-weight: 600;
  cursor: pointer;
  transition: background 240ms, color 240ms, border-color 240ms, transform 180ms;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface); color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px -6px rgba(160,82,45,.2);
}

/* ── Section base ── */
.section {
  padding: clamp(56px,8vw,100px) 0;
}
.section--surface { background: var(--surface); }
.section--ink { background: var(--ink); color: var(--surface); }
.section--ink .section__eyebrow { color: var(--accent-2); }
.section--ink h2 { color: var(--surface); }
.section--ink p { color: rgba(237,234,227,0.82); }
.section--ink a { color: var(--accent-2); }

.section__eyebrow {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  color: var(--ink);
}
.section__intro {
  font-size: 1.05rem; color: var(--ink-soft);
  max-width: 600px; margin-bottom: 48px;
  line-height: 1.75;
}

/* ── Grain Divider (wood grain SVG) ── */
.grain-divider {
  display: block; width: 100%; max-width: var(--container-max);
  margin: 0 auto; height: 40px;
  opacity: 0.45;
}

/* ── #manifesto ── */
.manifesto__text {
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  line-height: 1.85;
  max-width: 720px;
  color: var(--ink);
}
.drop-cap {
  float: left;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 700; font-style: italic;
  font-size: clamp(4rem, 8vw, 6rem);
  line-height: 0.78;
  margin: 6px 16px 8px 0;
  background:
    repeating-linear-gradient(87deg, transparent, transparent 4px, rgba(160,82,45,.18) 4px, rgba(160,82,45,.18) 5px),
    repeating-linear-gradient(92deg, transparent, transparent 10px, rgba(212,167,106,.12) 10px, rgba(212,167,106,.12) 11px),
    linear-gradient(90deg, #A0522D 0%, #8B4513 50%, #A0522D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── #koleksiyon ── */
.koleksiyon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 768px) { .koleksiyon-grid { grid-template-columns: 1fr; } }

.koleksiyon-text { font-size: 1.05rem; color: var(--ink-soft); line-height: 1.8; }
.koleksiyon-text p + p { margin-top: 18px; }

.thumb-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.thumb-item {
  aspect-ratio: 4/3;
  background: var(--surface-2);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms;
}
.thumb-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px -8px rgba(160,82,45,.22), 0 0 20px -4px rgba(212,167,106,.12);
}
.thumb-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.thumb-item:hover img { transform: scale(1.04); }
.thumb-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 8px 12px;
  background: linear-gradient(transparent, rgba(43,37,32,.7));
  color: var(--surface);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.02em;
}

/* ── #malzeme ── */
.malzeme-list { max-width: 680px; }
.malzeme-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.4,0,.2,1);
}
.malzeme-item:first-child { border-top: 1px solid var(--line); }
.malzeme-item:hover { transform: translateX(4px); }
.malzeme-icon {
  transition: color 280ms cubic-bezier(.4,0,.2,1), filter 280ms;
}
.malzeme-item:hover .malzeme-icon {
  color: var(--accent-2);
  filter: drop-shadow(0 0 6px rgba(212,167,106,.35));
}
.malzeme-icon {
  width: 40px; height: 40px;
  color: var(--accent);
  flex-shrink: 0;
}
.malzeme-name {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 700; font-style: italic;
  font-size: 1.25rem;
  margin-bottom: 6px;
}
.malzeme-desc {
  font-size: 0.92rem; color: var(--ink-soft);
  line-height: 1.7;
}

/* ── #surec ── */
.surec-grid {
  display: grid; gap: 0;
  counter-reset: step-counter;
}
.surec-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
  padding: clamp(28px, 4vw, 44px) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.surec-step {
  transition: background 280ms cubic-bezier(.4,0,.2,1), padding-left 280ms cubic-bezier(.4,0,.2,1);
  border-radius: var(--radius);
}
.surec-step:hover {
  background: rgba(160,82,45,.03);
  padding-left: 8px;
}
.surec-step:first-child { border-top: 1px solid var(--line); }
.surec-num {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 700; font-style: italic;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  color: var(--accent-2);
  opacity: 0.5;
  min-width: 56px;
  transition: opacity 300ms, color 300ms;
}
.surec-step:hover .surec-num {
  opacity: 0.8;
  color: var(--accent);
}
.surec-content h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-style: italic;
}
.surec-content p {
  font-size: 0.95rem; color: var(--ink-soft); line-height: 1.75;
}
.surec-time {
  display: inline-block; margin-top: 8px;
  font-size: 0.78rem; font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
}

/* ── #fiyat ── */
.fiyat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin-bottom: 48px;
}
@media (max-width: 768px) { .fiyat-grid { grid-template-columns: 1fr; } }

.fiyat-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms;
  position: relative;
}
.fiyat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(160,82,45,.18), 0 0 24px -8px rgba(212,167,106,.1);
}
.fiyat-card--featured {
  border-color: var(--accent);
  background: var(--bg);
}
.fiyat-card--featured::before {
  content: 'Popüler';
  position: absolute; top: -12px; left: 24px;
  background: var(--accent); color: var(--surface);
  font-size: 0.72rem; font-weight: 600;
  padding: 4px 14px; border-radius: 100px;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.fiyat-card__title {
  font-size: 1.15rem; margin-bottom: 4px;
  font-style: italic;
}
.fiyat-card__desc {
  font-size: 0.85rem; color: var(--ink-soft);
  margin-bottom: 20px; line-height: 1.6;
}
.fiyat-card__price {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.fiyat-card__price small {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 0.75rem; font-weight: 400;
  color: var(--ink-soft);
}
.fiyat-dahil { margin-top: 18px; }
.fiyat-dahil h4 {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 10px;
  font-style: normal;
}
.fiyat-dahil ul { display: flex; flex-direction: column; gap: 6px; }
.fiyat-dahil li {
  font-size: 0.88rem; color: var(--ink);
  padding-left: 18px; position: relative;
}
.fiyat-dahil li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-2);
}
.fiyat-dahil--no li::before { background: var(--line-strong); }

.fiyat-parcalar {
  max-width: 600px;
}
.fiyat-parca-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.fiyat-parca-row:first-child { border-top: 1px solid var(--line); }
.fiyat-parca-name { color: var(--ink); }
.fiyat-parca-name small { color: var(--ink-soft); font-size: 0.82rem; margin-left: 4px; }
.fiyat-parca-price {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}
.fiyat-disclaimer {
  margin-top: 20px;
  font-size: 0.82rem; color: var(--ink-soft);
  font-style: italic;
}

/* ── Capacity / wait ── */
.capacity-strip {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-top: 32px;
  padding: 18px 24px;
  background: rgba(160,82,45,.06);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.capacity-strip span {
  font-size: 0.88rem; font-weight: 600; color: var(--accent);
}

/* ── Stats / counters ── */
.stats-row {
  display: flex; flex-wrap: wrap; gap: clamp(24px, 4vw, 48px);
  padding: 32px 0;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 700; font-style: italic;
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--accent);
  line-height: 1.1;
}
.stat-label {
  font-size: 0.82rem; color: var(--ink-soft);
  margin-top: 4px; letter-spacing: 0.02em;
}

/* ── #referanslar (testimonials) ── */
.referanslar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 32px);
}
@media (max-width: 768px) { .referanslar-grid { grid-template-columns: 1fr; } }

.referans-card {
  padding: clamp(24px, 3vw, 32px);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms;
}
.referans-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px -10px rgba(160,82,45,.16), 0 0 20px -6px rgba(212,167,106,.08);
}
.referans-card:first-child {
  grid-row: span 2;
}
.referans-quote {
  font-size: 1rem; line-height: 1.8;
  color: var(--ink); margin-bottom: 18px;
  font-style: italic;
}
.referans-quote::before {
  content: '\201C';
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 2.5rem;
  color: var(--accent-2);
  line-height: 0.5;
  display: block; margin-bottom: 8px;
}
.referans-author {
  font-size: 0.82rem; font-weight: 600; color: var(--accent);
}
.referans-meta {
  font-size: 0.78rem; color: var(--ink-soft); margin-top: 2px;
}

/* ── #sss (FAQ) ── */
.faq-list {
  max-width: 720px;
  display: flex; flex-direction: column; gap: 0;
}
.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;
  padding: 20px 0;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 1rem; font-weight: 600;
  color: var(--ink); cursor: pointer;
  list-style: none;
  transition: color 200ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem; font-weight: 400;
  color: var(--accent);
  transition: transform 300ms cubic-bezier(.2,.7,.2,1);
  flex-shrink: 0; margin-left: 16px;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover {
  color: var(--accent);
  padding-left: 6px;
}
.faq-item summary {
  transition: color 200ms, padding-left 240ms cubic-bezier(.4,0,.2,1);
}

.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: 24px;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item .faq-body { transition: none; }
}
.faq-body p {
  font-size: 0.92rem; color: var(--ink-soft); line-height: 1.75;
}

/* ── Notlar (news) ── */
.notlar-list { max-width: 600px; }
.notlar-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.notlar-date {
  font-size: 0.78rem; font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  min-width: 100px;
}
.notlar-item {
  transition: background 240ms cubic-bezier(.4,0,.2,1);
  border-radius: var(--radius);
  padding-left: 8px;
  padding-right: 8px;
}
.notlar-item:hover {
  background: var(--surface);
}
.notlar-text {
  font-size: 0.92rem; color: var(--ink-soft);
  line-height: 1.6;
}

/* ── Cancellation tiers ── */
.iptal-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.iptal-tier {
  padding: 20px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  text-align: center;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
}
.iptal-tier:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px -8px rgba(160,82,45,.15);
}
.iptal-tier__period {
  font-size: 0.82rem; font-weight: 600;
  color: var(--ink-soft); letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.iptal-tier__rate {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 700; font-style: italic;
  font-size: 1.3rem; color: var(--accent);
}

/* ── İletişim page grid ── */
.iletisim-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
@media (max-width: 768px) {
  .iletisim-grid { grid-template-columns: 1fr; }
}

/* ── Contact page channels ── */
.contact-channels {
  display: grid; gap: 0;
}
.contact-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.4,0,.2,1), background 240ms;
  border-radius: var(--radius);
  padding-left: 8px;
  padding-right: 8px;
}
.contact-row:hover {
  transform: translateX(4px);
  background: var(--surface);
}
.contact-row svg {
  width: 20px; height: 20px;
  color: var(--ink-soft);
  margin-top: 2px;
  transition: color 240ms, transform 240ms;
  flex-shrink: 0;
}
.contact-row:hover svg {
  color: var(--accent);
  transform: scale(1.08);
}
.contact-label {
  font-size: 0.78rem; font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 2px;
}
.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 ── */
.hours-grid {
  display: grid; gap: 4px;
  margin-top: 8px;
}
.hours-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  font-size: 0.88rem;
}
.hours-day { font-weight: 600; color: var(--ink); }
.hours-time { color: var(--ink-soft); }

/* ── Form ── */
.form-section { max-width: 560px; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 0.85rem; font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  display: block; width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--bg);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
  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(160,82,45,.12);
  outline: none;
}
.field textarea { resize: vertical; min-height: 120px; }
.field select { cursor: pointer; }

.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
}
.field--checkbox {
  display: flex; align-items: flex-start; gap: 10px;
}
.field--checkbox label {
  font-size: 0.85rem; font-weight: 400;
  color: var(--ink-soft); margin-bottom: 0;
  cursor: pointer;
}

/* ── 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: var(--radius);
}
.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 {
  width: 100%; border-collapse: collapse;
}
th, td {
  padding: 12px 16px; text-align: left;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--line);
}
th {
  font-weight: 600; color: var(--ink);
  background: var(--surface);
  font-size: 0.82rem; letter-spacing: 0.04em;
  text-transform: uppercase;
}
td { color: var(--ink-soft); }

/* ── Footer ── */
.site-footer {
  background: var(--ink);
  color: rgba(237,234,227,0.72);
  padding: clamp(48px, 6vw, 80px) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(24px, 3vw, 40px);
  padding-bottom: clamp(40px, 5vw, 60px);
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 700; font-style: italic;
  font-size: 1.15rem;
  color: var(--surface);
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 0.88rem; line-height: 1.7;
  margin-bottom: 16px;
}
.footer-legal-info {
  font-size: 0.78rem; color: rgba(237,234,227,0.45);
  line-height: 1.6;
}
.footer-col h4 {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 16px;
  font-style: normal;
}
.footer-col a {
  display: block;
  font-size: 0.88rem; color: rgba(237,234,227,0.72);
  padding: 4px 0;
  transition: color 200ms, padding-left 200ms;
}
.footer-col a:hover {
  color: var(--surface);
  padding-left: 4px;
}
.footer-col p {
  font-size: 0.88rem; line-height: 1.7;
}
.footer-hours {
  font-size: 0.82rem; line-height: 1.8;
}
.footer-bottom {
  border-top: 1px solid rgba(237,234,227,0.1);
  padding: 20px 0;
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center;
  gap: 12px;
  font-size: 0.78rem;
}
.footer-bottom a { color: rgba(237,234,227,0.5); font-size: 0.78rem; }
.footer-bottom a:hover { color: var(--surface); }
.footer-bottom-links {
  display: flex; flex-wrap: wrap; gap: 16px;
}

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  max-width: 520px; margin: 0 auto;
  background: var(--ink);
  color: rgba(237,234,227,0.88);
  border-radius: var(--radius);
  padding: 20px 24px;
  transform: translateY(140%); opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
  box-shadow: 0 16px 48px rgba(0,0,0,.3);
}
@media (min-width: 640px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner__title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 700; font-style: italic;
  font-size: 1rem; color: var(--surface);
  margin-bottom: 8px;
}
.cookie-banner__text {
  font-size: 0.82rem; line-height: 1.6;
  margin-bottom: 16px;
}
.cookie-banner__text a { color: var(--accent-2); }
.cookie-banner__text a:hover { color: var(--surface); }
.cookie-banner__actions {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.cookie-banner__actions button {
  flex: 1; min-width: 100px; min-height: 48px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 0.88rem; font-weight: 600;
  cursor: pointer;
  transition: background 200ms, color 200ms, border-color 200ms, transform 180ms;
  border: 1.5px solid transparent;
}
.cookie-btn-accept {
  background: var(--accent); color: var(--surface);
  border-color: var(--accent);
}
.cookie-btn-accept:hover { background: var(--accent-2); color: var(--ink); border-color: var(--accent-2); }
.cookie-btn-reject {
  background: transparent; color: rgba(237,234,227,0.7);
  border-color: rgba(237,234,227,0.3);
}
.cookie-btn-reject:hover { background: rgba(237,234,227,0.08); color: var(--surface); border-color: rgba(237,234,227,0.55); }
.cookie-btn-settings {
  background: transparent; color: rgba(237,234,227,0.6);
  border-color: transparent;
}
.cookie-btn-settings:hover { background: rgba(237,234,227,0.06); color: var(--surface); }

/* ── Reveal animations ── */
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ── Niche animations ── */
@keyframes grain-shift {
  0% { background-position: 0 0; }
  100% { background-position: 300px 150px; }
}
@keyframes sawdust-drift {
  0%, 100% { opacity: 0; transform: translateY(0) scale(1); }
  40% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-18px) scale(0.7); }
}
@keyframes warm-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,167,106,0); }
  50% { box-shadow: 0 0 16px -2px rgba(212,167,106,.15); }
}
@keyframes drop-cap-in {
  0% { opacity: 0; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1); }
}
.drop-cap {
  animation: drop-cap-in 800ms cubic-bezier(.2,.7,.2,1) 400ms both;
}
@media (prefers-reduced-motion: reduce) {
  .drop-cap { animation: none; }
}

@keyframes chisel-shadow {
  0% { box-shadow: 0 2px 8px rgba(160,82,45,0); }
  100% { box-shadow: 0 12px 32px -8px rgba(160,82,45,.22); }
}

@keyframes ring-pulse {
  0% { transform: scale(0.8); opacity: 0; }
  50% { opacity: 0.5; }
  100% { transform: scale(2.2); opacity: 0; }
}
.stat-item { position: relative; }
.stat-item::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 40px; height: 40px;
  border: 2px solid var(--accent-2);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  pointer-events: none;
}
.stat-item.is-counted::after {
  animation: ring-pulse 800ms cubic-bezier(.2,.7,.2,1) forwards;
}
@media (prefers-reduced-motion: reduce) {
  .stat-item::after { animation: none !important; }
}

@keyframes grain-line-draw {
  0% { stroke-dashoffset: 1200; }
  100% { stroke-dashoffset: 0; }
}
.grain-divider path {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
}
.grain-divider.is-in path {
  animation: grain-line-draw 1200ms cubic-bezier(.4,0,.2,1) forwards;
}
@media (prefers-reduced-motion: reduce) {
  .grain-divider path { stroke-dasharray: none; stroke-dashoffset: 0; }
  .grain-divider.is-in path { animation: none; }
}

@keyframes wood-shimmer {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}
.hero__line {
  animation: wood-shimmer 10s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) { .hero__line { animation: none; } }

@media (prefers-reduced-motion: reduce) {
  .surec-step,
  .malzeme-item,
  .malzeme-icon,
  .notlar-item,
  .trust-badge,
  .story-event,
  .story-year,
  .iptal-tier,
  .team-photo,
  .contact-row,
  .contact-row svg,
  .thumb-item,
  .thumb-item img,
  .fiyat-card,
  .referans-card,
  .team-card,
  .btn-primary,
  .btn-ghost,
  .faq-item summary,
  .surec-num {
    transition: none !important;
  }
  .surec-step:hover,
  .story-event:hover { padding-left: 0; }
  .faq-item summary:hover { padding-left: 0; }
}

/* ── Thank-you page ── */
.thankyou {
  min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: clamp(60px, 10vw, 120px) 0;
}
.thankyou h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.thankyou p { font-size: 1.05rem; color: var(--ink-soft); margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ── 404 page ── */
.page-404 {
  min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: clamp(60px, 10vw, 120px) 0;
}
.page-404 h1 {
  font-size: clamp(5rem, 12vw, 4.5rem);
  color: var(--accent-2); opacity: 0.4;
  line-height: 1;
}
.page-404 h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin: 12px 0 16px; }
.page-404 p { color: var(--ink-soft); margin-bottom: 28px; }

/* ── Policy pages ── */
.policy {
  padding: clamp(40px, 6vw, 80px) 0;
}
.policy h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}
.policy .policy-updated {
  font-size: 0.82rem; color: var(--ink-soft);
  margin-bottom: 36px;
}
.policy h2 {
  font-size: 1.3rem; margin-top: 36px; margin-bottom: 12px;
}
.policy h3 {
  font-size: 1.1rem; margin-top: 24px; margin-bottom: 10px;
}
.policy p {
  font-size: 0.95rem; color: var(--ink-soft);
  line-height: 1.8; margin-bottom: 14px;
  max-width: 720px;
}
.policy ul {
  margin: 10px 0 18px 20px;
  list-style: disc;
}
.policy ul li {
  font-size: 0.92rem; color: var(--ink-soft);
  line-height: 1.7; margin-bottom: 4px;
}

/* ── Sitemap page ── */
.sitemap-list {
  max-width: 480px;
}
.sitemap-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.sitemap-list a {
  font-size: 0.95rem; font-weight: 600;
}

/* ── Team (hakkimizda) ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(20px, 3vw, 32px);
}
.team-card {
  padding: clamp(24px, 3vw, 32px);
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px -10px rgba(160,82,45,.16), 0 0 20px -6px rgba(212,167,106,.08);
}
.team-card:hover .team-photo {
  background: var(--accent-2);
  color: var(--surface);
  transition: background 320ms cubic-bezier(.2,.7,.2,1), color 320ms;
}
.team-photo {
  width: 72px; height: 72px;
  background: var(--surface-2);
  border-radius: 50%;
  margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-2); font-size: 1.4rem;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 700; font-style: italic;
  transition: background 320ms cubic-bezier(.2,.7,.2,1), color 320ms;
}
.team-name {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 700; font-style: italic;
  font-size: 1.1rem; margin-bottom: 2px;
}
.team-role {
  font-size: 0.82rem; color: var(--accent);
  font-weight: 600; margin-bottom: 12px;
}
.team-bio {
  font-size: 0.88rem; color: var(--ink-soft);
  line-height: 1.7;
}

/* ── Story timeline (hakkimizda) ── */
.story-timeline {
  position: relative;
  padding-left: 32px;
  max-width: 640px;
}
.story-timeline::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--line-strong);
}
.story-event {
  position: relative;
  padding: 0 0 40px 0;
  transition: padding-left 280ms cubic-bezier(.4,0,.2,1);
}
.story-event:hover {
  padding-left: 8px;
}
.story-event:hover .story-year {
  text-shadow: 0 0 12px rgba(160,82,45,.25);
}
.story-event::before {
  content: ''; position: absolute;
  left: -37px; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg);
}
.story-year {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 700; font-style: italic;
  font-size: 1.1rem; color: var(--accent);
  margin-bottom: 4px;
  transition: text-shadow 280ms;
}
.story-text {
  font-size: 0.92rem; color: var(--ink-soft); line-height: 1.75;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  :root { --header-h: 64px; }
}
@media (max-width: 640px) {
  :root { --header-h: 60px; }
  .hero { padding: 60px 0 48px; }
  .hero__title { font-size: clamp(2rem, 8vw, 2.8rem); max-width: 90%; }
  .stats-row { gap: 20px; }
  .stat-num { font-size: 2rem; }
  .trust-badge { font-size: 0.72rem; padding: 5px 10px; }
  .fiyat-parca-row { flex-direction: column; gap: 2px; }
  .iptal-tiers { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .iptal-tiers { grid-template-columns: 1fr; }
  .referanslar-grid { grid-template-columns: 1fr; }
  .referans-card:first-child { grid-row: auto; }
  .footer-grid { gap: 28px; }
  .cookie-banner { bottom: 8px; left: 8px; right: 8px; padding: 16px; }
}
@media (max-width: 360px) {
  body { font-size: 0.94rem; }
  .hero__title { font-size: 2rem; }
  .section__heading { font-size: 1.7rem; }
}

/* ── Hover guards (touch devices) ── */
@media (hover: none) {
  .thumb-item:hover { transform: none; box-shadow: none; }
  .thumb-item:hover img { transform: none; }
  .fiyat-card:hover { transform: none; box-shadow: none; }
  .referans-card:hover { transform: none; box-shadow: none; }
  .team-card:hover { transform: none; box-shadow: none; }
  .iptal-tier:hover { transform: none; box-shadow: none; }
  .surec-step:hover { background: transparent; padding-left: 0; }
  .malzeme-item:hover { transform: none; }
  .story-event:hover { padding-left: 0; }
  .faq-item summary:hover { padding-left: 0; }
  .trust-badge:hover { transform: none; }
  .btn-primary:hover { transform: none; }
  .btn-ghost:hover { transform: none; }
}

/* ── Enhanced wood-themed hover effects ── */
@media (hover: hover) {
  .btn-primary:hover {
    box-shadow: 0 8px 24px -6px rgba(160,82,45,.35), inset 0 1px 0 rgba(212,167,106,.18);
  }
  .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px -4px rgba(160,82,45,.25);
  }
  .btn-ghost:hover {
    box-shadow: 0 6px 20px -6px rgba(160,82,45,.2), inset 0 1px 0 rgba(212,167,106,.08);
  }
  .fiyat-card:hover {
    box-shadow: 0 16px 40px -12px rgba(160,82,45,.18),
                0 0 0 1px rgba(160,82,45,.08),
                0 0 24px -8px rgba(212,167,106,.1);
  }
  .referans-card:hover {
    box-shadow: 0 14px 36px -10px rgba(160,82,45,.16),
                0 0 0 1px rgba(160,82,45,.06);
  }
  .thumb-item:hover {
    box-shadow: 0 12px 32px -8px rgba(160,82,45,.22),
                0 0 0 1px rgba(160,82,45,.08);
  }
  .team-card:hover {
    box-shadow: 0 14px 36px -10px rgba(160,82,45,.16),
                0 0 0 1px rgba(160,82,45,.06);
  }
  .faq-item summary:hover::after { color: var(--accent-2); }
  .notlar-item:hover .notlar-date {
    color: var(--accent-2);
  }
  .contact-row:hover {
    box-shadow: 0 2px 12px -4px rgba(160,82,45,.1);
  }
}

/* ── Enhanced reveal animations ── */
.reveal--left {
  opacity: 0; transform: translateX(-24px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal--left.is-in { opacity: 1; transform: none; }

.reveal--scale {
  opacity: 0; transform: scale(0.94);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal--scale.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal--left, .reveal--scale {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
}

/* ── Wood grain warmth on hero ── */
@keyframes hero-warmth {
  0%, 100% { box-shadow: inset 0 0 80px -40px rgba(160,82,45,0); }
  50% { box-shadow: inset 0 0 80px -40px rgba(160,82,45,.04); }
}
.hero {
  animation: hero-warmth 8s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hero { animation: none; }
}

/* ── Sawdust particle on stat items ── */
@keyframes sawdust-float {
  0% { opacity: 0; transform: translate(0, 0) rotate(0deg); }
  30% { opacity: 0.5; }
  100% { opacity: 0; transform: translate(8px, -20px) rotate(45deg); }
}
.stat-item.is-counted::before {
  content: '';
  position: absolute; top: 25%; right: 20%;
  width: 4px; height: 4px;
  background: var(--accent-2);
  border-radius: 1px;
  opacity: 0;
  pointer-events: none;
  animation: sawdust-float 1200ms cubic-bezier(.2,.7,.2,1) forwards;
}
@media (prefers-reduced-motion: reduce) {
  .stat-item.is-counted::before { animation: none; display: none; }
}

/* ── Stats row mobile fix ── */
@media (max-width: 640px) {
  .stats-row {
    justify-content: center;
    gap: 32px;
  }
  .stat-item {
    min-width: 80px;
  }
  .stat-item::after {
    width: 32px; height: 32px;
  }
}

/* ── Cookie banner mobile improvements ── */
@media (max-width: 480px) {
  .cookie-banner__actions { flex-direction: row; flex-wrap: wrap; }
  .cookie-banner__actions button { flex: 1 1 calc(50% - 4px); min-width: 48px; }
  .cookie-btn-settings { flex-basis: 100%; }
}

/* ── Policy pages visual hierarchy ── */
.policy h2 {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.policy h2::before {
  content: '';
  display: inline-block;
  width: 3px; height: 0.8em;
  background: var(--accent);
  margin-right: 10px;
  vertical-align: baseline;
  border-radius: 2px;
}

/* ── Footer bottom mobile stack ── */
@media (max-width: 480px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ── Enhanced wood-craft stagger & micro-effects ── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition:
    opacity 700ms cubic-bezier(.16,.84,.44,1),
    transform 700ms cubic-bezier(.16,.84,.44,1);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.surec-step .surec-num {
  transition: opacity 400ms cubic-bezier(.16,.84,.44,1), color 400ms cubic-bezier(.16,.84,.44,1), text-shadow 400ms;
}
.surec-step:hover .surec-num {
  text-shadow: 0 0 18px rgba(160,82,45,.18);
}

@media (hover: hover) {
  .btn-primary {
    position: relative;
    overflow: hidden;
  }
  .btn-primary::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 60% 50%, rgba(212,167,106,.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 360ms cubic-bezier(.16,.84,.44,1);
    pointer-events: none;
  }
  .btn-primary:hover::after { opacity: 1; }

  .fiyat-card {
    transition:
      transform 400ms cubic-bezier(.16,.84,.44,1),
      box-shadow 400ms cubic-bezier(.16,.84,.44,1),
      border-color 300ms;
  }
  .fiyat-card:hover { border-color: rgba(160,82,45,.15); }

  .referans-card {
    transition:
      transform 400ms cubic-bezier(.16,.84,.44,1),
      box-shadow 400ms cubic-bezier(.16,.84,.44,1);
  }

  .team-card {
    transition:
      transform 400ms cubic-bezier(.16,.84,.44,1),
      box-shadow 400ms cubic-bezier(.16,.84,.44,1);
  }

  .thumb-item {
    transition:
      transform 400ms cubic-bezier(.16,.84,.44,1),
      box-shadow 400ms cubic-bezier(.16,.84,.44,1);
  }

  .malzeme-item {
    transition: transform 280ms cubic-bezier(.16,.84,.44,1), background 280ms;
    border-radius: var(--radius);
    padding-left: 4px; padding-right: 4px;
  }
  .malzeme-item:hover {
    background: rgba(160,82,45,.025);
  }

  .iptal-tier {
    transition:
      transform 360ms cubic-bezier(.16,.84,.44,1),
      box-shadow 360ms cubic-bezier(.16,.84,.44,1),
      border-color 300ms;
  }
  .iptal-tier:hover { border-color: rgba(160,82,45,.2); }
}

@keyframes warm-amber-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,167,106,0); }
  50% { box-shadow: 0 0 24px -4px rgba(212,167,106,.12); }
}
.fiyat-card--featured {
  animation: warm-amber-glow 5s cubic-bezier(.4,0,.6,1) infinite;
}
@media (prefers-reduced-motion: reduce) {
  .fiyat-card--featured { animation: none; }
}

.faq-item summary {
  transition:
    color 240ms cubic-bezier(.16,.84,.44,1),
    padding-left 280ms cubic-bezier(.16,.84,.44,1);
}
.faq-item .faq-body {
  transition:
    height 400ms cubic-bezier(.16,.84,.44,1),
    padding-block-end 400ms cubic-bezier(.16,.84,.44,1);
}

.story-event {
  transition:
    padding-left 280ms cubic-bezier(.16,.84,.44,1),
    background 280ms;
  border-radius: var(--radius);
  padding-right: 8px;
}
.story-event:hover {
  background: rgba(160,82,45,.025);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .story-event, .malzeme-item { transition: none !important; }
  .story-event:hover, .malzeme-item:hover { background: transparent; }
}

/* ── Print ── */
@media print {
  .site-header, .drawer, .drawer-backdrop, .cookie-banner, .nav-toggle,
  .skip-link { display: none !important; }
  main { padding-top: 0; }
  body { color: #000; background: #fff; }
  .reveal { opacity: 1 !important; transform: none !important; }
  a { color: #000; text-decoration: underline; }
  .section--ink { background: #f5f5f5; color: #000; }
}
