:root {
  --bg: #1A1A1A;
  --surface: #262626;
  --surface-2: #2F2F2F;
  --ink: #E8E0D6;
  --ink-soft: rgba(232,224,214,0.55);
  --accent: #D4A853;
  --accent-2: #7B9E6B;
  --line: rgba(232,224,214,0.12);
  --line-strong: rgba(232,224,214,0.22);
  --header-h: 72px;
  interpolate-size: allow-keywords;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
html, body { overflow-x: hidden; max-width: 100vw; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: none; transition: color 240ms cubic-bezier(.4,0,.2,1); }
a:hover { color: var(--accent); }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul, ol { list-style: none; }
input, select, textarea, button { font: inherit; color: inherit; }

/* ── Skip link ── */
.skip-link {
  position: fixed; top: -100%; left: 16px; z-index: 10000;
  padding: 8px 18px; background: var(--accent); color: var(--bg);
  border-radius: 0 0 6px 6px; font-weight: 600; font-size: 14px;
}
.skip-link:focus { top: 0; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 7vw, 4.5rem); letter-spacing: -0.012em; }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: clamp(1rem, 1.5vw, 1.2rem); }

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(11px, 1.2vw, 13px);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.mono { font-family: 'JetBrains Mono', 'Consolas', monospace; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

/* ── Section rhythm ── */
section { padding: clamp(48px, 8vw, 96px) 0; }
.section-heading {
  margin-bottom: clamp(32px, 5vw, 56px);
  position: relative;
}
.section-heading::after {
  content: '';
  display: block;
  width: 64px;
  height: 2px;
  margin-top: 14px;
  background: repeating-linear-gradient(90deg, var(--accent) 0, var(--accent) 5px, transparent 5px, transparent 10px);
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(26, 26, 26, 0.92);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  padding: 0;
}
.site-header.scrolled {
  background: rgba(26,26,26,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 12px;
}
.logo {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 2.2vw, 22px);
  letter-spacing: 0.04em;
  color: var(--ink) !important;
  text-transform: uppercase;
  position: relative;
}
.logo:hover { color: var(--accent) !important; }
.logo::after {
  content: '';
  display: block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  bottom: -2px; right: -10px;
}

/* ── Nav desktop ── */
.nav-desktop {
  display: none;
  align-items: center;
  gap: clamp(16px, 2.5vw, 32px);
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none !important; }
}
.nav-desktop a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}
.nav-desktop a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width 280ms cubic-bezier(.4,0,.2,1);
}
.nav-desktop a:not(.nav-cta):hover::after,
.nav-desktop a:not(.nav-cta).is-active::after { width: 100%; }
.nav-desktop a:hover,
.nav-desktop a.is-active { color: var(--ink); }
.nav-cta {
  padding: 8px 20px !important;
  border: 1px solid var(--accent);
  border-radius: 4px;
  color: var(--accent) !important;
  font-weight: 600 !important;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms cubic-bezier(.4,0,.2,1), border-color 240ms cubic-bezier(.4,0,.2,1) !important;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--accent) !important;
  color: var(--bg) !important;
  border-color: var(--accent) !important;
}

/* ── Nav toggle (hamburger / X) ── */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px; height: 48px;
  min-width: 48px; min-height: 48px;
  z-index: 1100;
  position: relative;
  gap: 5px;
  border-radius: 6px;
  border: 1px solid var(--line-strong);
  background: rgba(232,224,214,0.04);
  transition: background 200ms, border-color 200ms;
  flex-shrink: 0;
}
.nav-toggle:hover {
  background: rgba(232,224,214,0.1);
  border-color: var(--accent);
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 200ms;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ── Drawer ── */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1040;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}
.drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  z-index: 1050;
  background: var(--surface);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 24px) 28px 28px;
  overflow-y: auto;
}
.drawer.is-open {
  transform: translateX(0);
}
.drawer nav { display: flex; flex-direction: column; gap: 0; }
.drawer nav a {
  display: block;
  padding: 14px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  transition: color 240ms, padding-left 240ms;
}
.drawer nav a:hover,
.drawer nav a.is-active {
  color: var(--accent);
  padding-left: 8px;
}

