@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500;1,9..144,600&display=swap');

/* ==========================================================================
   İMBİKHANE — Lavanta Damıtım Atölyesi
   art direction · "damıthane / apothecary-lab":
     karanlık imbik odası · damıtılmış lavanta moru + sıcak bakır.
     Display = Fraunces (opsz + kıvrak italik · botanik/aptekar sıcaklığı);
     veri & etiket katmanı = monospace (laboratuvar okuması).
     Bütün ton: zanaat × ölçüm — her damla kayıtlı.
   ========================================================================== */

:root {
  --bg: #0F1115;
  --surface: #1A1D24;
  --surface-2: #21252e;
  --surface-3: #282d38;
  --ink: #E8E6EF;
  --ink-soft: #a7a4b8;
  --ink-mute: #6f6c82;
  --accent: #9B8CC4;
  --accent-soft: #b6aad6;
  --accent-2: #B87333;
  --accent-2-soft: #d08c4a;
  --line: rgba(232, 230, 239, 0.10);
  --line-strong: rgba(232, 230, 239, 0.20);
  --ok: #7fae8a;

  --shadow-accent: 0 30px 60px -34px rgba(155,140,196,0.55);
  --shadow-copper: 0 28px 52px -32px rgba(184,115,51,0.5);
  --bloom: rgba(155,140,196,0.14);
  --bloom-copper: rgba(184,115,51,0.12);

  --header-h: 74px;
  --container: 1080px;
  --pad: clamp(16px, 4vw, 48px);

  --mono: "Consolas", "SFMono-Regular", "Menlo", "Liberation Mono", monospace;
  --head: "Consolas", "SFMono-Regular", "Menlo", monospace;
  --body: "Segoe UI", "Helvetica Neue", system-ui, -apple-system, sans-serif;
  --display: "Fraunces", "Georgia", "Palatino Linotype", "Times New Roman", serif;

  --ease: cubic-bezier(.2,.7,.2,1);
  --ease2: cubic-bezier(.4,0,.2,1);

  interpolate-size: allow-keywords;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 16px);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ambient technical grid backdrop */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(155,140,196,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(155,140,196,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 0%, rgba(0,0,0,0.6), transparent 70%);
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5 {
  font-family: var(--head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.12;
  margin: 0 0 0.5em;
  color: var(--ink);
}

p { margin: 0 0 1em; }
a { color: var(--accent-soft); text-decoration: none; transition: color .2s var(--ease2); }
a:hover { color: var(--accent); }

ul, ol { margin: 0 0 1em; padding-left: 1.2em; }

.mono, .num, code { font-family: var(--mono); font-variant-numeric: tabular-nums; }

strong { color: var(--ink); font-weight: 700; }

::selection { background: var(--accent); color: var(--bg); }

/* ---- layout helpers ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}

section { position: relative; z-index: 1; }

.section {
  padding-block: clamp(56px, 9vw, 112px);
}

.section-head { max-width: 760px; margin-bottom: clamp(32px, 5.5vw, 60px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 1px;
  background: linear-gradient(90deg, var(--accent-2), transparent);
}

h2.section-title, .section-title {
  font-family: var(--display);
  font-weight: 500;
  text-transform: none;
  letter-spacing: -0.014em;
  line-height: 1.06;
  font-optical-sizing: auto;
  font-size: clamp(1.9rem, 5.2vw, 3.05rem);
  margin-bottom: 16px;
  text-wrap: balance;
}
.section-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent-soft);
}
.section-sub {
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.09rem);
  line-height: 1.72;
  max-width: 60ch;
}

.skip-link {
  position: absolute;
  left: -9999px; top: 0;
  background: var(--accent);
  color: var(--bg);
  padding: 10px 16px;
  z-index: 2000;
  border-radius: 0 0 8px 0;
  font-family: var(--mono);
}
.skip-link:focus { left: 0; }

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 1080;
  display: flex;
  align-items: center;
  background: rgba(15, 17, 21, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: background .24s var(--ease2), box-shadow .24s var(--ease2), height .24s var(--ease2);
}
.site-header.is-scrolled {
  height: 62px;
  background: rgba(15, 17, 21, 0.97);
  box-shadow: 0 8px 28px -18px rgba(0,0,0,0.9);
}
.header-inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.02rem;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand__mark { width: 30px; height: 30px; flex: 0 0 auto; color: var(--accent); }
.brand__mark .drop-fill { color: var(--accent-2); }
.brand small {
  display: block;
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  font-weight: 400;
  text-transform: uppercase;
}

.nav-desktop { display: none; align-items: center; gap: clamp(14px, 2.4vw, 30px); }
.nav-desktop a {
  position: relative;
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  padding: 6px 2px;
  text-transform: uppercase;
}
.nav-desktop a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s var(--ease);
}
.nav-desktop a:not(.nav-cta):hover,
.nav-desktop a.is-active { color: var(--ink); }
.nav-desktop a:not(.nav-cta):hover::after,
.nav-desktop a.is-active::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--bg) !important;
  padding: 9px 16px;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover,
.nav-cta:hover { background: var(--accent-2); color: var(--bg) !important; }

/* hamburger */
.nav-toggle {
  position: relative;
  z-index: 1100;
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle__box { position: relative; width: 20px; height: 14px; }
.nav-toggle__box span {
  position: absolute;
  left: 0; height: 2px; width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s ease, top .3s var(--ease);
}
.nav-toggle__box span:nth-child(1) { top: 0; }
.nav-toggle__box span:nth-child(2) { top: 6px; }
.nav-toggle__box span:nth-child(3) { top: 12px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__box span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__box span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__box span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
}

/* ==========================================================================
   DRAWER
   ========================================================================== */
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  z-index: 1050;
  background: var(--surface);
  border-left: 1px solid var(--line-strong);
  transform: translateX(100%);
  transition: transform .32s var(--ease);
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 14px) 26px 30px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  display: block;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1rem;
  color: var(--ink-soft);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.drawer a:hover, .drawer a.is-active { color: var(--accent-soft); }
.drawer .drawer-cta {
  margin-top: 22px;
  text-align: center;
  background: var(--accent);
  color: var(--bg) !important;
  border-radius: 8px;
  border-bottom: 0;
  font-weight: 700;
}
.drawer .drawer-cta:hover { background: var(--accent-2); color: var(--bg) !important; }
.drawer__meta {
  margin-top: auto;
  padding-top: 22px;
  font-family: var(--mono);
  font-size: 0.74rem;
  color: var(--ink-mute);
  line-height: 1.8;
}
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1040;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity .24s ease, visibility .24s ease;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 13px 22px;
  border-radius: 7px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s var(--ease2), color .2s var(--ease2), transform .2s var(--ease2), border-color .2s var(--ease2), box-shadow .2s var(--ease2);
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--accent); color: var(--bg); }
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent-2); color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -14px rgba(184,115,51,0.7);
}
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface-2); color: var(--ink); border-color: var(--accent);
  transform: translateY(-2px);
}
.btn-copper { background: var(--accent-2); color: var(--bg); }
.btn-copper:hover, .btn-copper:focus-visible { background: var(--accent-2-soft); color: var(--bg); transform: translateY(-2px); }

