/* ==========================================================================
   Gold Premix — premium statik tasarım
   Palet: toprak yeşili + altın/amber, krem zemin
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda:opsz,ital,wght@6..96,0,400;6..96,0,500;6..96,0,600;6..96,0,700;6..96,0,800;6..96,1,400;6..96,1,600&family=Instrument+Sans:wght@400;500;600&family=IBM+Plex+Mono:wght@400;500;600&display=swap");

:root {
  /* Coffee / Assay-Vault palette — greens remapped to coffee browns */
  --green-900: #17130c;
  --green-800: #201a12;
  --green-700: #2a2218;
  --green-600: #342a1d;
  --green-500: #7a2e24;
  --green-300: #b79a5c;
  --green-100: #e4d9c2;

  --gold-700: #8a6b23;
  --gold-600: #9c7a24;
  --gold-500: #c9a24b;
  --gold-400: #d8bd77;
  --gold-100: #f2e6c8;
  --gold-hi: #e9ce86;

  --oxblood: #7a2e24;
  --oxblood-hi: #9c4034;

  --cream: #efe7d6;
  --cream-2: #e4d9c2;
  --ink: #17130c;
  --muted: #6a5f4a;
  --line: #d6c9ab;
  --white: #ffffff;

  --shadow-sm: 0 1px 2px rgba(23, 19, 12, 0.06), 0 2px 6px rgba(23, 19, 12, 0.05);
  --shadow-md: 0 10px 26px -12px rgba(23, 19, 12, 0.28);
  --shadow-lg: 0 34px 64px -30px rgba(23, 19, 12, 0.46);

  --r-sm: 2px;
  --r-md: 3px;
  --r-lg: 4px;
  --r-pill: 999px;

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 60px);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --font-serif: "Bodoni Moda", Georgia, serif;
  --font-sans: "Instrument Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-hallmark: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  --font-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.005em;
  margin: 0 0 0.5em;
  color: var(--green-900);
}

p { margin: 0 0 1em; }

::selection { background: var(--gold-400); color: var(--green-900); }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(64px, 9vw, 128px); }
.section--tight { padding-block: clamp(48px, 6vw, 84px); }
.section--cream2 { background: var(--cream-2); }
.section--green {
  background:
    radial-gradient(120% 140% at 80% 0%, rgba(214, 162, 52, 0.16), transparent 55%),
    var(--green-800);
  color: var(--green-100);
}
.section--green h1, .section--green h2, .section--green h3 { color: #fff; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--font-hallmark);
  font-weight: 400;
  font-size: 0.86rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-700);
}
.kicker::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--gold-500);
  display: inline-block;
}
.section--green .kicker { color: var(--gold-400); }

.section-head { max-width: 680px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head .title { font-size: clamp(1.9rem, 4vw, 3rem); margin-top: 0.35em; }
.section-head .sub { color: var(--muted); font-size: 1.08rem; margin: 0; }
.section--green .section-head .sub { color: var(--green-100); opacity: 0.85; }
.text-center { text-align: center; }
.section-head.text-center { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 1.05em 1.7em;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
    background-color 0.3s var(--ease), color 0.3s var(--ease);
  will-change: transform;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn--primary {
  background: linear-gradient(180deg, var(--gold-500), var(--gold-600));
  color: var(--green-900);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn--ghost {
  background: transparent;
  color: var(--green-800);
  border-color: var(--green-300);
}
.btn--ghost:hover { background: var(--green-100); transform: translateY(-3px); }
.btn--light { background: #fff; color: var(--green-800); box-shadow: var(--shadow-md); }
.btn--light:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.section--green .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.4); }
.section--green .btn--ghost:hover { background: rgba(255,255,255,0.1); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: var(--green-800);
  border-bottom: 1px solid rgba(233, 206, 134, 0.18);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
  padding-block: 10px;
}
.site-header.is-scrolled {
  background: rgba(32, 26, 18, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.6);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 108px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--green-900);
  letter-spacing: 0.01em;
}
.brand-text span { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-700); }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  position: relative;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0.5em 0.9em;
  border-radius: var(--r-sm);
  color: rgba(239, 231, 214, 0.74);
  transition: color 0.25s, background 0.25s;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0.9em; right: 0.9em; bottom: 0.32em;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.main-nav a:hover { color: var(--gold-hi); }