/* ── Main offset ── */
main { padding-top: var(--header-h); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: clamp(440px, 60vh, 680px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: clamp(60px, 12vw, 120px) 0 clamp(48px, 8vw, 80px);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  animation: grain-shift 12s linear infinite;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(180deg, transparent 0%, rgba(212,168,83,0.03) 100%);
  pointer-events: none;
}
@keyframes grain-shift {
  0% { background-position: 0 0; }
  100% { background-position: 200px 200px; }
}
.hero__inner { position: relative; z-index: 1; max-width: 780px; }
.hero__title {
  font-size: clamp(3rem, 8.5vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 16px 0 24px;
}
.hero__line { display: block; }
.hero__line:last-child { color: var(--accent); }
.hero__sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--ink-soft);
  max-width: 520px;
  line-height: 1.65;
}
.hero__actions { margin-top: 36px; display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Trust strip ── */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.trust-badge svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--bg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  border-radius: 4px;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms, transform 180ms;
  border: none;
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: #c49640;
  color: var(--bg);
  transform: translateY(-2px);
}
.btn-primary:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms, border-color 240ms, transform 180ms;
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.btn-ghost:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ── Product grid (#vitrin) ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
}
@media (max-width: 768px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
}

.product-card {
  background: var(--surface);
  clip-path: polygon(
    14px 0, calc(100% - 14px) 0,
    100% 14px, 100% calc(100% - 14px),
    calc(100% - 14px) 100%, 14px 100%,
    0 calc(100% - 14px), 0 14px
  );
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), filter 360ms cubic-bezier(.2,.7,.2,1);
  overflow: hidden;
}
.product-card:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 0 3px rgba(212,168,83,0.5)) drop-shadow(0 0 12px rgba(212,168,83,0.15));
}
.product-card__img {
  aspect-ratio: 4/5;
  background: var(--surface-2);
  overflow: hidden;
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.product-card:hover .product-card__img img {
  transform: scale(1.04);
}
.product-card__body {
  padding: clamp(14px, 2vw, 22px) clamp(16px, 2.5vw, 24px) clamp(18px, 2.5vw, 26px);
}
.product-card__name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(15px, 1.3vw, 17px);
  margin-bottom: 6px;
}
.product-card__price {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--accent);
  margin-bottom: 14px;
}
.product-card__cta {
  display: inline-block;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  transition: background 240ms, color 240ms, border-color 240ms;
}
.product-card__cta:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

/* ── Material section (#malzeme) ── */
.malzeme-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 768px) {
  .malzeme-grid { grid-template-columns: 1fr; }
}
.malzeme-text p { color: var(--ink-soft); margin-bottom: 16px; }
.malzeme-text p strong { color: var(--ink); }
.swatch-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.swatch {
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--line);
  transition: border-color 280ms, transform 280ms cubic-bezier(.2,.7,.2,1);
}
.swatch:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.swatch img { width: 100%; height: 100%; object-fit: cover; }
.swatch__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 8px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(transparent, rgba(26,26,26,0.85));
  color: var(--ink);
}

/* ── Process timeline (#surecler) ── */
.timeline {
  position: relative;
  padding-left: 36px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 11px; top: 0; bottom: 0;
  width: 1px;
  background: repeating-linear-gradient(180deg, var(--accent) 0, var(--accent) 4px, transparent 4px, transparent 8px);
}
.timeline-item {
  position: relative;
  padding-bottom: clamp(32px, 4vw, 48px);
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -36px; top: 6px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
  z-index: 1;
}
.timeline-item.is-in::before {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(212,168,83,0.2);
}
.timeline-step {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.timeline-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(16px, 1.5vw, 20px);
  margin-bottom: 8px;
}
.timeline-desc { color: var(--ink-soft); font-size: 15px; max-width: 520px; }

