:root {
  --bg: #FEFCF6;
  --surface: #F0EBE0;
  --ink: #3B3226;
  --accent: #7A9B57;
  --accent-2: #C4883B;
  --line: rgba(59,50,38,0.15);
  --header-h: 72px;
  --max-w: 1180px;
  --text-col: 740px;
  interpolate-size: allow-keywords;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Georgia, "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 1.2rem; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); margin-bottom: 0.8rem; }

p { margin-bottom: 1.2rem; }

a {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}
a:hover { color: var(--accent); }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--ink);
  color: var(--bg);
  padding: 8px 16px;
  border-radius: 4px;
  z-index: 9999;
  font-size: 0.875rem;
  text-decoration: none;
  transition: top 200ms;
}
.skip-link:focus {
  top: 8px;
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

.text-col {
  max-width: var(--text-col);
  margin-left: auto;
  margin-right: auto;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1080;
  background: rgba(254,252,246,0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0 clamp(16px, 4vw, 32px);
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
}

.site-header.scrolled {
  background: rgba(254,252,246,0.98);
  box-shadow: 0 8px 24px -16px rgba(59,50,38,0.18);
}

.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 60ms linear;
  pointer-events: none;
}

.header-logo {
  font-family: Georgia, "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-logo:hover { color: var(--accent-2); }
.header-logo svg { width: 32px; height: 32px; flex-shrink: 0; }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 36px);
}
.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 320ms cubic-bezier(.16,1,.3,1);
}
.nav-desktop a:hover { color: var(--accent); }
.nav-desktop a:hover::after { width: 100%; }
.nav-desktop a.is-active { color: var(--accent); }
.nav-desktop a.is-active::after { width: 100%; }

.nav-desktop .nav-cta {
  background: var(--ink);
  color: var(--bg);
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 700;
  transition: background 280ms cubic-bezier(.16,1,.3,1), color 280ms, transform 280ms cubic-bezier(.16,1,.3,1), box-shadow 280ms;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: var(--accent-2);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px rgba(196,136,59,0.35);
}

@media (max-width: 1024px) {
  .nav-desktop { display: none; }
}

/* ===== NAV TOGGLE ===== */
.nav-toggle {
  display: none;
  position: relative;
  z-index: 1100;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  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);
}

@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
}

/* ===== MOBILE DRAWER ===== */
.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}
.mobile-drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 92vw);
  background: var(--bg);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 32px) 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.mobile-drawer.is-open {
  transform: translateX(0);
}
.mobile-drawer a {
  font-family: Georgia, "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: block;
  transition: color 240ms, transform 240ms;
}
.mobile-drawer a:hover {
  color: var(--accent-2);
  transform: translateX(6px);
}
.mobile-drawer a.is-active { color: var(--accent); }
.mobile-drawer .drawer-cta {
  margin-top: 24px;
  background: var(--ink);
  color: var(--bg);
  text-align: center;
  padding: 16px;
  border-radius: 8px;
  border-bottom: none;
  font-size: 1rem;
}
.mobile-drawer .drawer-cta:hover {
  background: var(--accent-2);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px rgba(196,136,59,0.35);
}

.drawer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  font-size: 1.4rem;
  color: var(--ink);
  cursor: pointer;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms, border-color 240ms;
  z-index: 10;
}
.drawer-close:hover {
  background: var(--surface);
  border-color: var(--accent-2);
  color: var(--accent-2);
}

/* ===== MAIN ===== */
main {
  padding-top: var(--header-h);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--surface);
  padding: clamp(40px, 8vh, 80px) 0;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url('/assets/images/hero-dondurma.jpg') center/cover no-repeat;
  background-color: #8B7355;
  will-change: transform;
  transition: transform 0.1s linear;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(59,50,38,0.18) 0%, rgba(59,50,38,0.35) 100%);
}
.hero__overlay {
  position: relative;
  z-index: 2;
  background: rgba(254,252,246,0.92);
  padding: clamp(40px, 6vw, 80px) clamp(32px, 5vw, 64px);
  border-radius: 12px;
  max-width: 640px;
  text-align: center;
  box-shadow: 0 16px 64px -16px rgba(59,50,38,0.25), 0 0 0 1px rgba(196,136,59,0.08);
}
.hero__eyebrow {
  font-family: Georgia, "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1rem;
  color: var(--accent-2);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.hero__title {
  margin-bottom: 20px;
  white-space: pre-line;
}
.hero__sub {
  font-size: 1.05rem;
  color: var(--ink);
  opacity: 0.85;
  margin-bottom: 32px;
  line-height: 1.9;
}
.hero__keys {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}
.hero__key {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}
.hero__key svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  display: inline-block;
  background: var(--ink);
  color: var(--bg);
  padding: 14px 36px;
  border-radius: 6px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 280ms cubic-bezier(.16,1,.3,1), color 280ms, transform 280ms cubic-bezier(.16,1,.3,1), box-shadow 280ms;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent-2);
  color: var(--bg);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -4px rgba(196,136,59,0.4);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--ink);
  padding: 14px 36px;
  border-radius: 6px;
  border: 1.5px solid var(--line);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  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);
}

