/* ============================================================
   KALYONCU — shared design system
   Kil (light · warm clay) / Kömür (dark · charcoal) — terracotta accent
   Fonts: Big Shoulders Display (display) · Archivo (text) · DM Mono
   ============================================================ */
:root {
  /* ---- Kil (light · warm clay/paper) ---- */
  --bg: #efe9dd;
  --bg-2: #e5decf;
  --paper: #f5f0e6;
  --ink: #201c17;
  --ink-72: rgba(32, 28, 23, 0.72);
  --ink-46: rgba(32, 28, 23, 0.46);
  --copper: #ce6a38; /* terracotta */
  --copper-ink: #9c4317; /* deeper terracotta for small text / links on light */
  --copper-soft: rgba(206, 106, 56, 0.14);
  --walnut: #2b2622; /* warm charcoal — logo mark bars on light */
  --edge: #1a1714; /* compact-laminate black core line */
  --on-copper: #1c1009; /* dark text on terracotta */
  --line: rgba(32, 28, 23, 0.14);
  --line-2: rgba(32, 28, 23, 0.24);
  --grid: rgba(32, 28, 23, 0.05);
  --tint: rgba(156, 67, 23, 0.07);
  --shadow: 0 34px 80px -46px rgba(20, 12, 6, 0.5);
}
/* ---- large-screen navbar tweaks: keep navbar usable on very wide monitors ---- */
@media (min-width: 1400px) {
  .wrap {
    max-width: 1440px;
  }
  .main-nav {
    gap: 34px;
  }
  .main-nav a {
    font-size: 13.5px;
  }
  .h-actions .btn {
    padding: 0 20px;
  }
}

/* nav wrapping behaviour — desktop allows shrinking, mobile handled in media query */
.main-nav {
  flex-wrap: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
@media (min-width: 768px) {
  .main-nav {
    overflow: visible;
  }
}
.main-nav::-webkit-scrollbar {
  display: none;
}

html.espresso {
  /* ---- Kömür (dark · warm charcoal) ---- */
  --bg: #161513;
  --bg-2: #1d1c19;
  --paper: #252320;
  --ink: #ece5d9;
  --ink-72: rgba(236, 229, 217, 0.72);
  --ink-46: rgba(236, 229, 217, 0.46);
  --copper: #ce6a38; /* terracotta */
  --copper-ink: #e68f58; /* lighter terracotta for links on dark */
  --copper-soft: rgba(206, 106, 56, 0.16);
  --walnut: #e6d8c4; /* warm cream — logo mark bars on dark */
  --edge: #ce6a38; /* framing edge becomes terracotta on dark */
  --on-copper: #1c1009;
  --line: rgba(236, 229, 217, 0.12);
  --line-2: rgba(236, 229, 217, 0.24);
  --grid: rgba(236, 229, 217, 0.045);
  --tint: rgba(206, 106, 56, 0.1);
  --shadow: 0 38px 90px -44px rgba(0, 0, 0, 0.8);
}
html.theme-anim,
html.theme-anim *,
html.theme-anim *::before,
html.theme-anim *::after {
  transition:
    background-color 0.5s ease,
    color 0.5s ease,
    border-color 0.5s ease,
    fill 0.5s ease,
    box-shadow 0.5s ease !important;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Archivo", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(0deg, var(--grid) 0 1px, transparent 1px 76px),
    linear-gradient(90deg, var(--grid) 0 1px, transparent 1px 76px);
}
html.espresso body::before {
  background:
    linear-gradient(0deg, var(--grid) 0 1px, transparent 1px 76px),
    linear-gradient(90deg, var(--grid) 0 1px, transparent 1px 76px);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
html.espresso body::after {
  mix-blend-mode: overlay;
  opacity: 0.06;
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
  border-radius: 1px;
}
img {
  max-width: 100%;
  display: block;
}

.mono {
  font-family: "DM Mono", monospace;
}
.serif {
  font-family: "Big Shoulders Display", sans-serif;
}
.eyebrow {
  /* tüm sayfalarda kaldırıldı (çizgi + küçük etiket) */
  display: none !important;
  font-family: "DM Mono", monospace;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper-ink);
  align-items: center;
  gap: 11px;
}
.eyebrow .tk {
  width: 20px;
  height: 1px;
  background: var(--copper);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: "Archivo", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 13px 22px;
  border: 1px solid var(--copper);
  background: var(--copper);
  color: var(--on-copper);
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}
.btn .ar {
  transition: transform 0.3s ease;
}
.btn:hover {
  background: transparent;
  color: var(--copper-ink);
}
.btn:hover .ar {
  transform: translateX(4px);
}
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn.ghost:hover {
  border-color: var(--copper);
  color: var(--copper-ink);
}

/* the signature "core edge" framing for any visual */
.shot {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 0;
  box-shadow: var(--shadow);
}
.shot::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--edge);
  z-index: 3;
}
.shot::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--copper);
  z-index: 3;
}
.shot .img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  margin-top: 8px;
} /* turuncu çubuğun hemen dibine yaslanır */
.shot .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.shot:hover .img img {
  transform: scale(1.045);
}
.shot .corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: var(--copper);
  z-index: 4;
  opacity: 0.6;
}
.shot .corner.bl {
  bottom: 9px;
  left: 9px;
  border-width: 0 0 1.4px 1.4px;
  border-style: solid;
}
.shot .corner.br {
  bottom: 9px;
  right: 9px;
  border-width: 0 1.4px 1.4px 0;
  border-style: solid;
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(150%) blur(13px);
  -webkit-backdrop-filter: saturate(150%) blur(13px);
}
@supports (background: color-mix(in srgb, red, blue)) {
  .site-header {
    background: color-mix(in srgb, var(--bg) 88%, transparent);
  }
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: 72px;
  overflow: visible;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-logo {
  height: 72px;
  width: auto;
  flex: 0 0 auto;
  object-fit: contain;
  display: block;
}
.site-header:has(.brand-logo) .mk {
  display: none;
}
@media (max-width: 920px) {
  .brand-logo {
    height: 60px;
  }
}
@media (max-width: 480px) {
  .brand-logo {
    height: 50px;
  }
}
.mk {
  position: relative;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}
.mk i {
  display: block;
  height: 4px;
  background: var(--walnut);
  border-top: 1px solid var(--edge);
}
.mk i:nth-child(1) {
  width: 70%;
}
.mk i:nth-child(2) {
  width: 100%;
}
.mk i:nth-child(3) {
  width: 84%;
}
.mk .tri {
  position: absolute;
  right: -3px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid var(--copper);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}
.brand .nm {
  display: none;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex: 1;
  overflow: visible;
}
.main-nav a {
  font-family: "DM Mono", monospace;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: var(--ink-72);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--ink);
}
.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}
.h-actions {
  display: flex;
  align-items: center;
  gap: 13px;
}
.h-actions .btn {
  height: 38px;
  padding: 0 17px;
  font-size: 13px;
  font-weight: 600;
} /* header CTA = toggle ile aynı yükseklik */
.theme-toggle {
  position: relative;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  cursor: pointer;
  border: 1px solid var(--line-2);
  background: transparent;
  color: var(--ink);
  display: inline-grid;
  place-items: center;
  transition:
    background 0.3s,
    border-color 0.3s,
    color 0.3s;
}
.theme-toggle:hover {
  background: var(--tint);
  border-color: var(--copper);
  color: var(--copper-ink);
}
.theme-toggle svg {
  grid-area: 1/1;
  transition:
    opacity 0.4s ease,
    transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.ic-moon {
  opacity: 0;
  transform: rotate(45deg) scale(0.55);
}
.ic-sun {
  opacity: 1;
  transform: none;
}
html.espresso .ic-moon {
  opacity: 1;
  transform: none;
}
html.espresso .ic-sun {
  opacity: 0;
  transform: rotate(-45deg) scale(0.55);
}
.menu-btn {
  display: none;
  width: 38px;
  height: 38px;
  cursor: pointer;
  border: 1px solid var(--line-2);
  background: transparent;
  color: var(--ink);
  align-items: center;
  justify-content: center;
}

/* ---------- nav dropdown (Ürünlerimiz mega menu) ---------- */
.nav-dd {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dd::after {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 100%;
  height: 18px;
  pointer-events: auto;
}
.nav-dd-t {
  font-family: "DM Mono", monospace;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: var(--ink-72);
  position: relative;
  padding: 6px 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 0;
  transition: color 0.3s ease;
}
.nav-dd-t::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.nav-dd-t:hover,
.nav-dd.open .nav-dd-t {
  color: var(--ink);
}
.nav-dd-t:hover::after,
.nav-dd.open .nav-dd-t::after {
  transform: scaleX(1);
}
.nav-dd-t .chev {
  width: 10px;
  height: 10px;
  transition: transform 0.35s ease;
}
.nav-dd:hover .chev,
.nav-dd.open .chev {
  transform: rotate(180deg);
}

.nav-dd-panel {
  position: fixed;
  top: 78px;
  left: 50%;
  transform: translateX(-50%);
  width: min(920px, 90vw);
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow);
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0s linear 0.18s;
  z-index: 80;
  pointer-events: none;
  overflow: visible;
}
.nav-dd-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--edge);
  z-index: 2;
}
.nav-dd-panel::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--copper);
  z-index: 2;
}
.nav-dd:hover .nav-dd-panel,
.nav-dd.open .nav-dd-panel {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
  pointer-events: auto;
}

/* ---- mega-menu with sub-products ---- */
.dd-mega {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin-top: 6px;
}
.dd-col {
  padding: 14px 0;
}
.dd-col:not(:last-child) {
  border-right: 1px solid var(--line);
}
.dd-group {
  margin-bottom: 16px;
}
.dd-group:last-child {
  margin-bottom: 0;
}
.dd-gh {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 7px 18px;
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  transition:
    color 0.3s,
    padding-left 0.3s;
}
.dd-gh:hover {
  color: var(--copper-ink);
  padding-left: 24px;
}
.dd-gh .dd-num {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  color: var(--copper-ink);
  letter-spacing: 0.05em;
}
.dd-sub {
  display: none;
  padding: 4px 18px 4px 36px;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  color: var(--ink-72);
  line-height: 1.5;
  transition:
    color 0.25s,
    padding-left 0.25s;
}
.dd-group:hover .dd-sub,
.dd-group:focus-within .dd-sub {
  display: block;
}
.dd-sub:hover {
  color: var(--copper-ink);
  padding-left: 42px;
  background: var(--tint);
}

.dd-sub.dd-label {
  cursor: default;
}
.dd-sub.dd-label:hover {
  color: var(--ink-72);
  padding-left: 36px;
  background: transparent;
}

.dd-sub.dd-child {
  padding-left: 52px;
  font-size: 10px;
  opacity: 0.86;
}

.dd-sub.dd-child:hover {
  padding-left: 58px;
}

