/* ============================================================
   TRUEFOODS — Premium Doğal Tema
   Krem/beyaz zemin · derin orman yeşili · altın vurgu
   Fraunces (serif başlık) + Inter (gövde)
   ============================================================ */

:root {
  /* Palet */
  --bg: #faf6ee;
  --bg-2: #f3ede0;
  --surface: #ffffff;
  --surface-2: #f7f0e1;
  --line: #e5dcc7;
  --line-2: #d6caa8;
  --text: #0f1f14;
  --muted: #5e6a5a;
  --muted-2: #9aa393;
  --accent: #2d5a3d;
  --accent-2: #4a8060;
  --accent-deep: #1a3a26;
  --gold: #c9a555;
  --gold-soft: #e4c77d;
  --gold-deep: #9c7d2e;

  /* Tipografi */
  --font-heading: "Fraunces", "Times New Roman", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Şekil */
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  /* Gölge */
  --shadow-sm: 0 2px 8px rgba(26, 58, 38, .06);
  --shadow-md: 0 12px 32px rgba(26, 58, 38, .08);
  --shadow-lg: 0 24px 60px rgba(26, 58, 38, .14);
  --shadow-gold: 0 12px 32px rgba(201, 165, 85, .25);

  /* Layout */
  --maxw: 1320px;
  --gutter: 28px;
  --section-y: clamp(80px, 10vw, 140px);
}

/* ============ Reset & Base ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  color: var(--text);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.6rem); font-weight: 400; }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); font-weight: 400; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 0.92rem; letter-spacing: 0.14em; text-transform: uppercase; font-family: var(--font-body); font-weight: 700; }
p { margin: 0 0 1em; }

em { font-style: italic; color: var(--gold-deep); font-family: var(--font-heading); font-weight: 400; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section.block { padding: var(--section-y) 0; }
section[id] { scroll-margin-top: 100px; }

/* Seçim rengi */
::selection { background: var(--gold); color: var(--accent-deep); }

/* ============ Dil ============ */
[data-tr], [data-en] { display: none; }
html[data-lang="tr"] [data-tr] { display: revert; }
html[data-lang="en"] [data-en] { display: revert; }

/* ============ Eyebrow ============ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 18px;
  padding: 6px 14px 6px 14px;
  background: rgba(45, 90, 61, 0.08);
  border-radius: var(--radius-pill);
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.icon { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; display: inline-block; vertical-align: middle; }

/* ============ Butonlar ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform .25s ease, background .25s, color .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.btn .icon { width: 16px; height: 16px; transition: transform .25s ease; }
.btn:hover { transform: translateY(-2px); }
.btn:hover .icon { transform: translateX(3px); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--accent-deep);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  border: 1px solid rgba(255,255,255,.4);
  color: #fff;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,.08);
}
.btn-ghost:hover { background: rgba(255,255,255,.18); border-color: #fff; }
.btn-lg { padding: 18px 34px; font-size: 1rem; }

/* ============ Brand Bar ============ */
.brand-bar {
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  color: #f8f4e6;
  font-size: 0.82rem;
  text-align: center;
  padding: 10px 0;
  letter-spacing: 0.04em;
}
.brand-bar-text { margin: 0; opacity: .95; }

/* ============ Topbar ============ */
.topbar {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
  padding: 10px 0;
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.topbar-left { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); }
.topbar-item:hover { color: var(--accent); }
.topbar-right { display: flex; align-items: center; gap: 16px; }