/* ── Custom order (#ozeluretim) ── */
.ozel-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 768px) {
  .ozel-split { grid-template-columns: 1fr; }
}
.ozel-info h3 { margin-bottom: 16px; }
.ozel-info p { color: var(--ink-soft); margin-bottom: 16px; }
.capacity-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(123,158,107,0.12);
  border: 1px solid rgba(123,158,107,0.3);
  border-radius: 6px;
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 600;
  margin-top: 8px;
}
.capacity-badge .dot {
  width: 8px; height: 8px;
  background: var(--accent-2);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
@media (prefers-reduced-motion: reduce) {
  .capacity-badge .dot { animation: none; }
}

/* ── Pricing (#fiyat) ── */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 3vw, 36px);
  transition: border-color 320ms cubic-bezier(.2,.7,.2,1), transform 320ms cubic-bezier(.2,.7,.2,1), box-shadow 320ms;
  position: relative;
}
.price-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px -8px rgba(212,168,83,0.12);
}
.price-card--featured {
  border-color: var(--accent);
  background: linear-gradient(170deg, var(--surface) 0%, rgba(212,168,83,0.06) 100%);
}
.price-card--featured::before {
  content: 'Popüler';
  position: absolute;
  top: -1px; right: 24px;
  padding: 4px 14px;
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0 0 6px 6px;
}
.price-card__name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 4px;
}
.price-card__sub {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.price-card__amount {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.price-card__note {
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 20px;
  font-style: italic;
}
.price-card__list { margin-bottom: 24px; }
.price-card__list li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--ink-soft);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.price-card__list li::before {
  content: '';
  width: 5px; height: 5px;
  min-width: 5px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 8px;
}
.price-card__excluded {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  margin-bottom: 20px;
}
.price-card__excluded li {
  font-size: 13px;
  color: var(--ink-soft);
  opacity: 0.7;
  padding: 4px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.price-card__excluded li::before {
  content: '—';
  color: var(--ink-soft);
  font-weight: 600;
  min-width: 12px;
}

/* ── Stats section ── */
.stats-band {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 3vw, 32px);
  text-align: center;
  padding: clamp(32px, 5vw, 56px) 0;
}
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
.stat-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(20px, 3vw, 28px);
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 3vw, 32px);
  transition: border-color 280ms, transform 280ms cubic-bezier(.2,.7,.2,1);
}
.testimonial-card:hover {
  border-color: rgba(212,168,83,0.3);
  transform: translateY(-3px);
}
.testimonial-card__text {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  padding-left: 20px;
}
.testimonial-card__text::before {
  content: '\201C';
  position: absolute;
  left: 0; top: -4px;
  font-size: 32px;
  color: var(--accent);
  font-style: normal;
  line-height: 1;
}
.testimonial-card__author {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}
.testimonial-card__meta {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 2px;
}

/* ── FAQ ── */
.faq-list { max-width: 760px; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--ink);
  list-style: none;
  transition: color 240ms;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 320ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover { color: var(--accent); }
.faq-item > .faq-body {
  height: 0;
  padding: 0 0;
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] > .faq-body {
  height: auto;
  padding-block-end: 22px;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-body { transition: none; }
}
.faq-body p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ── Form ── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
}
.form-grid .field--full { grid-column: 1 / -1; }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.field input:not([type="checkbox"]),
.field select,
.field textarea {
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  color: var(--ink);
  font-size: 15px;
  transition: border-color 240ms, box-shadow 240ms;
}
.field input:not([type="checkbox"]):focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212,168,83,0.12);
}
.field textarea { resize: vertical; min-height: 100px; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23E8E0D6' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
}
.field--check {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.field--check label {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink-soft);
  cursor: pointer;
}
.budget-range {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.budget-range label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  transition: border-color 200ms, background 200ms;
}
.budget-range input[type="radio"] { display: none; }
.budget-range input[type="radio"]:checked + span,
.budget-range label:has(input:checked) {
  border-color: var(--accent);
  background: rgba(212,168,83,0.08);
}

/* ── Contact cards (iletisim page) ── */
.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(14px, 2vw, 20px);
}
.channel-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: clamp(20px, 2.5vw, 28px);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), border-color 280ms, box-shadow 280ms;
}
.channel-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212,168,83,0.3);
  box-shadow: 0 8px 24px -6px rgba(0,0,0,0.2);
}
.channel-card__icon {
  width: 48px; height: 48px;
  background: rgba(212,168,83,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 240ms;
}
.channel-card:hover .channel-card__icon {
  background: rgba(212,168,83,0.15);
}
.channel-card__icon svg {
  width: 22px; height: 22px;
  color: var(--accent);
}
.channel-card__title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 6px;
}
.channel-card__value {
  font-size: 14px;
  color: var(--accent);
  word-break: break-all;
  overflow-wrap: anywhere;
}
.channel-card__value a { color: var(--accent); }
.channel-card__value a:hover { text-decoration: underline; }
.channel-card__hint {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* ── Hours table ── */
.hours-grid {
  display: grid;
  gap: 0;
}
.hours-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 8px 0;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  border-bottom: 1px solid var(--line);
}
.hours-row:last-child { border-bottom: none; }
.hours-row--today { color: var(--accent); font-weight: 600; }
.hours-day { color: var(--ink-soft); }
.hours-time { text-align: right; }

