/* ============================================================
   KOZLU A.Ş. — GELENEKSEL KURUMSAL TASARIM SİSTEMİ
   "Köklülük · Otorite · Güven · 1954"
   ============================================================ */

:root {
  /* ANA PALET — Logo paletine uyumlu */
  --c-wine: #d6001c;             /* Logo kırmızısı — kurumsal ana renk */
  --c-wine-dark: #a8001a;        /* Daha koyu kırmızı (hover) */
  --c-wine-light: #e63347;
  --c-wine-50: #fef3f4;

  --c-gold: #c89c2e;             /* Sıcak altın — aksesuar (MİSUN başağı tonu) */
  --c-gold-dark: #a07e22;
  --c-gold-light: #e0bd5b;

  --c-cream: #f5f5f5;            /* Açık nötr arka plan */
  --c-paper: #ffffff;             /* Saf beyaz */
  --c-cream-deep: #ebebeb;
  --c-line: #d4d4d4;              /* Nötr gri ince çizgi */
  --c-line-soft: #e5e5e5;

  --c-ink: #1a1a1a;               /* Logo siyahı */
  --c-ink-soft: #2c2c2c;
  --c-text: #333333;
  --c-muted: #6e6e6e;             /* Logo grisi tonunda */
  --c-gray: #7a7a7a;              /* Logo K harfi grisi */

  /* MARKA RENKLERİ (alt kategori) */
  --b-flour: #6b1e1e;             /* MİSUN bordosu */
  --b-feed: #1a1a1a;              /* Kozyem siyahı */
  --b-egg: #d6001c;               /* Yumurta - logo kırmızısı */

  /* TİPOGRAFİ — Klasik kurumsal */
  --f-display: 'Playfair Display', 'Times New Roman', Georgia, serif;
  --f-heading: 'Cormorant Garamond', Georgia, serif;
  --f-body: 'Source Sans 3', -apple-system, sans-serif;
  --f-mono: 'JetBrains Mono', monospace;

  /* GÖLGELER — Daha disiplinli */
  --sh-sm: 0 1px 2px rgba(28,24,20,0.06);
  --sh-md: 0 4px 16px -4px rgba(28,24,20,0.10), 0 2px 6px -2px rgba(28,24,20,0.06);
  --sh-lg: 0 16px 40px -8px rgba(28,24,20,0.18), 0 8px 16px -4px rgba(28,24,20,0.08);
  --sh-frame: 0 0 0 1px var(--c-line), 0 8px 24px -8px rgba(28,24,20,0.12);

  /* DİĞER */
  --r-sm: 2px;
  --r-md: 4px;
  --r-lg: 8px;
  --container: 1200px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-text);
  background: var(--c-cream);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Hafif nötr doku */
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--c-ink);
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.5rem, 2.2vw, 1.85rem); }
h4 { font-size: 1.25rem; font-weight: 600; }
em { font-style: italic; color: var(--c-wine); }

p { font-size: 1rem; }
strong { color: var(--c-ink); font-weight: 600; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 32px; }

/* ============================================================
   KLASİK SÜSLEMELER
   ============================================================ */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--c-gold);
  margin: 1.5rem 0;
  font-size: 0.9rem;
}
.ornament::before, .ornament::after {
  content: '';
  flex: 0 0 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}
.ornament-symbol {
  font-size: 1rem;
  letter-spacing: 0.5em;
}

/* Çift çizgi - klasik kurumsal ayraç */
.double-line {
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  height: 4px;
  margin: 2rem 0;
}

/* ============================================================
   TİPOGRAFİ KOMPOZİSYONLARI
   ============================================================ */
.section__head {
  margin-bottom: 4rem;
  text-align: center;
}
.section__head--left { text-align: left; }

.section__eyebrow {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--c-wine);
  margin-bottom: 1.5rem;
  position: relative;
  padding: 0 1.5rem;
}
.section__eyebrow::before, .section__eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--c-gold);
}
.section__eyebrow::before { right: 100%; }
.section__eyebrow::after { left: 100%; }
.section__eyebrow--light { color: var(--c-gold); }

