/* =========================================================
   Çizgi Atölye 3D — Stil Sistemi
   Konsept: 3D baskının katman çizgileri ("çizgi") motifi
   ========================================================= */

:root {
  /* Renkler — sıcak krem + terracotta + adaçayı (toprak tonları) */
  --paper:     #F4EBDB;   /* sıcak krem arka plan */
  --paper-2:   #EBDFCB;   /* hafif derin bölümler */
  --paper-3:   #E1D3BB;   /* en derin nötr kum */
  --card:      #FBF6EC;   /* kart yüzeyi (sıcak beyaz) */
  --ink:       #33271A;   /* sıcak espresso metin */
  --ink-soft:  #6E5F4E;   /* gövde metni */
  --ink-faint: #9B8A75;   /* açıklama / etiket */
  --pine:      #A85F37;   /* marka rengi — terracotta / kil */
  --pine-700:  #8A4E2C;   /* koyu terracotta */
  --pine-300:  #C68A60;   /* açık karamel vurgu */
  --clay:      #7E7E52;   /* ikincil vurgu — yumuşak adaçayı/zeytin */
  --gold:      #B08A4F;   /* ince altın detay */
  --line:      rgba(51,39,26,0.14);
  --line-soft: rgba(51,39,26,0.08);

  /* Gölgeler — yumuşak, sıcak tonlu */
  --shadow-sm: 0 2px 10px -6px rgba(60,42,22,0.30);
  --shadow:    0 22px 48px -30px rgba(60,42,22,0.42);
  --shadow-lg: 0 40px 80px -40px rgba(60,42,22,0.45);

  /* Köşeler */
  --r-sm:   12px;
  --r:      22px;
  --r-lg:   32px;
  --r-pill: 999px;

  /* Tipografi */
  --display: "Fraunces", Georgia, serif;
  --body:    "Manrope", -apple-system, "Segoe UI", system-ui, sans-serif;

  /* Düzen */
  --maxw: 1200px;
  --pad: clamp(1.1rem, 4vw, 2.5rem);
  --section-pad: clamp(3.5rem, 8vw, 7rem);
}

/* ---------- Sıfırlama ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  font-size: 1.0312rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }

::selection { background: var(--pine); color: var(--paper); }

:focus-visible {
  outline: 2.5px solid var(--pine);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Yardımcılar ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: var(--section-pad); }
.center { text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pine);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--pine);
  border-radius: 2px;
}

h1, h2, h3 { font-family: var(--display); font-weight: 540; line-height: 1.08; letter-spacing: -0.012em; }
.h-display { font-size: clamp(2.7rem, 7.2vw, 5.4rem); }
.h-section { font-size: clamp(1.9rem, 4.4vw, 3.1rem); }
.h-card    { font-size: 1.22rem; font-weight: 560; }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--ink-soft); max-width: 52ch; }

.section-head { max-width: 60ch; }
.section-head.center { margin-inline: auto; }
.section-head .h-section { margin-top: 0.9rem; }
.section-head p { margin-top: 0.9rem; color: var(--ink-soft); }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.92rem 1.6rem;
  border-radius: var(--r-pill);
  font-weight: 650;
  font-size: 0.97rem;
  letter-spacing: 0.005em;
  transition: transform .18s ease, background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn:active { transform: translateY(1px); }

.btn-pine { background: var(--pine); color: var(--paper); box-shadow: var(--shadow-sm); }
.btn-pine:hover { background: var(--pine-700); box-shadow: var(--shadow); transform: translateY(-2px); }

.btn-ghost { border: 1.5px solid var(--line); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); background: var(--card); transform: translateY(-2px); }

.btn-block { width: 100%; }
.btn-sm { padding: 0.7rem 1.15rem; font-size: 0.9rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-weight: 650; color: var(--pine);
}
.link-arrow svg { transition: transform .2s ease; width: 1.05em; height: 1.05em; }
.link-arrow:hover svg { transform: translateX(4px); }

/* =========================================================
   Kampanya bandı
   ========================================================= */