/* ── News / updates ── */
.news-strip {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 28px);
}
.news-item {
  display: flex;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.news-item:last-child { border-bottom: none; }
.news-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--accent);
  white-space: nowrap;
  min-width: 90px;
}
.news-text { color: var(--ink-soft); }

/* ── Footer ── */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: clamp(40px, 6vw, 64px) 0 clamp(20px, 3vw, 32px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: clamp(32px, 4vw, 48px);
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand { max-width: 280px; }
.footer-brand .logo { font-size: 18px; margin-bottom: 12px; display: inline-block; }
.footer-brand p { font-size: 13px; color: var(--ink-soft); line-height: 1.65; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--ink-soft);
  padding: 4px 0;
  transition: color 240ms, padding-left 240ms;
}
.footer-col a:hover {
  color: var(--accent);
  padding-left: 4px;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink-soft);
}
.footer-bottom a { color: var(--ink-soft); font-size: 12px; }
.footer-bottom a:hover { color: var(--accent); }
.footer-legal { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Cookie banner ── */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 20px 24px;
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
}
@media (min-width: 768px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner__title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 8px;
}
.cookie-banner__text {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}
.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-banner__actions button {
  flex: 1;
  min-width: 100px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 200ms, color 200ms;
}
.cookie-btn-accept {
  background: var(--accent);
  color: var(--bg);
  border: none;
}
.cookie-btn-accept:hover { background: #c49640; color: var(--bg); }
.cookie-btn-reject {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(232,224,214,0.35);
  font-weight: 600;
}
.cookie-btn-reject:hover { background: var(--surface-2); color: var(--ink); border-color: var(--ink); }
.cookie-btn-settings {
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid rgba(232,224,214,0.2);
  font-weight: 600;
}
.cookie-btn-settings:hover { background: var(--surface-2); color: var(--ink); border-color: rgba(232,224,214,0.35); }

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(.16,.9,.3,1),
              transform 700ms cubic-bezier(.16,.9,.3,1);
  transition-delay: calc(var(--i, 0) * 120ms);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* Hero + page-hero reveals animate immediately via CSS (no JS wait) */
.hero .reveal,
.page-hero .reveal {
  animation: hero-entrance 700ms cubic-bezier(.16,.9,.3,1) forwards;
  animation-delay: calc(var(--i, 0) * 120ms + 100ms);
  transition: none;
}
@media (prefers-reduced-motion: reduce) {
  .hero .reveal,
  .page-hero .reveal {
    animation: none;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── Niche animations: Leather craft ── */

/* Stitch-line decoration */
@keyframes stitch-slide {
  from { background-position: 0 0; }
  to { background-position: -20px 0; }
}
.stitch-line {
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--accent) 0, var(--accent) 4px, transparent 4px, transparent 8px);
  animation: stitch-slide 3s linear infinite;
}
@media (prefers-reduced-motion: reduce) { .stitch-line { animation: none; } }

/* Leather emboss pulse on logo */
@keyframes emboss-breath {
  0%, 100% { text-shadow: 1px 1px 2px rgba(212,168,83,0.2), -1px -1px 1px rgba(0,0,0,0.3); }
  50% { text-shadow: 2px 2px 4px rgba(212,168,83,0.35), -1px -1px 2px rgba(0,0,0,0.4); }
}
.logo { animation: emboss-breath 8s ease infinite; }
@media (prefers-reduced-motion: reduce) { .logo { animation: none; } }

/* Cut-reveal diagonal on images */
@keyframes cut-reveal {
  from { clip-path: polygon(0 0, 0 0, 0 100%, 0 100%); }
  to { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
}
.cut-reveal.is-in img {
  animation: cut-reveal 900ms cubic-bezier(.2,.7,.2,1) forwards;
}
@media (prefers-reduced-motion: reduce) {
  .cut-reveal.is-in img { animation: none; clip-path: none; }
}

/* Gold shimmer on accent elements */
@keyframes gold-shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.shimmer-text {
  background: linear-gradient(90deg, var(--accent) 0%, #f0d890 25%, var(--accent) 50%, #f0d890 75%, var(--accent) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gold-shimmer 10s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .shimmer-text {
    background: none;
    -webkit-text-fill-color: var(--accent);
    color: var(--accent);
    animation: none;
  }
}

/* Counter-up animation target */
.counter-up { font-variant-numeric: tabular-nums; }

/* ── Table scroll ── */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
table { border-collapse: collapse; width: 100%; }
th, td {
  padding: 10px 14px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
}
th {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--surface-2);
}

/* ── About page ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 28px);
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 280ms, transform 280ms cubic-bezier(.2,.7,.2,1);
}
.team-card:hover {
  border-color: rgba(212,168,83,0.3);
  transform: translateY(-3px);
}
.team-card__photo {
  aspect-ratio: 4/5;
  background: var(--surface-2);
  overflow: hidden;
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card__body { padding: clamp(18px, 2.5vw, 24px); }
.team-card__name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 2px;
}
.team-card__role {
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 500;
}
.team-card__bio {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ── Page hero (subpages) ── */
.page-hero {
  min-height: 240px;
  display: flex;
  align-items: flex-end;
  padding: clamp(48px, 8vw, 80px) 0 clamp(32px, 4vw, 48px);
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--line);
}