/* ===== DONDURMA STRETCH EFFECT ===== */
.stretch-zone {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
}
.stretch-strand {
  width: 40px;
  height: 160px;
  transform-origin: top center;
  transition: transform 0.05s linear;
}

/* ===== GOAT DIVIDER ===== */
.goat-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 48px 0;
  opacity: 0.35;
}
.goat-divider::before,
.goat-divider::after {
  content: '';
  flex: 1;
  max-width: 180px;
  height: 1px;
  background: var(--ink);
}
.goat-divider svg {
  width: 48px;
  height: 32px;
  flex-shrink: 0;
}

/* ===== SECTIONS ===== */
.section {
  padding: clamp(60px, 10vw, 120px) 0;
}

.section--surface {
  background: var(--surface);
}

.section__eyebrow {
  font-family: Georgia, "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--accent-2);
  margin-bottom: 12px;
}

/* ===== HIKAYEMIZ ===== */
.story-text {
  font-size: 1.05rem;
  line-height: 2;
}
.story-text p { margin-bottom: 1.6rem; }

.pull-quote {
  font-family: Georgia, "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--accent-2);
  border-left: 3px solid var(--accent);
  padding: 24px 0 24px 28px;
  margin: 48px 0;
  line-height: 1.6;
}

/* ===== ABOUT PAGE IMAGE ===== */
.aile-mirasi {
  border-radius: 8px;
  overflow: hidden;
  margin: 32px 0;
}

/* ===== URETIM (PRODUCTION) ===== */
.uretim-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.uretim-grid__img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface);
}
.uretim-grid__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.uretim-steps {
  list-style: none;
  counter-reset: step;
  margin-top: 24px;
}
.uretim-steps li {
  counter-increment: step;
  padding-left: 44px;
  position: relative;
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.uretim-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 2px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  font-family: Georgia, "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .uretim-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CESITLER (VARIETIES) ===== */
.cesitler-vitrin {
  margin-bottom: 40px;
  border-radius: 8px;
  overflow: hidden;
}

.cesitler-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.cesit-card {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 24px 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: transform 360ms cubic-bezier(.16,1,.3,1), box-shadow 360ms cubic-bezier(.16,1,.3,1), border-color 360ms;
}
.cesit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px -12px rgba(196,136,59,0.22), 0 0 24px -4px rgba(196,136,59,0.1);
  border-color: rgba(196,136,59,0.3);
}
.cesit-card__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cesit-card__icon svg {
  width: 36px;
  height: 36px;
}
.cesit-card__name {
  font-family: Georgia, "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.cesit-card__desc {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 0;
}
.cesit-card__price {
  font-family: Georgia, "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-2);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .cesit-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 12px;
  }
  .cesit-card__icon { margin: 0 auto; }
  .cesit-card__price { margin-top: 8px; }
}

/* ===== SIPARIS ===== */
.siparis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.siparis-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 360ms cubic-bezier(.16,1,.3,1), box-shadow 360ms cubic-bezier(.16,1,.3,1), border-color 360ms;
}
.siparis-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px -12px rgba(196,136,59,0.28), 0 0 28px -4px rgba(196,136,59,0.12);
  border-color: rgba(196,136,59,0.3);
}
.siparis-card__name {
  font-family: Georgia, "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.siparis-card__detail {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 16px;
}
.siparis-card__price {
  font-family: Georgia, "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent-2);
  margin-bottom: 20px;
}
.siparis-card__price small {
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.6;
  display: block;
  margin-top: 4px;
}
.siparis-note {
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.6;
  margin-top: 32px;
  font-style: italic;
}