.promo {
  background: var(--pine);
  color: var(--paper);
  font-size: 0.84rem;
  font-weight: 550;
  overflow: hidden;
}
.promo-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.62rem var(--pad);
  text-align: center;
  flex-wrap: wrap;
}
.promo-track .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--pine-300); }
.promo code {
  font-family: var(--body);
  background: var(--clay);
  color: #fff;
  padding: 0.08rem 0.5rem;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* =========================================================
   Başlık / Navigasyon
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.85rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.65rem; }
.brand-mark { width: 38px; height: 38px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--display); font-size: 1.18rem; font-weight: 600; letter-spacing: -0.01em; }
.brand-tag { font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-faint); margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 0.35rem; }
.nav a {
  padding: 0.5rem 0.85rem;
  border-radius: var(--r-pill);
  font-size: 0.94rem;
  font-weight: 550;
  color: var(--ink-soft);
  transition: color .18s ease, background .18s ease;
}
.nav a:hover { color: var(--ink); background: var(--paper-2); }
.nav a.active { color: var(--pine); font-weight: 700; }

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

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  align-items: center; justify-content: center;
  border: 1.5px solid var(--line);
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle span::before { position: relative; top: -6px; }
.nav-toggle span::after { position: relative; top: 4px; }

/* Mobil menü */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0 0 0 auto;
  width: min(82vw, 340px);
  z-index: 60;
  background: var(--paper);
  box-shadow: var(--shadow-lg);
  padding: 5.5rem 1.6rem 2rem;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  flex-direction: column;
  gap: 0.3rem;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  padding: 0.95rem 0.6rem;
  font-size: 1.15rem;
  font-family: var(--display);
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu a.active { color: var(--pine); }
.mobile-menu .btn { margin-top: 1.4rem; }
.menu-close {
  position: absolute;
  top: 1.4rem; right: 1.4rem;
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
}
.scrim {
  display: none;
  position: fixed; inset: 0;
  background: rgba(31,33,29,0.4);
  z-index: 55;
  opacity: 0;
  transition: opacity .3s ease;
}
.scrim.show { display: block; opacity: 1; }

/* =========================================================
   Hero
   ========================================================= */
.hero { position: relative; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding-block: clamp(2.5rem, 6vw, 5.5rem);
}
.hero-copy .h-display { margin-top: 1.1rem; }
.hero-copy .lead { margin-top: 1.4rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 1.4rem 2rem;
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.hero-trust div { display: flex; flex-direction: column; }
.hero-trust strong { font-family: var(--display); font-size: 1.5rem; font-weight: 600; }
.hero-trust span { font-size: 0.84rem; color: var(--ink-faint); }

/* Hero görseli — katmanlı obje */
.hero-art {
  position: relative;
  aspect-ratio: 1 / 1.04;
  display: grid;
  place-items: center;
}
.hero-art .stage {
  position: absolute;
  inset: 6% 4%;
  background: radial-gradient(120% 100% at 50% 18%, var(--card), var(--paper-2) 78%);
  border-radius: 46% 46% 40% 40% / 52% 52% 48% 48%;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.6);
}
.contour { position: relative; width: 78%; z-index: 2; }
.hero-badge {
  position: absolute;
  z-index: 3;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 0.75rem 1rem;
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.82rem; font-weight: 600;
}
.hero-badge .ic { width: 34px; height: 34px; border-radius: 10px; background: var(--pine); color: var(--paper); display: grid; place-items: center; flex: none; }
.hero-badge .ic svg { width: 18px; height: 18px; }
.hero-badge.b1 { left: -4%; top: 22%; }
.hero-badge.b2 { right: -2%; bottom: 16%; }
.hero-badge small { display: block; color: var(--ink-faint); font-weight: 500; font-size: 0.72rem; }

/* =========================================================
   Katman çizgisi obje görseli (JS ile çizilir)
   ========================================================= */
.contour-svg { width: 100%; height: auto; overflow: visible; }

/* =========================================================
   Kategori kartları
   ========================================================= */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
  gap: 1.1rem;
  margin-top: 2.8rem;
}
.cat-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  padding: 1.6rem 1.5rem;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line); }
.cat-card .cat-art { position: absolute; top: -8%; right: -6%; width: 52%; opacity: 0.9; pointer-events: none; }
.cat-card h3 { position: relative; }
.cat-card p { position: relative; color: var(--ink-faint); font-size: 0.9rem; margin-top: 0.3rem; }
.cat-card .cat-count { position: relative; margin-top: 1rem; font-size: 0.8rem; font-weight: 700; color: var(--pine); letter-spacing: .04em; }