/* ── Thank you page ── */
.thankyou-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(48px, 8vw, 96px) 0;
}
.thankyou-wrap h1 { margin-bottom: 16px; }
.thankyou-wrap p { color: var(--ink-soft); margin-bottom: 32px; max-width: 420px; margin-left: auto; margin-right: auto; }

/* ── 404 page ── */
.page-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 0;
}
.page-404 .err-code {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(80px, 15vw, 160px);
  font-weight: 700;
  color: var(--surface-2);
  line-height: 1;
  margin-bottom: 12px;
}
.page-404 h1 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 12px; }
.page-404 p { color: var(--ink-soft); margin-bottom: 32px; }

/* ── Policy pages ── */
.policy-content { max-width: 760px; padding: clamp(32px, 5vw, 56px) 0; }
.policy-content h2 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin: 40px 0 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  padding-left: 16px;
  border-left: 3px solid var(--accent);
}
.policy-content h2:first-of-type { border-top: none; margin-top: 0; padding-top: 0; }
.policy-content h3 {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin: 24px 0 8px;
  color: var(--ink);
}
.policy-content p { color: var(--ink-soft); margin-bottom: 14px; line-height: 1.75; }
.policy-content ul { margin: 12px 0 16px 20px; }
.policy-content ul li {
  color: var(--ink-soft);
  padding: 5px 0;
  list-style: disc;
  font-size: 15px;
  line-height: 1.7;
}

/* ── Sitemap page ── */
.sitemap-list { padding: clamp(32px, 5vw, 56px) 0; }
.sitemap-list h2 { font-size: 1.2rem; margin-bottom: 16px; }
.sitemap-list ul { margin-bottom: 32px; }
.sitemap-list li { padding: 6px 0; }
.sitemap-list a { color: var(--accent); }
.sitemap-list a:hover { text-decoration: underline; }

/* ── Cancellation tiers ── */
.cancel-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin: 16px 0;
}
.cancel-tier {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 16px;
  text-align: center;
}
.cancel-tier strong { display: block; color: var(--accent); font-size: 14px; margin-bottom: 4px; }
.cancel-tier span { font-size: 13px; color: var(--ink-soft); }

/* ── Accessibility ── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ── Smooth scroll offset ── */
section[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  :root { --header-h: 64px; }
}
@media (max-width: 640px) {
  :root { --header-h: 60px; }
  .hero { min-height: clamp(360px, 50vh, 520px); }
  .hero__title { font-size: clamp(2.2rem, 10vw, 3.2rem); }
  .ozel-split { gap: 32px; }
  section { padding: clamp(36px, 7vw, 64px) 0; }
  .product-card {
    clip-path: polygon(
      10px 0, calc(100% - 10px) 0,
      100% 10px, 100% calc(100% - 10px),
      calc(100% - 10px) 100%, 10px 100%,
      0 calc(100% - 10px), 0 10px
    );
  }
}
@media (max-width: 480px) {
  .trust-strip { gap: 8px; }
  .trust-badge { padding: 5px 10px; font-size: 11px; }
  .price-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .channel-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 360px) {
  body { font-size: 14px; }
  .hero__title { font-size: 2rem; }
  .container { padding-left: 14px; padding-right: 14px; }
}