.section__title {
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.section__title--light { color: var(--c-cream); }

.section__lead {
  font-family: var(--f-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--c-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

/* ============================================================
   BUTONLAR — Klasik, kare köşeli
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
  position: relative;
}
.btn--lg { padding: 1.15rem 2.5rem; font-size: 0.9rem; }
.btn--sm { padding: 0.55rem 1.25rem; font-size: 0.75rem; }

.btn--primary {
  background: var(--c-wine);
  color: var(--c-cream);
  border-color: var(--c-wine);
}
.btn--primary:hover {
  background: var(--c-wine-dark);
  border-color: var(--c-wine-dark);
  transform: translateY(-1px);
  box-shadow: var(--sh-md);
}

.btn--gold {
  background: var(--c-gold);
  color: var(--c-ink);
  border-color: var(--c-gold);
}
.btn--gold:hover {
  background: var(--c-gold-dark);
  border-color: var(--c-gold-dark);
}

.btn--outline {
  background: transparent;
  color: var(--c-ink);
  border-color: var(--c-ink);
}
.btn--outline:hover {
  background: var(--c-ink);
  color: var(--c-cream);
}

.btn--outline-light {
  background: transparent;
  color: var(--c-cream);
  border-color: rgba(248,244,236,0.35);
}
.btn--outline-light:hover {
  background: var(--c-cream);
  color: var(--c-ink);
  border-color: var(--c-cream);
}

.btn--ghost {
  background: transparent;
  color: var(--c-ink);
  padding: 0.95rem 1rem;
  border-bottom: 1px solid var(--c-ink);
  border-radius: 0;
}
.btn--ghost:hover { color: var(--c-wine); border-color: var(--c-wine); }

/* ============================================================
   ÇEREZ BANNER & MODAL
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--c-ink);
  color: var(--c-cream);
  padding: 1.5rem 0;
  z-index: 9999;
  border-top: 3px solid var(--c-gold);
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.cookie-banner__text strong {
  font-family: var(--f-display);
  font-size: 1.1rem;
  color: var(--c-gold);
  display: block;
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.cookie-banner__text p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(248,244,236,0.85);
  margin: 0;
}
.cookie-banner__text a {
  color: var(--c-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-banner__actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.cookie-banner .btn--ghost {
  color: var(--c-cream);
  border-color: rgba(248,244,236,0.35);
}
.cookie-banner .btn--ghost:hover {
  color: var(--c-gold);
  border-color: var(--c-gold);
}

/* MODAL */
.modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal.show { display: flex; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28,24,20,0.7);
  animation: fadeIn 0.3s ease;
}
.modal__content {
  position: relative;
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  padding: 3rem 2.5rem 2.5rem;
  max-width: 600px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: var(--sh-lg);
  animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modal__content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--c-wine);
  border-bottom: 1px solid var(--c-gold);
}
.modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 32px;
  height: 32px;
  font-size: 1.5rem;
  color: var(--c-muted);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__close:hover { color: var(--c-wine); }
.modal h2 {
  font-size: 1.65rem;
  margin-bottom: 0.5rem;
  color: var(--c-ink);
}
.modal__lead {
  color: var(--c-muted);
  margin-bottom: 1.5rem;
  font-size: 0.92rem;
  font-family: var(--f-heading);
  font-style: italic;
}
.modal__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--c-line);
}

.cookie-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--c-line-soft);
}
.cookie-row h3 { font-size: 1rem; margin-bottom: 0.25rem; font-family: var(--f-display); font-weight: 600; }
.cookie-row p { font-size: 0.85rem; color: var(--c-muted); margin: 0; }

.switch { position: relative; display: inline-block; width: 46px; height: 24px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--c-line);
  border-radius: 999px;
  transition: var(--transition);
}
.slider::before {
  content: "";
  position: absolute;
  height: 18px; width: 18px;
  left: 3px; bottom: 3px;
  background: var(--c-paper);
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: var(--sh-sm);
}
input:checked + .slider { background: var(--c-wine); }
input:checked + .slider::before { transform: translateX(22px); }
input:disabled + .slider { opacity: 0.6; cursor: not-allowed; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   HEADER — Klasik üst bar + ana navigasyon
   ============================================================ */
.topbar {
  background: var(--c-ink);
  color: rgba(248,244,236,0.7);
  padding: 0.55rem 0;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--c-gold-dark);
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.topbar__left, .topbar__right {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.topbar a { color: rgba(248,244,236,0.75); }
.topbar a:hover { color: var(--c-gold); }
.topbar .lang {
  display: flex;
  gap: 0.35rem;
  align-items: center;
}
.topbar .lang a {
  padding: 0 0.4rem;
  font-weight: 600;
}
.topbar .lang a.active { color: var(--c-gold); }
.topbar .lang span { color: rgba(248,244,236,0.3); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-paper);
  border-bottom: 1px solid var(--c-line);
  transition: all var(--transition);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 32px;
  gap: 2rem;
  max-width: var(--container);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--c-ink);
}
.logo__mark {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  border-left: 1px solid var(--c-line);
  padding-left: 1rem;
}
.logo__name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.65rem;
  letter-spacing: 0.04em;
  color: var(--c-ink);
}
.logo__sub {
  font-family: var(--f-body);
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  color: var(--c-wine);
  margin-top: 5px;
  font-weight: 600;
  text-transform: uppercase;
}
.logo--light .logo__name { color: var(--c-cream); }
.logo--light .logo__sub { color: var(--c-gold); }
.logo--light .logo__text { border-color: rgba(248,244,236,0.2); }