.main-nav a:hover::after, .main-nav a.is-current::after { transform: scaleX(1); }
.main-nav a.is-current { color: var(--gold-hi); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.lang-switch {
  display: inline-flex;
  border: 1px solid rgba(233, 206, 134, 0.28);
  border-radius: var(--r-sm);
  overflow: hidden;
  background: transparent;
}
.lang-switch button {
  border: 0;
  background: transparent;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 0.45em 0.8em;
  cursor: pointer;
  color: rgba(239, 231, 214, 0.7);
  transition: background 0.25s, color 0.25s;
}
.lang-switch button.is-active { background: var(--gold-500); color: var(--green-900); }

/* Header info button + dropdown */
.header-info { position: relative; }
.info-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green-800);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 0.5em 0.95em;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.info-btn svg { width: 1.05em; height: 1.05em; }
.info-btn:hover, .info-btn[aria-expanded="true"] {
  background: var(--green-700);
  border-color: var(--green-700);
  color: #fff;
}
.info-panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  z-index: 90;
  width: min(340px, 86vw);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px 22px 18px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}
.info-panel.is-open { opacity: 1; visibility: visible; transform: none; }
.info-panel::before {
  content: "";
  position: absolute;
  top: -7px; right: 26px;
  width: 13px; height: 13px;
  background: #fff;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  transform: rotate(45deg);
}
.info-panel h3 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin: 0 0 14px;
}
.info-row { display: flex; gap: 12px; padding: 9px 0; border-top: 1px solid var(--line); }
.info-row:first-of-type { border-top: 0; }
.info-row .ico {
  flex: none; width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--green-100);
  color: var(--green-700);
  display: grid; place-items: center;
}
.info-row .ico svg { width: 17px; height: 17px; }
.info-row .meta { display: flex; flex-direction: column; }
.info-row .meta span { font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.info-row .meta a, .info-row .meta strong {
  font-size: 0.95rem; font-weight: 600; color: var(--ink); line-height: 1.35;
}
.info-row .meta strong { font-weight: 500; }
.info-row .meta a:hover { color: var(--green-700); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid rgba(233, 206, 134, 0.28);
  border-radius: var(--r-sm);
  background: transparent;
  cursor: pointer;
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 18px; height: 2px;
  background: var(--gold-hi);
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav-toggle span::before { transform: translate(-50%, -7px); }
.nav-toggle span::after { transform: translate(-50%, 5px); }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: translate(-50%, 0) rotate(45deg); }
.nav-open .nav-toggle span::after { transform: translate(-50%, 0) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  isolation: isolate;
  padding-block: clamp(90px, 16vw, 190px);
  overflow: hidden;
}
/* Hero slideshow layer */
.hero-slides { position: absolute; inset: 0; z-index: -2; background: var(--green-900); }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s var(--ease);
  will-change: opacity;
}
.hero-slide.is-active {
  opacity: 1;
  animation: heroKenBurns 7s linear forwards;
}
@keyframes heroKenBurns {
  from { transform: scale(1.04); }
  to { transform: scale(1.12); }
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(23, 19, 12, 0.28);
  backdrop-filter: blur(6px);
  color: #fff;
  cursor: pointer;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.hero-arrow svg { width: 24px; height: 24px; }
.hero-arrow:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--green-900); }
.hero-arrow--prev { left: clamp(14px, 3vw, 38px); }
.hero-arrow--next { right: clamp(14px, 3vw, 38px); }
.hero-arrow--prev:hover { transform: translateY(-50%) translateX(-3px); }
.hero-arrow--next:hover { transform: translateY(-50%) translateX(3px); }
@media (max-width: 600px) { .hero-arrow { display: none; } }