/* =========================================================
   Ürün kartları
   ========================================================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
  gap: 1.4rem;
  margin-top: 2.8rem;
}
.product-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line); }

.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: radial-gradient(120% 110% at 50% 20%, var(--paper) , var(--paper-2));
  display: grid; place-items: center;
  overflow: hidden;
}
.product-media .contour { width: 64%; }
/* Gerçek görsel eklenince: .product-media img { width:100%; height:100%; object-fit:cover; } */
.product-media img { width: 100%; height: 100%; object-fit: cover; }

.product-tag {
  position: absolute;
  top: 0.85rem; left: 0.85rem;
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: var(--r-pill);
}
.product-tag.tag-new { background: var(--pine); color: var(--paper); border-color: var(--pine); }
.product-tag.tag-custom { background: var(--clay); color: #fff; border-color: var(--clay); }

.product-body { padding: 1.25rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.product-body .h-card { margin-bottom: 0.3rem; }
.product-desc { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.55; flex: 1; }
.product-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
}
.price { display: flex; flex-direction: column; line-height: 1.1; }
.price .amount { font-family: var(--display); font-size: 1.45rem; font-weight: 600; }
.price .ship { font-size: 0.72rem; color: var(--ink-faint); margin-top: 2px; }
.product-card .btn { margin-top: 1.1rem; }

/* =========================================================
   Nasıl sipariş verilir — adımlar
   ========================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
  margin-top: 2.8rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 1.7rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
}
.step .num {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--pine);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  letter-spacing: 0.08em;
}
.step .num::before { counter-increment: step; content: "0" counter(step); font-size: 2.1rem; line-height: 1; opacity: 0.9; }
.step h3 { margin: 1rem 0 0.5rem; font-size: 1.12rem; }
.step p { color: var(--ink-soft); font-size: 0.93rem; }
.step .layer-rule { position: absolute; left: 1.5rem; right: 1.5rem; top: 0; height: 0; border-top: 1px dashed var(--line); }

/* =========================================================
   Kişiye özel çağrı bandı
   ========================================================= */
.custom-cta {
  position: relative;
  background: var(--pine);
  color: var(--paper);
  border-radius: var(--r-lg);
  padding: clamp(2.2rem, 5vw, 4rem);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 2.5rem;
}
.custom-cta .eyebrow { color: var(--pine-300); }
.custom-cta .eyebrow::before { background: var(--pine-300); }
.custom-cta h2 { color: var(--paper); margin: 1rem 0; }
.custom-cta p { color: color-mix(in srgb, var(--paper) 80%, transparent); max-width: 46ch; }
.custom-cta .btn-pine { background: var(--paper); color: var(--pine); }
.custom-cta .btn-pine:hover { background: #fff; }
.custom-cta .cta-actions { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: 0.8rem; }
.custom-cta .cta-art { display: grid; place-items: center; }
.custom-cta .layers-bg {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent 0 11px, rgba(255,255,255,.04) 11px 12px);
  pointer-events: none;
}

/* =========================================================
   SSS akordeon
   ========================================================= */
.faq { max-width: 760px; margin-inline: auto; margin-top: 2.4rem; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  text-align: left;
  padding: 1.35rem 0.2rem;
  font-size: 1.08rem;
  font-weight: 600;
  font-family: var(--display);
}
.faq-q .plus {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  position: relative;
  transition: background .2s ease, border-color .2s ease;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute; background: var(--ink);
  border-radius: 2px;
  top: 50%; left: 50%;
  transition: transform .25s ease, background .2s ease;
}
.faq-q .plus::before { width: 12px; height: 2px; transform: translate(-50%,-50%); }
.faq-q .plus::after  { width: 2px; height: 12px; transform: translate(-50%,-50%); }
.faq-item.open .faq-q .plus { background: var(--pine); border-color: var(--pine); }
.faq-item.open .faq-q .plus::before, .faq-item.open .faq-q .plus::after { background: var(--paper); }
.faq-item.open .faq-q .plus::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.faq-a > div { overflow: hidden; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a p { padding: 0 0.2rem 1.5rem; color: var(--ink-soft); }

/* =========================================================
   İletişim
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-top: 2.8rem;
}
.contact-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  padding: 1.8rem;
}
.contact-card .ic {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--paper-2); color: var(--pine);
  display: grid; place-items: center; margin-bottom: 1.1rem;
}
.contact-card .ic svg { width: 24px; height: 24px; }
.contact-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.contact-card p { color: var(--ink-soft); font-size: 0.95rem; }
.contact-card a.link-arrow { margin-top: 0.9rem; }

.form-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 4vw, 2.6rem);
}
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.85rem; font-weight: 650; margin-bottom: 0.45rem; }
.field input, .field textarea, .field select {
  width: 100%;
  font: inherit;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--paper);
  color: var(--ink);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--pine);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--pine) 18%, transparent);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-note { font-size: 0.82rem; color: var(--ink-faint); margin-top: 0.4rem; }

/* =========================================================
   İçerik bölümleri (Hakkımızda / Kişiye özel)
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.prose p { color: var(--ink-soft); margin-top: 1.1rem; max-width: 56ch; }
.prose .h-section + p { margin-top: 1.3rem; }

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
  margin-top: 2.6rem;
}
.value {
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
}
.value .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--paper-2); color: var(--pine); display: grid; place-items: center; margin-bottom: 1rem; }
.value .ic svg { width: 22px; height: 22px; }
.value h3 { font-size: 1.08rem; margin-bottom: 0.4rem; }
.value p { color: var(--ink-soft); font-size: 0.92rem; }

/* Sayfa başlığı (alt sayfalar) */
.page-head {
  padding-block: clamp(2.8rem, 6vw, 4.5rem) clamp(1.5rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}
.page-head .h-display { font-size: clamp(2.3rem, 5.5vw, 4rem); margin-top: 1rem; max-width: 18ch; }
.page-head p { margin-top: 1.1rem; color: var(--ink-soft); max-width: 56ch; }
.breadcrumb { font-size: 0.82rem; color: var(--ink-faint); }
.breadcrumb a:hover { color: var(--pine); }

/* Filtre çipleri (Ürünler) */
.filters { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2.4rem; }
.chip {
  padding: 0.55rem 1.1rem;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--line);
  font-size: 0.9rem; font-weight: 600;
  color: var(--ink-soft);
  transition: all .18s ease;
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.active { background: var(--pine); border-color: var(--pine); color: var(--paper); }

/* alternatif arka plan bölümü */
.bg-soft { background: var(--paper-2); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--ink);
  color: color-mix(in srgb, var(--paper) 72%, transparent);
  margin-top: var(--section-pad);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  padding-block: clamp(2.8rem, 6vw, 4.5rem);
}
.site-footer .brand-name, .site-footer h4 { color: var(--paper); }
.site-footer .brand-tag { color: color-mix(in srgb, var(--paper) 45%, transparent); }
.footer-about p { margin-top: 1.1rem; font-size: 0.92rem; max-width: 34ch; }
.footer-col h4 { font-family: var(--body); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 1.1rem; color: color-mix(in srgb, var(--paper) 60%, transparent); }
.footer-col a { display: block; padding: 0.35rem 0; font-size: 0.94rem; transition: color .15s ease; }
.footer-col a:hover { color: var(--paper); }
.footer-promo {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r);
  padding: 1.3rem;
}
.footer-promo strong { color: var(--paper); display: block; margin-bottom: 0.4rem; }
.footer-promo code { background: var(--clay); color: #fff; padding: 0.1rem 0.5rem; border-radius: 6px; font-weight: 700; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 0.8rem 1.5rem;
  align-items: center; justify-content: space-between;
  font-size: 0.84rem;
}
.footer-bottom .socials { display: flex; gap: 0.6rem; }
.footer-bottom .socials a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: grid; place-items: center;
  transition: background .2s ease, border-color .2s ease;
}
.footer-bottom .socials a:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); }
.footer-bottom .socials svg { width: 18px; height: 18px; }