/* ── Cookie banner safe spacing on mobile ── */
@media (max-width: 768px) {
  .cookie-banner {
    bottom: 12px;
    left: 12px;
    right: 12px;
    max-width: none;
    padding: 16px 18px;
  }
  .site-footer { padding-bottom: clamp(140px, 30vw, 200px); }
}

/* ── Enhanced leather-craft hover micro-effects ── */

/* Warm glow on product cards */
.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(212,168,83,0.12) 0%, transparent 70%);
  transition: opacity 400ms cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
  z-index: 1;
}
.product-card { position: relative; }
.product-card:hover::after { opacity: 1; }

/* Subtle leather texture shimmer on section headings */
.section-heading h2 {
  transition: letter-spacing 400ms cubic-bezier(.2,.7,.2,1);
}
.section-heading:hover h2 {
  letter-spacing: 0.01em;
}

/* Stitching animation on timeline */
.timeline::before {
  background-size: 1px 8px;
}

/* Timeline items stagger with better curve */
.timeline-item {
  transition: opacity 500ms cubic-bezier(.16,.9,.3,1), transform 500ms cubic-bezier(.16,.9,.3,1);
}

/* Testimonial card warm hover */
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 320ms;
  border-radius: 8px 8px 0 0;
}
.testimonial-card { position: relative; overflow: hidden; }
.testimonial-card:hover::before { opacity: 1; }

/* Price card featured warm aura */
.price-card--featured:hover {
  box-shadow: 0 16px 48px -12px rgba(212,168,83,0.18), 0 0 0 1px rgba(212,168,83,0.3);
}

/* FAQ item smooth open */
.faq-item summary {
  transition: color 240ms, padding-left 280ms cubic-bezier(.2,.7,.2,1);
}
.faq-item[open] summary {
  padding-left: 6px;
  color: var(--accent);
}

/* Channel card warm border glow on hover */
.channel-card:hover {
  box-shadow: 0 8px 24px -6px rgba(0,0,0,0.2), 0 0 0 1px rgba(212,168,83,0.15);
}

/* Team card photo warm overlay on hover */
.team-card__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(212,168,83,0.08) 100%);
  opacity: 0;
  transition: opacity 360ms;
  pointer-events: none;
}
.team-card__photo { position: relative; }
.team-card:hover .team-card__photo::after { opacity: 1; }

/* Swatch label slide-up on hover */
.swatch__label {
  transform: translateY(4px);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 280ms;
}
.swatch:hover .swatch__label {
  transform: translateY(0);
}

/* Enhanced focus-visible with warm accent ring */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Stats counter warm glow */
.stat-num {
  transition: text-shadow 400ms;
}
.stats-grid > div:hover .stat-num {
  text-shadow: 0 0 20px rgba(212,168,83,0.25);
}

/* News item hover */
.news-item {
  transition: padding-left 240ms cubic-bezier(.2,.7,.2,1), background 240ms;
  border-radius: 4px;
  padding-left: 0;
  padding-right: 0;
}
.news-item:hover {
  padding-left: 8px;
  background: rgba(212,168,83,0.03);
}

/* Footer link warm accent underline */
.footer-col a {
  position: relative;
}
.footer-col a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 2px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 280ms cubic-bezier(.2,.7,.2,1);
}
.footer-col a:hover::after { width: 100%; }

/* Drawer links stagger animation */
.drawer.is-open nav a {
  animation: drawer-slide 320ms cubic-bezier(.16,.9,.3,1) forwards;
  opacity: 0;
}
.drawer.is-open nav a:nth-child(1) { animation-delay: 60ms; }
.drawer.is-open nav a:nth-child(2) { animation-delay: 100ms; }
.drawer.is-open nav a:nth-child(3) { animation-delay: 140ms; }
.drawer.is-open nav a:nth-child(4) { animation-delay: 180ms; }
.drawer.is-open nav a:nth-child(5) { animation-delay: 220ms; }
.drawer.is-open nav a:nth-child(6) { animation-delay: 260ms; }
@keyframes drawer-slide {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .drawer.is-open nav a { animation: none; opacity: 1; }
}