/* ==========================================================================
   HERO
   ========================================================================== */
main { padding-top: var(--header-h); position: relative; z-index: 1; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding-block: clamp(96px, 15vh, 168px);
  border-bottom: 1px solid var(--line);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--bg);
}
.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  transform: scale(1.05);
  will-change: transform;
  animation: heroKen 20s var(--ease2) infinite alternate;
}
@keyframes heroKen {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to   { transform: scale(1.15) translate3d(-2%, -2.5%, 0); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(15,17,21,0.92) 0%, rgba(15,17,21,0.62) 46%, rgba(15,17,21,0.18) 100%),
    linear-gradient(180deg, rgba(15,17,21,0.55) 0%, rgba(15,17,21,0.12) 42%, rgba(15,17,21,0.78) 100%);
}
.hero > .container { position: relative; z-index: 2; width: 100%; }
.hero__inner { max-width: 730px; }

.hero__eyebrow {
  font-family: var(--mono);
  font-size: clamp(0.68rem, 2.4vw, 0.78rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-2-soft);
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 22px;
}
.hero__eyebrow .tick { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 0 rgba(127,174,138,0.6); animation: pulse 2.6s var(--ease) infinite; flex: 0 0 auto; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(127,174,138,0.5); } 70% { box-shadow: 0 0 0 8px rgba(127,174,138,0); } 100% { box-shadow: 0 0 0 0 rgba(127,174,138,0); } }

.hero__title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: none;
  font-optical-sizing: auto;
  font-size: clamp(2.35rem, 7vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #fbfaff;
  margin: 0 0 22px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
  text-wrap: balance;
}
.hero__title .word { display: inline-block; white-space: nowrap; }
.hero__title em { font-style: italic; font-weight: 500; color: var(--accent-soft); }

.hero__sub {
  color: rgba(232,230,239,0.92);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.6;
  max-width: 52ch;
  margin: 0 0 30px;
  text-shadow: 0 1px 16px rgba(0,0,0,0.4);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }
.hero .btn-ghost {
  background: rgba(255,255,255,0.07);
  color: #fff;
  border-color: rgba(255,255,255,0.34);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.hero .btn-ghost:hover, .hero .btn-ghost:focus-visible {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  max-width: 560px;
  background: rgba(232,230,239,0.16);
  border: 1px solid rgba(232,230,239,0.18);
  border-radius: 12px;
  overflow: hidden;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
@media (min-width: 620px) {
  .hero__stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.hero__stats .hstat {
  background: rgba(15,17,21,0.44);
  padding: 14px 16px;
  display: flex;
  flex-direction: column-reverse;
  gap: 4px;
}
.hero__stats .hstat__v {
  margin: 0;
  font-family: var(--mono);
  font-size: clamp(1.1rem, 3.4vw, 1.28rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.hero__stats .hstat__k {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232,230,239,0.72);
}

.active-batch .hero__batch { max-width: 720px; margin-inline: auto; }

/* hero batch table (left column, under text) */
.hero__batch {
  margin-top: 24px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  overflow: hidden;
}
.hero__batch-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.hero__batch-head .live { display: inline-flex; align-items: center; gap: 7px; color: var(--ok); }
.hero__batch-head .live b { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); }
.hero__batch-rows { display: grid; grid-template-columns: 1fr 1fr; }
.hero__batch-rows .cell {
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.hero__batch-rows .cell:nth-child(2n) { border-right: 0; }
.hero__batch-rows .cell .k { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); }
.hero__batch-rows .cell .v { font-family: var(--mono); font-size: 1.34rem; font-weight: 700; color: var(--ink); line-height: 1.2; }
.hero__batch-rows .cell .v small { font-size: 0.7rem; color: var(--accent-soft); font-weight: 400; }

/* ==========================================================================
   IMBIK SVG (signature)
   ========================================================================== */
.imbik-stage {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background:
    radial-gradient(ellipse at 50% 15%, rgba(155,140,196,0.10), transparent 60%),
    var(--surface);
  padding: clamp(18px, 3vw, 30px);
  overflow: hidden;
}
.imbik-stage::before {
  content: "IMBIK · No. 2026-07";
  position: absolute;
  top: 14px; left: 18px;
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
}
.imbik-svg { width: 100%; height: auto; display: block; }
.imbik-svg .glass { stroke: var(--line-strong); }
.imbik-svg .copper { stroke: var(--accent-2); }
.imbik-svg .steam { stroke: var(--accent-soft); }
.imbik-svg .label { fill: var(--ink-mute); font-family: var(--mono); font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; }
.imbik-svg .val { fill: var(--accent-soft); font-family: var(--mono); font-size: 11px; font-weight: bold; }
.imbik-svg .hydro-level { fill: var(--accent); opacity: 0.55; transition: none; }
.imbik-svg .drop { fill: var(--accent-2); }

.imbik-readout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 16px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.imbik-readout .r { background: var(--surface-2); padding: 12px 10px; text-align: center; }
.imbik-readout .r .k { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); }
.imbik-readout .r .v { font-family: var(--mono); font-size: 1.24rem; font-weight: 700; color: var(--accent-soft); }

/* drop animation */
@keyframes dripFall {
  0% { transform: translateY(0); opacity: 0; }
  10% { opacity: 1; }
  85% { opacity: 1; }
  100% { transform: translateY(58px); opacity: 0; }
}
.imbik-svg .drop-anim { animation: dripFall 2.4s var(--ease2) infinite; }
.imbik-svg .drop-anim.d2 { animation-delay: 0.8s; }
.imbik-svg .drop-anim.d3 { animation-delay: 1.6s; }
@keyframes steamRise {
  0% { stroke-dashoffset: 40; opacity: 0.15; }
  50% { opacity: 0.6; }
  100% { stroke-dashoffset: 0; opacity: 0.15; }
}
.imbik-svg .steam { stroke-dasharray: 6 8; animation: steamRise 4s linear infinite; }

/* ==========================================================================
   SPEC / feature cards
   ========================================================================== */
.spec-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 620px) { .spec-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 940px) { .spec-grid { grid-template-columns: repeat(3, 1fr); } }

.spec-card {
  position: relative;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  padding: 24px 22px;
  transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
}
.spec-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 22px 40px -26px rgba(155,140,196,0.55);
}
.spec-card__icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--accent);
  margin-bottom: 18px;
  background: rgba(155,140,196,0.06);
}
.spec-card__icon svg { width: 24px; height: 24px; }
.spec-card h3 { font-size: 0.98rem; margin-bottom: 8px; }
.spec-card p { color: var(--ink-soft); font-size: 0.92rem; margin: 0; }
.spec-card .badge {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--accent-2-soft);
  border: 1px solid var(--line);
  padding: 3px 9px;
  border-radius: 20px;
}