/* ---------- hero (home) ---------- */
.hero {
  padding-top: clamp(44px, 6.5vw, 92px);
  padding-bottom: clamp(40px, 5vw, 76px);
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}
.hero-h {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 600;
  font-size: clamp(43px, 6.6vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.018em;
  margin: clamp(22px, 3vw, 30px) 0 clamp(20px, 2.4vw, 26px);
}
.hero-h .ac {
  color: var(--ink);
  font-weight: 700;
}
.hero-sub {
  font-size: clamp(15.5px, 1.55vw, 18.5px);
  color: var(--ink-72);
  max-width: 52ch;
  margin-bottom: clamp(26px, 3vw, 34px);
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: clamp(28px, 3.4vw, 38px);
}
.hero-ticks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
}
.hero-ticks span {
  font-family: "DM Mono", monospace;
  font-size: 12px;
  color: var(--ink-72);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.hero-ticks span::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--copper);
  transform: rotate(45deg);
  flex: 0 0 auto;
}

.hero-visual {
  position: relative;
}
.hero-visual .shot .img {
  aspect-ratio: 4/3.05;
}
.callout {
  position: absolute;
  z-index: 5;
  font-family: "DM Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-2);
  padding: 5px 9px;
  box-shadow: 0 10px 24px -16px rgba(0, 0, 0, 0.5);
}
.callout .u {
  color: var(--copper-ink);
}
.co-top {
  top: -13px;
  left: 34px;
}
.co-right {
  top: 42%;
  right: -16px;
}
.co-dim {
  bottom: 38px;
  left: -18px;
}
.swatch {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 6;
  background: var(--paper);
  border: 1px solid var(--line-2);
  padding: 11px 12px 10px;
  box-shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.55);
}
.swatch .lab {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-46);
  margin-bottom: 7px;
}
.swatch .row {
  display: flex;
  gap: 5px;
}
.swatch .row b {
  display: block;
  width: 20px;
  height: 26px;
  border-top: 3px solid var(--edge);
}
.sw1 {
  background: #cbb89b;
}
.sw2 {
  background: #ce6a38;
}
.sw3 {
  background: #2d3c4c;
}
.sw4 {
  background: #7c1f1f;
}
.sw5 {
  background: #e7e2d6;
}

/* ---------- page hero (inner pages) ---------- */
.pagehero {
  padding-top: clamp(48px, 6vw, 86px);
  padding-bottom: clamp(46px, 5.5vw, 78px);
  border-bottom: 1px solid var(--line);
}
.crumb {
  display: none;
} /* yol/breadcrumb gizli */
.pagehero .wrap {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
}
.ph-h {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 700;
  font-size: clamp(44px, 6.6vw, 88px);
  line-height: 0.9;
  letter-spacing: -0.005em;
  margin: clamp(16px, 2vw, 22px) 0 clamp(20px, 2.4vw, 28px);
  text-wrap: balance;
}
.ph-h .ac {
  color: var(--ink);
  font-weight: 700;
} /* başlık tek renk (turuncu vurgu yok) */
.ph-lead {
  font-size: clamp(15.5px, 1.5vw, 18px);
  color: var(--ink-72);
  max-width: 52ch;
  margin-bottom: clamp(24px, 2.8vw, 32px);
}
.ph-ticks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ph-ticks span {
  font-family: "DM Mono", monospace;
  font-size: 11.5px;
  color: var(--ink-72);
  border: 1px solid var(--line-2);
  padding: 8px 13px;
  transition: border-color 0.3s ease;
}
.ph-ticks span:hover {
  border-color: var(--copper);
}
.ph-ticks span b {
  color: var(--ink);
  font-weight: 500;
} /* turuncu değil — nötr vurgu */
.pagehero .visual {
  position: relative;
}
.pagehero .visual .shot .img {
  aspect-ratio: 4/3;
}

/* ---- dual-image hero (yan yana iki görsel) ---- */
.pagehero .visual.visual-dual {
  display: flex;
  gap: 14px;
}
.pagehero .visual.visual-dual .shot {
  flex: 1 1 0;
  min-width: 0;
}
.pagehero .visual.visual-dual .shot .img {
  aspect-ratio: 3/4;
}
@media (max-width: 980px) {
  .pagehero .visual.visual-dual {
    flex-direction: column;
  }
}

.reference-hero {
  position: relative;
  min-height: clamp(560px, 74vh, 780px);
  padding: 0;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #f5f0e6;
  border-bottom: 1px solid rgba(245, 240, 230, 0.12);
  background:
    linear-gradient(
      90deg,
      rgba(24, 18, 13, 0.94) 0%,
      rgba(24, 18, 13, 0.72) 34%,
      rgba(24, 18, 13, 0.18) 72%
    ),
    linear-gradient(
      180deg,
      rgba(38, 27, 20, 0.12) 0%,
      rgba(13, 10, 8, 0.56) 100%
    ),
    linear-gradient(135deg, rgba(206, 106, 56, 0.16), transparent 42%),
    url("kalyoncu-assets/referans-hero.png") center / cover no-repeat;
}

.reference-hero::before {
  content: "";
  position: absolute;
  left: clamp(28px, 4.7vw, 78px);
  top: 0;
  bottom: 0;
  width: min(43vw, 740px);
  border-left: 1px solid rgba(206, 106, 56, 0.42);
  border-bottom: 1px solid rgba(206, 106, 56, 0.42);
  pointer-events: none;
}

.reference-hero::after {
  content: "";
  position: absolute;
  left: clamp(64px, 10vw, 156px);
  top: 24%;
  width: clamp(320px, 38vw, 620px);
  aspect-ratio: 1;
  border: 1px solid rgba(206, 106, 56, 0.24);
  border-radius: 50%;
  pointer-events: none;
}

.reference-hero .wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 0.38fr);
  align-items: center;
}

.reference-hero .ph-text {
  max-width: 680px;
  padding-top: clamp(58px, 8vw, 110px);
  padding-bottom: clamp(56px, 8vw, 110px);
}

.reference-hero .eyebrow,
.reference-hero .crumb,
.reference-hero .visual {
  display: none !important;
}

.reference-hero .ph-h {
  margin: 0 0 clamp(22px, 2.8vw, 34px);
  color: #f8f4ee;
  font-family: "Archivo", sans-serif;
  font-weight: 500;
  font-size: clamp(42px, 5.6vw, 78px);
  line-height: 1.04;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.55);
}

.reference-hero .ph-lead {
  margin: 0;
  max-width: 45ch;
  color: rgba(245, 240, 230, 0.66);
  font-size: clamp(16px, 1.6vw, 21px);
  line-height: 1.5;
}

.reference-hero .ph-ticks {
  margin-top: clamp(30px, 4vw, 56px);
}

.reference-hero .ph-ticks span {
  color: rgba(245, 240, 230, 0.72);
  border-color: rgba(206, 106, 56, 0.34);
  background: rgba(24, 18, 13, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.reference-hero .ph-ticks span b {
  color: #f8f4ee;
}

.reference-hero .ph-ticks span:hover {
  border-color: #ce6a38;
}

/* ---------- accessory systems hero ---------- */
.access-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(560px, 66vw, 720px);
  color: #f4f0e9;
  background:
    radial-gradient(
      circle at 78% 38%,
      rgba(255, 255, 255, 0.08),
      transparent 28%
    ),
    linear-gradient(90deg, #11100e 0%, #171614 45%, #0a0a09 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.access-hero__shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.32), transparent 42%),
    radial-gradient(
      circle at 33% 60%,
      rgba(255, 255, 255, 0.06),
      transparent 24%
    ),
    linear-gradient(180deg, transparent 75%, rgba(255, 255, 255, 0.05));
}
.access-hero__wrap {
  position: relative;
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(520px, 1.28fr);
  align-items: center;
  gap: clamp(22px, 4vw, 70px);
}
.access-hero__text {
  z-index: 2;
  max-width: 300px;
  padding-top: clamp(34px, 6vw, 64px);
}
.access-hero__mark {
  display: block;
  width: 46px;
  height: 3px;
  margin-bottom: 24px;
  background: #e56f35;
  box-shadow: 0 0 20px rgba(229, 111, 53, 0.34);
}
.access-hero__crumb {
  display: block;
  margin-bottom: 18px;
  color: rgba(244, 240, 233, 0.46);
}
.access-hero__crumb a,
.access-hero__crumb b {
  color: rgba(244, 240, 233, 0.58);
}
.access-hero__title {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(58px, 6.5vw, 92px);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
  color: #f8f2ea;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.52);
}
.access-hero__title::after {
  content: "";
  display: block;
  width: min(100%, 196px);
  height: 1px;
  margin: 24px 0 20px;
  background: rgba(244, 240, 233, 0.36);
}
.access-hero__text p {
  margin: 0;
  color: rgba(244, 240, 233, 0.66);
  font-size: clamp(14px, 1.35vw, 16px);
  line-height: 1.65;
}
.access-hero__stage {
  position: relative;
  height: min(58vw, 620px);
  min-height: 420px;
  z-index: 1;
  filter: drop-shadow(0 38px 56px rgba(0, 0, 0, 0.52));
}
.access-hero__stage::before {
  content: "";
  position: absolute;
  right: -10%;
  bottom: 3%;
  width: 92%;
  height: 26%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.72), transparent 67%);
  transform: rotate(-3deg);
}
.access-hero__wall {
  position: absolute;
  right: -4%;
  top: 0;
  width: 44%;
  height: 42%;
  background: linear-gradient(145deg, #272624, #0d0d0c);
  box-shadow: -24px 34px 54px rgba(0, 0, 0, 0.54);
}
.access-hero__wall::before {
  content: "";
  position: absolute;
  left: 23%;
  right: -16%;
  bottom: 12%;
  height: 34%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 8%),
    linear-gradient(180deg, #c7b9a4, #8f8375);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}
.access-hero__wall span {
  position: absolute;
  left: 12%;
  bottom: 23%;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(145deg, #fbf7ec, #82766b);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.52);
  z-index: 2;
}
.access-hero__wall img {
  position: absolute;
  left: 42%;
  bottom: -28%;
  width: 22%;
  height: auto;
  object-fit: contain;
}
.access-hero__plinth {
  position: absolute;
  left: 9%;
  right: 0;
  bottom: 9%;
  height: 31%;
  background: linear-gradient(145deg, #24231f, #11110f 58%, #070707);
  transform: skewY(-8deg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    -22px 22px 44px rgba(0, 0, 0, 0.42);
}
.access-hero__plinth--back {
  left: 33%;
  right: 24%;
  bottom: 29%;
  height: 16%;
  opacity: 0.96;
}
.access-piece {
  position: absolute;
  object-fit: contain;
  width: 15%;
  height: auto;
  max-height: 32%;
  z-index: 3;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.48)) saturate(0.88)
    contrast(1.08);
}
.access-piece--u {
  left: 16%;
  bottom: 28%;
  width: 15%;
}
.access-piece--hinge {
  left: 44%;
  bottom: 37%;
  width: 20%;
}
.access-piece--cap {
  left: 31%;
  bottom: 22%;
  width: 14%;
}
.access-piece--plate {
  left: 67%;
  bottom: 25%;
  width: 17%;
}
.access-piece--lock {
  left: 54%;
  bottom: 12%;
  width: 15%;
}
.access-piece--foot {
  left: 78%;
  bottom: 10%;
  width: 18%;
}
.access-piece--handle {
  left: 87%;
  bottom: 29%;
  width: 11%;
}

body.accessories-page .access-hero {
  min-height: clamp(520px, 63vw, 690px);
  background:
    linear-gradient(
      90deg,
      rgba(8, 8, 7, 0.96) 0%,
      rgba(8, 8, 7, 0.82) 24%,
      rgba(8, 8, 7, 0.28) 52%,
      rgba(8, 8, 7, 0.02) 100%
    ),
    url("kalyoncu-assets/aksesuar/alan.png") right center / auto 100% no-repeat,
    #0a0a09;
}

body.accessories-page .access-hero__shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.24)),
    radial-gradient(
      circle at 18% 50%,
      rgba(255, 255, 255, 0.04),
      transparent 32%
    );
}