.main-nav ul {
  display: flex;
  gap: 0;
  list-style: none;
}
.main-nav a {
  display: block;
  padding: 0.85rem 1.15rem;
  font-family: var(--f-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
  position: relative;
  transition: all var(--transition);
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--c-wine);
  transition: width var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  color: var(--c-wine);
}
.main-nav a:hover::after, .main-nav a.active::after { width: calc(100% - 2.3rem); }
.main-nav .caret { font-size: 0.6rem; opacity: 0.5; margin-left: 0.3rem; }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-top: 2px solid var(--c-wine);
  padding: 0.5rem 0;
  box-shadow: var(--sh-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
}
.dropdown li { list-style: none; }
.dropdown a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--c-line-soft);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown a:hover { background: var(--c-cream); color: var(--c-wine); }
.dropdown a::after { display: none; }
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-actions { display: flex; gap: 1rem; align-items: center; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-ink);
  transition: var(--transition);
}

/* ============================================================
   HERO — Klasik kurumsal vitrin
   ============================================================ */
.hero {
  position: relative;
  padding: 6rem 0 5rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(122,24,24,0.02) 0%, rgba(176,141,58,0.04) 100%),
    var(--c-cream);
  border-bottom: 1px solid var(--c-line);
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 80px,
      rgba(176,141,58,0.04) 80px,
      rgba(176,141,58,0.04) 81px
    );
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.hero__est {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--f-display);
  font-style: italic;
  color: var(--c-wine);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  animation: fadeInUp 0.7s ease both;
}
.hero__est::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--c-gold);
}

.hero__title {
  font-weight: 500;
  margin-bottom: 1.75rem;
  animation: fadeInUp 0.8s 0.1s ease both;
  letter-spacing: -0.01em;
}
.hero__title em { display: block; font-weight: 600; }

.hero__divider {
  width: 80px;
  height: 1px;
  background: var(--c-gold);
  margin-bottom: 1.75rem;
  position: relative;
  animation: fadeInUp 0.8s 0.15s ease both;
}
.hero__divider::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--c-gold);
  border-radius: 50%;
}

.hero__lead {
  font-family: var(--f-heading);
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--c-muted);
  font-style: italic;
  max-width: 540px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s 0.2s ease both;
  font-weight: 400;
}
.hero__cta {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.3s ease both;
}