/* ==========================================================================
   TABLES
   ========================================================================== */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 22px 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  /* self-hiding scroll shadows: on narrow screens they hint the table scrolls
     sideways and fade away once scrolled to each edge (no permanent artifact
     on desktop where the table fits). --surface = rgb(26,29,36). */
  background:
    linear-gradient(to right, var(--surface) 28%, rgba(26,29,36,0)) left center / 34px 100% no-repeat,
    linear-gradient(to left, var(--surface) 28%, rgba(26,29,36,0)) right center / 34px 100% no-repeat,
    radial-gradient(farthest-side at 0 50%, rgba(0,0,0,0.45), rgba(0,0,0,0)) left center / 15px 100% no-repeat,
    radial-gradient(farthest-side at 100% 50%, rgba(0,0,0,0.45), rgba(0,0,0,0)) right center / 15px 100% no-repeat,
    var(--surface);
  background-attachment: local, local, scroll, scroll;
}
.table-scroll > table { margin: 0 !important; min-width: 520px; width: 100%; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }

table { border-collapse: collapse; width: 100%; font-size: 0.92rem; }
thead th {
  text-align: left;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 13px 16px;
  border-bottom: 1px solid var(--line-strong);
  background: var(--surface-2);
  white-space: nowrap;
}
tbody td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  vertical-align: top;
}
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover td { background: rgba(155,140,196,0.04); }
td .mono, td.num { color: var(--ink); }
.tag-ok { color: var(--ok); font-family: var(--mono); font-size: 0.8rem; }
.cell-strong { color: var(--ink); font-weight: 700; }

/* ==========================================================================
   PARTI — lot traceability timeline
   ========================================================================== */
.lot-band {
  background: linear-gradient(180deg, var(--surface), var(--bg));
  border-block: 1px solid var(--line);
}
.lot-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  counter-reset: step;
}
.lot-step {
  position: relative;
  padding: 22px 0 22px 56px;
  border-left: 2px solid var(--line-strong);
  margin-left: 14px;
}
.lot-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: -17px; top: 20px;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: var(--surface-2);
  border: 1px solid var(--accent);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-soft);
}
.lot-step:last-child { border-left-color: transparent; }
.lot-step .t {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2-soft);
  margin-bottom: 6px;
}
.lot-step h3 { font-size: 1rem; margin-bottom: 6px; }
.lot-step p { color: var(--ink-soft); font-size: 0.92rem; margin: 0; max-width: 62ch; }

/* stat / counter row */
.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 36px;
}
@media (min-width: 720px) { .stat-row { grid-template-columns: repeat(4, 1fr); } }
.stat {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 18px;
  background: var(--surface);
  text-align: center;
}
.stat .v { font-family: var(--mono); font-size: clamp(1.6rem, 4vw, 2.3rem); font-weight: 700; color: var(--accent-soft); line-height: 1; }
.stat .v .suf { color: var(--accent-2-soft); }
.stat .k { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); margin-top: 10px; }

/* ==========================================================================
   TOPTAN — pricing
   ========================================================================== */
.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}
@media (min-width: 760px) { .price-grid { grid-template-columns: repeat(3, 1fr); } }
.price-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  padding: 26px 24px;
  transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 24px 44px -28px rgba(155,140,196,0.5); }