body.accessories-page .access-hero__wrap {
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: 0;
}

body.accessories-page .access-hero__text {
  max-width: 270px;
  padding-top: clamp(34px, 6vw, 72px);
}

body.accessories-page .access-hero__crumb {
  display: none;
}

body.accessories-page .access-hero__mark {
  width: 38px;
  height: 3px;
  margin-bottom: 22px;
}

body.accessories-page .access-hero__title {
  font-size: clamp(46px, 5.2vw, 72px);
  line-height: 0.94;
  letter-spacing: 0.16em;
}

body.accessories-page .access-hero__title::after {
  width: 162px;
  margin: 24px 0 18px;
  background: rgba(244, 240, 233, 0.28);
}

body.accessories-page .access-hero__text p {
  color: rgba(244, 240, 233, 0.68);
  font-size: 14px;
  line-height: 1.72;
}

body.accessories-page .access-hero__stage {
  display: none;
}

/* ---------- credentials strip ---------- */
.creds {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.creds .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.cred {
  position: relative;
  padding: clamp(26px, 2.8vw, 38px) clamp(26px, 2.6vw, 34px)
    clamp(26px, 2.8vw, 38px) 0;
  border-right: 1px solid var(--line);
  border-top: 2px solid transparent;
  transition:
    border-top-color 0.35s ease,
    background 0.35s ease;
}
.cred:not(:first-child) {
  padding-left: clamp(26px, 2.6vw, 34px);
}
.cred:last-child {
  border-right: 0;
  padding-right: 0;
}
.cred:hover {
  border-top-color: var(--copper);
  background: var(--tint);
}
.cred .cn {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  color: var(--copper-ink);
  display: block;
  margin-bottom: clamp(22px, 2.6vw, 36px);
}
.cred .k {
  font-family: "DM Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-46);
}
.cred .v {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 600;
  font-size: clamp(19px, 1.7vw, 24px);
  margin-top: 8px;
  letter-spacing: 0;
  color: var(--ink);
  line-height: 1.06;
}

/* ---------- section frame ---------- */
.section {
  padding: clamp(60px, 8vw, 118px) 0;
  border-top: 1px solid var(--line);
}
.section.tight {
  padding: clamp(46px, 6vw, 80px) 0;
}
.section.flush {
  border-top: 0;
}
.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(36px, 4.5vw, 58px);
}
.sec-head h2 {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 600;
  font-size: clamp(29px, 4vw, 50px);
  letter-spacing: -0.015em;
  line-height: 1.02;
  margin-top: 14px;
  max-width: 20ch;
}
.sec-head h2 .ac {
  color: var(--ink);
}
.sec-head .idx {
  font-family: "DM Mono", monospace;
  font-size: 12px;
  color: var(--ink-46);
  white-space: nowrap;
  padding-bottom: 6px;
}
.lead {
  max-width: 62ch;
  color: var(--ink-72);
  font-size: 16.5px;
}
.sec-h {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 600;
  font-size: clamp(29px, 4vw, 50px);
  letter-spacing: -0.015em;
  line-height: 1.04;
}
.sec-h .ac {
  color: var(--ink);
}

/* ---------- prose (rich description blocks) ---------- */
.prose {
  max-width: 72ch;
}
.prose p {
  font-size: 16px;
  color: var(--ink-72);
  margin-bottom: 18px;
  line-height: 1.7;
}
.prose p:last-child {
  margin-bottom: 0;
}
.prose strong,
.prose b {
  color: var(--ink);
  font-weight: 600;
}
.prose .kicker {
  font-family: "Archivo", sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(18px, 2vw, 23px);
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 20px;
  letter-spacing: 0;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.two-col.lean {
  grid-template-columns: 1.1fr 0.9fr;
}

/* ---------- about / biz kimiz ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 6vw, 90px);
  align-items: start;
}
.about-aside {
  position: sticky;
  top: 96px;
}
.about-aside .sec-h {
  line-height: 0.96;
}
.about-kicker {
  font-family: "Archivo", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(18px, 1.9vw, 23px);
  line-height: 1.5;
  color: var(--ink);
  max-width: 30ch;
}
.about-body {
  max-width: 60ch;
}
.about-body p {
  font-size: clamp(15.5px, 1.45vw, 17px);
  color: var(--ink-72);
  line-height: 1.78;
  margin-bottom: 20px;
}
.about-body p:last-child {
  margin-bottom: 0;
}
@media (max-width: 920px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-aside {
    position: static;
  }
}

/* ---------- material feature ---------- */
.mat .wrap {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(34px, 5vw, 68px);
  align-items: center;
}
.mat-props {
  list-style: none;
  margin-top: clamp(26px, 3vw, 34px);
}
.mat-props li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.mat-props li:last-child {
  border-bottom: 1px solid var(--line);
}
.mat-props .n {
  font-family: "DM Mono", monospace;
  font-size: 12px;
  color: var(--copper-ink);
}
.mat-props .t {
  font-weight: 600;
  font-size: 16px;
}
.mat-props .t span {
  display: block;
  font-weight: 400;
  font-size: 14.5px;
  color: var(--ink-72);
  margin-top: 3px;
}
.mat-visual {
  position: relative;
}
.mat-visual .shot .img {
  aspect-ratio: 16/10;
}
.xsec {
  position: absolute;
  right: -14px;
  bottom: -22px;
  width: min(260px, 72%);
  background: var(--paper);
  border: 1px solid var(--line-2);
  padding: 16px 16px 14px;
  box-shadow: 0 26px 54px -28px rgba(0, 0, 0, 0.6);
  z-index: 6;
}
.xsec .cap {
  font-family: "DM Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-46);
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}
.xsec .cap b {
  color: var(--copper-ink);
  font-weight: 500;
}
.layers {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.layers .face {
  height: 11px;
  background: linear-gradient(90deg, #cbb89b, #d8c8ac);
}
.layers .core {
  display: flex;
  flex-direction: column;
  gap: 1.5px;
  padding: 2px 0;
}
.layers .core i {
  height: 2.5px;
  background: var(--edge);
  opacity: 0.86;
  display: block;
}
.xsec .note {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  color: var(--ink-72);
  margin-top: 11px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.xsec .note::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--edge);
  flex: 0 0 auto;
}

/* ---------- products grid (home) ---------- */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.prod {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1),
    border-color 0.4s ease;
}
.prod:hover {
  transform: translateY(-5px);
  border-color: var(--copper);
}
.prod .pimg {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/11;
  border-bottom: 1px solid var(--line);
}
.prod .pimg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--edge);
  z-index: 2;
}
.prod .pimg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.prod:hover .pimg img {
  transform: scale(1.06);
}
.prod .pbody {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.prod .cc {
  font-family: "DM Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--copper-ink);
  margin-bottom: 11px;
}
.prod h3 {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.08;
  margin-bottom: 9px;
}
.prod p {
  font-size: 14px;
  color: var(--ink-72);
  line-height: 1.5;
}
.prod .spec {
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-72);
  display: flex;
  align-items: center;
  gap: 9px;
}
.prod .spec .ar {
  margin-left: auto;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--copper);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--copper);
  font-size: 15px;
  font-weight: 700;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}
.prod:hover .spec .ar {
  background: var(--copper);
  color: var(--on-copper);
  transform: translateX(3px);
}
.prod.wide,
.prod.half,
.prod.third {
  grid-column: auto;
} /* tüm kartlar eşit — perfect grid */
.prod.wide .pimg {
  aspect-ratio: 16/11;
}

/* ---------- gallery + tiles (inner pages) ---------- */
.galbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: clamp(22px, 2.6vw, 30px);
}
.galbar .count {
  font-family: "DM Mono", monospace;
  font-size: 12px;
  color: var(--ink-46);
}
.gal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gal.two {
  grid-template-columns: repeat(2, 1fr);
}
.gal.four {
  grid-template-columns: repeat(4, 1fr);
}
.tezgah-photo-slots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.tezgah-photo-slot {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px dashed var(--line-2);
  background:
    linear-gradient(135deg, rgba(198, 124, 72, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    var(--paper);
}
.tezgah-photo-slot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 4px solid var(--edge);
  pointer-events: none;
}
.tezgah-photo-slot span {
  font-family: "DM Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-46);
  text-transform: uppercase;
}
.tile {
  position: relative;
  border: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 4/3;
}
.tile::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--edge);
  z-index: 2;
}
.tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.tile:hover img {
  transform: scale(1.06);
}
.tile.flat {
  background: var(--bg-2);
}
.tile.flat img {
  object-fit: contain;
  padding: 18px;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.tile.flat:hover img {
  transform: scale(1.04);
}
.tile.tall {
  aspect-ratio: 3/4;
}
.tile.span2 {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.tile .cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 26px 14px 11px;
  font-family: "DM Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: #f2eadb;
  background: linear-gradient(0deg, rgba(20, 12, 5, 0.82), rgba(20, 12, 5, 0));
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}
.tile:hover .cap {
  opacity: 1;
  transform: none;
}
.tile .zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--paper) 78%, transparent);
  border: 1px solid var(--line-2);
  color: var(--copper-ink);
  opacity: 0;
  transform: scale(0.8);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.tile:hover .zoom {
  opacity: 1;
  transform: none;
}

.drawing-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}
.drawing-board .tile {
  aspect-ratio: 16/9;
  background: #fff;
}
.drawing-board .tile img {
  object-fit: contain;
  padding: clamp(12px, 2vw, 24px);
}
.drawing-board .tile.wide {
  aspect-ratio: 2.2/1;
}

/* ---------- accessory board (ürüne özel "kullanılan aksesuarlar" paftası) ---------- */
.accboard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.accboard .ab {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  cursor: zoom-in;
  transition:
    border-color 0.35s ease,
    transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.accboard .ab:hover {
  border-color: var(--copper);
  transform: translateY(-4px);
}
.accboard .ab .pic {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg-2);
  overflow: hidden;
}
.accboard .ab .pic::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--edge);
  z-index: 2;
} /* imza siyah çekirdek şeridi */
.accboard .ab .pic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.accboard .ab:hover .pic img {
  transform: scale(1.05);
}
.accboard .ab .lbl {
  padding: 13px 15px 15px;
  border-top: 1px solid var(--line);
}
.accboard .ab .lbl b {
  display: block;
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.005em;
  line-height: 1.12;
  color: var(--ink);
}
.accboard .ab .lbl span {
  display: block;
  font-family: "DM Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--ink-46);
  margin-top: 5px;
} /* kalıcı etiket (hover-only değil) */
.accboard .ab .zoom {
  position: absolute;
  top: 11px;
  right: 11px;
  z-index: 3;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--paper) 78%, transparent);
  border: 1px solid var(--line-2);
  color: var(--copper-ink);
  opacity: 0;
  transform: scale(0.8);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.accboard .ab:hover .zoom {
  opacity: 1;
  transform: none;
}