/* Hero Visual — Klasik mühür/madalyon */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fadeIn 1s 0.4s ease both;
}
.hero__medallion {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__medallion-outer {
  position: absolute;
  inset: 0;
  border: 1px solid var(--c-gold);
  border-radius: 50%;
}
.hero__medallion-inner {
  position: absolute;
  inset: 12px;
  border: 1px solid var(--c-gold);
  border-radius: 50%;
}
.hero__medallion-spinner {
  position: absolute;
  inset: 0;
  animation: spinSlow 80s linear infinite;
}
.hero__medallion-content {
  position: relative;
  text-align: center;
  z-index: 2;
}
.hero__medallion-content .est {
  font-family: var(--f-body);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--c-gold-dark);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.hero__medallion-content .year {
  font-family: var(--f-display);
  font-size: 4rem;
  font-weight: 600;
  color: var(--c-wine);
  line-height: 1;
  margin: 0.25rem 0;
}
.hero__medallion-content .roman {
  font-family: var(--f-heading);
  font-style: italic;
  font-size: 1rem;
  color: var(--c-muted);
  letter-spacing: 0.08em;
}
.hero__medallion-content .ornament-mini {
  color: var(--c-gold);
  margin: 0.85rem 0;
  font-size: 0.85rem;
  letter-spacing: 0.5em;
}
.hero__medallion-content .name {
  font-family: var(--f-display);
  font-size: 1.15rem;
  letter-spacing: 0.25em;
  color: var(--c-ink);
  font-weight: 600;
  margin-top: 0.5rem;
}

@keyframes spinSlow { to { transform: rotate(360deg); } }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Marquee */
.hero__marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--c-wine);
  color: var(--c-cream);
  overflow: hidden;
  padding: 0.85rem 0;
  border-top: 1px solid var(--c-gold);
  border-bottom: 1px solid var(--c-gold);
}
.marquee__track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.marquee__track .dot { color: var(--c-gold); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  padding: 5rem 0;
  background: var(--c-paper);
  border-bottom: 1px solid var(--c-line);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  text-align: center;
  padding: 1.5rem;
  border-right: 1px solid var(--c-line);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat::before {
  content: '✦';
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  background: var(--c-paper);
  color: var(--c-gold);
  font-size: 0.85rem;
  padding: 0 4px;
}
.stat:last-child::before { display: none; }

.stat__num {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 600;
  color: var(--c-ink);
  line-height: 1;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}
.stat__num sup {
  font-size: 0.4em;
  font-weight: 400;
  color: var(--c-muted);
  margin-left: 0.2rem;
  vertical-align: super;
  font-family: var(--f-heading);
  font-style: italic;
}
.stat__label {
  font-size: 0.78rem;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 7rem 0;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.about__visual { position: relative; }

/* Klasik kart - çift çerçeve */
.about__image-frame {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--c-cream-deep), var(--c-line-soft));
  padding: 12px;
  border: 1px solid var(--c-gold);
}
.about__image-frame::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid var(--c-gold);
  pointer-events: none;
  z-index: 2;
}
.about__image-placeholder {
  position: absolute;
  inset: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(122,24,24,0.04) 12px, rgba(122,24,24,0.04) 13px),
    linear-gradient(135deg, #e6dcc4, #d4c5a3);
  color: var(--c-ink);
}
.about__image-placeholder span {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 600;
}
.about__image-placeholder small {
  font-size: 0.78rem;
  color: var(--c-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}
.about__image-placeholder .ornament {
  margin: 0.85rem 0 0;
}

.about__badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 130px;
  height: 130px;
  background: var(--c-wine);
  color: var(--c-cream);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--c-cream);
  box-shadow: 0 0 0 1px var(--c-gold);
  z-index: 3;
}
.about__badge::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(176,141,58,0.5);
  border-radius: 50%;
}
.about__badge-num {
  font-family: var(--f-display);
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1;
}
.about__badge-text {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-align: center;
  margin-top: 4px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-gold);
}

.about__content { max-width: 580px; }
.about__lead {
  font-family: var(--f-heading);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.55;
  color: var(--c-ink-soft);
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.about__content p { margin-bottom: 1rem; line-height: 1.75; }
.about__content p:last-of-type { margin-bottom: 2rem; }

.about__signature {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--c-wine);
  margin: 2rem 0 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--c-line);
}
.about__signature small {
  display: block;
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-style: normal;
  letter-spacing: 0.2em;
  color: var(--c-muted);
  text-transform: uppercase;
  margin-top: 0.4rem;
  font-weight: 600;
}

.about__values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.value { text-align: left; }
.value__icon {
  width: 36px;
  height: 36px;
  color: var(--c-wine);
  margin-bottom: 0.75rem;
}
.value h4 { font-size: 1rem; margin-bottom: 0.4rem; font-family: var(--f-display); }
.value p { font-size: 0.85rem; line-height: 1.5; color: var(--c-muted); }

/* ============================================================
   BRANDS
   ============================================================ */
.brands {
  padding: 7rem 0;
  background: var(--c-paper);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.brands__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.brand-card {
  display: block;
  position: relative;
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  padding: 2.5rem 2rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 480px;
  display: flex;
  flex-direction: column;
}
.brand-card::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid transparent;
  pointer-events: none;
  transition: border-color 0.5s;
}
.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}
.brand-card:hover::before {
  border-color: var(--c-gold);
}

.brand-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--c-line);
}
.brand-card__num {
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--c-muted);
}
.brand-card__cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: var(--c-gold-dark);
  text-transform: uppercase;
}
.brand-card__title {
  font-family: var(--f-display);
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}
.brand-card__subtitle {
  font-family: var(--f-heading);
  font-style: italic;
  color: var(--c-wine);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}