/* ===== FORM (iletisim) ===== */
.form-section {
  max-width: 640px;
  margin: 0 auto;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
}
.field label .req { color: var(--accent-2); }
.field input,
.field select,
.field textarea {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  font-size: 1rem;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  background: var(--bg);
  color: var(--ink);
  transition: border-color 280ms cubic-bezier(.16,1,.3,1), box-shadow 280ms cubic-bezier(.16,1,.3,1);
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(122,155,87,0.12);
  outline: none;
}
.field textarea { min-height: 140px; resize: vertical; }
.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 {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}
.field--checkbox label {
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.5;
}

.field--honey { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-success,
.form-error {
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
}
.form-success {
  background: rgba(122,155,87,0.12);
  color: var(--accent);
  border: 1px solid var(--accent);
}
.form-error {
  background: rgba(196,59,59,0.08);
  color: #9b3232;
  border: 1px solid #c44a4a;
}
.form-success.is-visible,
.form-error.is-visible { display: block; }

/* ===== CONTACT CHANNELS ===== */
.contact-channels {
  display: grid;
  gap: 20px;
  margin-bottom: 48px;
}
.contact-channel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 8px;
  transition: transform 320ms cubic-bezier(.16,1,.3,1), background 320ms, box-shadow 320ms;
}
.contact-channel:hover {
  background: var(--surface);
  transform: translateX(6px);
  box-shadow: -3px 0 0 0 var(--accent-2), 0 4px 16px -4px rgba(196,136,59,0.1);
}
.contact-channel__icon {
  width: 22px;
  height: 22px;
  color: var(--ink);
  transition: color 240ms, transform 240ms cubic-bezier(.4,0,.2,1);
  margin-top: 2px;
}
.contact-channel:hover .contact-channel__icon {
  color: var(--accent);
  transform: scale(1.08);
}
.contact-channel__label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.6;
  margin-bottom: 2px;
}
.contact-channel__value {
  font-size: 0.95rem;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.contact-channel__value a {
  color: var(--ink);
  text-decoration: none;
}
.contact-channel__value a:hover { color: var(--accent-2); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 12px 40px -8px rgba(59,50,38,0.2);
  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;
}
.cookie-banner__title {
  font-family: Georgia, "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
}
.cookie-banner__text {
  font-size: 0.82rem;
  opacity: 0.8;
  margin-bottom: 16px;
  line-height: 1.6;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-banner__btn {
  flex: 1;
  min-width: 100px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 6px;
  border: 1.5px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 280ms cubic-bezier(.16,1,.3,1), color 280ms, border-color 280ms, transform 280ms cubic-bezier(.16,1,.3,1), box-shadow 280ms;
}
.cookie-banner__btn:hover {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-1px);
}
.cookie-banner__btn--accept {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.cookie-banner__btn--accept:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px -2px rgba(59,50,38,0.2);
}
.cookie-banner__btn[data-consent="reject"] {
  background: var(--surface);
  border-color: rgba(59,50,38,0.3);
}
.cookie-banner__btn[data-consent="reject"]:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px -2px rgba(59,50,38,0.2);
}

@media (min-width: 640px) {
  .cookie-banner {
    left: 24px;
    right: auto;
    max-width: 420px;
  }
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--ink);
  color: rgba(254,252,246,0.8);
  padding: clamp(48px, 8vw, 80px) 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  margin-bottom: 48px;
}
.footer-brand {
  font-family: Georgia, "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--bg);
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  opacity: 0.7;
}
.footer-heading {
  font-family: Georgia, "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: rgba(254,252,246,0.7);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 280ms cubic-bezier(.16,1,.3,1), transform 280ms cubic-bezier(.16,1,.3,1);
  position: relative;
  display: inline-block;
}
.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 320ms cubic-bezier(.16,1,.3,1);
}
.footer-links a:hover { color: var(--accent); transform: translateX(3px); }
.footer-links a:hover::after { width: 100%; }