/* =========================================================
   Hareket / giriş animasyonları
   ========================================================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 460px; margin-inline: auto; order: -1; aspect-ratio: 1/0.92; }
  .hero-badge.b1 { left: 2%; }
  .hero-badge.b2 { right: 2%; }
  .custom-cta { grid-template-columns: 1fr; }
  .custom-cta .cta-art { display: none; }
  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-trust { gap: 1rem 1.6rem; }
}

@media (max-width: 420px) {
  .hero-badge { display: none; }
}

/* =========================================================
   FOTOĞRAF BİLEŞENLERİ (gerçek ürün görselleri)
   ========================================================= */

/* --- Tam genişlikte fotoğraflı hero --- */
.hero-photo {
  position: relative;
  min-height: clamp(540px, 80vh, 768px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-photo .hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 72% center;
  z-index: 0;
}
.hero-photo .hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(244,235,219,0.94) 0%, rgba(244,235,219,0.74) 30%, rgba(244,235,219,0.18) 55%, rgba(244,235,219,0) 72%),
    linear-gradient(0deg, rgba(244,235,219,0.5), rgba(244,235,219,0) 40%);
}
.hero-photo .wrap { position: relative; z-index: 2; width: 100%; }
.hero-photo .hero-inner { max-width: 600px; padding-block: clamp(2rem, 5vw, 3rem); }
.hero-photo .hero-inner .lead { margin-top: 1.3rem; max-width: 30em; }
.hero-photo .hero-actions { margin-top: 2.1rem; }
.hero-photo .hero-trust { border-top-color: rgba(51,39,26,0.18); }