/* Capacity badge gentle pulse border */
@keyframes capacity-border {
  0%, 100% { border-color: rgba(123,158,107,0.3); }
  50% { border-color: rgba(123,158,107,0.55); }
}
.capacity-badge {
  animation: capacity-border 4s ease infinite;
}
@media (prefers-reduced-motion: reduce) {
  .capacity-badge { animation: none; }
}

/* ── Leather-craft warm patina on btn-primary ── */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 500ms cubic-bezier(.16,.9,.3,1), height 500ms cubic-bezier(.16,.9,.3,1);
}
.btn-primary:hover::before {
  width: 300%; height: 300%;
}
@media (prefers-reduced-motion: reduce) {
  .btn-primary::before { display: none; }
}

/* ── Product card stitch-border on hover ── */
.product-card:hover {
  box-shadow:
    inset 0 0 0 2px var(--surface),
    inset 0 0 0 3px rgba(212,168,83,0.3);
}

/* ── Timeline dot warm pulse on scroll ── */
@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,168,83,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(212,168,83,0); }
}
.timeline-item.is-in::before {
  animation: dot-pulse 2.5s ease infinite;
}
@media (prefers-reduced-motion: reduce) {
  .timeline-item.is-in::before { animation: none; }
}

/* ── Channel card warm left-bar on hover ── */
.channel-card {
  position: relative;
  overflow: hidden;
}
.channel-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 320ms cubic-bezier(.16,.9,.3,1);
  border-radius: 0 3px 3px 0;
}
.channel-card:hover::before { transform: scaleY(1); }