.brand-card__desc {
  font-size: 0.95rem;
  color: var(--c-text);
  line-height: 1.7;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.brand-card__visual {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  width: 90px;
  height: 90px;
  opacity: 0.15;
  transition: all 0.5s;
}
.brand-card:hover .brand-card__visual {
  opacity: 0.4;
  transform: scale(1.08) rotate(-3deg);
}
.brand-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-wine);
  margin-top: auto;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--c-wine);
  align-self: flex-start;
  transition: gap var(--transition);
}
.brand-card:hover .brand-card__cta { gap: 0.85rem; }

.brand-card--flour { color: var(--b-flour); }
.brand-card--feed { color: var(--b-feed); }
.brand-card--egg { color: var(--b-egg); }

/* ============================================================
   TANITIM FİLMİ BÖLÜMÜ
   ============================================================ */
.video-section {
  padding: 6rem 0 7rem;
  background: var(--c-ink);
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--c-gold);
  border-bottom: 3px solid var(--c-gold);
}
.video-section::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-top: 1px solid rgba(200, 156, 46, 0.4);
  border-bottom: 1px solid rgba(200, 156, 46, 0.4);
  pointer-events: none;
  z-index: 1;
}
.video-section .section__head {
  position: relative;
  z-index: 2;
  margin-bottom: 3rem;
}
.video-section .section__title {
  color: var(--c-cream);
}
.video-section .section__lead {
  color: rgba(248, 244, 236, 0.75);
}
.video-section .section__eyebrow {
  color: var(--c-gold);
}
.video-section .section__eyebrow::before,
.video-section .section__eyebrow::after {
  background: var(--c-gold);
}
.video-section .ornament {
  color: var(--c-gold);
}
.video-section .ornament::before,
.video-section .ornament::after {
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}

.video-frame {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  padding: 12px;
  border: 1px solid var(--c-gold);
  background: rgba(200, 156, 46, 0.05);
}
.video-frame::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(200, 156, 46, 0.5);
  pointer-events: none;
  z-index: 1;
}
.video-frame__inner {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
}
.video-frame__inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-section__caption {
  text-align: center;
  margin-top: 2rem;
  font-family: var(--f-heading);
  font-style: italic;
  color: rgba(248, 244, 236, 0.6);
  font-size: 0.95rem;
  position: relative;
  z-index: 2;
}
.video-section__caption a {
  color: var(--c-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}
.video-section__caption a:hover {
  color: var(--c-gold-light);
}

@media (max-width: 768px) {
  .video-section {
    padding: 4rem 0 5rem;
  }
  .video-frame {
    padding: 6px;
    margin: 0 16px;
  }
}

/* Brand detail page - büyük marka logo başlığı */
.brand-detail-logo {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: 1.25rem 1.75rem;
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  box-shadow: var(--sh-sm);
}
.brand-detail-logo img {
  height: 65px;
  width: auto;
  display: block;
}

/* Brand card - Gerçek logo gösterimi */
.brand-card__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 110px;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--c-paper);
  border: 1px solid var(--c-line-soft);
}
.brand-card__logo img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.brand-card:hover .brand-card__logo img {
  transform: scale(1.05);
}

/* Header logo image */
.logo__image {
  height: 80px;
  width: auto;
  display: block;
}
.logo--light .logo__image {
  /* Footer'da koyu zeminde - logo gri kısımları biraz açılsın */
  filter: brightness(1.05);
}

/* ============================================================
   TIMELINE — Klasik dikey çizgi
   ============================================================ */
.timeline-section {
  padding: 7rem 0;
  background: var(--c-cream);
}
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}
.timeline__line {
  position: absolute;
  left: 120px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--c-gold);
}
.timeline__line::before, .timeline__line::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 9px;
  height: 9px;
  background: var(--c-gold);
  border-radius: 50%;
}
.timeline__line::before { top: 0; }
.timeline__line::after { bottom: 0; }

.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 3rem;
  padding: 1.5rem 0;
}
.timeline__item::before {
  content: '';
  position: absolute;
  left: 110px;
  top: 2rem;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--c-cream);
  border: 1px solid var(--c-gold);
  z-index: 1;
}
.timeline__item::after {
  content: '';
  position: absolute;
  left: 116px;
  top: 2.4rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c-wine);
  z-index: 2;
}
.timeline__year {
  font-family: var(--f-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--c-wine);
  text-align: right;
  padding-top: 0.15rem;
  letter-spacing: -0.01em;
}
.timeline__content { padding-left: 1rem; }
.timeline__content h4 {
  font-family: var(--f-display);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.timeline__content p { color: var(--c-muted); line-height: 1.65; }

/* ============================================================
   YÖNETİM KURULU — Klasik portre kartlar
   ============================================================ */
.board {
  padding: 7rem 0;
  background: var(--c-paper);
}
.board__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 2rem;
}
.board-member {
  position: relative;
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  padding: 1rem;
  transition: all var(--transition);
}
.board-member::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid transparent;
  pointer-events: none;
  transition: border-color 0.4s;
  z-index: 2;
}
.board-member:hover {
  box-shadow: var(--sh-lg);
}
.board-member:hover::before {
  border-color: var(--c-gold);
}