/* --- Fotoğraflı kategori kartları (başlık + buton bindirme) --- */
.cat-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.15rem;
  margin-top: 2.8rem;
}
.cat-photo {
  position: relative;
  aspect-ratio: 4 / 3.05;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; align-items: flex-end;
  isolation: isolate;
}
.cat-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
  z-index: 0;
}
.cat-photo:hover img { transform: scale(1.06); }
.cat-photo::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(35,23,11,0) 18%, rgba(35,23,11,0.30) 46%, rgba(35,23,11,0.62) 72%, rgba(35,23,11,0.86) 100%);
}
.cat-photo .cat-inner { position: relative; z-index: 2; padding: 1.4rem 1.55rem; color: #fff; width: 100%; }
.cat-photo .cat-inner h3 { color: #fff; font-family: var(--display); font-size: 1.42rem; font-weight: 600; line-height: 1.1; }
.cat-photo .cat-inner p { color: rgba(255,255,255,0.82); font-size: 0.86rem; margin-top: 0.35rem; }
.cat-photo .cat-cta {
  display: inline-flex; align-items: center; gap: 0.45rem;
  margin-top: 0.85rem; font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.02em; color: #fff;
}
.cat-photo .cat-cta svg { width: 15px; height: 15px; transition: transform .25s ease; }
.cat-photo:hover .cat-cta svg { transform: translateX(4px); }

/* --- Koleksiyon / öne çıkan kartlar (fotoğraf + alt metin, fiyatsız) --- */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.4rem;
  margin-top: 2.8rem;
}
.collection-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.collection-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line); }
.collection-media { position: relative; aspect-ratio: 4 / 3.2; overflow: hidden; }
.collection-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.collection-card:hover .collection-media img { transform: scale(1.05); }
.collection-body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.collection-body .h-card { margin-bottom: 0.3rem; }
.collection-body p { color: var(--ink-soft); font-size: 0.9rem; line-height: 1.55; flex: 1; }
.collection-card .btn { margin-top: 1.15rem; }

/* --- Hakkımızda / tanıtım görseli (split) --- */
.media-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}
.media-split .media-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3.4;
}
.media-split .media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-split.reverse .media-frame { order: 2; }

@media (max-width: 820px) {
  .media-split { grid-template-columns: 1fr; gap: 2rem; }
  .media-split.reverse .media-frame { order: -1; }
}

@media (max-width: 760px) {
  .hero-photo { min-height: 624px; align-items: flex-start; }
  .hero-photo .hero-bg { object-position: 60% center; }
  .hero-photo .hero-scrim {
    background:
      linear-gradient(180deg, rgba(244,235,219,0.95) 0%, rgba(244,235,219,0.88) 42%, rgba(244,235,219,0.62) 66%, rgba(244,235,219,0.12) 90%, rgba(244,235,219,0) 100%);
  }
  .hero-photo .hero-inner { padding-top: 2.2rem; }
}