.hero-dots {
  position: absolute;
  left: 0; right: 0; bottom: clamp(20px, 3vw, 34px);
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 12px;
  padding-inline: var(--gutter);
}
.hero-dots button {
  width: 11px; height: 11px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 1px 4px rgba(23, 19, 12, 0.35);
  cursor: pointer;
  transition: background 0.35s var(--ease), transform 0.35s var(--ease), width 0.35s var(--ease);
}
.hero-dots button:hover { background: rgba(255, 255, 255, 0.75); }
.hero-dots button.is-active {
  width: 30px;
  border-radius: var(--r-pill);
  background: var(--gold-500);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(23,19,12,0.42) 0%, rgba(23,19,12,0.72) 70%, rgba(23,19,12,0.92) 100%),
    radial-gradient(80% 60% at 15% 20%, rgba(23,19,12,0.30), transparent 70%);
}
.hero .container { position: relative; text-align: center; }
.hero h1 { color: #fff; font-size: clamp(2.4rem, 6.2vw, 4.6rem); max-width: 18ch; margin-inline: auto; }
.hero .kicker { color: var(--gold-400); }
.hero p { color: rgba(255,255,255,0.9); font-size: clamp(1.05rem, 1.6vw, 1.28rem); max-width: 56ch; margin-inline: auto; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 2rem; justify-content: center; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(24px, 5vw, 64px);
  margin-top: clamp(40px, 6vw, 72px);
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.hero-stats .stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--gold-400);
  line-height: 1;
}
.hero-stats .stat span { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.02em; color: rgba(255,255,255,0.8); }
.hero-stats .stat strong { font-family: var(--font-serif); }

/* Signature: Gold Standard hallmark seal */
.seal { position: relative; width: 96px; height: 96px; margin: 0 auto 1.5rem; }
.seal-ring { position: absolute; inset: 0; width: 100%; height: 100%; animation: sealspin 28s linear infinite; }
.seal-ring text {
  font-family: var(--font-hallmark);
  font-size: 8.4px;
  letter-spacing: 2.3px;
  text-transform: uppercase;
  fill: var(--gold-hi);
}
.seal-logo {
  position: absolute; inset: 0; margin: auto;
  width: 54px; height: 54px; object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}
.seal--ink .seal-ring text { fill: var(--gold-700); }
@keyframes sealspin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .seal-ring { animation: none; } }
.seal--brand { width: 132px; height: 132px; margin: 0 0 22px; }
.seal--brand .seal-logo { width: 74px; height: 74px; margin: auto; }
.seal--brand .seal-ring text { fill: var(--gold-400); }
.seal--head { width: 128px; height: 128px; margin: 0 0 -46px; position: relative; z-index: 2; transition: width 0.4s var(--ease), height 0.4s var(--ease), margin 0.4s var(--ease); }
.seal--head .seal-ring text { fill: var(--gold-400); }
.seal--head .seal-logo { width: 84px; height: 84px; margin: auto; filter: drop-shadow(0 2px 5px rgba(20, 34, 24, 0.30)); transition: width 0.4s var(--ease), height 0.4s var(--ease); }
.site-header.is-scrolled .seal--head { width: 98px; height: 98px; margin: 0 0 -22px; }
.site-header.is-scrolled .seal--head .seal-logo { width: 64px; height: 64px; }

/* page hero (interior) */
.page-hero {
  position: relative;
  isolation: isolate;
  color: #fff;
  padding-block: clamp(96px, 13vw, 168px) clamp(56px, 8vw, 92px);
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background-image: var(--hero-img, url("../img/gorsel.webp"));
  background-size: cover; background-position: center;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, rgba(23,19,12,0.86), rgba(42,34,24,0.66));
}
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 5vw, 3.6rem); }
.page-hero p { color: rgba(255,255,255,0.88); max-width: 56ch; margin: 0; }
.breadcrumb { font-size: 0.85rem; letter-spacing: 0.04em; color: rgba(255,255,255,0.7); margin-bottom: 1rem; }
.breadcrumb a:hover { color: var(--gold-400); }