.board-member__photo {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--c-cream-deep), var(--c-line-soft));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.board-member__placeholder {
  width: 45%;
  color: var(--c-muted);
}
.board-member__ribbon {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--c-wine);
  color: var(--c-cream);
  padding: 0.6rem 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  border-top: 1px solid var(--c-gold);
}
.board-member__info {
  padding: 0.5rem 1rem 1.5rem;
  text-align: center;
}
.board-member__info h3 {
  font-family: var(--f-display);
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}
.board-member__role {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-wine);
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--c-line);
  position: relative;
}
.board-member__role::after {
  content: '◆';
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-cream);
  color: var(--c-gold);
  font-size: 0.7rem;
  padding: 0 0.5rem;
}
.board-member__info p {
  font-family: var(--f-heading);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--c-muted);
}

.board-member--featured {
  background: var(--c-wine);
  color: var(--c-cream);
  border-color: var(--c-wine);
}
.board-member--featured .board-member__photo {
  background: linear-gradient(135deg, rgba(248,244,236,0.08), rgba(176,141,58,0.1));
}
.board-member--featured .board-member__placeholder { color: rgba(248,244,236,0.3); }
.board-member--featured h3 { color: var(--c-cream); }
.board-member--featured .board-member__role {
  color: var(--c-gold);
  border-color: rgba(176,141,58,0.3);
}
.board-member--featured .board-member__role::after { background: var(--c-wine); }
.board-member--featured p { color: rgba(248,244,236,0.85); }

.board__note {
  text-align: center;
  font-family: var(--f-heading);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--c-muted);
  margin-top: 3rem;
  padding: 1.5rem;
  background: var(--c-cream-deep);
  border: 1px solid var(--c-line);
  border-left: 3px solid var(--c-gold);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   LOCATIONS
   ============================================================ */
.locations { padding: 7rem 0; background: var(--c-cream); }
.locations__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
  max-width: 980px;
  margin: 3rem auto;
  padding: 1rem 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.loc {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--f-display);
  font-size: 0.95rem;
  color: var(--c-ink);
  border-right: 1px solid var(--c-line-soft);
  transition: all var(--transition);
  cursor: pointer;
}
.loc:last-child { border-right: none; }
.loc:hover {
  background: var(--c-wine);
  color: var(--c-cream);
}
.loc--hq {
  background: var(--c-ink);
  color: var(--c-cream);
  font-weight: 600;
}
.loc small {
  font-size: 0.7rem;
  opacity: 0.7;
  font-family: var(--f-body);
  letter-spacing: 0.1em;
}

.locations__cta { text-align: center; margin-top: 2rem; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 6rem 0;
  background: var(--c-ink);
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--c-gold);
  border-bottom: 3px solid var(--c-gold);
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-top: 1px solid var(--c-gold);
  border-bottom: 1px solid var(--c-gold);
  pointer-events: none;
}
.cta-section__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-section h2 { color: var(--c-cream); }
.cta-section__lead {
  font-family: var(--f-heading);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(248,244,236,0.75);
  max-width: 540px;
  margin-top: 1rem;
}
.cta-section__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0a0806;
  color: rgba(248,244,236,0.7);
  padding: 5rem 0 2rem;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(176,141,58,0.2);
}
.site-footer__brand .logo__name { color: var(--c-cream); }
.site-footer__brand .logo__sub { color: var(--c-gold); }
.site-footer__brand .logo__text { border-color: rgba(176,141,58,0.3); }

/* Footer logo container - beyaz kart şeklinde, koyu zemin uyumu için */
.site-footer__logo {
  display: inline-block;
  background: var(--c-paper);
  padding: 1rem 1.25rem;
  border-radius: var(--r-sm);
  margin-bottom: 1.25rem;
}
.site-footer__logo img {
  height: 50px;
  width: auto;
  display: block;
}