.price-card.is-featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent) inset; }
.price-card .ptag {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2-soft);
  margin-bottom: 4px;
}
.price-card .featured-flag {
  align-self: flex-start;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.price-card h3 { font-size: 1.14rem; margin-bottom: 4px; }
.price-card .vol { color: var(--ink-mute); font-family: var(--mono); font-size: 0.78rem; margin-bottom: 16px; }
.price-card .price {
  font-family: var(--mono);
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.price-card .price small { font-size: 0.9rem; color: var(--ink-soft); font-weight: 400; }
.price-card .perunit { font-family: var(--mono); font-size: 0.72rem; color: var(--ink-mute); margin: 8px 0 18px; }
.price-card ul.incl { list-style: none; padding: 0; margin: 0 0 12px; display: grid; gap: 9px; }
.price-card ul.incl li { display: flex; gap: 10px; font-size: 0.9rem; color: var(--ink-soft); }
.price-card ul.incl li svg { width: 16px; height: 16px; flex: 0 0 auto; margin-top: 3px; color: var(--accent); }
.price-card ul.incl li.no { color: var(--ink-mute); }
.price-card ul.incl li.no svg { color: var(--ink-mute); }
.price-card .price-cta { margin-top: auto; padding-top: 18px; }
.price-card .price-cta .btn { width: 100%; justify-content: center; }
.price-note {
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 0.76rem;
  color: var(--ink-mute);
  display: flex; gap: 8px; align-items: flex-start;
}
.price-note svg { width: 15px; height: 15px; flex: 0 0 auto; margin-top: 2px; color: var(--accent-2-soft); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { display: grid; gap: 12px; max-width: 820px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  overflow: hidden;
}
.faq-item[open] { border-color: var(--line-strong); }
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px clamp(18px, 3vw, 26px);
  font-family: var(--head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.92rem;
  color: var(--ink);
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary .mk {
  position: relative;
  width: 18px; height: 18px; flex: 0 0 auto;
}
.faq-item > summary .mk::before,
.faq-item > summary .mk::after {
  content: "";
  position: absolute;
  background: var(--accent);
  transition: transform .3s var(--ease);
}
.faq-item > summary .mk::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-item > summary .mk::after { top: 0; left: 8px; width: 2px; height: 18px; }
.faq-item[open] > summary .mk::after { transform: scaleY(0); }
.faq-item > .answer {
  height: 0;
  padding: 0 clamp(18px, 3vw, 26px);
  overflow: hidden;
  transition: height 360ms var(--ease2), padding-block-end 360ms var(--ease2);
}
.faq-item[open] > .answer { height: auto; padding-block-end: 22px; }
.faq-item > .answer p { color: var(--ink-soft); font-size: 0.94rem; margin: 0 0 0.7em; }
.faq-item > .answer p:last-child { margin-bottom: 0; }
@media (prefers-reduced-motion: reduce) {
  .faq-item > .answer { transition: none; }
}

/* ==========================================================================
   NOTES / activity
   ========================================================================== */
.notes-list { display: grid; gap: 14px; }
.note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 18px;
  background: var(--surface);
}
.note .date {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--accent-2-soft);
  white-space: nowrap;
}
.note .body { min-width: 0; }
.note .body strong { display: block; font-family: var(--head); text-transform: uppercase; font-size: 0.86rem; letter-spacing: 0.03em; margin-bottom: 3px; }
.note .body p { margin: 0; color: var(--ink-soft); font-size: 0.9rem; }

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 560px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-tile {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--line);
  aspect-ratio: 1 / 1;
}
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-tile:hover img { transform: scale(1.06); }
.gallery-tile figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 12px 14px;
  background: linear-gradient(0deg, rgba(15,17,21,0.9), transparent);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--ink);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 720px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
.review {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
}
.review .stars { color: var(--accent-2); font-family: var(--mono); letter-spacing: 2px; font-size: 0.82rem; margin-bottom: 12px; }
.review p { color: var(--ink-soft); font-size: 0.95rem; }
.review .meta { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); font-family: var(--mono); font-size: 0.78rem; }
.review .meta .who { color: var(--ink); }
.review .meta .ctx { color: var(--ink-mute); }

/* ==========================================================================
   FORM
   ========================================================================== */
.form-band { background: linear-gradient(180deg, var(--bg), var(--surface)); border-top: 1px solid var(--line); }
.form-wrap {
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: var(--surface);
  padding: clamp(22px, 4vw, 40px);
}
form.lead-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.field label, .field > span.lbl {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  font-family: var(--body);
  font-size: 0.95rem;
  transition: border-color .2s var(--ease2), box-shadow .2s var(--ease2);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(155,140,196,0.16);
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--accent) 50%), linear-gradient(135deg, var(--accent) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 40px; }
.field.kvkk {
  flex-direction: row;
  align-items: flex-start;
  gap: 11px;
}
.field.kvkk label { text-transform: none; letter-spacing: 0; font-family: var(--body); font-size: 0.86rem; color: var(--ink-soft); line-height: 1.5; }
.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
}
.form-submit { display: flex; }
.form-submit .btn { width: 100%; justify-content: center; }
@media (min-width: 640px) { .form-submit .btn { width: auto; } }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-hero {
  padding-block: clamp(44px, 7vw, 90px);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.contact-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 50% 60% at 85% 20%, rgba(155,140,196,0.14), transparent 70%);
}
.contact-hero .container { position: relative; z-index: 1; }

.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}
.channel {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 22px 20px;
  transition: transform .24s var(--ease2), border-color .24s var(--ease2), box-shadow .24s var(--ease2);
}
.channel:hover { transform: translateY(-3px); border-color: var(--accent); box-shadow: 0 18px 34px -22px rgba(155,140,196,0.5); }
.channel__icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: rgba(155,140,196,0.07);
  display: grid; place-items: center;
  color: var(--accent);
  margin-bottom: 14px;
  transition: color .24s var(--ease2), transform .24s var(--ease2);
}
.channel:hover .channel__icon { color: var(--accent-2-soft); transform: scale(1.06); }
.channel__icon svg { width: 22px; height: 22px; }
.channel h3 { font-size: 0.82rem; margin-bottom: 6px; color: var(--ink-soft); }
.channel a, .channel .val { font-family: var(--mono); font-size: 0.98rem; color: var(--ink); word-break: break-word; overflow-wrap: anywhere; }
.channel a:hover { color: var(--accent-soft); }
.channel .sub { display: block; margin-top: 6px; font-size: 0.8rem; color: var(--ink-mute); font-family: var(--body); }