/* ---------- Category grid ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
}
.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--gold-400); }
.card-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.card:hover .card-media img { transform: scale(1.06); }
.card-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(23,19,12,0.30));
}
.card-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.card-body h3 { font-size: 1.2rem; margin: 0; line-height: 1.25; }
.card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--gold-700);
}
.card-link svg { width: 1.05em; height: 1.05em; transition: transform 0.35s var(--ease); }
.card:hover .card-link svg { transform: translateX(4px); }
/* Ürün kartı + accordion */
.card--product .card-media { aspect-ratio: 1 / 1; }
.cards--single { grid-template-columns: minmax(0, 380px); justify-content: center; }
.prod-animals { font-size: 0.82rem; color: var(--muted); margin: 0; letter-spacing: 0.02em; }
.prod-acc { border-top: 1px solid var(--line); margin-top: 2px; }
.prod-acc summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 0 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green-800);
  transition: color 0.2s var(--ease);
}
.prod-acc summary::-webkit-details-marker { display: none; }
.prod-acc summary::marker { content: ""; }
.prod-acc summary:hover { color: var(--green-600); }
.prod-acc .chev { width: 1.1em; height: 1.1em; flex: none; transition: transform 0.3s var(--ease); }
.prod-acc[open] .chev { transform: rotate(180deg); }
.prod-acc .acc-body { padding: 2px 0 8px; animation: accIn 0.3s var(--ease); }
@keyframes accIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
.prod-acc .acc-body > p { font-size: 0.92rem; color: #34403a; margin: 0 0 0.6em; }
.prod-acc .acc-note { font-size: 0.84rem; color: var(--muted); font-style: italic; }
.prod-acc .spec-table { margin: 0 0 1em; font-size: 0.9rem; }
.prod-acc .spec-table caption { font-size: 0.82rem; }
.prod-acc .pd-block { margin-bottom: 0.9em; }
.prod-acc .pd-block:last-child { margin-bottom: 0; }

.card-media--contain { background: var(--cream-2); }
.card-media--contain::after { display: none; }
.card-media--contain img { object-fit: contain; padding: 18px; }
.card-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-700);
  background: var(--gold-100);
  border: 1px solid rgba(154, 111, 30, 0.18);
  border-radius: 6px;
  padding: 0.34em 0.7em;
  align-self: flex-start;
}
.prod-animals { font-family: var(--font-mono); }
.spec-table { font-family: var(--font-mono); }
.breadcrumb { font-family: var(--font-mono); letter-spacing: 0.02em; }
.card-index {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  background: rgba(23,19,12,0.55);
  backdrop-filter: blur(4px);
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: var(--r-pill);
}

/* ---------- Split / about teaser ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.split--reverse .split-media { order: 2; }
.split-media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 5 / 4; }
.split-media .tag {
  position: absolute;
  left: 20px; bottom: 20px;
  background: rgba(239,231,214,0.94);
  padding: 0.7em 1.1em;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
}
.split-media .tag strong { font-family: var(--font-serif); color: var(--green-900); display: block; font-size: 1.3rem; }
.split-media .tag span { font-size: 0.8rem; color: var(--muted); }
.split-body h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
.split-body p { color: var(--muted); font-size: 1.06rem; }

/* ---------- Prose (about/category copy) ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-top: 1.8em; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: #34403a; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin: 1.5em 0;
  padding: 0;
  list-style: none;
}
.feature-grid li {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold-500);
  border-radius: var(--r-md);
  padding: 16px 18px;
  font-size: 0.98rem;
  box-shadow: var(--shadow-sm);
}
.check-list { list-style: none; padding: 0; margin: 1.2em 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 2em; color: #34403a; }
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 0.28em;
  width: 1.25em; height: 1.25em;
  border-radius: 50%;
  background: var(--green-100);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a6b23' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 0.8em; background-repeat: no-repeat; background-position: center;
}

/* values */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.value-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-card .num { font-family: var(--font-serif); color: var(--gold-600); font-size: 1.4rem; }
.value-card h3 { font-size: 1.25rem; margin: 0.3em 0 0.4em; }
.value-card p { color: var(--muted); font-size: 0.97rem; margin: 0; }