.footer-bottom {
  border-top: 1px solid rgba(254,252,246,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  opacity: 0.6;
}
.footer-bottom a { color: rgba(254,252,246,0.7); text-decoration: none; }
.footer-bottom a:hover { color: var(--accent); }

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ===== LEGAL PAGES ===== */
.legal-content {
  padding: clamp(48px, 8vw, 80px) 0;
}
.legal-content h1 { margin-bottom: 32px; }
.legal-content h2 {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.legal-content h3 { margin-top: 28px; }
.legal-content p, .legal-content li {
  font-size: 0.95rem;
  line-height: 1.9;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.legal-content ul, .legal-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-content li { margin-bottom: 8px; }

/* ===== 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;
  font-size: 0.9rem;
}
th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
th {
  font-weight: 700;
  background: var(--surface);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
tr:last-child td { border-bottom: none; }

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 700ms cubic-bezier(.16,1,.3,1), transform 700ms cubic-bezier(.16,1,.3,1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* Stagger reveal for grouped items */
.cesit-card.reveal:nth-child(2) { transition-delay: 120ms; }
.cesit-card.reveal:nth-child(3) { transition-delay: 240ms; }
.cesit-card.reveal:nth-child(4) { transition-delay: 360ms; }
.siparis-card.reveal:nth-child(2) { transition-delay: 120ms; }
.siparis-card.reveal:nth-child(3) { transition-delay: 240ms; }
.siparis-card.reveal:nth-child(4) { transition-delay: 360ms; }
.uretim-steps li.reveal:nth-child(2) { transition-delay: 100ms; }
.uretim-steps li.reveal:nth-child(3) { transition-delay: 200ms; }
.uretim-steps li.reveal:nth-child(4) { transition-delay: 300ms; }
.uretim-steps li.reveal:nth-child(5) { transition-delay: 400ms; }
.hero__keys .hero__key:nth-child(2) { transition-delay: 150ms; }
.hero__keys .hero__key:nth-child(3) { transition-delay: 300ms; }
.contact-channel:nth-child(2) { transition-delay: 80ms; }
.contact-channel:nth-child(3) { transition-delay: 160ms; }
.contact-channel:nth-child(4) { transition-delay: 240ms; }
.contact-channel:nth-child(5) { transition-delay: 320ms; }
.contact-channel:nth-child(6) { transition-delay: 400ms; }

/* ===== NICHE ANIMATIONS ===== */

/* 1. Milk drip - decorative drops */
@keyframes milk-drip {
  0% { transform: translateY(-12px) scaleY(0.5) scaleX(0.8); opacity: 0; }
  15% { opacity: 1; transform: translateY(0) scaleY(1) scaleX(1); }
  75% { transform: translateY(50px) scaleY(1.4) scaleX(0.7); opacity: 0.8; }
  100% { transform: translateY(70px) scaleY(0.3) scaleX(2); opacity: 0; }
}

.milk-drop {
  position: absolute;
  width: 8px;
  height: 12px;
  background: rgba(254,252,246,0.7);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: milk-drip 3s ease-in-out infinite;
  pointer-events: none;
}
.milk-drop:nth-child(2) { animation-delay: 0.8s; left: 30%; }
.milk-drop:nth-child(3) { animation-delay: 1.6s; left: 70%; }

/* 2. Dovme pound - bounce for step indicators */
@keyframes dovme-pound {
  0%, 100% { transform: translateY(0) scale(1); }
  30% { transform: translateY(-6px) scale(1.05); }
  50% { transform: translateY(2px) scale(0.97); }
  70% { transform: translateY(-2px) scale(1.02); }
}
.uretim-steps li::before {
  animation: dovme-pound 2.5s cubic-bezier(.4,0,.2,1) infinite;
  animation-play-state: paused;
}
.uretim-steps li.is-in::before {
  animation-play-state: running;
}

/* 3. Salep grow - stroke animation for decorative paths */
@keyframes salep-grow {
  from { stroke-dashoffset: 200; }
  to { stroke-dashoffset: 0; }
}
.salep-path {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
}
.salep-path.is-in {
  animation: salep-grow 2s cubic-bezier(.4,0,.2,1) forwards;
}

/* 4. Frost float - particles in hero */
@keyframes frost-float {
  0% { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0.6; }
  33% { transform: translateY(-25px) translateX(8px) rotate(120deg); opacity: 0.4; }
  66% { transform: translateY(-50px) translateX(-4px) rotate(240deg); opacity: 0.2; }
  100% { transform: translateY(-70px) translateX(2px) rotate(360deg); opacity: 0; }
}
.frost-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(254,252,246,0.5);
  border-radius: 50%;
  animation: frost-float 8s ease-in-out infinite;
  pointer-events: none;
}
.frost-particle:nth-child(1) { bottom: 20%; left: 15%; animation-duration: 9s; }
.frost-particle:nth-child(2) { bottom: 30%; left: 45%; animation-duration: 11s; animation-delay: 2s; }
.frost-particle:nth-child(3) { bottom: 25%; left: 75%; animation-duration: 10s; animation-delay: 4s; }
.frost-particle:nth-child(4) { bottom: 40%; left: 60%; animation-duration: 12s; animation-delay: 1s; }
.frost-particle:nth-child(5) { bottom: 15%; left: 30%; animation-duration: 8.5s; animation-delay: 3s; }

/* 5. Cream stretch pulse - ambient on stretch SVG */
@keyframes cream-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* 6. Warm glow pulse on hero overlay */
@keyframes warm-glow {
  0%, 100% { box-shadow: 0 16px 64px -16px rgba(196,136,59,0.2), 0 0 0 1px rgba(196,136,59,0.08); }
  50% { box-shadow: 0 20px 72px -8px rgba(196,136,59,0.32), 0 0 0 1px rgba(196,136,59,0.14); }
}
.hero__overlay.is-in {
  animation: warm-glow 5s ease-in-out infinite;
}

/* 7. Goat divider hover warmth */
.goat-divider {
  transition: opacity 400ms cubic-bezier(.4,0,.2,1);
}
.goat-divider:hover {
  opacity: 0.6;
}

/* 8. Pull quote left border glow */
.pull-quote {
  transition: border-color 400ms;
}
.pull-quote:hover {
  border-color: var(--accent-2);
}

/* 9. Aile mirasi image warm border on hover */
.aile-mirasi {
  transition: box-shadow 400ms cubic-bezier(.16,1,.3,1), transform 400ms cubic-bezier(.16,1,.3,1);
}
.aile-mirasi:hover {
  box-shadow: 0 16px 48px -8px rgba(196,136,59,0.25);
  transform: translateY(-2px);
}

/* 10. Uretim image warm glow */
.uretim-grid__img {
  transition: box-shadow 400ms cubic-bezier(.16,1,.3,1), transform 400ms cubic-bezier(.16,1,.3,1);
}
.uretim-grid__img:hover {
  box-shadow: 0 16px 48px -8px rgba(196,136,59,0.25);
  transform: translateY(-2px);
}

/* 11. Cesitler vitrin warm hover */
.cesitler-vitrin {
  transition: box-shadow 400ms cubic-bezier(.16,1,.3,1), transform 400ms cubic-bezier(.16,1,.3,1);
}
.cesitler-vitrin:hover {
  box-shadow: 0 16px 48px -8px rgba(196,136,59,0.2);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .milk-drop,
  .frost-particle { animation: none !important; opacity: 0 !important; }
  .uretim-steps li::before { animation: none !important; }
  .salep-path { animation: none !important; stroke-dashoffset: 0 !important; }
  .hero__overlay.is-in { animation: none !important; }
  .cesit-card.reveal, .siparis-card.reveal, .uretim-steps li.reveal,
  .contact-channel { transition-delay: 0ms !important; }
  .cesit-card, .siparis-card, .aile-mirasi, .uretim-grid__img,
  .cesitler-vitrin, .contact-channel, .footer-links a,
  .btn-primary, .cookie-banner__btn { transition: none !important; }
}

/* ===== 404 PAGE ===== */
.page-404 {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.page-404 h1 { font-size: clamp(4rem, 12vw, 8rem); color: var(--accent); margin-bottom: 16px; }
.page-404 p { font-size: 1.1rem; margin-bottom: 32px; }

/* ===== SITEMAP PAGE ===== */
.sitemap-list { list-style: none; }
.sitemap-list li { padding: 10px 0; border-bottom: 1px solid var(--line); }
.sitemap-list a { font-weight: 600; }

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .hero { min-height: calc(100svh - var(--header-h)); }
  .hero__overlay { padding: 32px 24px; margin: 0 16px; border-radius: 10px; }
  .hero__keys { flex-direction: column; align-items: center; }
  .pull-quote { padding-left: 20px; font-size: 1.1rem; }
  .siparis-grid { grid-template-columns: 1fr; }
}

@media (max-width: 430px) {
  :root { --header-h: 60px; }
  .header-logo { font-size: 1rem; }
  .cookie-banner { left: 8px; right: 8px; bottom: 8px; padding: 16px; }
  .cookie-banner__actions { flex-direction: column; }
  .cookie-banner__btn { min-height: 48px; font-size: 0.9rem; }
}

@media (min-width: 1440px) {
  .container { padding-left: 0; padding-right: 0; }
}

/* ===== PRINT ===== */
@media print {
  .site-header, .nav-toggle, .mobile-drawer, .mobile-drawer-backdrop,
  .cookie-banner, .stretch-zone, .goat-divider, .frost-particle, .milk-drop { display: none !important; }
  main { padding-top: 0; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
}