.hours-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  max-width: 460px;
}
.hours-grid .hrow {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  font-family: var(--mono);
  font-size: 0.86rem;
}
.hours-grid .hrow .d { color: var(--ink-soft); }
.hours-grid .hrow .h { color: var(--ink); font-variant-numeric: tabular-nums; }
.hours-grid .hrow.is-today { border-color: var(--accent); background: rgba(155,140,196,0.07); }
.hours-grid .hrow.is-today .d { color: var(--accent-soft); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line-strong);
  padding-block: clamp(44px, 6vw, 72px) 30px;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { color: var(--ink-soft); font-size: 0.9rem; max-width: 42ch; }
.footer-col h4 { font-size: 0.78rem; color: var(--ink-mute); margin-bottom: 14px; letter-spacing: 0.1em; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col ul li a { font-family: var(--mono); font-size: 0.86rem; color: var(--ink-soft); }
.footer-col ul li a:hover { color: var(--accent-soft); }
.footer-col .cinfo { font-family: var(--mono); font-size: 0.84rem; color: var(--ink-soft); line-height: 1.9; word-break: break-word; }
.footer-col .cinfo a { color: var(--ink-soft); }
.footer-bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.74rem;
  color: var(--ink-mute);
}
.footer-bottom a { color: var(--ink-mute); }
.footer-bottom a:hover { color: var(--accent-soft); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 6px 16px; }

/* ==========================================================================
   COOKIE BANNER
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  z-index: 9999;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.8);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms var(--ease), opacity 240ms;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
@media (min-width: 700px) { .cookie-banner { left: 24px; right: auto; max-width: 420px; } }
.cookie-banner h2 { font-size: 0.9rem; margin-bottom: 8px; }
.cookie-banner p { color: var(--ink-soft); font-size: 0.84rem; margin-bottom: 14px; }
.cookie-banner p a { color: var(--accent-soft); text-decoration: underline; }
.cookie-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cookie-actions .btn { padding: 11px 14px; font-size: 0.76rem; justify-content: center; min-height: 44px; }
.cookie-actions .btn-settings { grid-column: 1 / -1; }
/* KVKK: "Reddet" must carry equal visual weight to "Kabul Et" (no accept-nudge).
   Give the reject action a solid, equally prominent fill instead of a hollow ghost. */
.cookie-actions .btn[data-consent="reject"] {
  background: var(--surface-3);
  color: var(--ink);
  border-color: var(--line-strong);
}
.cookie-actions .btn[data-consent="reject"]:hover,
.cookie-actions .btn[data-consent="reject"]:focus-visible {
  background: var(--surface-2);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
}
/* the tertiary "Ayarlar" stays intentionally lighter (secondary action) */
.cookie-actions .btn-settings[data-consent="settings"] {
  background: transparent;
  color: var(--ink-soft);
}
.cookie-actions .btn-settings[data-consent="settings"]:hover {
  background: transparent;
  color: var(--ink);
  border-color: var(--accent);
}

/* cookie settings modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0,0,0,0.6);
}
.cookie-modal.is-open { display: flex; }
.cookie-modal__box {
  width: 100%;
  max-width: 460px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 26px;
  max-height: 88vh;
  overflow-y: auto;
}
.cookie-modal h2 { font-size: 1.05rem; margin-bottom: 14px; }
.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.cookie-toggle:last-of-type { border-bottom: 0; }
.cookie-toggle .ct-info strong { display: block; font-family: var(--head); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.04em; margin-bottom: 4px; }
.cookie-toggle .ct-info span { font-size: 0.82rem; color: var(--ink-mute); }
.switch { position: relative; width: 44px; height: 24px; flex: 0 0 auto; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .slider { position: absolute; inset: 0; background: var(--surface-3); border-radius: 24px; transition: background .2s; cursor: pointer; }
.switch .slider::before { content: ""; position: absolute; height: 18px; width: 18px; left: 3px; top: 3px; background: var(--ink-soft); border-radius: 50%; transition: transform .2s, background .2s; }
.switch input:checked + .slider { background: var(--accent); }
.switch input:checked + .slider::before { transform: translateX(20px); background: var(--bg); }
.switch input:disabled + .slider { opacity: 0.55; cursor: not-allowed; }
.cookie-modal__actions { margin-top: 22px; }
.cookie-modal__actions .btn { width: 100%; justify-content: center; }

/* ==========================================================================
   REVEAL
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .imbik-svg .drop-anim, .imbik-svg .steam, .hero__eyebrow .tick { animation: none !important; }
  .hero__photo { animation: none !important; transform: scale(1.02); }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ==========================================================================
   PAGE HEADER (inner pages)
   ========================================================================== */