/* ── Hero entrance with leather warmth ── */
@keyframes hero-entrance {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

/* ── Print ── */
@media print {
  .site-header, .nav-toggle, .drawer, .drawer-backdrop, .cookie-banner, .skip-link { display: none !important; }
  main { padding-top: 0 !important; }
  body { color: #111; background: #fff; }
  a { color: #111; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:var(--accent);z-index:9998;transition:width 80ms linear;pointer-events:none}

/* form-reveal-opacity-fix */
main form.reveal, .form-section form.reveal, .contact-form.reveal, form[id*='iletisim'].reveal, form[class*='contact'].reveal { opacity: 1 !important; transform: none !important; translate: none !important; }
main form, .form-section form, .contact-form, form[id*='iletisim'], form[class*='contact'] { opacity: 1 !important; }

/* consent-checkbox-inline-fix */
main form label.checkbox, main form .form-checkbox, main form .consent, main form .kvkk, .contact-form label.checkbox, .contact-form .checkbox-group { display: flex !important; flex-direction: row !important; align-items: flex-start !important; gap: 10px !important; font-size: 14px !important; line-height: 1.5 !important; flex-wrap: nowrap !important; }
main form label.checkbox span, main form label.checkbox a, main form .form-checkbox span, main form .form-checkbox a, .contact-form label.checkbox span, .contact-form label.checkbox a { display: inline !important; flex: 1 1 auto; }
main form label.checkbox input[type='checkbox'], main form .form-checkbox input[type='checkbox'] { flex-shrink: 0 !important; width: 18px !important; height: 18px !important; margin-top: 3px !important; }

/* iletisim-form-responsive-guard v2 */
main form, .form-section form, .contact-form, .iletisim-form, form#contact-form, form[id*="iletisim"], form[class*="iletisim"], form[class*="contact"] {
  display: block;
  max-width: 720px;
  margin: 24px auto;
  padding: clamp(20px, 4vw, 36px);
  background: var(--surface, rgba(255,255,255,0.04));
  border: 1px solid var(--line, rgba(127,127,127,0.18));
  border-radius: 16px;
  box-shadow: 0 8px 32px -12px rgba(0,0,0,0.25);
  box-sizing: border-box;
}
main form .form-grid,
main form > .grid,
.contact-form .form-grid,
form[class*="contact"] .form-grid,
form[class*="iletisim"] .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  width: 100%;
}
@media (max-width: 640px) {
  main form .form-grid,
  main form > .grid,
  .contact-form .form-grid,
  form[class*="contact"] .form-grid,
  form[class*="iletisim"] .form-grid {
    grid-template-columns: 1fr;
  }
}
main form .form-grid > .field-full,
main form .form-grid > .col-full,
main form .form-grid > [class*="full"] {
  grid-column: 1 / -1;
}
main form .field, main form label,
.contact-form .field, .contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
main form input[type="text"],
main form input[type="email"],
main form input[type="tel"],
main form input[type="number"],
main form input[type="date"],
main form input[type="url"],
main form input[type="search"],
main form input:not([type]),
main form select,
main form textarea,
.contact-form input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=hidden]),
.contact-form select,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  min-height: 44px;
  font-size: 16px;
  line-height: 1.4;
  font-family: inherit;
  border: 1px solid var(--line, rgba(127,127,127,0.22));
  border-radius: 10px;
  background: var(--input-bg, rgba(0,0,0,0.04));
  color: inherit;
  appearance: none;
  -webkit-appearance: none;
}
main form textarea, .contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
main form input:focus, main form select:focus, main form textarea:focus,
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: 2px solid var(--accent, #5a8dee);
  outline-offset: 1px;
  border-color: transparent;
}
main form .checkbox, main form label.checkbox,
.contact-form .checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}
main form input[type="checkbox"], main form input[type="radio"],
.contact-form input[type="checkbox"], .contact-form input[type="radio"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent, #5a8dee);
}
main form button[type="submit"],
main form input[type="submit"],
main form .btn-submit,
.contact-form button[type="submit"],
.contact-form .btn-submit {
  width: 100%;
  min-height: 48px;
  padding: 14px 28px;
  background: var(--accent, #5a8dee);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 8px;
  transition: filter 200ms ease, transform 120ms ease;
}
@media (min-width: 640px) {
  main form button[type="submit"],
  main form input[type="submit"],
  .contact-form button[type="submit"] {
    width: auto;
    min-width: 220px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
main form button[type="submit"]:hover,
.contact-form button[type="submit"]:hover {
  filter: brightness(1.05);
}
main form button[type="submit"]:active,
.contact-form button[type="submit"]:active {
  transform: translateY(1px);
}


/* contacts-grid-v2 */
/* Contact cards in responsive grid */
.contact-grid, .contacts-grid, .iletisim-grid, .contact-cards, .contact-cards-grid,
.contact-list, main .contact-wrap, section[id*="iletisim"] > .container > div:has(> .contact-card) {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 20px !important;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px 16px;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .contact-grid, .contacts-grid, .iletisim-grid, .contact-cards, .contact-cards-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 720px) {
  .contact-grid, .contacts-grid, .iletisim-grid, .contact-cards, .contact-cards-grid {
    grid-template-columns: 1fr !important;
  }
}
.contact-card { min-height: 0; box-sizing: border-box; }

/* Checkbox row alignment — override .field-checkbox column layout */
form .field.field-checkbox,
form .field-checkbox,
form .checkbox-field,
form .form-field--checkbox,
form .form-row--checkbox,
form .kvkk-field,
form .consent-field,
.contact-form .field.field-checkbox {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: flex-start !important;
  gap: 10px !important;
  width: 100%;
}
form .field.field-checkbox > input[type="checkbox"],
form .field-checkbox > input[type="checkbox"],
form .checkbox-field > input[type="checkbox"],
form .kvkk-field > input[type="checkbox"],
form .consent-field > input[type="checkbox"] {
  flex-shrink: 0 !important;
  width: 18px !important;
  height: 18px !important;
  margin: 3px 0 0 0 !important;
  accent-color: var(--accent, currentColor);
}
form .field.field-checkbox > label,
form .field-checkbox > label,
form .checkbox-field > label,
form .kvkk-field > label,
form .consent-field > label {
  flex: 1 1 auto !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  margin: 0 !important;
  display: inline !important;
  cursor: pointer;
}
form .field.field-checkbox > label a,
form .field-checkbox > label a {
  text-decoration: underline;
}

/* field-full inside form grid spans both columns */
form .form-grid > .field-full,
form .form-grid > .field.field-full,
form .form-grid > .col-full,
form .form-grid > .full,
form .form-grid > [class*="--full"] {
  grid-column: 1 / -1;
}