/* ---------- lightbox ---------- */
.lb {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}
.lb.open {
  display: block;
}
.lb-bg {
  position: absolute;
  inset: 0;
  background: rgba(16, 10, 4, 0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.lb-stage {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  place-items: center;
  padding: clamp(48px, 7vw, 90px) clamp(48px, 9vw, 120px);
}
.lb-frame {
  position: relative;
  background: #1d1c19;
  border: 1px solid rgba(206, 106, 56, 0.4);
  padding: 10px;
  box-shadow: 0 50px 120px -40px rgba(0, 0, 0, 0.85);
  max-width: 94vw;
}
.lb-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: #ce6a38;
  z-index: 3;
}
.lb-frame img {
  display: block;
  max-width: calc(94vw - 20px);
  max-height: 74vh;
  width: auto;
  height: auto;
  object-fit: contain;
}
.lb-cap {
  position: absolute;
  left: 50%;
  bottom: clamp(20px, 3.4vw, 34px);
  transform: translateX(-50%);
  z-index: 3;
  font-family: "DM Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #ece5d9;
  display: flex;
  gap: 12px;
  align-items: center;
  white-space: nowrap;
}
.lb-cap b {
  color: #e68f58;
  font-weight: 500;
}
.lb-btn {
  position: absolute;
  z-index: 3;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  cursor: pointer;
  background: rgba(36, 25, 16, 0.7);
  border: 1px solid rgba(206, 106, 56, 0.4);
  color: #ece5d9;
  transition:
    background 0.3s,
    color 0.3s,
    border-color 0.3s;
}
.lb-btn:hover {
  background: #ce6a38;
  color: #1c1009;
  border-color: #ce6a38;
}
.lb-close {
  top: clamp(20px, 3vw, 30px);
  right: clamp(20px, 3vw, 30px);
}
.lb-prev {
  left: clamp(14px, 2.4vw, 28px);
  top: 50%;
  transform: translateY(-50%);
}
.lb-next {
  right: clamp(14px, 2.4vw, 28px);
  top: 50%;
  transform: translateY(-50%);
}
.lb-counter {
  position: absolute;
  top: clamp(22px, 3vw, 32px);
  left: clamp(20px, 3vw, 30px);
  z-index: 3;
  font-family: "DM Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #e68f58;
}

/* ---------- spec table ---------- */
.spec-wrap {
  border: 1px solid var(--line);
  background: var(--paper);
}
.spec-wrap .sptitle {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper-ink);
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}
.spectable {
  width: 100%;
  border-collapse: collapse;
}
.spectable tr {
  border-bottom: 1px solid var(--line);
}
.spectable tr:last-child {
  border-bottom: 0;
}
.spectable th {
  text-align: left;
  font-family: "Archivo", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--ink-72);
  padding: 14px 22px;
  width: 46%;
  vertical-align: top;
}
.spectable td {
  font-family: "DM Mono", monospace;
  font-size: 13px;
  color: var(--ink);
  padding: 14px 22px;
  vertical-align: top;
}
.spectable td .hl {
  color: var(--copper-ink);
}

/* ---------- feature list (checks) ---------- */
.checks {
  list-style: none;
}
.checks li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink-72);
  align-items: baseline;
}
.checks li:last-child {
  border-bottom: 0;
}
.checks li .mk2 {
  width: 7px;
  height: 7px;
  margin-top: 7px;
  background: var(--copper);
  transform: rotate(45deg);
  flex: 0 0 auto;
}
.checks li b {
  color: var(--ink);
  font-weight: 600;
}

/* chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.chips span {
  font-family: "DM Mono", monospace;
  font-size: 12px;
  color: var(--ink-72);
  border: 1px solid var(--line-2);
  padding: 8px 14px;
  transition:
    border-color 0.3s,
    color 0.3s,
    background 0.3s;
}
.chips span:hover {
  border-color: var(--copper);
  color: var(--copper-ink);
  background: var(--tint);
}
.codechips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.codechips b {
  font-family: "DM Mono", monospace;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--copper-ink);
  border: 1px solid var(--line-2);
  padding: 6px 11px;
}

/* ---------- variant / model cards ---------- */
.vgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.vgrid.two {
  grid-template-columns: repeat(2, 1fr);
}
.vcard {
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.35s ease,
    transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.vcard:hover {
  border-color: var(--copper);
  transform: translateY(-4px);
}
.vcard .vimg {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  cursor: zoom-in;
}
body.accessories-page .vcard .vimg {
  cursor: default;
}
.vcard .vimg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--edge);
}
.vcard .vimg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.vcard:hover .vimg img {
  transform: scale(1.05);
}
.vcard .vimg.flat {
  background: var(--bg-2);
}
.vcard .vimg.flat img {
  object-fit: contain;
  padding: 16px;
}
body.accessories-page .vcard .vimg.flat img,
body.accessories-page .vcard .accessory-placeholder img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  padding: clamp(20px, 3vw, 34px);
  box-sizing: border-box;
}
body.accessories-page .vgrid {
  align-items: stretch;
}
body.accessories-page .vcard {
  height: 100%;
}
body.accessories-page .vcard .vbody {
  flex: 1;
  display: flex;
  flex-direction: column;
}
body.accessories-page .vcard .detail-link {
  margin-top: auto;
}
body.accessories-page .vcard .vimg {
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
}
body.accessories-page .vcard .vimg img {
  object-fit: contain;
  object-position: center;
  transform: none;
}
body.accessories-page #m-01 .vimg img,
body.accessories-page #m-02 .vimg img,
body.accessories-page #pm-01 .vimg img {
  padding: clamp(34px, 4.2vw, 56px);
}
body.accessories-page #k-02 .vimg,
body.accessories-page #k-04 .vimg,
body.accessories-page #m-01 .vimg,
body.accessories-page #m-02 .vimg,
body.accessories-page #pm-01 .vimg {
  aspect-ratio: 1/1;
}
body.accessories-page #k-02 .vimg img,
body.accessories-page #k-04 .vimg img,
body.accessories-page #m-01 .vimg img,
body.accessories-page #m-02 .vimg img,
body.accessories-page #pm-01 .vimg img {
  object-fit: contain;
  object-position: center;
  padding: clamp(42px, 5vw, 68px);
  box-sizing: border-box;
}
body.accessories-page .vcard:hover .vimg img {
  transform: none;
}
body.soyunma-page .pagehero .shot .img,
body.soyunma-page .vcard .vimg,
body.soyunma-page .model-detail .model-shot .img,
body.soyunma-page .tezgah-photo-slot,
body.soyunma-page .tile {
  background: var(--bg-2);
}
body.soyunma-page .pagehero .shot .img img,
body.soyunma-page .vcard .vimg img,
body.soyunma-page .model-detail .model-shot img,
body.soyunma-page .tezgah-photo-slot img,
body.soyunma-page .tile img {
  object-fit: contain;
  padding: clamp(10px, 1.6vw, 22px);
  box-sizing: border-box;
}
body.soyunma-page .vcard:hover .vimg img,
body.soyunma-page .shot:hover .img img,
body.soyunma-page .tile:hover img {
  transform: none;
}
body.mahal-page .pagehero .shot .img,
body.mahal-page .model-detail .model-shot .img,
body.mahal-page .tezgah-photo-slot {
  background: var(--bg-2);
}
body.mahal-page .pagehero .shot .img img,
body.mahal-page .model-detail .model-shot img,
body.mahal-page .tezgah-photo-slot img {
  object-fit: contain;
  padding: clamp(10px, 1.6vw, 22px);
  box-sizing: border-box;
}
body.mahal-page .shot:hover .img img {
  transform: none;
}
.vcard .vbody {
  padding: 24px 24px 26px;
}
.vcard .ser {
  font-family: "DM Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper-ink);
}
.vcard h3 {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 600;
  font-size: 25px;
  letter-spacing: -0.01em;
  margin: 8px 0 10px;
}
.vcard > .vbody > p {
  font-size: 14px;
  color: var(--ink-72);
  line-height: 1.55;
}
.vcard .detail-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--copper-ink);
}
.vcard .detail-link::after {
  content: "→";
  transition: transform 0.25s ease;
}
.vcard:hover .detail-link::after {
  transform: translateX(4px);
}
.vcard dl {
  margin-top: 18px;
  border-top: 1px solid var(--line);
}
.vcard dl div {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}
.vcard dl div:last-child {
  border-bottom: 0;
}
.vcard dt {
  font-family: "DM Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-46);
  padding-top: 2px;
}
.vcard dd {
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.45;
}
.vcard .codechips {
  margin-top: 16px;
}