/* ============ Lang Switch ============ */
.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: var(--surface);
}
.lang-switch button {
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
  transition: all .2s;
}
.lang-switch button.active { background: var(--accent); color: #fff; }
.lang-switch-mobile { display: none; }

/* ============ Header ============ */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 238, .88);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid var(--line);
  transition: padding .2s ease, box-shadow .2s;
}
.header.scrolled { box-shadow: 0 4px 20px rgba(26, 58, 38, .06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px 0; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 76px; width: auto; transition: transform .25s ease; }
.logo:hover img { transform: scale(1.03); }
.header.scrolled .logo img { height: 64px; }

.nav .menu {
  display: flex; gap: 32px;
  list-style: none; margin: 0; padding: 0;
}
.nav .menu a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: var(--text);
  padding: 6px 0;
  position: relative;
}
.nav .menu a::after {
  content: ""; position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .3s ease;
}
.nav .menu a:hover::after { width: 100%; }
.nav .menu a:hover { color: var(--accent); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta-btn { padding: 12px 22px; font-size: 0.88rem; }
.menu-toggle { display: none; color: var(--text); }

/* ============ HERO ============ */
.hero {
  position: relative;
  /* Hero = viewport - (topbar + sticky header) */
  min-height: calc(100vh - 158px);
  min-height: calc(100dvh - 158px);
  display: flex; align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.05);
  animation: kenburns 22s ease-in-out infinite alternate;
}
/* Video playing: kenburns'u kapat (video kendi hareketiyle oynar) */
video.hero-bg:is([data-playing]) { animation: none; transform: none; }
@keyframes kenburns {
  from { transform: scale(1.05) translate(0, 0); }
  to { transform: scale(1.12) translate(-2%, -2%); }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(26,58,38,.1), rgba(15,31,20,.65) 60%, rgba(15,31,20,.85) 100%),
    linear-gradient(180deg, rgba(15,31,20,.35) 0%, rgba(15,31,20,.5) 60%, rgba(15,31,20,.75) 100%);
}
.hero-noise {
  position: absolute; inset: 0; z-index: 2;
  opacity: 0.06;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 3; max-width: 960px; padding: 56px 0 64px; width: 100%; }
.hero .eyebrow {
  background: rgba(201, 165, 85, 0.15);
  color: var(--gold-soft);
  border: 1px solid rgba(201, 165, 85, 0.3);
}
.hero h1 {
  color: #fff;
  font-weight: 300;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  margin-bottom: 24px;
}
.hero h1 em { color: var(--gold-soft); font-style: italic; font-weight: 400; }
.hero-subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: rgba(255,255,255,.88);
  margin: 0 0 40px;
  max-width: 64ch;
  line-height: 1.6;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-ctas .btn-primary { background: var(--gold); color: var(--accent-deep); }
.hero-ctas .btn-primary:hover { background: var(--gold-soft); box-shadow: var(--shadow-gold); }

.hero-badges {
  display: grid; grid-template-columns: repeat(3, auto);
  gap: 48px;
  padding: 28px 0 0;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 400;
  color: var(--gold-soft);
  margin-bottom: 4px;
}
.hero-badge strong em { color: var(--gold-soft); font-size: 0.72em; }
.hero-badge > span { color: rgba(255,255,255,.8); font-size: 0.88rem; letter-spacing: 0.04em; }

/* Kısa viewport (720p laptop, landscape phone) için sıkıştırma */
@media (max-height: 820px) {
  .hero-content { padding: 36px 0 44px; }
  .hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); margin-bottom: 16px; }
  .hero-subtitle { margin-bottom: 28px; }
  .hero-ctas { margin-bottom: 32px; }
  .hero-badges { padding-top: 20px; gap: 32px; }
  .hero-badge strong { font-size: clamp(1.4rem, 2vw, 1.8rem); }
}
@media (max-height: 700px) {
  .hero-content { padding: 24px 0 32px; }
  .hero .eyebrow { margin-bottom: 12px; }
  .hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
  .hero-subtitle { font-size: 0.98rem; margin-bottom: 20px; }
  .hero-ctas { margin-bottom: 24px; }
  .hero-badges { display: none; }
}

.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 28px; height: 48px;
  border: 1.5px solid rgba(255,255,255,.5);
  border-radius: 14px;
  display: flex; justify-content: center;
  padding-top: 8px;
}
.hero-scroll span {
  width: 3px; height: 10px;
  border-radius: 2px;
  background: var(--gold-soft);
  animation: scroll 1.8s ease-in-out infinite;
}
@keyframes scroll {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translateY(16px); }
}