.site-footer__tagline {
  margin-top: 1.5rem;
  font-family: var(--f-heading);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 360px;
  color: rgba(248,244,236,0.6);
}
.site-footer__col h5 {
  color: var(--c-gold);
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(176,141,58,0.25);
}
.site-footer__col ul { list-style: none; }
.site-footer__col li { margin-bottom: 0.65rem; }
.site-footer__col a {
  font-size: 0.9rem;
  color: rgba(248,244,236,0.65);
  transition: var(--transition);
}
.site-footer__col a:hover { color: var(--c-gold); padding-left: 6px; }
.site-footer__col address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.85;
  color: rgba(248,244,236,0.65);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.78rem;
  color: rgba(248,244,236,0.5);
}
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.5rem;
  list-style: none;
}
.legal-links a {
  color: rgba(248,244,236,0.6);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}
.legal-links a:hover { color: var(--c-gold); }

/* ============================================================
   PAGE HERO (iç sayfalar için)
   ============================================================ */
.page-hero {
  padding: 5rem 0 4rem;
  background:
    linear-gradient(180deg, var(--c-cream) 0%, var(--c-paper) 100%);
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--c-line);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 100px,
    rgba(176,141,58,0.04) 100px,
    rgba(176,141,58,0.04) 101px
  );
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.page-hero__title {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
  font-weight: 600;
}
.page-hero__lead {
  font-family: var(--f-heading);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--c-muted);
  line-height: 1.65;
  font-weight: 400;
}

.breadcrumb {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  font-size: 0.78rem;
  color: var(--c-muted);
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.breadcrumb a { color: var(--c-wine); }
.breadcrumb a:hover { color: var(--c-wine-dark); }
.breadcrumb span.sep { color: var(--c-gold); opacity: 0.6; }

/* ============================================================
   YASAL SAYFALAR
   ============================================================ */
.legal-page {
  padding: 5rem 0;
  background: var(--c-paper);
  min-height: 70vh;
}
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}
.legal-content h2 {
  font-family: var(--f-display);
  font-size: 1.65rem;
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 2px solid var(--c-wine);
  display: inline-block;
  position: relative;
}
.legal-content h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 30%;
  height: 2px;
  background: var(--c-gold);
}
.legal-content h3 {
  font-family: var(--f-display);
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.85rem;
  color: var(--c-wine);
}
.legal-content p {
  margin-bottom: 1.15rem;
  line-height: 1.85;
  font-size: 1rem;
  color: var(--c-text);
}
.legal-content ul, .legal-content ol {
  margin: 1rem 0 1.5rem 1.75rem;
}
.legal-content li {
  margin-bottom: 0.7rem;
  line-height: 1.75;
}
.legal-content ul li::marker { color: var(--c-gold); }
.legal-content ol li::marker { color: var(--c-wine); font-weight: 600; }

.legal-page__date {
  font-family: var(--f-heading);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--c-muted);
  letter-spacing: 0.05em;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.92rem;
  background: var(--c-cream);
  border: 1px solid var(--c-line);
}
.cookie-table th, .cookie-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--c-line);
}
.cookie-table th {
  background: var(--c-ink);
  color: var(--c-cream);
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom-color: var(--c-gold);
}
.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table tr:hover td { background: var(--c-cream-deep); }

.legal-note {
  margin-top: 3rem;
  padding: 1.5rem;
  background: var(--c-cream);
  border-left: 3px solid var(--c-gold);
  font-family: var(--f-heading);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--c-muted);
}

/* ============================================================
   FORM (İletişim)
   ============================================================ */
.contact-section { padding: 6rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-info h3 {
  font-family: var(--f-display);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.contact-info-block {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--c-line);
}
.contact-info-block:last-child { border-bottom: none; }
.contact-info-block .label {
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold-dark);
  margin-bottom: 0.5rem;
  display: block;
}
.contact-info-block .value {
  font-family: var(--f-display);
  font-size: 1.1rem;
  color: var(--c-ink);
  line-height: 1.55;
}
.contact-info-block .value a:hover { color: var(--c-wine); }