/* ---------- model detail pages ---------- */
.model-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}
.model-detail .model-shot {
  border: 1px solid var(--line);
  background: var(--paper);
}
.model-detail .model-shot .img {
  aspect-ratio: 16/10;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.model-detail .model-shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.model-detail .model-shot img[src*="kalyoncu-assets/aksesuar"] {
  object-fit: contain;
  padding: clamp(18px, 3vw, 34px);
  background: var(--bg-2);
}
.pagehero .shot .img.accessory-placeholder img,
.model-detail .model-shot .accessory-placeholder img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  padding: clamp(22px, 3vw, 42px);
  box-sizing: border-box;
}
.pagehero .shot .img.accessory-placeholder,
.model-detail .model-shot .accessory-placeholder {
  min-height: 0;
  border: 0;
}
.access-overview-visual {
  position: relative;
  margin: clamp(18px, 2.4vw, 28px) 0 0;
  border: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  max-width: 520px;
}
.access-overview-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-top: 5px solid var(--edge);
}
.access-overview-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.model-side {
  position: sticky;
  top: 96px;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: clamp(22px, 2.5vw, 30px);
}
.model-code {
  display: inline-flex;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper-ink);
  border-bottom: 2px solid var(--copper);
  padding-bottom: 6px;
}
.model-side h3 {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 34px;
  line-height: 1;
  font-weight: 600;
  margin: 16px 0 18px;
}
.model-meta {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  margin: 18px 0 24px;
}
.model-meta div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.model-meta dt {
  font-family: "DM Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-46);
}
.model-meta dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
}
.model-body {
  padding: clamp(22px, 2.5vw, 30px);
}
.model-body h3 {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 650;
  letter-spacing: 0;
  margin: 26px 0 14px;
}
.model-body h3:first-child {
  margin-top: 0;
}
.model-body p {
  color: var(--ink-72);
  line-height: 1.7;
}
.model-body > p {
  max-width: 74ch;
}
.model-body > p + p {
  margin-top: 12px;
}
.model-body dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.model-body dl div {
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    color-mix(in oklab, var(--paper), var(--tint) 34%),
    var(--paper)
  );
  padding: 16px 16px 17px;
  min-height: 118px;
}
.model-body dl dt {
  font-family: "DM Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper-ink);
  margin-bottom: 9px;
}
.model-body dl dd {
  color: var(--ink-72);
  font-size: 13.5px;
  line-height: 1.55;
}
.model-body ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
  margin-top: 14px;
}
.model-body li {
  position: relative;
  min-height: 48px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 12px 14px 12px 34px;
  color: var(--ink-72);
  font-size: 13.5px;
  line-height: 1.45;
}
.model-body li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  width: 7px;
  height: 7px;
  transform: translateY(-50%) rotate(45deg);
  background: var(--copper-ink);
}
.model-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.model-feature {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 20px;
}
.model-feature .k {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper-ink);
}
.model-feature h3 {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin: 10px 0 8px;
}
.model-feature p {
  color: var(--ink-72);
  font-size: 13.5px;
  line-height: 1.55;
}
.reference-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.reference-list .model-feature {
  min-height: 0;
}
.reference-list ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 16px;
}
.reference-list li {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.reference-list li b {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}
.reference-list li span {
  display: block;
  color: var(--ink-64);
  font-size: 13px;
  margin-top: 4px;
}

/* ---------- list rows (series) ---------- */
.rowlist {
  display: flex;
  flex-direction: column;
}
.lrow {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: start;
  padding: clamp(20px, 2.4vw, 26px) 4px;
  border-bottom: 1px solid var(--line);
  transition:
    padding-left 0.35s cubic-bezier(0.2, 0.7, 0.2, 1),
    background 0.35s ease;
}
.lrow:first-child {
  border-top: 1px solid var(--line);
}
.lrow:hover {
  background: var(--tint);
  padding-left: 14px;
}
.lrow h3 {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: -0.01em;
}
.lrow p {
  font-size: 14px;
  color: var(--ink-72);
  margin-top: 5px;
  max-width: 46ch;
}
.lrow .dim {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  color: var(--ink-46);
  text-align: right;
  white-space: nowrap;
  line-height: 1.7;
}
.lrow .codechips {
  margin-top: 11px;
}

/* ---------- process ---------- */
.proc {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.step {
  background: var(--bg);
  padding: clamp(24px, 2.6vw, 32px) clamp(20px, 2vw, 26px);
  position: relative;
  min-height: 170px;
  transition: background 0.35s ease;
}
.step:hover {
  background: var(--paper);
}
.step .no {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  color: var(--copper-ink);
  letter-spacing: 0.1em;
}
.step h3 {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.005em;
  margin: 18px 0 9px;
  line-height: 1.1;
}
.step p {
  font-size: 13.5px;
  color: var(--ink-72);
  line-height: 1.5;
}
.step .bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 3px;
  width: 0;
  background: var(--copper);
  transition: width 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.step:hover .bar {
  width: 100%;
}

/* ---------- sectors ---------- */
.sectors .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 4.5vw, 60px);
  align-items: center;
}
.sec-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 8px;
}
.sec-list span {
  font-family: "Archivo", sans-serif;
  font-size: 14.5px;
  padding: 10px 16px;
  border: 1px solid var(--line-2);
  color: var(--ink);
  transition:
    border-color 0.3s,
    color 0.3s,
    background 0.3s,
    transform 0.3s;
}
.sec-list span:hover {
  border-color: var(--copper);
  color: var(--copper-ink);
  background: var(--tint);
  transform: translateY(-2px);
}
.sectors-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.sectors-visual .shot {
  box-shadow: 0 24px 50px -34px rgba(0, 0, 0, 0.5);
}
.sectors-visual .shot .img {
  aspect-ratio: 1/1;
}
.sectors-visual .shot:nth-child(2) {
  margin-top: 34px;
}

/* ---------- values ---------- */
.val-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.val {
  background: var(--bg);
  padding: clamp(24px, 2.6vw, 32px) clamp(18px, 1.8vw, 24px);
}
.val .vn {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  color: var(--copper-ink);
}
.val h3 {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 600;
  font-size: 19px;
  margin: 16px 0 9px;
  letter-spacing: -0.005em;
}
.val p {
  font-size: 13px;
  color: var(--ink-72);
  line-height: 1.5;
}
.mv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-top: 0;
}
.mv .panel {
  background: var(--bg-2);
  padding: clamp(28px, 3.4vw, 46px);
}
.mv .panel .k {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper-ink);
}
.mv .panel h3 {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 600;
  font-size: clamp(21px, 2.4vw, 28px);
  margin: 12px 0 12px;
  letter-spacing: -0.01em;
}
.mv .panel p {
  font-size: 15px;
  color: var(--ink-72);
  line-height: 1.6;
  max-width: 46ch;
}

/* ---------- stats ---------- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.stat {
  background: var(--bg);
  padding: clamp(28px, 3.4vw, 44px) clamp(20px, 2.4vw, 30px);
}
.stat .num {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 600;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.stat .num .u {
  color: var(--ink);
}
.stat .lab {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-46);
  margin-top: 15px;
}

/* ---------- cross-nav (other products) ---------- */
.xnav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.xnav a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  transition:
    border-color 0.35s ease,
    padding-left 0.35s cubic-bezier(0.2, 0.7, 0.2, 1),
    background 0.35s ease;
}
.xnav a:hover {
  border-color: var(--copper);
  padding-left: 30px;
  background: var(--bg-2);
}
.xnav .xn-k {
  font-family: "DM Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--copper-ink);
  display: block;
  margin-bottom: 6px;
}
.xnav .xn-t {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.xnav .ar {
  color: var(--copper);
  transition: transform 0.3s ease;
}
.xnav a:hover .ar {
  transform: translateX(4px);
}

/* ---------- footer ---------- */
.site-footer {
  position: relative;
  z-index: 1;
  background: var(--bg-2);
  color: var(--ink);
  margin-top: clamp(60px, 8vw, 118px);
  border-top: 1px solid var(--line);
}
.fcta {
  padding: clamp(56px, 8vw, 110px) 0 clamp(40px, 5vw, 62px);
  border-bottom: 1px solid var(--line);
}
.fcta .lead2 {
  display: none;
} /* eyebrow benzeri kaldırıldı */
.fcta h2 {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 6vw, 74px);
  line-height: 1;
  letter-spacing: -0.01em;
  max-width: 16ch;
  margin-bottom: clamp(28px, 3.4vw, 40px);
}
.fcta h2 .ac {
  color: var(--ink);
}
.fcta .row {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.fcta .ftbtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: "Archivo", sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 24px;
  background: var(--copper);
  color: var(--on-copper);
  border: 1px solid var(--copper);
  transition:
    background 0.3s,
    color 0.3s;
}
.fcta .ftbtn:hover {
  background: transparent;
  color: var(--copper-ink);
}
.fcta .mail {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: -0.01em;
  border-bottom: 2px solid var(--line-2);
  padding-bottom: 4px;
  transition:
    color 0.3s,
    border-color 0.3s;
}
.fcta .mail:hover {
  color: var(--copper-ink);
  border-color: var(--copper);
}
/* ---------- contact hub (footer fcta) ---------- */
.fcta-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}
.fcta-info h2 {
  margin-bottom: clamp(16px, 2vw, 22px);
}
.fcta-sub {
  font-size: 16px;
  color: var(--ink-72);
  max-width: 42ch;
  margin-bottom: clamp(24px, 3vw, 32px);
  line-height: 1.6;
}
.fcontact {
  list-style: none;
}
.fcontact li {
  padding: 13px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: baseline;
}
.fcontact li:last-child {
  border-bottom: 1px solid var(--line);
}
.fcontact .lk {
  font-family: "DM Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper-ink);
}
.fcontact .lv {
  font-size: 15px;
  color: var(--ink);
}
.fcontact a.lv {
  transition: color 0.3s ease;
}
.fcontact a.lv:hover {
  color: var(--copper-ink);
}

.contact-mini {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.contact-mini a,
.contact-dock__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "DM Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-mini a {
  min-height: 42px;
  padding: 9px 8px;
  border: 1px solid var(--line-2);
  color: var(--ink);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  transition:
    border-color 0.3s ease,
    color 0.3s ease,
    background 0.3s ease;
}

.contact-mini a:hover {
  border-color: var(--copper);
  color: var(--copper-ink);
  background: var(--tint);
}

.contact-mini svg,
.contact-dock svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-mini a:first-child svg,
.contact-dock__item--wa svg {
  fill: currentColor;
  stroke: none;
}

.product-contact-actions {
  margin-top: 20px;
}

.product-contact-actions__quote {
  width: 100%;
  justify-content: center;
}