/* ============ STATS ============ */
.stats {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat {
  padding: 48px 28px;
  text-align: center;
  border-right: 1px solid var(--line);
  position: relative;
}
.stat:last-child { border-right: 0; }
.stat-value {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
  font-feature-settings: "ss01";
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
}

/* ============ ABOUT ============ */
.about-section { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text h2 em { color: var(--gold-deep); }
.about-text p { color: var(--muted); font-size: 1.02rem; line-height: 1.8; }
.value-list {
  list-style: none; padding: 0;
  margin: 32px 0 0;
  display: grid; gap: 14px;
}
.value-list li {
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
}
.value-list .icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  padding: 4px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  box-sizing: content-box;
}
.about-image { position: relative; }
.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-image::before {
  content: "";
  position: absolute;
  inset: -24px -24px 24px 24px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.6;
}
.about-image-caption {
  position: absolute;
  left: 20px; bottom: 20px;
  background: rgba(15, 31, 20, .92);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
}
.about-image-caption strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  color: var(--gold-soft);
  margin-bottom: 2px;
}

/* ============ SECTION HEAD ============ */
.section-head { text-align: center; max-width: 780px; margin: 0 auto 60px; }
.section-head h2 em { color: var(--gold-deep); }
.section-lede {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 60ch;
  margin: 16px auto 0;
}

/* ============ PRODUCTS (Bento) ============ */
.products-section { background: var(--bg-2); }
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 18px;
}
.bento-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform .35s ease, box-shadow .35s ease;
  grid-column: span 1;
  grid-row: span 1;
}
.bento-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.bento-feature {
  grid-column: span 2;
  grid-row: span 2;
}
.bento-wide { grid-column: span 2; }
.bento-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.8,.2,1);
  z-index: 0;
}
.bento-item:hover .bento-img { transform: scale(1.08); }
.bento-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(15,31,20,.18) 0%, rgba(15,31,20,.58) 45%, rgba(15,31,20,.94) 100%);
  transition: background .3s;
}
.bento-item:hover .bento-overlay {
  background: linear-gradient(180deg, rgba(15,31,20,.3) 0%, rgba(15,31,20,.72) 40%, rgba(15,31,20,.97) 100%);
}
.bento-content {
  position: absolute; inset: 0; z-index: 2;
  padding: 24px;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff;
}
.bento-feature .bento-content { padding: 36px; }
.bento-content h3 {
  color: #fff;
  margin: 0 0 8px;
  font-weight: 500;
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
}
.bento-feature .bento-content h3 { font-size: clamp(1.6rem, 2.4vw, 2.2rem); font-weight: 400; }
.bento-content p {
  color: rgba(255,255,255,.88);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, margin .3s, opacity .3s;
  opacity: 0;
}
.bento-item:hover .bento-content p {
  max-height: 180px;
  margin-top: 8px;
  opacity: 1;
}
.bento-feature .bento-content p {
  max-height: 180px;
  margin-top: 10px;
  opacity: 1;
}
.bento-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gold);
  color: var(--accent-deep);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  align-self: flex-start;
}
.bento-meta {
  list-style: none; padding: 0;
  margin: 14px 0 0;
  display: flex; gap: 14px; flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255,255,255,.72);
}
.bento-meta li {
  padding: 4px 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-pill);
}
.bento-cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px;
  color: var(--gold-soft);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  align-self: flex-start;
  padding: 8px 0;
}
.bento-cta .icon { width: 14px; height: 14px; transition: transform .25s; }
.bento-cta:hover .icon { transform: translateX(4px); }

/* ============ PROCESS ============ */
.process-section { background: var(--surface); }
.process-steps {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.process-step {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  overflow: hidden;
}
.process-step::before {
  content: ""; position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--accent) 100%);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.process-step:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  background: var(--surface);
}
.process-step:hover::before { transform: scaleX(1); }
.process-num {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 500;
}
.process-icon {
  width: 44px; height: 44px;
  color: var(--accent);
  margin: 14px 0 18px;
}
.process-step h3 { margin-bottom: 10px; font-weight: 600; }
.process-step p { color: var(--muted); margin: 0; font-size: 0.94rem; line-height: 1.65; }