/* ---------- Product detail (PRODEM) ---------- */
.product-detail {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(22px, 3vw, 40px);
  box-shadow: var(--shadow-md);
}
.product-detail .pd-media {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--green-100);
  aspect-ratio: 4 / 5;
}
.product-detail .pd-media img { width: 100%; height: 100%; object-fit: cover; }
.badge {
  display: inline-block;
  background: var(--gold-100);
  color: var(--gold-700);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4em 0.9em;
  border-radius: var(--r-pill);
  margin-bottom: 0.8em;
}
.product-detail h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 0; }
.product-detail .pd-sub { color: var(--muted); margin: 0.4em 0 1.2em; }
.spec-table { width: 100%; border-collapse: collapse; margin: 0.6em 0 1.4em; font-size: 0.96rem; }
.spec-table th { text-align: left; font-family: var(--font-sans); }
.spec-table caption {
  text-align: left;
  font-weight: 600;
  color: var(--green-800);
  margin-bottom: 0.5em;
}
.spec-table td, .spec-table th { padding: 0.55em 0; border-bottom: 1px dashed var(--line); }
.spec-table td:last-child { text-align: right; font-variant-numeric: tabular-nums; color: var(--green-700); font-weight: 600; }
.pd-block { margin-bottom: 1.2em; }
.pd-block h4 { font-family: var(--font-sans); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-700); margin: 0 0 0.4em; }
.pd-block p { margin: 0; color: #34403a; font-size: 0.98rem; }
.dose-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; list-style: none; }
.dose-list li {
  background: var(--green-100);
  color: var(--green-800);
  border-radius: var(--r-pill);
  padding: 0.5em 1em;
  font-size: 0.9rem;
  font-weight: 600;
}

/* ---------- CTA strip ---------- */
.cta-strip { text-align: center; }
.cta-strip h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); max-width: 20ch; margin-inline: auto; }
.cta-strip p { max-width: 50ch; margin-inline: auto; }
.cta-strip .hero-actions { justify-content: center; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
}
.contact-grid > div { display: flex; flex-direction: column; }
.contact-grid .map-wrap { flex: 1 1 auto; }
.contact-grid .map-wrap iframe { height: 100%; min-height: 320px; }
.info-list { display: grid; gap: 16px; margin-bottom: 28px; }
.info-card {
  display: flex;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}
.info-card .ico {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--green-100);
  color: var(--green-700);
  display: grid; place-items: center;
}
.info-card .ico svg { width: 20px; height: 20px; }
.info-card h3 { font-family: var(--font-sans); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-700); margin: 0 0 0.3em; }
.info-card p, .info-card a { margin: 0; color: #34403a; font-size: 1rem; }
.info-card a:hover { color: var(--green-700); }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--green-800); margin-bottom: 0.45em; }
.field input, .field textarea, .field select {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 0.8em 1em;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.field textarea { resize: vertical; min-height: 130px; }
#cf-message { min-height: 210px; }
.field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 2.6em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a6b23' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9em center;
  background-size: 1.05em;
}
.form-card button[type="submit"] { display: flex; width: fit-content; margin: 6px auto 0; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(201, 162, 75, 0.12);
}
.field select:focus {
  outline: none;
  border-color: var(--green-500);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(201, 162, 75, 0.12);
}

/* Görünür klavye-odak halkaları (erişilebilirlik) */
:focus-visible { outline: 2px solid var(--gold-600); outline-offset: 2px; border-radius: 4px; }
.hero :focus-visible, .page-hero :focus-visible, .section--green :focus-visible, .site-footer :focus-visible { outline-color: var(--gold-hi); }
.field input:focus-visible, .field textarea:focus-visible, .field select:focus-visible { outline: none; }