.contact-dock {
  position: fixed;
  right: clamp(14px, 2vw, 24px);
  bottom: clamp(14px, 2vw, 24px);
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.contact-dock__item {
  min-width: 132px;
  min-height: 44px;
  padding: 11px 13px;
  color: #f5f0e6;
  background: rgba(24, 22, 19, 0.88);
  border: 1px solid rgba(245, 240, 230, 0.18);
  box-shadow: 0 18px 42px -28px rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: auto;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}

.contact-dock__item:hover {
  transform: translateX(-3px);
  background: #201c17;
  border-color: var(--copper);
  color: #e68f58;
}

.contact-dock__item--wa {
  background: #1f7a4d;
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.contact-dock__item--wa:hover {
  background: #16633d;
  color: #fff;
}

.fcta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.fcta-form .full {
  grid-column: 1 / -1;
}
.fcta-form label {
  display: block;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-46);
  margin-bottom: 7px;
}
.fcta-form input,
.fcta-form select,
.fcta-form textarea {
  width: 100%;
  font-family: "Archivo", sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line-2);
  padding: 12px 14px;
  border-radius: 0;
  transition:
    border-color 0.3s ease,
    background 0.3s ease;
}
.fcta-form input:focus,
.fcta-form select:focus,
.fcta-form textarea:focus {
  outline: none;
  border-color: var(--copper);
}
.fcta-form textarea {
  min-height: 92px;
  resize: vertical;
}
.fform-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: "Archivo", sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 24px;
  background: var(--copper);
  color: var(--on-copper);
  border: 1px solid var(--copper);
  transition:
    background 0.3s ease,
    color 0.3s ease;
}
.fform-btn:hover {
  background: transparent;
  color: var(--copper-ink);
}
.fform-note {
  font-family: "DM Mono", monospace;
  font-size: 12px;
  color: var(--copper-ink);
  margin-top: 4px;
}
.froutes {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  padding: clamp(40px, 5vw, 62px) 0;
}
.froute h4 {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 18px;
}
.froute p,
.froute a {
  font-size: 14.5px;
  color: var(--ink-72);
  line-height: 1.95;
  display: block;
}
.froute a:hover {
  color: var(--copper-ink);
}
.flogo {
  display: inline-block;
  margin-bottom: 20px;
} /* şeffaf — krem kutu kaldırıldı */
.flogo img {
  height: 58px;
  width: auto;
  display: block;
}
html.espresso .flogo img {
  content: url("kalyoncu-assets/logo-footer-dark.png");
} /* koyu temada krem+bakır varyant */
.froute p.fabout {
  font-size: 14.5px;
  color: var(--ink-72);
  line-height: 1.72;
  max-width: 33ch;
  margin-top: 2px;
} /* .froute p (1.95) override eder; spesifiklik artırıldı */
.fbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px 28px;
  flex-wrap: wrap;
  padding: clamp(26px, 3vw, 40px) 0 clamp(34px, 4vw, 50px);
  border-top: 1px solid var(--line);
}
.fbar .nm {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 700;
  font-size: clamp(19px, 1.9vw, 24px);
  letter-spacing: 0.16em;
  color: var(--ink);
  line-height: 1;
}
.fbar .copy {
  font-family: "DM Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-46);
}
.fbar .certs {
  display: none;
}
.fbar .legal {
  flex-basis: 100%;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.03em;
  color: var(--ink-46);
  margin-top: 6px;
  line-height: 1.55;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ============================================================
   KALYONCU — Lightbox Styles
   ============================================================ */
.lb {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lb.open {
  opacity: 1;
  pointer-events: auto;
}

/* Arka Plan Karartısı */
.lb-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

/* Görsel Sahnesi */
.lb-stage {
  position: relative;
  max-width: 85%;
  max-height: 75vh;
  z-index: 2;
}

.lb-frame img {
  display: block;
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
}

/* Butonlar (Kapat, Önceki, Sonraki) */
.lb-btn {
  position: absolute;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  padding: 10px;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-btn:hover {
  opacity: 0.7;
}

.lb-close {
  top: 20px;
  right: 20px;
}
.lb-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.lb-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* Sayaç ve Başlıklar */
.lb-counter {
  position: absolute;
  top: 25px;
  left: 25px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-family: sans-serif;
  letter-spacing: 1px;
}

.lb-cap {
  position: absolute !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  bottom: 30px !important;
  width: 100% !important;
  max-width: 900px !important;
  color: #fff !important;
  text-align: center !important;
  z-index: 10 !important;
  font-family: sans-serif !important;
  font-size: 14px !important;
  pointer-events: none !important;
  display: block !important;
  white-space: normal !important;
  letter-spacing: normal !important;
  padding: 0 20px;
  box-sizing: border-box;
}

.lb-cap-i {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 5px;
}

/* Çizim kutularına tıklama imleci ekleyelim */
[data-lb] {
  cursor: pointer;
}

/* ---------- reveal motion ---------- */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
  html.js .fx {
    opacity: 0;
    transform: translateY(24px);
  }
  html.js .fx.in {
    opacity: 1;
    transform: none;
    transition:
      opacity 0.85s cubic-bezier(0.2, 0.7, 0.2, 1),
      transform 0.85s cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  html.js .hero-visual .shot,
  html.js .pagehero .visual .shot {
    clip-path: inset(0 0 100% 0);
  }
  html.js .hero-visual.in .shot,
  html.js .pagehero .visual.in .shot {
    animation: revealDown 1s cubic-bezier(0.4, 0, 0.2, 1) 0.15s forwards;
  }
  @keyframes revealDown {
    to {
      clip-path: inset(0 0 0 0);
    }
  }
  html.js .callout,
  html.js .swatch {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
  }
  html.js .hero-visual.in .callout,
  html.js .hero-visual.in .swatch {
    animation: popIn 0.55s cubic-bezier(0.2, 1.4, 0.4, 1) forwards;
  }
  html.js .hero-visual.in .co-top {
    animation-delay: 0.7s;
  }
  html.js .hero-visual.in .co-right {
    animation-delay: 0.82s;
  }
  html.js .hero-visual.in .co-dim {
    animation-delay: 0.94s;
  }
  html.js .hero-visual.in .swatch {
    animation-delay: 1s;
  }
  @keyframes popIn {
    to {
      opacity: 1;
      transform: none;
    }
  }
  html.js .xsec .core i {
    transform: scaleX(0);
    transform-origin: left;
  }
  html.js .mat-visual.in .xsec .core i {
    animation: growX 0.5s cubic-bezier(0.3, 0, 0.2, 1) forwards;
  }
  html.js .mat-visual.in .xsec .core i:nth-child(1) {
    animation-delay: 0.3s;
  }
  html.js .mat-visual.in .xsec .core i:nth-child(2) {
    animation-delay: 0.36s;
  }
  html.js .mat-visual.in .xsec .core i:nth-child(3) {
    animation-delay: 0.42s;
  }
  html.js .mat-visual.in .xsec .core i:nth-child(4) {
    animation-delay: 0.48s;
  }
  html.js .mat-visual.in .xsec .core i:nth-child(5) {
    animation-delay: 0.54s;
  }
  html.js .mat-visual.in .xsec .core i:nth-child(6) {
    animation-delay: 0.6s;
  }
  @keyframes growX {
    to {
      transform: scaleX(1);
    }
  }
}

/* ============================================================
   HERO SLIDER (full-width image carousel)
   ============================================================ */
.hero-slider {
  position: relative;
  width: 100%;
  min-height: clamp(440px, 64vh, 720px);
  overflow: hidden;
  background: #11100e;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 8, 5, 0.38) 0%,
    rgba(10, 8, 5, 0.12) 30%,
    rgba(10, 8, 5, 0.78) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.hero-slide-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(100px, 13vh, 170px) clamp(20px, 5vw, 64px)
    clamp(64px, 8vh, 96px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* height (not min-height) pins content to the slide's real height so any
     overflow on short viewports spills upward — keeping the CTAs visible
     instead of being clipped by .hero-slider{overflow:hidden}. */
  height: 100%;
}
.hero-slide-eyebrow {
  font-family: "DM Mono", monospace;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ce6a38;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.hero-slide-eyebrow::before {
  content: "";
  width: 20px;
  height: 1px;
  background: #ce6a38;
}
.hero-slide-title {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 5.8vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.018em;
  color: #f5f0e6;
  max-width: 22ch;
  margin-bottom: clamp(18px, 2vw, 28px);
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}
.hero-slide-sub {
  font-size: clamp(15px, 1.5vw, 19px);
  color: rgba(245, 240, 230, 0.84);
  max-width: 52ch;
  margin-bottom: clamp(24px, 3vw, 36px);
  line-height: 1.6;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.hero-slide-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-slide-cta .btn {
  border-color: #ce6a38;
  background: #ce6a38;
  color: #1c1009;
  font-size: 13.5px;
  padding: 14px 24px;
}
.hero-slide-cta .btn:hover {
  background: rgba(206, 106, 56, 0.14);
  color: #f5f0e6;
}
.hero-slide-cta .btn.ghost {
  background: transparent;
  border-color: rgba(245, 240, 230, 0.42);
  color: #f5f0e6;
}
.hero-slide-cta .btn.ghost:hover {
  border-color: #ce6a38;
  color: #e68f58;
  background: transparent;
}

/* slider navigation */
.hero-dots {
  position: absolute;
  bottom: clamp(20px, 2.6vw, 32px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid rgba(245, 240, 230, 0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.hero-dot:hover {
  border-color: #ce6a38;
}
.hero-dot.active {
  background: #ce6a38;
  border-color: #ce6a38;
  transform: scale(1.15);
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  cursor: pointer;
  background: rgba(20, 15, 10, 0.48);
  border: 1px solid rgba(245, 240, 230, 0.28);
  color: #f5f0e6;
  transition: all 0.3s ease;
}
.hero-arrow:hover {
  background: #ce6a38;
  border-color: #ce6a38;
  color: #1c1009;
}
.hero-prev {
  left: clamp(12px, 2vw, 28px);
}
.hero-next {
  right: clamp(12px, 2vw, 28px);
}
.hero-slide-counter {
  position: absolute;
  top: clamp(90px, 13vh, 130px);
  right: clamp(20px, 5vw, 64px);
  z-index: 10;
  font-family: "DM Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: rgba(245, 240, 230, 0.55);
}

/* ---------- company intro ---------- */
.company-intro .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.company-intro-text .sec-h {
  margin: 14px 0 18px;
  max-width: 18ch;
}
.company-intro-visual .shot .img {
  aspect-ratio: 4 / 3;
}

/* ---------- featured products ---------- */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1),
    border-color 0.4s ease;
}
.feat-card:hover {
  transform: translateY(-5px);
  border-color: var(--copper);
}
.feat-card .fimg {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  border-bottom: 1px solid var(--line);
}
.feat-card .fimg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--edge);
  z-index: 2;
}
.feat-card .fimg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.feat-card:hover .fimg img {
  transform: scale(1.06);
}
.feat-card .fbody {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.feat-card .fc {
  font-family: "DM Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--copper-ink);
  margin-bottom: 10px;
}
.feat-card h3 {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.08;
  margin-bottom: 8px;
}
.feat-card p {
  font-size: 14px;
  color: var(--ink-72);
  line-height: 1.5;
  margin-bottom: 14px;
  flex: 1;
}
.feat-card .flink {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--copper-ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.feat-card .flink::after {
  content: "→";
  transition: transform 0.3s ease;
}
.feat-card:hover .flink::after {
  transform: translateX(4px);
}

/* ---------- reference logos ---------- */
.ref-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.ref-logo {
  position: relative;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.18),
      rgba(255, 255, 255, 0.02)
    ),
    #f5f0e6;
  border: 1px solid rgba(22, 21, 19, 0.14);
  padding: clamp(28px, 3.5vw, 44px) clamp(18px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  transition:
    border-color 0.35s ease,
    transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.35s ease;
}
.ref-logo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
  z-index: 3;
}
.ref-logo::after {
  content: "";
  position: absolute;
  inset: 12px;
  background: color-mix(in srgb, #f8f4ec 78%, transparent);
  border: 1px solid rgba(22, 21, 19, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 0;
}
.ref-logo:hover {
  border-color: var(--copper);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -22px rgba(20, 12, 6, 0.32);
}
.ref-logo:hover::before {
  transform: scaleX(1);
}
.ref-logo img {
  max-height: 58px;
  width: auto;
  max-width: 88%;
  object-fit: contain;
  opacity: 0.96;
  transition: opacity 0.35s ease;
  color: var(--ink);
  filter: none;
  position: relative;
  z-index: 1;
}
.ref-logo:hover img {
  opacity: 1;
}
.ref-logo .rl-mono {
  width: clamp(48px, 5vw, 62px);
  height: clamp(48px, 5vw, 62px);
  display: grid;
  place-items: center;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  color: #161513;
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease;
}
.ref-logo .rl-mono::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--edge);
}
.ref-logo:hover .rl-mono {
  background: rgba(206, 106, 56, 0.12);
  border-color: var(--copper);
  color: #161513;
}
.ref-logo .rl-name {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 600;
  font-size: clamp(13px, 1.05vw, 15px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #161513;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}
.ref-logo .rl-type {
  font-family: "DM Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(22, 21, 19, 0.66);
  position: relative;
  z-index: 1;
}
.ref-logo .rl-mark {
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--copper);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #9c4317;
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
}

.reference-brand-shot {
  background:
    linear-gradient(135deg, rgba(206, 106, 56, 0.18), transparent 42%), #181613;
}

.reference-brand-shot .img {
  min-height: clamp(300px, 32vw, 420px);
  display: grid;
  place-items: center;
  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(245, 240, 230, 0.14),
      transparent 54%
    ),
    #181613;
  padding: clamp(38px, 6vw, 78px);
}

.reference-brand-shot .img img {
  width: min(78%, 520px);
  height: auto;
  max-height: 230px;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.32));
}

html.espresso .reference-brand-shot .img img {
  content: url("kalyoncu-assets/logo-footer-dark.png");
}

@media (max-width: 920px) {
  .ref-logos {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 620px) {
  .ref-logos {
    grid-template-columns: repeat(2, 1fr);
  }
  .ref-logo {
    padding: 24px 14px;
  }
  .ref-logo img {
    max-height: 42px;
  }
  .ref-logo .rl-mono {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }
}

#referanslar {
  background:
    linear-gradient(180deg, transparent 0%, rgba(206, 106, 56, 0.05) 100%),
    var(--bg);
}

#referanslar .home-reference-showcase {
  margin-bottom: 0;
}

#referanslar .ref-logo {
  min-height: 190px;
}

/* ---------- references ---------- */
.home-reference-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.home-reference-showcase .sec-head {
  margin-bottom: clamp(18px, 2.4vw, 26px);
}

.home-reference-showcase .lead + .lead {
  margin-top: 16px;
}

.home-reference-image {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-2);
  background: var(--bg-2);
  box-shadow: 0 26px 58px -42px rgba(0, 0, 0, 0.58);
  cursor: zoom-in;
}