/* ============ QUALITY ============ */
.quality {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: var(--section-y) 0;
  color: #fff;
}
.quality-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,58,38,.95) 0%, rgba(15,31,20,.75) 60%, rgba(26,58,38,.95) 100%);
}
.quality-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.quality .eyebrow {
  background: rgba(201, 165, 85, 0.18);
  color: var(--gold-soft);
}
.quality h2 { color: #fff; font-weight: 300; }
.quality h2 em { color: var(--gold-soft); }
.quality p { color: rgba(255,255,255,.8); font-size: 1.05rem; line-height: 1.75; }

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cert {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201, 165, 85, 0.25);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  text-align: center;
  transition: all .25s;
  backdrop-filter: blur(6px);
}
.cert:hover {
  background: rgba(201, 165, 85, 0.12);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.cert strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gold-soft);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.cert > span { font-size: 0.78rem; color: rgba(255,255,255,.7); letter-spacing: 0.02em; }

/* ============ EXPORT ============ */
.export-section { background: var(--bg); }
.export-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.export-text h2 em { color: var(--gold-deep); }
.export-text p { color: var(--muted); font-size: 1.02rem; line-height: 1.75; }
.export-markets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 28px 0 32px;
}
.market {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-weight: 500;
  transition: all .2s;
}
.market:hover { border-color: var(--gold); transform: translateX(4px); }
.market-flag {
  background: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  min-width: 38px;
  text-align: center;
}

.export-visual { position: relative; }
.export-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  background: var(--surface-2);
}
.export-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,31,20,0) 55%, rgba(15,31,20,.55) 100%);
  pointer-events: none;
}
.export-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1);
}
.export-photo:hover img { transform: scale(1.04); }

.export-photo-badge {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  background: rgba(255, 253, 248, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 165, 85, .28);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(15, 31, 20, .18);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: var(--accent-deep);
}
.export-photo-badge-origin,
.export-photo-badge-dest {
  display: inline-flex;
  font-weight: 600;
  white-space: nowrap;
}
.export-photo-badge-arrow {
  color: var(--gold-deep);
  font-weight: 700;
  font-size: 1.05rem;
  flex-shrink: 0;
}

/* ============ GALLERY ============ */
.gallery-section { background: var(--bg-2); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-sm);
  transition: transform .3s;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 24px 22px;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.1rem;
  background: linear-gradient(180deg, transparent, rgba(15,31,20,.9));
}

/* ============ CTA ============ */
.cta {
  position: relative;
  background-size: cover; background-position: center;
  padding: var(--section-y) 0;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,58,38,.92) 0%, rgba(15,31,20,.7) 100%);
}
.cta-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.cta-eyebrow {
  background: rgba(201, 165, 85, 0.2);
  color: var(--gold-soft);
}
.cta h2 {
  color: #fff;
  font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}
.cta h2 em { color: var(--gold-soft); }
.cta p {
  color: rgba(255,255,255,.88);
  font-size: 1.15rem;
  margin: 0 auto 36px;
  max-width: 60ch;
  line-height: 1.7;
}
.cta .btn-primary { background: var(--gold); color: var(--accent-deep); }
.cta .btn-primary:hover { background: var(--gold-soft); }