/* İletişim formu durum mesajı */
.form-status {
  margin: 6px 0 0;
  padding: 0.85em 1.1em;
  border-radius: var(--r-sm);
  font-size: 0.92rem;
  font-weight: 500;
  display: none;
}
.form-status.is-visible { display: block; animation: accIn 0.3s var(--ease); }
.form-status.is-success { background: var(--green-100); color: var(--green-700); border: 1px solid var(--green-300); }
.form-status.is-error { background: #fceceb; color: #a8352b; border: 1px solid #e6b3ad; }

.map-wrap {
  margin-top: 14px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  line-height: 0;
}
.map-wrap iframe { width: 100%; height: 320px; border: 0; filter: saturate(1.05); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-900);
  color: rgba(255,255,255,0.78);
  padding-block: clamp(48px, 6vw, 80px) 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .brand-text strong { color: #fff; }
.footer-brand img { height: 208px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 0.96rem; max-width: 38ch; }
.footer-col h4 { color: #fff; font-family: var(--font-sans); font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1em; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a, .footer-col p { color: rgba(255,255,255,0.78); font-size: 0.96rem; transition: color 0.25s; margin: 0; }
.footer-col a:hover { color: var(--gold-400); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between; align-items: center;
  padding-top: 24px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.6);
}

/* Tasarım kredisi (Zen Ajans) — en altta ortalı */
.agency-credit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  margin: 26px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0.85;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.agency-credit:hover { opacity: 1; transform: translateY(-2px); }
.agency-credit img { height: 46px; width: auto; }
.agency-credit span {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- Category cards (assay / species) ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: clamp(16px, 2vw, 24px); }
.cat-card { position: relative; border: 1px solid rgba(23, 19, 12, 0.14); background: #fff; overflow: hidden; display: block; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease); }
.cat-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(23, 19, 12, 0.4); border-color: var(--gold-500); }
.cat-card .cimg { aspect-ratio: 4 / 3; overflow: hidden; }
.cat-card .cimg img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.cat-card:hover .cimg img { transform: scale(1.06); }
.cat-card .cbody { padding: 15px 18px 18px; display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.cat-card .cno { display: block; font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--oxblood); margin-bottom: 5px; }
.cat-card h3 { font-family: var(--font-serif); font-weight: 600; font-size: 1.1rem; line-height: 1.14; margin: 0; color: var(--ink); }
.cat-card .carrow { font-family: var(--font-mono); font-size: 1rem; color: var(--gold-700); flex: none; margin-top: 2px; transition: transform 0.35s var(--ease); }
.cat-card:hover .carrow { transform: translateX(4px); }

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 0.08s; }
[data-reveal][data-delay="2"] { transition-delay: 0.16s; }
[data-reveal][data-delay="3"] { transition-delay: 0.24s; }
[data-reveal][data-delay="4"] { transition-delay: 0.32s; }
[data-reveal][data-delay="5"] { transition-delay: 0.40s; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .split, .product-detail, .contact-grid { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
  .product-detail .pd-media { max-width: 360px; margin-inline: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 58px;
    right: 12px;
    left: auto; bottom: auto;
    width: max-content;
    min-width: 172px;
    max-width: 72vw;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: rgba(20, 34, 24, 0.42);
    backdrop-filter: blur(6px) saturate(1.2);
    -webkit-backdrop-filter: blur(6px) saturate(1.2);
    border: 1px solid rgba(233, 206, 134, 0.28);
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 22px 50px -20px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top right;
    visibility: hidden;
    transition: opacity 0.26s var(--ease), transform 0.26s var(--ease), visibility 0.26s;
    z-index: 65;
  }
  .main-nav.is-open { opacity: 1; transform: none; visibility: visible; }
  .main-nav a { color: var(--cream); padding: 0.6em 0.9em; font-size: 0.82rem; letter-spacing: 0.01em; border-bottom: 0; border-radius: 8px; white-space: nowrap; text-shadow: 0 1px 3px rgba(0,0,0,0.55); }
  .main-nav a:hover, .main-nav a.is-current { color: var(--gold-hi); background: rgba(233,206,134,0.12); }
  .main-nav a::after { display: none; }
  .header-actions .lang-switch { order: -1; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }

  /* Mobil: header mührü ve hero slaytı */
  .site-header { padding-block: 8px; }
  .seal--head { width: 94px; height: 94px; margin: 0 0 -26px; }
  .seal--head .seal-logo { width: 62px; height: 62px; }
  .site-header.is-scrolled .seal--head { width: 78px; height: 78px; margin-bottom: -18px; }
  .site-header.is-scrolled .seal--head .seal-logo { width: 52px; height: 52px; }
  /* Hero slaytı ekrana sığdır */
  .hero { min-height: calc(100dvh - 60px); display: flex; flex-direction: column; justify-content: center; padding-block: 34px 60px; }
  .hero h1 { font-size: clamp(1.7rem, 7.2vw, 2.2rem); max-width: 100%; }
  .hero .kicker { font-size: 0.68rem; letter-spacing: 0.18em; }
  .hero p { font-size: 0.9rem; margin-bottom: 0; }
  .hero-actions { flex-flow: row wrap; justify-content: center; gap: 10px; margin-top: 1.4rem; }
  .hero-stats { gap: 26px; margin-top: 26px; padding-top: 18px; }
  .hero-stats .stat strong { font-size: 1.7rem; }
  .hero-dots { bottom: 12px; }

  /* Tüm butonları küçült */
  .btn { padding: 0.62em 1.15em; font-size: 0.85rem; gap: 0.45em; }
  .hero-actions .btn { width: auto; max-width: none; }

  /* Her şeyi ortala */
  .section-head { text-align: center; margin-inline: auto; }
  .kicker { justify-content: center; }
  .split-body { text-align: center; }
  .card--product .card-body,
  .card .card-body { align-items: center; text-align: center; }
  .card-tag, .card-link { align-self: center; }
  .prod-acc { width: 100%; }
  .prod-acc summary { justify-content: center; gap: 0.5em; }
  .value-card { text-align: center; }
  .cta-strip .hero-actions { flex-flow: row wrap; }

  /* Footer'ı da ortala */
  .footer-top { text-align: center; }
  .footer-brand { align-items: center; }
  .seal--brand { margin-left: auto; margin-right: auto; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { justify-content: center; text-align: center; }
  .info-card { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- WhatsApp yüzen buton ---------- */
.wa-fab {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  display: inline-flex; align-items: center; gap: 11px;
  height: 56px; padding: 0 22px 0 17px;
  border-radius: 999px;
  background: #25d366; color: #fff;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.55), 0 4px 14px rgba(23, 19, 12, 0.28);
  z-index: 60;
  transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease);
}
.wa-fab svg { width: 30px; height: 30px; flex: none; position: relative; z-index: 1; }
.wa-fab-label {
  position: relative; z-index: 1;
  font-family: var(--font-mono, inherit);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em; white-space: nowrap;
}
.wa-fab::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: #25d366; z-index: 0;
  animation: waPulse 2.8s ease-out infinite;
}
.wa-fab:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 16px 40px -8px rgba(37, 211, 102, 0.68), 0 6px 18px rgba(23, 19, 12, 0.32);
}
.wa-fab:focus-visible { outline: 3px solid var(--gold-hi); outline-offset: 3px; }
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.45; }
  70% { transform: scale(1.12); opacity: 0; }
  100% { transform: scale(1.12); opacity: 0; }
}
@media (max-width: 600px) {
  .wa-fab { padding: 0; width: 52px; height: 52px; justify-content: center; gap: 0; }
  .wa-fab svg { width: 28px; height: 28px; }
  .wa-fab-label { display: none; }
  .wa-fab::before { border-radius: 50%; animation: waPulseCircle 2.6s ease-out infinite; }
}
@keyframes waPulseCircle {
  0% { transform: scale(1); opacity: 0.5; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ---------- SSS / FAQ ---------- */
.faq { background: var(--cream); color: var(--ink); }
.faq-in { padding-block: clamp(64px, 8vw, 116px); }
.faq-head { max-width: 62ch; margin: 0 auto clamp(28px, 4vw, 46px); text-align: center; }
.faq-head .mk { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--oxblood); }
.faq-head h2 { font-family: var(--font-serif); font-weight: 700; font-size: clamp(2rem, 4.4vw, 3.2rem); line-height: 1.04; margin: 0.5rem 0 0.7rem; color: var(--ink); }
.faq-head p { color: rgba(23, 19, 12, 0.62); margin: 0; }
.faq-list { max-width: 820px; margin: 0 auto; border-top: 1px solid rgba(23, 19, 12, 0.14); }
.faq-item { border-bottom: 1px solid rgba(23, 19, 12, 0.14); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 22px;
  padding: 22px 6px;
  font-family: var(--font-serif); font-weight: 600; font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: var(--ink); transition: color 0.25s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover, .faq-item[open] summary { color: var(--oxblood); }
.faq-ico { position: relative; flex: none; width: 20px; height: 20px; }
.faq-ico::before, .faq-ico::after { content: ""; position: absolute; background: var(--gold-700); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.faq-ico::before { top: 9px; left: 0; width: 20px; height: 2px; }
.faq-ico::after { left: 9px; top: 0; width: 2px; height: 20px; }
.faq-item[open] .faq-ico::after { transform: rotate(90deg); opacity: 0; }
.faq-a { padding: 0 6px 24px; max-width: 70ch; }
.faq-a p { margin: 0; color: rgba(23, 19, 12, 0.72); line-height: 1.66; }