.home-reference-image::before,
.home-reference-image::after {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.home-reference-image::before {
  inset: 0;
  background:
    linear-gradient(180deg, transparent 68%, rgba(0, 0, 0, 0.18)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.12), transparent 32%);
}

.home-reference-image::after {
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  background: var(--edge);
}

.home-reference-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16/10.5;
  height: auto;
  object-fit: contain;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.home-reference-image:hover img {
  transform: scale(1.035);
}

.refs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.ref-item {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(26px, 3vw, 40px) 18px;
  text-align: center;
  transition:
    border-color 0.35s ease,
    transform 0.35s ease,
    background 0.35s ease;
}
.ref-item:hover {
  border-color: var(--copper);
  transform: translateY(-3px);
  background: var(--tint);
}
.ref-item .ref-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border: 1.5px solid var(--copper);
  border-radius: 50%;
  color: var(--copper-ink);
}
.ref-item .ref-name {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.1;
}
.ref-item .ref-type {
  font-family: "DM Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-46);
  margin-top: 6px;
}

/* ---------- project gallery ---------- */
.proj-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.proj-gallery .tile {
  aspect-ratio: 4/3;
}

.completed-projects {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.completed-project-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #181613;
  border: 1px solid rgba(245, 240, 230, 0.16);
  transition:
    border-color 0.35s ease,
    transform 0.35s ease,
    background 0.35s ease;
}

.completed-project-card:hover {
  border-color: var(--copper);
  background: #201c17;
  transform: translateY(-4px);
}

.completed-project-media {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16/12.5;
  overflow: hidden;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  cursor: zoom-in;
}

.completed-project-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.28)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.1), transparent 34%);
  pointer-events: none;
}

.completed-project-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(4px, 0.8vw, 10px);
  box-sizing: border-box;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.completed-project-card:hover .completed-project-media img {
  transform: scale(1.025);
}

.completed-project-gallery-item {
  display: none;
}

.completed-project-count {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 3;
  padding: 7px 10px;
  background: rgba(24, 22, 19, 0.76);
  border: 1px solid rgba(245, 240, 230, 0.24);
  color: #f5f0e6;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.completed-project-media .zoom {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 3;
}

.completed-project-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(20px, 2.4vw, 28px);
  background:
    linear-gradient(135deg, rgba(206, 106, 56, 0.12), transparent 44%), #181613;
}