/* ============ CONTACT ============ */
.contact-section { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-text h2 { font-size: clamp(2rem, 4vw, 3rem); }
.contact-text > p { color: var(--muted); font-size: 1.02rem; margin-bottom: 32px; }
.contact-info {
  display: grid; gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
}
.contact-info-item .icon {
  width: 22px; height: 22px;
  padding: 8px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  box-sizing: content-box;
  flex-shrink: 0;
}
.contact-info-item strong {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.contact-info-item p { margin: 0; color: var(--text); line-height: 1.6; }
.contact-info-item a:hover { color: var(--accent); }
.contact-info-item .muted { color: var(--muted-2); font-size: 0.9rem; }

.contact-form {
  background: var(--surface);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  display: grid;
  gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form label {
  display: flex; flex-direction: column; gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: var(--text);
  transition: border-color .2s, background .2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.1);
}
.contact-form textarea { resize: vertical; }
.contact-form button { justify-self: start; margin-top: 8px; }

/* ============ FOOTER ============ */
.footer {
  background: var(--accent-deep);
  color: rgba(248, 244, 230, .8);
  padding: 80px 0 30px;
  border-top: 3px solid var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .logo { display: inline-block; margin-bottom: 20px; }
.footer-brand .logo img { height: 72px; filter: brightness(1.05); }
.footer-brand p { color: rgba(248, 244, 230, .72); font-size: 0.92rem; line-height: 1.7; margin-bottom: 22px; }
.footer h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--gold-soft);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { color: rgba(248, 244, 230, .72); font-size: 0.92rem; transition: all .2s; }
.footer-col a:hover { color: var(--gold-soft); padding-left: 4px; }
.footer-contact address { font-style: normal; color: rgba(248, 244, 230, .72); font-size: 0.92rem; line-height: 1.8; }
.footer-contact a:hover { color: var(--gold-soft); }

.footer-bottom {
  display: flex;
  justify-content: space-between; align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(201, 165, 85, 0.25);
  font-size: 0.82rem;
  color: rgba(248, 244, 230, .6);
}
.footer-bottom p { margin: 0; }
.footer-credit a { color: var(--gold-soft); font-weight: 600; }
.footer-credit a:hover { color: var(--gold); }

/* ============ REVEAL ANIMASYON ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Menü mobil açık */
#menu.open { display: flex !important; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
  .nav .menu { gap: 24px; }
  .bento { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; }
  .bento-feature { grid-column: span 2; grid-row: span 2; }
  .bento-wide { grid-column: span 3; }
}

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image { max-width: 520px; margin: 0 auto; }
  .export-grid { grid-template-columns: 1fr; gap: 48px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .quality-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; }
  .bento-feature { grid-column: span 2; grid-row: span 2; }
  .bento-wide { grid-column: span 2; }
}

@media (max-width: 980px) {
  .topbar { display: none; }
  /* Topbar gizli → sadece header çıkarılır */
  .hero {
    min-height: calc(100vh - 89px);
    min-height: calc(100dvh - 89px);
  }
  .hero-content { padding: 56px 0 64px; }
  .nav { order: 99; width: 100%; }
  .nav .menu {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
    box-shadow: var(--shadow-md);
  }
  .nav .menu li { border-bottom: 1px solid var(--line); }
  .nav .menu li:last-child { border-bottom: 0; }
  .nav .menu a { display: block; padding: 16px var(--gutter); }
  .nav .menu a::after { display: none; }
  .header-inner { position: relative; }
  .menu-toggle { display: inline-flex; }
  .lang-switch-mobile { display: inline-flex; }
  .nav-cta-btn { display: none; }

  .logo img { height: 60px; }
  .header.scrolled .logo img { height: 52px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }

  .hero-badges { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { aspect-ratio: 16/9; }
  .form-row { grid-template-columns: 1fr; }

  .quality { background-attachment: scroll; }
}

@media (max-width: 768px) {
  :root { --gutter: 20px; --section-y: clamp(60px, 9vw, 100px); }
  .hero-content { padding: 40px 0 48px; }
  .hero-badges {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-top: 24px;
  }
  .hero-badge:last-child { grid-column: span 2; }
  .process-steps { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .bento-feature { grid-column: span 1; grid-row: span 1; }
  .bento-wide { grid-column: span 1; }
  .bento-feature .bento-content { padding: 24px; }
  .bento-content p { max-height: 180px; opacity: 1; margin-top: 8px; }
  .bento-overlay { background: linear-gradient(180deg, rgba(15,31,20,.15) 0%, rgba(15,31,20,.65) 50%, rgba(15,31,20,.95) 100%); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; text-align: left; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  .export-markets { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .hero h1 br { display: none; }

  .export-photo-badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 10px 16px;
    gap: 10px;
    font-size: 0.82rem;
  }
  .export-photo-badge-arrow { font-size: 0.95rem; }
}

@media (max-width: 520px) {
  :root { --gutter: 16px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .hero-badges { grid-template-columns: 1fr; }
  .hero-badge:last-child { grid-column: span 1; }
  .cert-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .btn { padding: 12px 20px; font-size: 0.88rem; }
  .btn-lg { padding: 14px 24px; font-size: 0.92rem; }
}

/* ============ PRINT ============ */
@media print {
  .header, .topbar, .brand-bar, .hero-scroll, .cta, .contact-form { display: none; }
  body { background: #fff; color: #000; }
}