.page-hero {
  padding-block: clamp(40px, 6vw, 80px);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 50% 70% at 80% 10%, rgba(184,115,51,0.10), transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--display);
  font-weight: 500;
  text-transform: none;
  letter-spacing: -0.014em;
  line-height: 1.04;
  font-optical-sizing: auto;
  font-size: clamp(2.05rem, 5.8vw, 3.35rem);
  text-wrap: balance;
}
.page-hero h1 em { font-style: italic; font-weight: 500; color: var(--accent-soft); }

/* legal / prose */
.prose { max-width: 780px; }
.prose h2 { font-size: clamp(1.2rem, 3vw, 1.5rem); margin-top: 2em; }
.prose h3 { font-size: 1rem; margin-top: 1.6em; }
.prose p, .prose li { color: var(--ink-soft); }
.prose a { text-decoration: underline; }

/* about */
.team-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 680px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.member {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
}
.member img { width: 100%; aspect-ratio: 6/7; object-fit: cover; }
.member .m-body { padding: 18px 20px; }
.member h3 { font-size: 0.98rem; margin-bottom: 2px; }
.member .role { font-family: var(--mono); font-size: 0.72rem; color: var(--accent-2-soft); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.member p { color: var(--ink-soft); font-size: 0.88rem; margin: 0; }

.split-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
@media (min-width: 860px) { .split-feature { grid-template-columns: 1fr 1fr; } .split-feature.rev > :first-child { order: 2; } }
.split-feature img { border-radius: 14px; border: 1px solid var(--line); width: 100%; }
.split-feature .lead { color: var(--ink-soft); }

.thanks-wrap { min-height: 52vh; display: grid; place-items: center; text-align: center; padding-block: 80px; }
.thanks-wrap .tick-big { width: 72px; height: 72px; margin: 0 auto 24px; color: var(--ok); }
.thanks-wrap h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 12px; }
.thanks-wrap p { color: var(--ink-soft); max-width: 44ch; margin: 0 auto 26px; }

/* 404 */
.err-wrap { min-height: 60vh; display: grid; place-items: center; text-align: center; padding-block: 80px; }
.err-wrap .code { font-family: var(--mono); font-size: clamp(4rem, 16vw, 9rem); font-weight: 700; color: var(--accent); line-height: 1; }

/* misc */
.divider-rule { height: 1px; background: linear-gradient(90deg, transparent, var(--accent-2), transparent); opacity: 0.5; margin-block: 8px; border: 0; }
.lead-para { font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: var(--ink); max-width: 62ch; font-family: var(--body); line-height: 1.55; }

@media (max-width: 640px) {
  .spec-card { padding: 20px 18px; }
  .spec-card__icon { width: 40px; height: 40px; }
  .stat-row { gap: 12px; }
  .cookie-actions { grid-template-columns: 1fr; }
}

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:linear-gradient(90deg,var(--accent),var(--accent-2));z-index:9998;transition:width 80ms linear;pointer-events:none}

/* ==========================================================================
   ELEVATION LAYER — award-grade polish (apothecary-lab)
   sadece transform/opacity/filter animasyonu · reveal(is-in) korunur
   ========================================================================== */

/* ---- ambient distilled-lavender bloom on banded sections ---- */
.lot-band {
  background:
    radial-gradient(ellipse 70% 90% at 12% 0%, var(--bloom), transparent 60%),
    radial-gradient(ellipse 60% 80% at 100% 100%, var(--bloom-copper), transparent 62%),
    linear-gradient(180deg, var(--surface), var(--bg));
}

/* hairline seam + faint copper glow crowning each standard section */
.section + .section:not(.lot-band)::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: min(var(--container), calc(100% - var(--pad) * 2));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--line-strong) 22%, var(--line-strong) 78%, transparent);
  pointer-events: none;
}

/* ---- section head: kicker rhythm + a hairline flourish ---- */
.section-head .eyebrow { margin-bottom: 20px; }

/* lot-code set inside a display heading reads as a lab tag */
.title-code {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.62em;
  letter-spacing: 0.04em;
  color: var(--accent-2-soft);
  vertical-align: 0.12em;
  white-space: nowrap;
}

/* ==========================================================================
   SPEC CARDS — editorial ghost-index + accent crown
   ========================================================================== */