.completed-project-logo {
  width: min(190px, 82%);
  height: 62px;
  object-fit: contain;
  object-position: center;
  color: #161513;
  padding: 10px 14px;
  background: color-mix(in srgb, #f8f4ec 82%, transparent);
  border: 1px solid rgba(22, 21, 19, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-sizing: border-box;
}

.completed-project-type {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e68f58;
}

.completed-project-card h3 {
  margin: 0;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(24px, 2.4vw, 31px);
  line-height: 1;
  color: #e68f58;
}

.completed-project-card p {
  margin: 0;
  color: rgba(245, 240, 230, 0.74);
  font-size: 14px;
  line-height: 1.58;
}

/* ============================================================
   Responsive — new sections
   ============================================================ */
@media (max-width: 1080px) {
  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .refs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .home-reference-showcase {
    grid-template-columns: 1fr;
  }
  .proj-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .completed-projects {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 920px) {
  .company-intro .wrap {
    grid-template-columns: 1fr;
  }
  .company-intro-visual {
    max-width: 560px;
  }
  .feat-grid {
    grid-template-columns: 1fr;
  }
  .refs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-slider {
    height: clamp(600px, calc(100vh - 72px), 720px);
    height: clamp(600px, calc(100svh - 72px), 720px);
    min-height: 0;
  }
  .hero-slide-content {
    min-height: 100%;
    padding: clamp(74px, 12vh, 104px) clamp(22px, 6vw, 52px)
      clamp(84px, 12vh, 116px);
    justify-content: center;
  }
  .hero-slide-title {
    width: min(100%, 12ch);
    min-height: 2.95em;
    display: flex;
    align-items: flex-start;
    font-size: clamp(36px, 9vw, 54px);
    line-height: 0.98;
    margin-bottom: 16px;
  }
  .hero-slide-sub {
    max-width: 38ch;
    min-height: 5.2em;
    font-size: clamp(14px, 3.4vw, 16px);
    line-height: 1.45;
    margin-bottom: 22px;
  }
  .hero-slide-content {
    justify-content: center;
    align-items: flex-start;
  }
  .hero-arrow {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 620px) {
  .refs-grid {
    grid-template-columns: 1fr;
  }
  .hero-slider {
    height: 640px;
  }
  .hero-slide::after {
    background:
      linear-gradient(90deg, rgba(10, 8, 5, 0.78), rgba(10, 8, 5, 0.28) 68%),
      linear-gradient(180deg, rgba(10, 8, 5, 0.36), rgba(10, 8, 5, 0.82));
  }
  .hero-slide-bg {
    object-position: 58% center;
  }
  .hero-slide-content {
    padding: 72px 22px 96px;
  }
  .hero-slide-eyebrow {
    min-height: 18px;
    margin-bottom: 13px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }
  .hero-slide-title {
    width: min(100%, 11.5ch);
    min-height: 3em;
    font-size: clamp(31px, 10vw, 39px);
  }
  .hero-slide-sub {
    min-height: 6.4em;
    max-width: 30ch;
  }
  .hero-dots {
    bottom: 66px;
  }
  .hero-arrow {
    display: none;
  }
  .home-reference-image img {
    aspect-ratio: 4/3;
  }
  .reference-list {
    grid-template-columns: 1fr;
  }
  .proj-gallery {
    grid-template-columns: 1fr;
  }
  .hero-slide-cta .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-slide:first-child .hero-slide-cta .btn:nth-child(3) {
    display: none;
  }
  .hero-slide-cta {
    width: 100%;
  }
  .hero-slide-cta .btn,
  #urunler .prod .spec,
  #referanslar .btn,
  .fcta .btn,
  .fform-btn {
    width: 100%;
    min-height: 46px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  #urunler .prod .spec {
    border: 1px solid var(--copper);
    background: var(--copper);
    color: var(--on-copper);
    font-family: "Archivo", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
  }
  #urunler .prod .spec .ar {
    width: auto;
    height: auto;
    margin-left: 8px;
    border: 0;
    border-radius: 0;
    color: inherit;
    font-size: 15px;
  }
  .hero-slide-counter {
    display: none;
  }
}

/* ---- navbar: medium-large screens (1101px–1280px) ---- */
/* Laptop ekranlarda navbar öğelerinin kesilmesini önle */
@media (min-width: 1101px) and (max-width: 1280px) {
  .main-nav {
    gap: 16px;
  }
  .main-nav a,
  .nav-dd-t {
    font-size: 11.5px;
    letter-spacing: 0.01em;
  }
  .brand-logo {
    height: 58px;
  }
  .site-header .wrap {
    gap: 12px;
  }
  .h-actions {
    gap: 10px;
  }
  .h-actions .btn {
    padding: 0 14px;
    font-size: 12.5px;
  }
  .nav-dd-panel {
    width: min(860px, 90vw);
  }
}

/* ---- navbar: medium-large screens (1281px–1399px) ---- */
@media (min-width: 1281px) and (max-width: 1399px) {
  .main-nav {
    gap: 22px;
  }
  .main-nav a,
  .nav-dd-t {
    font-size: 12.5px;
  }
  .nav-dd-panel {
    width: min(900px, 90vw);
  }
}

/* ---- navbar: mobile breakpoint at 767px (tablet/laptop'ta desktop navbar korunsun) ---- */
@media (max-width: 767px) {
  /* Mobil cihazlarda backdrop-filter'ı kaldır (containing block sorununu önler) */
  .site-header {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: var(--bg) !important;
  }
  /* Hamburger butonu — her zaman görünür */
  .menu-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  /* Mobil nav — .wrap (position:relative) içinde absolute ile aşağı açılır */
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 0 0 20px;
    display: none !important;
    z-index: 9999;
    max-height: none;
    overflow-x: hidden;
    overflow-y: visible;
    overscroll-behavior: contain;
    box-shadow: 0 24px 60px -42px rgba(0, 0, 0, 0.62);
  }
  /* Açık nav — kesinlikle görünür */
  .main-nav.open {
    display: flex !important;
  }
  /* h-actions her zaman görünür */
  .h-actions {
    display: flex !important;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }
  /* Teklif Al butonu küçük ekranda gizle */
  .h-actions > .btn {
    display: none !important;
  }
  .main-nav > a {
    padding: 13px clamp(20px, 5vw, 64px);
    color: var(--ink);
    background: var(--bg-2);
    border-bottom: 1px solid var(--line);
  }
  .main-nav > a::after {
    display: none;
  }
  .nav-dd::after {
    display: none;
  }
  .nav-dd {
    position: static;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid var(--line);
    overflow: visible;
  }
  .nav-dd-t {
    width: 100%;
    padding: 13px clamp(20px, 5vw, 64px);
    justify-content: space-between;
    background: var(--bg-2);
    font-size: 13px;
    color: var(--ink);
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .nav-dd-t::after {
    display: none;
  }
  .nav-dd:hover .chev,
  .nav-dd.open .chev {
    transform: rotate(180deg);
  }
  .nav-dd-panel {
    position: static;
    width: 100%;
    max-width: 100%;
    max-height: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: 0;
    background: var(--bg);
    display: none;
    padding: 0;
    color: var(--ink);
    overflow: visible;
  }
  .nav-dd-panel::before,
  .nav-dd-panel::after {
    display: none;
  }
  .nav-dd.open .nav-dd-panel {
    display: block;
  }
  .dd-mega {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
  .dd-col {
    padding: 0;
  }
  .dd-col:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .dd-gh {
    padding: 12px clamp(20px, 5vw, 64px);
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    color: var(--ink);
    background: color-mix(in srgb, var(--paper) 82%, transparent);
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .dd-gh:hover {
    padding-left: clamp(28px, 6vw, 72px);
  }
  .dd-sub {
    display: block;
    padding: 9px clamp(20px, 5vw, 64px) 9px clamp(36px, 8vw, 80px);
    border-bottom: 1px solid var(--line);
    font-size: 12px;
    color: var(--ink-72);
    background: var(--bg);
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .dd-sub:hover {
    padding-left: clamp(42px, 9vw, 86px);
  }
  .dd-sub.dd-label {
    padding-left: clamp(36px, 8vw, 80px);
  }
  .dd-sub.dd-label:hover {
    padding-left: clamp(36px, 8vw, 80px);
  }
  .dd-sub.dd-child {
    padding-left: clamp(50px, 11vw, 96px);
  }
  .dd-sub.dd-child:hover {
    padding-left: clamp(56px, 12vw, 104px);
  }
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .prod.wide,
  .prod.half,
  .prod.third {
    grid-column: span 1;
  }
  .prod.wide .pimg {
    aspect-ratio: 16/11;
  }
  .vgrid {
    grid-template-columns: 1fr;
  }
  .val-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .froutes {
    grid-template-columns: 1fr 1fr;
  }
  .gal.four {
    grid-template-columns: repeat(3, 1fr);
  }
  .accboard {
    grid-template-columns: repeat(3, 1fr);
  }
  .xnav {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 920px) {
  .access-hero {
    min-height: auto;
  }
  .access-hero__wrap {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 54px;
    padding-bottom: 34px;
  }
  .access-hero__text {
    max-width: 460px;
    padding-top: 0;
  }
  .access-hero__stage {
    height: clamp(360px, 72vw, 520px);
    min-height: 340px;
  }
  .access-hero__wall {
    right: 1%;
    width: 40%;
  }
  .hero .wrap,
  .mat .wrap,
  .sectors .wrap,
  .pagehero .wrap,
  .model-detail,
  .two-col,
  .two-col.lean {
    grid-template-columns: 1fr;
  }
  .model-side {
    position: static;
  }
  .model-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .model-body dl,
  .model-body ul {
    grid-template-columns: 1fr;
  }
  .model-body dl div {
    min-height: 0;
  }
  .hero-visual,
  .pagehero .visual {
    max-width: 560px;
  }
  .proc {
    grid-template-columns: repeat(2, 1fr);
  }
  .mv {
    grid-template-columns: 1fr;
  }
  .gal,
  .gal.four {
    grid-template-columns: repeat(2, 1fr);
  }
  .drawing-board {
    grid-template-columns: 1fr;
  }
  .accboard {
    grid-template-columns: repeat(2, 1fr);
  }
  .vgrid.two {
    grid-template-columns: 1fr;
  }
  .access-overview-visual {
    max-width: 100%;
  }
  .fcta-grid {
    grid-template-columns: 1fr;
    gap: clamp(28px, 5vw, 40px);
  }
}
@media (max-width: 620px) {
  .contact-dock {
    left: 10px;
    right: 10px;
    bottom: 10px;
    flex-direction: row;
    justify-content: center;
  }
  .contact-dock__item {
    min-width: 0;
    flex: 1;
    min-height: 42px;
    padding: 10px 8px;
  }
  .contact-dock__item span {
    font-size: 9px;
  }
  .contact-dock__item:hover {
    transform: translateY(-2px);
  }
  .contact-mini {
    grid-template-columns: 1fr;
  }
  .access-hero__wrap {
    padding-top: 42px;
  }
  .access-hero__title {
    font-size: clamp(48px, 15vw, 68px);
    letter-spacing: 0.09em;
  }
  .access-hero__crumb {
    display: none;
  }
  .access-hero__stage {
    height: 340px;
    min-height: 320px;
    margin-left: -26px;
    margin-right: -26px;
  }
  .access-hero__plinth {
    left: 6%;
    right: -12%;
    bottom: 8%;
  }
  .access-hero__plinth--back {
    left: 32%;
    right: 18%;
  }
  .access-piece--u {
    left: 11%;
    width: 17%;
  }
  .access-piece--hinge {
    left: 40%;
    width: 22%;
  }
  .access-piece--plate {
    left: 65%;
    width: 18%;
  }
  .access-piece--handle {
    left: 84%;
    width: 12%;
  }
  .fcta-form {
    grid-template-columns: 1fr;
  }
  .creds .wrap {
    grid-template-columns: 1fr 1fr;
  }
  .cred:nth-child(2) {
    border-right: 0;
  }
  .cred {
    padding: 20px 20px 20px 0;
  }
  .prod-grid {
    grid-template-columns: 1fr;
  }
  .val-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }
  .proc {
    grid-template-columns: 1fr;
  }
  .sectors-visual .shot:nth-child(2) {
    margin-top: 0;
  }
  .froutes {
    grid-template-columns: 1fr;
  }
  .sec-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .h-actions .btn {
    display: none;
  }
  .lrow {
    grid-template-columns: 1fr;
  }
  .lrow .dim {
    text-align: left;
  }
  .xsec {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
  }
  .gal,
  .gal.four,
  .gal.two,
  .tezgah-photo-slots {
    grid-template-columns: 1fr 1fr;
  }
  .drawing-board {
    grid-template-columns: 1fr;
  }
  .tile .cap {
    font-size: 9px;
    padding: 20px 9px 8px;
  }
  .spectable th,
  .spectable td {
    padding: 12px 14px;
    font-size: 12.5px;
  }
  .lb-prev {
    left: 6px;
  }
  .lb-next {
    right: 6px;
  }
}
@media (max-width: 520px) {
  .tezgah-photo-slots {
    grid-template-columns: 1fr;
  }
}

.accessory-placeholder {
  min-height: 230px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--bg-2), rgba(127, 127, 127, 0.08));
  border: 1px dashed var(--line);
}

.accessory-placeholder span {
  color: var(--muted);
  font: 600 12px/1.2 var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 920px) {
  .reference-hero {
    min-height: 620px;
    background-position: 62% center;
  }
  .reference-hero .wrap {
    grid-template-columns: 1fr;
  }
  .reference-hero .ph-text {
    max-width: 560px;
  }
  .reference-hero::after {
    left: -8%;
    top: 28%;
    width: 74vw;
  }
  body.accessories-page .access-hero {
    min-height: 620px;
    background:
      linear-gradient(
        180deg,
        rgba(8, 8, 7, 0.94) 0%,
        rgba(8, 8, 7, 0.78) 38%,
        rgba(8, 8, 7, 0.16) 100%
      ),
      url("kalyoncu-assets/aksesuar/alan.png") center bottom / contain no-repeat,
      #0a0a09;
  }

  body.accessories-page .access-hero__wrap {
    min-height: 620px;
    display: flex;
    align-items: flex-start;
    padding-top: 72px;
  }

  body.accessories-page .access-hero__text {
    max-width: 310px;
    padding-top: 0;
  }
}

@media (max-width: 620px) {
  .reference-hero {
    min-height: 560px;
    background-position: 67% center;
  }
  .reference-hero::before {
    left: 18px;
    width: 74vw;
  }
  .reference-hero::after {
    left: -18%;
    top: 30%;
    width: 96vw;
  }
  .reference-hero .ph-h {
    font-size: clamp(34px, 11vw, 48px);
    letter-spacing: 0.11em;
  }
  .reference-hero .ph-lead {
    max-width: 31ch;
    font-size: 15px;
  }
  .reference-hero .ph-ticks {
    display: none;
  }
  body.accessories-page .access-hero {
    min-height: 560px;
    background-position: center bottom;
  }

  body.accessories-page .access-hero__wrap {
    min-height: 560px;
    padding-top: 54px;
  }

  body.accessories-page .access-hero__title {
    font-size: clamp(42px, 13vw, 58px);
    letter-spacing: 0.13em;
  }

  body.accessories-page .access-hero__text p {
    max-width: 260px;
    font-size: 13.5px;
  }
}

/* Tum gorseller kutusunun icinde kirpilmadan gorunur. */
.shot .img,
.prod .pimg,
.tile,
.vcard .vimg,
.model-detail .model-shot .img,
.access-overview-visual,
.feat-card .fimg,
.home-reference-image,
.completed-project-media,
.tezgah-photo-slot,
.accboard .ab .pic {
  display: grid;
  place-items: center;
  background: var(--bg-2);
}

.shot .img img,
.prod .pimg img,
.tile img,
.vcard .vimg img,
.model-detail .model-shot img,
.access-overview-visual img,
.feat-card .fimg img,
.home-reference-image img,
.completed-project-media img,
.tezgah-photo-slot img,
.accboard .ab .pic img,
.hero-slide-bg {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center;
  box-sizing: border-box;
}

.home-reference-image img {
  aspect-ratio: 16 / 10.5;
}

.reference-brand-shot .img img {
  width: min(78%, 520px);
  height: auto;
  max-height: 230px;
}

.hero-slider .hero-slide-bg {
  object-fit: cover !important;
  object-position: center;
}

img[src*="kalyoncu-assets/posta kutusu"] {
  object-fit: contain !important;
  object-position: center;
}

.shot:hover .img img,
.prod:hover .pimg img,
.tile:hover img,
.vcard:hover .vimg img,
.feat-card:hover .fimg img,
.home-reference-image:hover img,
.accboard .ab:hover .pic img {
  transform: none;
}

body.mahal-page .pagehero .shot .img,
body.mahal-page .model-detail .model-shot .img,
body.mahal-page .tezgah-photo-slot {
  aspect-ratio: 4 / 5;
  background: var(--bg-2);
}

body.mahal-page .pagehero .shot .img img,
body.mahal-page .model-detail .model-shot img,
body.mahal-page .tezgah-photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center;
  padding: 0 !important;
}

@media (max-width: 620px) {
  body .hero-slide-cta .btn,
  body #urunler .prod .spec,
  body #referanslar .btn,
  body .fform-btn {
    width: 100%;
    min-height: 46px;
    padding: 0 16px;
    justify-content: center;
    text-align: center;
  }

  body #urunler .prod .spec {
    border: 1px solid var(--copper);
    background: var(--copper);
    color: var(--on-copper);
  }

  body #urunler .prod .spec .ar {
    width: auto;
    height: auto;
    margin-left: 8px;
    border: 0;
    color: inherit;
  }
}

body.soyunma-page .pagehero .shot .img,
body.soyunma-page .vcard .vimg,
body.soyunma-page .model-detail .model-shot .img,
body.soyunma-page .tezgah-photo-slot,
body.soyunma-page .tile {
  background: var(--bg-2);
}

body.soyunma-page .pagehero .shot .img img,
body.soyunma-page .vcard .vimg img,
body.soyunma-page .model-detail .model-shot img,
body.soyunma-page .tezgah-photo-slot img,
body.soyunma-page .tile img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center;
  padding: 0 !important;
}

body.soyunma-page .vcard:hover .vimg img,
body.soyunma-page .shot:hover .img img,
body.soyunma-page .tile:hover img {
  transform: none !important;
}

/* Aksesuar urun gorselleri hic kirpilmadan gorunsun. */
.pagehero .shot .img:has(img[src*="kalyoncu-assets/aksesuar"]),
.model-detail .model-shot .img:has(img[src*="kalyoncu-assets/aksesuar"]) {
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
  padding: clamp(14px, 2.4vw, 34px) !important;
  box-sizing: border-box !important;
  background: var(--bg-2) !important;
}

.pagehero .shot .img img[src*="kalyoncu-assets/aksesuar"],
.model-detail .model-shot img[src*="kalyoncu-assets/aksesuar"] {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 0 !important;
  transform: none !important;
}

.pagehero .shot:hover .img img[src*="kalyoncu-assets/aksesuar"],
.model-detail .model-shot:hover img[src*="kalyoncu-assets/aksesuar"] {
  transform: none !important;
}

/* ============================================================
   FIX: Galeri gorsellerinin tam sigmasi icin
   ============================================================ */
.tezgah-photo-slot img,
.tile img,
.vcard .vimg img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  box-sizing: border-box !important;
}

.tezgah-photo-slot,
.tile,
.vcard .vimg {
  overflow: hidden !important;
  position: relative !important;
}

.tezgah-photo-slot {
  aspect-ratio: 1 / 1 !important;
  min-height: 200px !important;
}

.tezgah-photo-slot > img,
.tile > img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: 12px !important;
}