.contact-form {
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  padding: 2.5rem;
  position: relative;
}
.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--c-wine);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-ink);
  margin-bottom: 0.5rem;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--f-body);
  font-size: 0.95rem;
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  color: var(--c-ink);
  transition: all var(--transition);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--c-wine);
  box-shadow: 0 0 0 3px rgba(122,24,24,0.1);
  background: var(--c-paper);
}
.form-textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--f-body);
}
.form-checkbox-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--c-muted);
}
.form-checkbox-row input { margin-top: 4px; }
.form-checkbox-row a { color: var(--c-wine); text-decoration: underline; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero__visual { order: -1; max-width: 360px; margin: 0 auto; }
  .about__grid { grid-template-columns: 1fr; gap: 4rem; }
  .brands__grid { grid-template-columns: 1fr; }
  .board__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2)::before { display: none; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--c-line); }
  .cta-section__inner { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .topbar__left { display: none; }
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .header-actions .btn--sm { display: none; }

  .container { padding: 0 20px; }

  .cookie-banner__inner { grid-template-columns: 1fr; padding: 0 20px; }
  .cookie-banner__actions { justify-content: stretch; }
  .cookie-banner__actions .btn { flex: 1; min-width: 100px; padding: 0.75rem 1rem; }

  .modal__content { padding: 2rem 1.5rem 1.5rem; }
  .modal__actions { flex-direction: column-reverse; }
  .modal__actions .btn { width: 100%; }

  .about__values { grid-template-columns: 1fr; }
  .board__grid { grid-template-columns: 1fr; gap: 2rem; }

  .timeline__line { left: 30px; }
  .timeline__item { grid-template-columns: 70px 1fr; gap: 1.5rem; }
  .timeline__item::before { left: 20px; }
  .timeline__item::after { left: 26px; }
  .timeline__year { font-size: 1.2rem; text-align: left; padding-top: 0.4rem; }

  .site-footer__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }

  .stats__grid { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--c-line); }
  .stat:last-child { border-bottom: none; }
  .stat::before { display: none; }

  .hero { padding: 3rem 0 5rem; }
  .hero__title br { display: none; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.75rem 1.25rem; }

  .locations__list { flex-direction: column; }
  .loc { border-right: none; border-bottom: 1px solid var(--c-line-soft); width: 100%; justify-content: center; }
  .loc:last-child { border-bottom: none; }
}

/* ============================================================
   YUMURTA FİYATLARI BÖLÜMÜ
   ============================================================ */
.prices-section {
  padding: 5rem 0;
  background: var(--c-paper);
  border-bottom: 1px solid var(--c-line);
}

.prices-frame {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 12px;
  border: 1px solid var(--c-gold);
  background: var(--c-cream);
}
.prices-frame::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid var(--c-gold);
  pointer-events: none;
  z-index: 1;
}
.prices-frame__inner {
  position: relative;
  z-index: 2;
  background: var(--c-paper);
  padding: 1.5rem 2rem;
  min-height: 200px;
}

.prices-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--c-line);
  position: relative;
}
.prices-header::after {
  content: '◆';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-paper);
  color: var(--c-gold);
  padding: 0 0.5rem;
  font-size: 0.75rem;
}
.prices-header h3 {
  font-family: var(--f-display);
  font-size: 1.5rem;
  color: var(--c-ink);
  margin-bottom: 0.3rem;
  letter-spacing: 0.01em;
}
.prices-header small {
  font-family: var(--f-heading);
  font-style: italic;
  color: var(--c-muted);
  font-size: 0.95rem;
}

.prices-table-wrap {
  overflow-x: auto;
}
.prices-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--f-body);
}
.prices-table th {
  background: var(--c-ink);
  color: var(--c-cream);
  padding: 0.85rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: left;
  border-bottom: 2px solid var(--c-gold);
}
.prices-table th:nth-child(2),
.prices-table th:nth-child(3) {
  text-align: right;
  width: 25%;
}
.prices-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--c-line-soft);
  vertical-align: middle;
}
.prices-table tr:last-child td {
  border-bottom: none;
}
.prices-table tr:hover td {
  background: var(--c-cream);
}
.prices-table td.prod {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--c-ink);
}
.prices-table td.price {
  text-align: right;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-wine);
  letter-spacing: -0.01em;
}
.prices-table td.price small {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--c-muted);
  letter-spacing: 0.1em;
  font-family: var(--f-body);
}

.prices-loading, .prices-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--c-muted);
  font-family: var(--f-heading);
  font-style: italic;
}

.prices-footer {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--c-muted);
  font-size: 0.85rem;
}
.prices-footer small {
  font-family: var(--f-heading);
  font-style: italic;
}

@media (max-width: 768px) {
  .prices-frame__inner { padding: 1rem; }
  .prices-table td, .prices-table th { padding: 0.6rem 0.5rem; font-size: 0.85rem; }
  .prices-table td.prod { font-size: 0.9rem; }
  .prices-table td.price { font-size: 0.95rem; }
}