.spec-grid { counter-reset: spec; gap: clamp(16px, 1.6vw, 22px); }
.spec-card { counter-increment: spec; overflow: hidden; isolation: isolate; }
.spec-card::before {
  content: counter(spec, decimal-leading-zero);
  position: absolute;
  top: 8px; right: 14px;
  z-index: -1;
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 3.4rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.09;
  pointer-events: none;
}
.spec-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.spec-card:hover::after,
.spec-card:focus-within::after { transform: scaleX(1); }
.spec-card:hover { box-shadow: var(--shadow-accent); }
.spec-card:hover .spec-card__icon {
  color: var(--accent-2-soft);
  border-color: var(--accent);
  background: rgba(184,115,51,0.08);
}
.spec-card__icon { transition: color .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease); }
.spec-card h3 {
  font-family: var(--display);
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.01em;
  font-size: 1.16rem;
}

/* ==========================================================================
   PRICE CARDS — warmer hover, refined featured
   ========================================================================== */
.price-card { overflow: hidden; }
.price-card h3 {
  font-family: var(--display);
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.01em;
  font-size: 1.32rem;
}
.price-card.is-featured {
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(155,140,196,0.14), transparent 60%),
    linear-gradient(180deg, var(--surface-2), var(--surface));
}
.price-card:hover { box-shadow: var(--shadow-accent); }
.price-card.is-featured:hover { box-shadow: var(--shadow-copper); }

/* ==========================================================================
   REVIEWS / NOTES / CHANNELS / MEMBERS — cohesive lift + accent hairline
   ========================================================================== */
.review, .note, .member {
  transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
}
.review:hover, .note:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-accent);
}
.member { position: relative; }
.member:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
}
.member img { transition: transform .5s var(--ease); }
.member:hover img { transform: scale(1.04); }
.member h3 {
  font-family: var(--display);
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.01em;
  font-size: 1.12rem;
}
.review { position: relative; }
.review p {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.04rem;
  line-height: 1.62;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.review::before {
  content: "\201C";
  position: absolute;
  top: 4px; right: 18px;
  font-family: var(--display);
  font-size: 4.6rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.12;
  pointer-events: none;
}
.note .body strong { font-size: 0.92rem; }
.channel h3 { letter-spacing: 0.08em; }

/* ==========================================================================
   GALLERY — richer overlay + copper caption tick
   ========================================================================== */
.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(155,140,196,0.0) 55%, rgba(184,115,51,0.16));
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.gallery-tile:hover::after { opacity: 1; }
.gallery-tile figcaption { padding: 16px 14px 13px; }
.gallery-tile figcaption::before {
  content: "";
  display: inline-block;
  width: 12px; height: 1px;
  margin-right: 8px;
  vertical-align: middle;
  background: var(--accent-2);
}

/* ==========================================================================
   ACTIVE BATCH / STAT / IMBIK readout — sharpen the "live lab" feel
   ========================================================================== */
.active-batch .hero__batch { box-shadow: var(--shadow-accent); }
.hero__batch-head .live b { box-shadow: 0 0 0 0 rgba(127,174,138,0.5); animation: pulse 2.6s var(--ease) infinite; }
.stat { transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease); }
.stat:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: var(--shadow-accent); }

/* lot-step: connect the timeline node to the accent bloom */
.lot-step::before { box-shadow: 0 0 0 4px var(--surface), 0 6px 16px -8px rgba(155,140,196,0.6); }
.lot-step h3 {
  font-family: var(--display);
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.01em;
  font-size: 1.18rem;
}

/* ---- FAQ heading in the display serif for warmth ---- */
.faq-item > summary {
  font-family: var(--display);
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.005em;
  font-size: 1.04rem;
}
.faq-item { transition: border-color .28s var(--ease), box-shadow .28s var(--ease); }
.faq-item:hover { box-shadow: var(--shadow-accent); }

/* ---- lead paragraph elevated ---- */
.lead-para {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.5;
}

/* ==========================================================================
   REVEAL — richer entrance (still transform/opacity only)
   ========================================================================== */
.reveal { transform: translateY(30px); }
.gallery-tile.reveal, .spec-card.reveal, .price-card.reveal { transform: translateY(30px) scale(0.985); }
.gallery-tile.reveal.is-in, .spec-card.reveal.is-in, .price-card.reveal.is-in { transform: none; }

@media (prefers-reduced-motion: reduce) {
  .gallery-tile.reveal, .spec-card.reveal, .price-card.reveal { transform: none !important; }
  .hero__batch-head .live b { animation: none !important; }
  .spec-card::after { transition: none !important; }
}

/* ==========================================================================
   RESPONSIVE — keep the ghost detail from crowding small screens
   ========================================================================== */
@media (max-width: 640px) {
  .spec-card::before { font-size: 2.6rem; top: 6px; right: 12px; }
  .review::before { font-size: 3.6rem; }
}

/* header-cta-padding-guard v1 */
.nav-desktop a.nav-cta, header a.nav-cta, .site-header a.nav-cta {
  padding: 10px 18px;
}
