:root {
  --color-bg: #f5f7f4;
  --color-surface: #ffffff;
  --color-primary: #1f3d2b; /* koyu yeşil */
  --color-primary-600: #2a5b3f;
  --color-accent: #a88537;  /* fıstık altın */
  --color-accent-700: #b48f40;
  --color-text: #1f2a24;
  --color-muted: #5f6b63;
  --container: 1200px;
  --radius: 14px;
  --shadow: 0 8px 24px rgba(0,0,0,.12);
  /* Hero görsel yüksekliği için ek ofset; kartlar sabit kalır */
  --hero-extra: 8svh;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--color-text);
  background: linear-gradient(180deg, var(--color-bg), #ffffff 60%, var(--color-surface));
  line-height: 1.6;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 8px 12px;
  background: var(--color-accent);
  color: #1a1a1a;
  border-radius: 8px;
}

/* Topbar */
.topbar { background: var(--color-accent); color: #1a1a1a; font-size: 14px; }
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 0;
}
.topbar a { color: #1a1a1a; text-decoration: none; }
.topbar a:hover { color: #000000; }
.topbar .sep { opacity: .5; margin: 0 8px; }
.lang a { text-decoration: none; color: #1a1a1a; margin-left: 8px; }
.lang .is-active { color: #000000; font-weight: 600; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-left: 0;
}
.brand__name { color: #7a642e; font-weight: 800; letter-spacing: .4px; font-family: 'Montserrat Alternates', 'Inter', system-ui, sans-serif; }
.brand__logo {
  display: block;
  width: 104px;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: contain;
}
@media (max-width: 720px) {
  .brand { margin-left: 0; }
  .brand__logo { width: 92px; }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav-toggle__bar {
  width: 24px; height: 2px; background: var(--color-accent); display: block;
}

.nav > ul { list-style: none; display: flex; gap: 24px; margin: 0; padding: 0; }
.nav a { color: #7a642e; text-decoration: none; font-weight: 600; }
.nav a:hover { color: #5d4821; }
.nav__cta { margin-left: 24px; }
/* Dropdown (Kurumsal) */
.nav .dropdown { position: relative; }
.dropdown__toggle { display: inline-flex; align-items: center; gap: 6px; }
.dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav .dropdown {
  position: relative;
  display: inline-flex;
}
.dropdown__menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 10px;
  padding: 0;
  min-width: 100%;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  overflow: hidden;
}
.dropdown__menu li { border-top: 1px solid rgba(0,0,0,.08); }
.dropdown__menu li:first-child { border-top: 0; }
.dropdown__menu a {
  display: block;
  padding: 10px 16px;
  color: #7a642e;
  white-space: nowrap;
}
.dropdown__menu a:hover { background: #faf7ef; color: #5d4821; }
.nav .dropdown:hover > .dropdown__menu,
.nav .dropdown.is-open > .dropdown__menu { display: block; }

/* Aktif sayfa vurgusu */
.nav a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 2px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  font-size: 15px;
  line-height: 1.1;
}
.btn--primary {
  background: var(--color-accent); /* biraz daha açık ton */
  color: #ffffff;
}
.btn--primary:hover { background: #5d4821; filter: none; }
.btn--primary:hover { filter: brightness(1.05); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--ghost:hover { border-color: #fff; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
}
.slider { position: absolute; inset: 0; z-index: 0; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 900ms ease; }
.slide.is-active { opacity: 1; }
.slide img, .slide iframe { width: 100%; height: 100%; object-fit: cover; filter: brightness(.45); }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.15) 40%, rgba(0,0,0,0) 70%); z-index: 0; }
.hero__inner {
  position: relative;
  z-index: 1;
  min-height: calc(64svh + var(--hero-extra));
  padding: 48px 44px 120px;
  display: grid;
  gap: 8px;
  max-width: 860px;
  justify-items: start;
  text-align: left;
}
.hero .container.hero__inner { margin-left: 40px; margin-right: auto; }
.hero h1 { font-size: clamp(24px, 3.2vw, 38px); line-height: 1.2; margin: 12px 0 0; color: #fff; }
.brand-mark { color: var(--color-accent); text-shadow: 0 2px 12px rgba(0,0,0,.3); font-family: 'Montserrat Alternates', 'Inter', system-ui, sans-serif; }
.hero p { margin: 0; color: #e9efe9; font-weight: 600; letter-spacing: .2px; }
.hero__subtitle {
  margin-top: 0;
  font-size: clamp(16px, 2.2vw, 21px);
  font-weight: 800;
  color: #ffffff;
  border-left: 4px solid var(--color-accent);
  padding-left: 10px;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}
.hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}

/* Quick links */
.quick-links { position: relative; z-index: 2; }
.quick-links__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px; /* slider altına, kalite üstüne yerleşsin */
  padding: 0;
}
.quick-links__grid--three {
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.quick-links__grid--three > :first-child { margin-left: 0; }
.quick-links__grid--three > :last-child { margin-right: 0; }
.ql-card {
  background: #ffffff; /* şeffaf değil, slider üstünde beyaz blok */
  border: 3px solid #7a642e; /* daha koyu ve kalın çerçeve */
  border-radius: var(--radius);
  padding: 18px;
  min-height: 190px;
  text-decoration: none;
  color: #1a1a1a;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ql-card:hover { transform: translateY(-2px); border-color: #5d4821; box-shadow: 0 12px 28px rgba(0,0,0,.12); }
.ql-card h3 { margin: 6px 0 2px; font-size: 18px; color: #000000; font-weight: 800; position: relative; z-index: 1; text-shadow: none; }
.ql-card p { margin: 0; color: #000000; font-size: 14px; font-weight: 600; position: relative; z-index: 1; text-shadow: none; }
/* Kart içindeki ikonları küçült */
.ql-card > img { width: 24px; height: 24px; }

/* Quick link: Ürünler kartı arka plan görseli (soluk) */
.ql-card--products { position: relative; overflow: hidden; }
.ql-card--products::before {
  content: "";
  position: absolute; inset: 0;
  background: url('assets/urunler/kirmizikabukluagacalti.jpg') center/cover no-repeat;
  opacity: .32; /* daha belirgin */
  filter: saturate(.75) brightness(.95);
  pointer-events: none;
  z-index: 0;
}
/* Quick link: Hakkımızda kartı arka plan görseli (soluk) */
.ql-card--about { position: relative; overflow: hidden; }
.ql-card--about::before {
  content: "";
  position: absolute; inset: 0;
  background: url('assets/urunler/tozantep.jpg') center/cover no-repeat;
  background-position: center 30%;
  opacity: .32;
  filter: saturate(.85) brightness(.96);
  pointer-events: none;
  z-index: 0;
}
/* Quick link: Biz Kimiz kartı arka plan görseli (soluk) */
.ql-card--team { position: relative; overflow: hidden; }
.ql-card--team::before {
  content: "";
  position: absolute; inset: 0;
  background: url('assets/bizkimiz/kurucumuz.jpg') center/cover no-repeat;
  opacity: .3; /* soluk görünüm */
  filter: saturate(.8) brightness(.95);
  pointer-events: none;
  z-index: 0;
}

/* Products */
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin: 38px 0 16px; }
.section-head h2 { margin: 0; font-size: clamp(22px, 3vw, 32px); }
.link { color: var(--color-accent); text-decoration: none; }
.link:hover { text-decoration: underline; }

.products__grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}
.product-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.product-card img { width: 100%; height: auto; display: block; }
/* Tüm ürün görsellerini aynı boyuta sabitle (Boz 2 oranı: 3:2) */
.product-card img { aspect-ratio: 3 / 2; object-fit: cover; }
.product-card img { transition: transform .22s ease; }
.product-card:hover img { transform: scale(1.04); }
.product-card h3 { margin: 12px 14px 4px; font-size: 18px; }
.product-card p { margin: 0 14px 16px; color: #4b5750; font-size: 14px; }

/* Capabilities */
.capabilities__grid { display: grid; gap: 14px; grid-template-columns: repeat(4, 1fr); }
.cap-card {
  background: linear-gradient(180deg, rgba(42,91,63,.08), rgba(31,61,43,.12));
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius);
  padding: 18px;
}
.cap-card h3 { margin: 4px 0 8px; font-size: 18px; }
.cap-card p { margin: 0; color: var(--color-muted); }

/* Quality */
.quality { margin-top: 80px; scroll-margin-top: 64px; background: transparent; }
.quality h2 { margin: 0; }
.quality__tag { display: inline-block; margin-top: 6px; padding: 6px 10px; border-radius: 999px; background: rgba(168,133,55,.18); color: #5d4821; font-weight: 800; letter-spacing: .2px; }
.quality__inner { display: grid; grid-template-columns: 1fr; gap: 16px; align-items: start; }
.quality .checklist { margin: 12px 0 18px; padding: 0; list-style: none; }
.quality .checklist { display: grid; grid-template-rows: repeat(2, auto); grid-auto-flow: column; column-gap: 24px; row-gap: 8px; align-content: start; }
.quality .checklist li { position: relative; padding: 8px 0 8px 28px; font-weight: 600; color: #1f2a24; }
.quality .checklist li::before { content: ""; position: absolute; left: 0; top: 14px; width: 14px; height: 14px; border-radius: 50%; background: var(--color-primary-600); }
.quality .checklist li::after { content: "✓"; position: absolute; left: 3px; top: 8px; color: #ffffff; font-weight: 900; font-size: 11px; }
/* önceki kartlı yapı kaldırıldı */

/* CTA band */
.cta-band { margin: 40px 0; }
.cta-band__inner {
  background: var(--color-accent);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius);
  padding: 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.cta-band__inner h2 { margin: 0 0 4px; font-size: clamp(18px, 2.4vw, 24px); color: #ffffff; }
.cta-band__inner p { margin: 0; color: #ffffff; }
.cta-band__actions { display: flex; gap: 10px; }

/* CTA band buttons → white background, black text */
.cta-band .btn {
  background: #ffffff !important;
  color: #111 !important;
  border: 1px solid #000 !important;
  padding: 8px 22px !important;
  font-size: 15px !important;
  line-height: 1.1 !important;
  border-radius: 999px !important;
}
.cta-band .btn:hover { background: #f5f5f5 !important; }

/* Hero (anasayfa) buton yüksekliklerini masaüstüyle aynı tut */
.hero__actions .btn {
  padding: 4px 20px !important;
  font-size: 13px !important;
  line-height: 1.05 !important;
  border-radius: 26px !important;
}

/* About */
.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; margin: 40px 0; }
.about__inner img { width: 100%; height: auto; max-height: 340px; object-fit: cover; display: block; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.08); }
/* Hakkımızda: görsel yanındaki metni sola yasla ve düzenli satır boşluğu ver */
.about__inner .prose { text-align: left; align-self: start; }
.about__inner .prose p { margin: 0 0 12px; text-indent: 0; }

/* Page hero (About) */
.page-hero { background: linear-gradient(180deg, rgba(201,163,78,.12), rgba(42,91,63,.08)); border-bottom: 1px solid rgba(0,0,0,.06); text-align: center; }
.page-hero .container { padding: 12px 20px; }
.page-hero h1 { margin: 0 0 10px; font-size: clamp(28px, 4.2vw, 36px); }
.page-hero h1::after { content: ""; display: block; width: 88px; height: 4px; margin: 8px auto 0; background: var(--color-accent); border-radius: 999px; }
.page-hero__lead { margin: 0 auto; color: var(--color-muted); max-width: 70ch; text-align: center; }

/* Prose */
.prose { padding: 24px 0; }
.prose h2 { margin-top: 18px; }
.prose p { margin: 0 0 12px; }

/* About page content surface */
.about-page {
  margin: 20px auto 28px;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  background:
    linear-gradient(180deg, rgba(168,133,55,.10), rgba(255,255,255,0) 40%),
    radial-gradient(600px 200px at 10% 0%, rgba(42,91,63,.06), transparent 60%),
    radial-gradient(500px 180px at 90% 20%, rgba(168,133,55,.08), transparent 60%),
    #ffffff;
}
/* Sarı çerçeveli içerik kutuları */
.boxed {
  border: 2px solid var(--color-accent);
  border-radius: 14px;
  padding: 16px 22px;
  background: linear-gradient(180deg, rgba(168,133,55,.06), #ffffff);
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}
/* Boxed içindeki paragraflara küçük girinti ve aralık ver */
.prose.boxed p { text-indent: 22px; margin: 8px 0 12px; }

/* Biz Kimiz: kurucu/ekip kutularını biraz sola yaklaştır */
.boxed--tight { padding-left: 8px; }
.boxed--tight p { text-indent: 0; }
.boxed--tight blockquote { margin-left: 0; }

/* Values grid */
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px; padding-left: 0; list-style: none; margin: 16px 0 22px; }
.values-grid li { position: relative; background: linear-gradient(180deg, #ffffff, #fbfbfb); border: 1px solid rgba(0,0,0,.08); border-left: 4px solid var(--color-accent); border-radius: 12px; padding: 14px 16px 14px 18px; box-shadow: 0 8px 20px rgba(0,0,0,.06); transition: transform .18s ease, box-shadow .18s ease; }
.values-grid li:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0,0,0,.1); }
.values-grid li::before { content: ""; position: absolute; left: -9px; top: 14px; width: 12px; height: 12px; background: var(--color-accent); border: 2px solid #fff; border-radius: 50%; box-shadow: 0 0 0 2px rgba(0,0,0,.06); }
.pill { display: inline-block; padding: 4px 10px; border-radius: 999px; background: rgba(201,163,78,.2); color: #5b4a21; font-weight: 800; margin-right: 8px; letter-spacing: .2px; }

/* Stats */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; padding: 8px 20px 32px; }
.stat-card { background: linear-gradient(180deg, #ffffff, #f7f7f7); border: 1px solid rgba(0,0,0,.08); border-top: 4px solid var(--color-accent); border-radius: 14px; padding: 18px; text-align: center; box-shadow: 0 10px 24px rgba(0,0,0,.08); transition: transform .18s ease, box-shadow .18s ease; }
.stat-card:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(0,0,0,.12); }
.stat { font-size: 24px; font-weight: 900; color: #1f3d2b; letter-spacing: .3px; }
.label { color: var(--color-muted); font-weight: 700; letter-spacing: .2px; }

@media (max-width: 960px) {
  .values-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
}

/* Footer */
.site-footer { margin-top: 24px; border-top: 1px solid rgba(0,0,0,.08); background: var(--color-primary); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
  padding: 24px 0;
  align-items: start;
}
.footer__brand p { margin: 8px 0 0; color: #eaf0ec; }
.footer__brand {
  display: grid;
  gap: 8px;
  justify-items: start;
}
.footer__brand img { width: 56px; height: 56px; }
.footer__nav { display: grid; gap: 8px; align-content: start; }
.footer__nav a { color: #eaf0ec; text-decoration: none; }
.footer__nav a:hover { color: #ffffff; }
.footer__contact { display: grid; gap: 6px; align-content: start; }
.footer__contact a { color: #eaf0ec; text-decoration: none; }
.footer__contact div,
.footer__contact address { color: #eaf0ec; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.18); padding: 10px 0; color: #eaf0ec; font-size: 14px; }

/* Responsive */
@media (max-width: 960px) {
  .quick-links__grid, .quick-links__grid--three { grid-template-columns: 1fr 1fr; }
  .products__grid { grid-template-columns: 1fr 1fr; }
  .capabilities__grid { grid-template-columns: 1fr 1fr; }
  .quality__inner { grid-template-columns: 1fr; }
  .about__inner { grid-template-columns: 1fr; }
  /* İletişim: önce bilgiler, altında harita */
  .contact__grid { grid-template-columns: 1fr; }
  .contact__card:first-child { order: 0; }
  .contact__map { order: 1; }
  .contact__map iframe { height: 320px; }
  .about__inner img { max-height: 220px; }
}
@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav { position: absolute; right: 20px; top: 100%; background: #ffffff; border: 1px solid rgba(0,0,0,.08); border-radius: 12px; padding: 12px; display: none; }
  .nav.is-open { display: block; }
  .nav > ul { flex-direction: column; gap: 12px; }
  .nav__cta { margin: 12px 0 0; display: inline-flex; }
  .quick-links__grid { margin-top: 12px; grid-template-columns: 1fr; }
  .nav .dropdown { display: none; }
  .quality .checklist { display: block; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__map iframe { height: 300px; }
  .site-footer .container { padding-left: 16px; padding-right: 16px; }
  .footer__grid { padding: 18px 0; }
  .footer__brand p,
  .footer__nav a,
  .footer__contact a,
  .footer__contact div,
  .footer__contact address { font-size: 14px; }
  .footer__bottom { font-size: 12px; padding: 8px 0; }
}
/* Tablet ve daha küçük ekranlarda kesin yığılma ve sıralama */
@media (max-width: 1024px) {
  .contact__grid { grid-template-columns: 1fr !important; }
  .contact__card, .contact__map { width: 100%; }
  .contact__card:first-child { grid-column: 1; grid-row: 1; }
  .contact__map { grid-column: 1; grid-row: 2; }
}
/* Mobil düzen iyileştirmeleri */
@media (max-width: 720px) {
  /* Dil seçimi gizle */
  .lang { display: none !important; }
  /* Topbar e‑posta adresi bölünmesin */
  .topbar__contacts a[href^="mailto"] { white-space: nowrap; }
  /* Biz Kimiz/Hakkımızda açıklamaları sola yasla */
  .about-page .prose { text-align: left; }
}

/* Contact section */
.contact { margin: 40px 0; }
.contact { background: linear-gradient(180deg, #ffffff, #f7f8f6); border-top: 1px solid rgba(0,0,0,.06); padding: 8px 0 20px; scroll-margin-top: 64px; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: stretch; }
.contact__card { background: #fff; border: 1px solid rgba(0,0,0,.08); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
.contact__card { border-left: 4px solid var(--color-accent); }
.contact__map.contact__card { padding: 0; border-left: none; }
.contact__map iframe { width: 100%; height: 340px; border: 0; border-radius: var(--radius); }
.contact__list { margin: 8px 0 0; padding-left: 18px; }
.contact__list li { margin: 6px 0; }
.contact__list a { color: #1f2a24; text-decoration: none; }
.contact__list a:hover { color: var(--color-primary-600); }
.contact__list strong { color: var(--color-primary-600); }
.contact__card h3 { margin: 0 0 8px; font-weight: 800; color: #1f3d2b; }
.contact__socials { display: flex; justify-content: center; gap: 18px; margin: 16px 0 18px; }
.contact__socials a { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 14px; transition: transform .18s ease, box-shadow .18s ease; box-shadow: 0 10px 24px rgba(0,0,0,.12); background: #fff; overflow: hidden; }
.contact__socials a:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,.18); }
.contact__socials img { width: 36px; height: 36px; display: block; }
.contact .section-head { justify-content: center; }
.contact .section-head h2 { position: relative; }
.contact .section-head h2::after { content: ""; position: absolute; left: 50%; transform: translateX(-50%); bottom: -6px; width: 72px; height: 3px; background: var(--color-accent); border-radius: 999px; }

/* Gallery */
.gallery { margin: 24px 0 40px; }
.gallery .section-head { justify-content: center; }
.gallery__grid { display: grid; gap: 14px; grid-template-columns: repeat(3, 1fr); }
.gallery__item { position: relative; border-radius: var(--radius); overflow: hidden; background: #fff; border: 1px solid rgba(0,0,0,.06); box-shadow: var(--shadow); }
.gallery__item img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; display: block; transition: transform .22s ease; cursor: zoom-in; }
.gallery__item:hover img { transform: scale(1.03); }
/* Hover büyüteç ikonu */
.gallery__item::after {
  content: "";
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(0,0,0,.55);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 24px 24px;
  opacity: 0; transition: opacity .18s ease; pointer-events: none;
}
.gallery__item:hover::after { opacity: 1; }
@media (max-width: 960px) { .gallery__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px) { .gallery__grid { grid-template-columns: 1fr; } }

/* Gallery captions: görselin ALTINDA, foto boyutu sabit kalır */
.gallery__caption { position: static; display: block; margin: 6px 2px 0; padding: 0; font-size: 13px; line-height: 1.4; font-weight: 700; color: var(--color-muted); background: none; text-shadow: none; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.8); z-index: 1300; display: grid; place-items: center; animation: lbIn .15s ease; }
.lightbox img { max-width: 94vw; max-height: 90vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,.5); cursor: zoom-out; }
@keyframes lbIn { from { opacity: 0; } to { opacity: 1; } }

/* Strip gallery (anasayfa, iletişim üstü) */
.strip-gallery { margin: 8px 0 8px; }
.strip-gallery .container { max-width: 1120px; }
.strip-gallery__viewport { position: relative; overflow: hidden; padding-right: 152px; }
.strip-gallery__track {
  display: flex;
  gap: 24px; /* daha geniş boşluk */
  will-change: transform;
  transition: transform .5s ease;
}
.strip-gallery__item {
  /* 4 sütun: 3 boşluk x 24px = 72px */
  flex: 0 0 calc((100% - 72px) / 4);
  aspect-ratio: 1 / 1; /* kare */
  height: auto;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 6px 16px rgba(0,0,0,.06);
}
.strip-gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.strip-gallery__next {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: #ffffff; color: transparent; border: 1px solid rgba(0,0,0,.15); cursor: pointer;
  display: grid; place-items: center; font-size: 0; line-height: 0; box-shadow: 0 6px 14px rgba(0,0,0,.15); z-index: 3;
}
.strip-gallery__next::before {
  content: "";
  width: 20px; height: 20px; display: block;
  background: no-repeat center / 20px 20px
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%237a642e' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
}
.strip-gallery__next:hover { background: #f8f8f8; }
@media (max-width: 720px) {
  /* Mobil: 1 büyük + peeking 1 (toplam 2 görünür), daha büyük kareler */
  .strip-gallery__viewport { padding-right: 56px; }
  .strip-gallery__track { gap: 8px; }
  .strip-gallery__item { flex-basis: 88%; height: auto; }
}

/* WhatsApp FAB (icon only + caption) */
.wa-wrap { position: fixed; right: 16px; bottom: 16px; z-index: 1000; display: grid; justify-items: center; gap: 6px; }
.wa-btn { width: 56px; height: 56px; display: grid; place-items: center; background: #25D366; border-radius: 50%; box-shadow: 0 6px 20px rgba(0,0,0,.25); text-decoration: none; }
.wa-btn:hover { filter: brightness(1.05); }
.wa-btn img { width: 28px; height: 28px; display: block; }
.wa-caption { background: #ffffff; color: #1f2a24; font-weight: 700; font-size: 12px; padding: 4px 8px; border: 1px solid rgba(0,0,0,.08); border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,.08); }

/* E‑Katalog FAB (sol alt) */
.catalog-wrap { position: fixed; left: 16px; bottom: 16px; z-index: 1000; display: grid; justify-items: center; gap: 6px; }
/* Yuvarlak buton kaldırıldı */
.catalog-btn { display: none; }
.catalog-caption { background: #ffffff; color: #1f2a24; font-weight: 700; font-size: 13.5px; padding: 6px 10px; border: 1px solid rgba(0,0,0,.08); border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,.08); display: inline-flex; align-items: center; gap: 6px; text-decoration: none; }
.catalog-caption img { width: 14px; height: 14px; display: block; }
/* Caption içine yuvarlak ikon */
/* Önceki yuvarlak ikon tasarımı kaldırıldı */
@media print { .catalog-wrap { display: none !important; } }

/* === Mobilde hero butonlarını incelt ve oval yap === */
@media (max-width: 720px) {
  body .hero__actions .btn {
    padding: 8px 28px !important;
    font-size: 15px !important;
    line-height: 1.3 !important;
    border-radius: 22px !important;
    min-height: 42px !important;
    height: auto !important;
  }

  .hero__actions {
    gap: 10px !important;
    flex-wrap: wrap !important;
  }
}


/* Page load preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  background: radial-gradient(600px 300px at 50% 20%, rgba(168,133,55,.18), transparent 60%),
              radial-gradient(800px 380px at 50% 80%, rgba(42,91,63,.18), transparent 60%),
              var(--color-primary);
  transition: opacity .6s ease;
}
.preloader.is-done { opacity: 0; pointer-events: none; }
.preloader__inner { display: grid; gap: 14px; justify-items: center; }
.preloader__logo-wrap { position: relative; width: 112px; height: 112px; }
/* Logo kutucuğu büyütüldü */
.preloader__logo { width: 112px; height: 112px; display: block; object-fit: contain; background: transparent; border-radius: 16px; padding: 0; box-shadow: 0 6px 20px rgba(0,0,0,.25); }
/* Halka, büyüyen logoya göre dışarıdan dönecek şekilde ayarlandı */
.preloader__ring { position: absolute; top: -24px; left: -24px; right: -24px; bottom: -24px; border-radius: 50%; border: 4px solid rgba(255,215,99,.35); border-top-color: var(--color-accent); animation: spin 1s linear infinite; }
.preloader__brand { color: #ffffff; font-weight: 800; letter-spacing: .3px; margin-top: 6px; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .preloader__ring { animation: none; } }

.about-float__img { float: left; width: 40%; max-width: 420px; max-height: 380px; height: auto; margin: 0 16px 12px 0; border-radius: var(--radius); border: 1px solid rgba(0,0,0,.06); object-fit: cover; object-position: top; }
@media (max-width: 960px) { .about-float__img { float: none; width: 100%; max-width: none; max-height: 220px; margin: 0 0 12px; } }


/* Biz Kimiz üst görsel alanı: foto daha dar, yanlar beyaz */
.bk-hero {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  height: 320px;
  width: 60%;
  max-width: 680px;
  margin: 0 auto 0;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
  overflow: hidden;
  position: relative;
}
/* bk-hero artık arka plan görseli kullanıyor */
@media (max-width: 960px) { .bk-hero { height: 200px; width: 100%; max-width: none; } }

/* Biz Kimiz görsel <img>: orta-alt odakla kırpmayı düzelt */
.bk-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50% !important;
  display: block;
}

/* === Mobilde hero butonlarını incelt ve yatay hale getir === */
@media only screen and (max-width: 720px) {
  .hero__actions {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
  }

  /* --- Buton stilleri --- */
  .hero__actions .btn,
  .hero__actions .btn--primary,
  .hero__actions .btn--secondary {
    width: auto !important;
    height: 52px !important;
    min-height: 52px !important;
    padding: 4px 22px !important;
    border-radius: 18px !important;
    font-size: 14px !important;
    line-height: 1.05 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* --- Renk düzeltmeleri --- */
  .hero__actions .btn--primary {
    background-color: #caa53b !important;
    color: #fff !important;
    border: none !important;
  }

  .hero__actions .btn--secondary {
    background-color: transparent !important;
    border: 2px solid #caa53b !important;
    color: #caa53b !important;
  }

  .hero__subtitle {
    position: relative;
    display: inline-block;
    border-left: none !important;
    padding-left: 14px !important;
    margin-bottom: 4px !important;
  }

  .hero__subtitle::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 4px;
    height: 20px;
    border-radius: 2px;
    background: var(--color-accent);
  }

  .hero__actions {
    margin-top: 2px !important;
  }

  .hero .container.hero__inner {
    margin: 0;
  padding: 68px 24px 200px;
    align-items: flex-start;
    justify-items: flex-start;
    text-align: left;
    gap: 2px;
  }

  .hero .container.hero__inner > * {
    margin-left: 0 !important;
  }

  .hero h1 {
    margin-left: 0 !important;
  }

  .hero h1 {
    margin-bottom: 0 !important;
  }

  .hero__subtitle {
    margin-top: 2px !important;
  }
}

/* === Masaüstünde hero butonlarını incelt === */
@media (min-width: 721px) {
  .hero__actions {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .hero__actions .btn,
  .hero__actions .btn--primary,
  .hero__actions .btn--secondary {
    width: auto;
    height: 50px;
    min-height: 50px;
    padding: 4px 22px;
    border-radius: 20px;
    font-size: 15px;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero__actions .btn--primary {
    background-color: #caa53b;
    color: #fff;
    border: none;
  }

  .hero__actions .btn--secondary {
    background-color: transparent;
    border: 2px solid #caa53b;
    color: #caa53b;
  }
}

